package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public final class VR implements Parcelable { public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { // from class: o.VR.1 @Override // android.os.Parcelable.Creator public final /* synthetic */ VR createFromParcel(Parcel parcel) { return new VR(parcel); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ VR[] newArray(int i) { return new VR[i]; } }; public long c; public String d; @Override // android.os.Parcelable public final int describeContents() { return 0; } public VR(String str, long j) { this.d = str; this.c = j; } public final boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } VR vr = (VR) obj; if (this.c != vr.c) { return false; } String str = this.d; String str2 = vr.d; return str != null ? str.equals(str2) : str2 == null; } public final int hashCode() { String str = this.d; int hashCode = str != null ? str.hashCode() : 0; long j = this.c; return (hashCode * 31) + ((int) (j ^ (j >>> 32))); } protected VR(Parcel parcel) { this.d = parcel.readString(); this.c = parcel.readLong(); } @Override // android.os.Parcelable public final void writeToParcel(Parcel parcel, int i) { parcel.writeString(this.d); parcel.writeLong(this.c); } }