package o; import android.os.Parcel; import android.os.Parcelable; /* renamed from: o.Ml, reason: case insensitive filesystem */ /* loaded from: classes3.dex */ public final class C0695Ml extends EQ implements Parcelable { public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { // from class: o.Ml.5 @Override // android.os.Parcelable.Creator public final /* synthetic */ C0695Ml createFromParcel(Parcel parcel) { return new C0695Ml(parcel); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ C0695Ml[] newArray(int i) { return new C0695Ml[i]; } }; public String c; @Override // o.EQ, android.os.Parcelable public final int describeContents() { return 0; } public C0695Ml(String str) { this.c = str; } protected C0695Ml(Parcel parcel) { this.c = parcel.readString(); } @Override // o.EQ, android.os.Parcelable public final void writeToParcel(Parcel parcel, int i) { parcel.writeString(this.c); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } String str = this.c; String str2 = ((C0695Ml) obj).c; return str != null ? str.equals(str2) : str2 == null; } public final int hashCode() { String str = this.c; if (str != null) { return str.hashCode(); } return 0; } }