72 lines
2.2 KiB
Java
72 lines
2.2 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FU extends EQ {
|
|
public String a;
|
|
public String b;
|
|
public String c;
|
|
public double d;
|
|
public boolean f;
|
|
public int g;
|
|
public String h;
|
|
public boolean i;
|
|
public String j;
|
|
|
|
private FU() {
|
|
}
|
|
|
|
public static FU a() {
|
|
return new FU();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
FU fu = (FU) obj;
|
|
if (this.i != fu.i || this.f != fu.f || Double.compare(fu.d, this.d) != 0 || this.g != fu.g) {
|
|
return false;
|
|
}
|
|
String str = this.h;
|
|
if (str == null ? fu.h != null : !str.equals(fu.h)) {
|
|
return false;
|
|
}
|
|
String str2 = this.c;
|
|
if (str2 == null ? fu.c != null : !str2.equals(fu.c)) {
|
|
return false;
|
|
}
|
|
String str3 = this.a;
|
|
if (str3 == null ? fu.a != null : !str3.equals(fu.a)) {
|
|
return false;
|
|
}
|
|
String str4 = this.j;
|
|
if (str4 == null ? fu.j != null : !str4.equals(fu.j)) {
|
|
return false;
|
|
}
|
|
String str5 = this.b;
|
|
String str6 = fu.b;
|
|
return str5 != null ? str5.equals(str6) : str6 == null;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
boolean z = this.i;
|
|
boolean z2 = this.f;
|
|
String str = this.h;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.c;
|
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
|
long doubleToLongBits = Double.doubleToLongBits(this.d);
|
|
int i = (int) (doubleToLongBits ^ (doubleToLongBits >>> 32));
|
|
String str3 = this.a;
|
|
int hashCode3 = str3 != null ? str3.hashCode() : 0;
|
|
String str4 = this.j;
|
|
int hashCode4 = str4 != null ? str4.hashCode() : 0;
|
|
int i2 = this.g;
|
|
String str5 = this.b;
|
|
return ((((((((((((((((z ? 1 : 0) * 31) + (z2 ? 1 : 0)) * 31) + hashCode) * 31) + hashCode2) * 31) + i) * 31) + hashCode3) * 31) + hashCode4) * 31) + i2) * 31) + (str5 != null ? str5.hashCode() : 0);
|
|
}
|
|
}
|