package c.a.i; import android.view.View; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; /* compiled from: ViewUserStatusPresenceBinding */ public final class u3 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f169c; @NonNull public final TextView d; public u3(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout2) { this.a = linearLayout; this.b = imageView; this.f169c = textView; this.d = textView2; } @NonNull public static u3 a(@NonNull View view) { int i = 2131365610; ImageView imageView = (ImageView) view.findViewById(2131365610); if (imageView != null) { i = 2131365611; TextView textView = (TextView) view.findViewById(2131365611); if (textView != null) { i = 2131365612; TextView textView2 = (TextView) view.findViewById(2131365612); if (textView2 != null) { LinearLayout linearLayout = (LinearLayout) view; return new u3(linearLayout, imageView, textView, textView2, linearLayout); } } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }