Files
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

80 lines
2.7 KiB
Java

package com.applovin.impl;
import android.os.Parcel;
import android.os.Parcelable;
import com.ironsource.mediationsdk.logger.IronSourceError;
import com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.GeobFrame;
import java.util.Arrays;
/* loaded from: classes.dex */
public final class aa extends ya {
public static final Parcelable.Creator<aa> CREATOR = new a();
public final String b;
public final String c;
public final String d;
public final byte[] f;
@Override // com.applovin.impl.ya
public String toString() {
return this.a + ": mimeType=" + this.b + ", filename=" + this.c + ", description=" + this.d;
}
public aa(Parcel parcel) {
super(GeobFrame.ID);
this.b = (String) xp.a((Object) parcel.readString());
this.c = (String) xp.a((Object) parcel.readString());
this.d = (String) xp.a((Object) parcel.readString());
this.f = (byte[]) xp.a((Object) parcel.createByteArray());
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || aa.class != obj.getClass()) {
return false;
}
aa aaVar = (aa) obj;
return xp.a((Object) this.b, (Object) aaVar.b) && xp.a((Object) this.c, (Object) aaVar.c) && xp.a((Object) this.d, (Object) aaVar.d) && Arrays.equals(this.f, aaVar.f);
}
public int hashCode() {
String str = this.b;
int hashCode = ((str != null ? str.hashCode() : 0) + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31;
String str2 = this.c;
int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31;
String str3 = this.d;
return ((hashCode2 + (str3 != null ? str3.hashCode() : 0)) * 31) + Arrays.hashCode(this.f);
}
public aa(String str, String str2, String str3, byte[] bArr) {
super(GeobFrame.ID);
this.b = str;
this.c = str2;
this.d = str3;
this.f = bArr;
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.b);
parcel.writeString(this.c);
parcel.writeString(this.d);
parcel.writeByteArray(this.f);
}
public class a implements Parcelable.Creator {
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public aa[] newArray(int i) {
return new aa[i];
}
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public aa createFromParcel(Parcel parcel) {
return new aa(parcel);
}
}
}