package t0; import android.view.View; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; /* loaded from: classes.dex */ public class s { /* renamed from: b, reason: collision with root package name */ public View f14260b; /* renamed from: a, reason: collision with root package name */ public final Map f14259a = new HashMap(); /* renamed from: c, reason: collision with root package name */ final ArrayList f14261c = new ArrayList(); public s(View view) { this.f14260b = view; } public boolean equals(Object obj) { if (!(obj instanceof s)) { return false; } s sVar = (s) obj; return this.f14260b == sVar.f14260b && this.f14259a.equals(sVar.f14259a); } public int hashCode() { return (this.f14260b.hashCode() * 31) + this.f14259a.hashCode(); } public String toString() { String str = (("TransitionValues@" + Integer.toHexString(hashCode()) + ":\n") + " view = " + this.f14260b + "\n") + " values:"; for (String str2 : this.f14259a.keySet()) { str = str + " " + str2 + ": " + this.f14259a.get(str2) + "\n"; } return str; } }