package o; import com.google.gson.annotations.SerializedName; import java.util.List; /* loaded from: classes3.dex */ public class tUg { @SerializedName("maxIssuer") public int a; @SerializedName("issuer") public List e; public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof tUg)) { return false; } tUg tug = (tUg) obj; if (this.a != tug.a) { return false; } List list = this.e; if (list != null) { return list.equals(tug.e); } return tug.e == null; } public int hashCode() { int i = this.a; List list = this.e; return (i * 31) + (list != null ? list.hashCode() : 0); } }