package com.discord.databinding; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.google.android.material.card.MaterialCardView; public final class WidgetChoosePlanAdapterPlanItemBinding implements ViewBinding { @NonNull public final MaterialCardView a; @NonNull public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ public final MaterialCardView f1761c; @NonNull public final TextView d; @NonNull public final ImageView e; @NonNull public final TextView f; @NonNull public final TextView g; public WidgetChoosePlanAdapterPlanItemBinding(@NonNull MaterialCardView materialCardView, @NonNull ImageView imageView, @NonNull MaterialCardView materialCardView2, @NonNull TextView textView, @NonNull ImageView imageView2, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = materialCardView; this.b = imageView; this.f1761c = materialCardView2; this.d = textView; this.e = imageView2; this.f = textView2; this.g = textView3; } @NonNull public static WidgetChoosePlanAdapterPlanItemBinding a(@NonNull View view) { int i = 2131364323; ImageView imageView = (ImageView) view.findViewById(2131364323); if (imageView != null) { MaterialCardView materialCardView = (MaterialCardView) view; i = 2131364325; TextView textView = (TextView) view.findViewById(2131364325); if (textView != null) { i = 2131364326; ImageView imageView2 = (ImageView) view.findViewById(2131364326); if (imageView2 != null) { i = 2131364327; TextView textView2 = (TextView) view.findViewById(2131364327); if (textView2 != null) { i = 2131364328; TextView textView3 = (TextView) view.findViewById(2131364328); if (textView3 != null) { return new WidgetChoosePlanAdapterPlanItemBinding(materialCardView, imageView, materialCardView, textView, imageView2, textView2, textView3); } } } } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }