- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
90 lines
2.3 KiB
Java
90 lines
2.3 KiB
Java
package com.ironsource;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class fh {
|
|
private final String a;
|
|
private final int b;
|
|
private final String c;
|
|
|
|
public fh() {
|
|
this(null, 0, null, 7, null);
|
|
}
|
|
|
|
public fh(String instanceId, int i, String str) {
|
|
Intrinsics.checkNotNullParameter(instanceId, "instanceId");
|
|
this.a = instanceId;
|
|
this.b = i;
|
|
this.c = str;
|
|
}
|
|
|
|
public /* synthetic */ fh(String str, int i, String str2, int i2, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i2 & 1) != 0 ? "" : str, (i2 & 2) != 0 ? 0 : i, (i2 & 4) != 0 ? "" : str2);
|
|
}
|
|
|
|
public static /* synthetic */ fh a(fh fhVar, String str, int i, String str2, int i2, Object obj) {
|
|
if ((i2 & 1) != 0) {
|
|
str = fhVar.a;
|
|
}
|
|
if ((i2 & 2) != 0) {
|
|
i = fhVar.b;
|
|
}
|
|
if ((i2 & 4) != 0) {
|
|
str2 = fhVar.c;
|
|
}
|
|
return fhVar.a(str, i, str2);
|
|
}
|
|
|
|
public final fh a(String instanceId, int i, String str) {
|
|
Intrinsics.checkNotNullParameter(instanceId, "instanceId");
|
|
return new fh(instanceId, i, str);
|
|
}
|
|
|
|
public final String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final int b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final String c() {
|
|
return this.c;
|
|
}
|
|
|
|
public final String d() {
|
|
return this.c;
|
|
}
|
|
|
|
public final String e() {
|
|
return this.a;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof fh)) {
|
|
return false;
|
|
}
|
|
fh fhVar = (fh) obj;
|
|
return Intrinsics.areEqual(this.a, fhVar.a) && this.b == fhVar.b && Intrinsics.areEqual(this.c, fhVar.c);
|
|
}
|
|
|
|
public final int f() {
|
|
return this.b;
|
|
}
|
|
|
|
public int hashCode() {
|
|
int hashCode = ((this.a.hashCode() * 31) + Integer.hashCode(this.b)) * 31;
|
|
String str = this.c;
|
|
return hashCode + (str == null ? 0 : str.hashCode());
|
|
}
|
|
|
|
public String toString() {
|
|
return "InstanceInformation(instanceId=" + this.a + ", instanceType=" + this.b + ", dynamicDemandSourceId=" + this.c + ')';
|
|
}
|
|
}
|