Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,164 @@
package com.ironsource;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public interface f1 {
public static final class a implements f1 {
public static final C0169a c = new C0169a(null);
private final boolean a;
private final String b;
/* renamed from: com.ironsource.f1$a$a, reason: collision with other inner class name */
public static final class C0169a {
private C0169a() {
}
public /* synthetic */ C0169a(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
public final a a() {
return new a(false, "ad is invalid due to loading time", 1, null);
}
public final a a(String str) {
return new a(false, str, 1, null);
}
}
/* JADX WARN: Multi-variable type inference failed */
public a() {
this(false, null, 3, 0 == true ? 1 : 0);
}
public a(boolean z, String str) {
this.a = z;
this.b = str;
}
public /* synthetic */ a(boolean z, String str, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? false : z, (i & 2) != 0 ? null : str);
}
public static /* synthetic */ a a(a aVar, boolean z, String str, int i, Object obj) {
if ((i & 1) != 0) {
z = aVar.a();
}
if ((i & 2) != 0) {
str = aVar.b;
}
return aVar.a(z, str);
}
public final a a(boolean z, String str) {
return new a(z, str);
}
@Override // com.ironsource.f1
public boolean a() {
return this.a;
}
public final boolean b() {
return a();
}
public final String c() {
return this.b;
}
public final String d() {
return this.b;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof a)) {
return false;
}
a aVar = (a) obj;
return a() == aVar.a() && Intrinsics.areEqual(this.b, aVar.b);
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v4 */
/* JADX WARN: Type inference failed for: r0v5 */
public int hashCode() {
boolean a = a();
?? r0 = a;
if (a) {
r0 = 1;
}
int i = r0 * 31;
String str = this.b;
return i + (str == null ? 0 : str.hashCode());
}
public String toString() {
return "NotReady(isReady=" + a() + ", reason=" + this.b + ')';
}
}
public static final class b implements f1 {
private final boolean a;
public b() {
this(false, 1, null);
}
public b(boolean z) {
this.a = z;
}
public /* synthetic */ b(boolean z, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? true : z);
}
public static /* synthetic */ b a(b bVar, boolean z, int i, Object obj) {
if ((i & 1) != 0) {
z = bVar.a();
}
return bVar.a(z);
}
public final b a(boolean z) {
return new b(z);
}
@Override // com.ironsource.f1
public boolean a() {
return this.a;
}
public final boolean b() {
return a();
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof b) && a() == ((b) obj).a();
}
public int hashCode() {
boolean a = a();
if (a) {
return 1;
}
return a ? 1 : 0;
}
public String toString() {
return "Ready(isReady=" + a() + ')';
}
}
boolean a();
}