diff --git a/app/build.gradle b/app/build.gradle index 67606e2e7f..ef3e183aec 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,8 +10,8 @@ android { applicationId 'com.discord' minSdkVersion 21 targetSdkVersion 29 - versionCode 96103 - versionName "96.3 - Beta" + versionCode 97106 + versionName "97.6 - Beta" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 722766a5e2..3077242945 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ - + diff --git a/app/src/main/java/android/support/v4/media/RatingCompat.java b/app/src/main/java/android/support/v4/media/RatingCompat.java index 6059a34cdd..ab9c80e7f7 100644 --- a/app/src/main/java/android/support/v4/media/RatingCompat.java +++ b/app/src/main/java/android/support/v4/media/RatingCompat.java @@ -35,12 +35,12 @@ public final class RatingCompat implements Parcelable { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("Rating:style="); - P.append(this.i); - P.append(" rating="); + StringBuilder O = c.d.b.a.a.O("Rating:style="); + O.append(this.i); + O.append(" rating="); float f = this.j; - P.append(f < 0.0f ? "unrated" : String.valueOf(f)); - return P.toString(); + O.append(f < 0.0f ? "unrated" : String.valueOf(f)); + return O.toString(); } @Override // android.os.Parcelable diff --git a/app/src/main/java/android/support/v4/media/session/MediaSessionCompat.java b/app/src/main/java/android/support/v4/media/session/MediaSessionCompat.java index 8239e6b9fb..f7242094a9 100644 --- a/app/src/main/java/android/support/v4/media/session/MediaSessionCompat.java +++ b/app/src/main/java/android/support/v4/media/session/MediaSessionCompat.java @@ -59,10 +59,10 @@ public class MediaSessionCompat { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("MediaSession.QueueItem {Description="); - P.append(this.i); - P.append(", Id="); - return c.d.b.a.a.A(P, this.j, " }"); + StringBuilder O = c.d.b.a.a.O("MediaSession.QueueItem {Description="); + O.append(this.i); + O.append(", Id="); + return c.d.b.a.a.A(O, this.j, " }"); } @Override // android.os.Parcelable diff --git a/app/src/main/java/android/support/v4/media/session/PlaybackStateCompat.java b/app/src/main/java/android/support/v4/media/session/PlaybackStateCompat.java index 5dbd789d23..3ec464b918 100644 --- a/app/src/main/java/android/support/v4/media/session/PlaybackStateCompat.java +++ b/app/src/main/java/android/support/v4/media/session/PlaybackStateCompat.java @@ -66,13 +66,13 @@ public final class PlaybackStateCompat implements Parcelable { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("Action:mName='"); - P.append((Object) this.j); - P.append(", mIcon="); - P.append(this.k); - P.append(", mExtras="); - P.append(this.l); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("Action:mName='"); + O.append((Object) this.j); + O.append(", mIcon="); + O.append(this.k); + O.append(", mExtras="); + O.append(this.l); + return O.toString(); } @Override // android.os.Parcelable diff --git a/app/src/main/java/androidx/activity/ComponentActivity.java b/app/src/main/java/androidx/activity/ComponentActivity.java index fc35795266..63c3cd7416 100644 --- a/app/src/main/java/androidx/activity/ComponentActivity.java +++ b/app/src/main/java/androidx/activity/ComponentActivity.java @@ -415,9 +415,9 @@ public class ComponentActivity extends androidx.core.app.ComponentActivity imple @Override // androidx.activity.result.ActivityResultCaller @NonNull public final ActivityResultLauncher registerForActivityResult(@NonNull ActivityResultContract activityResultContract, @NonNull ActivityResultRegistry activityResultRegistry, @NonNull ActivityResultCallback activityResultCallback) { - StringBuilder P = a.P("activity_rq#"); - P.append(this.mNextLocalRequestCode.getAndIncrement()); - return activityResultRegistry.register(P.toString(), this, activityResultContract, activityResultCallback); + StringBuilder O = a.O("activity_rq#"); + O.append(this.mNextLocalRequestCode.getAndIncrement()); + return activityResultRegistry.register(O.toString(), this, activityResultContract, activityResultCallback); } @Override // androidx.activity.contextaware.ContextAware diff --git a/app/src/main/java/androidx/activity/result/ActivityResult.java b/app/src/main/java/androidx/activity/result/ActivityResult.java index 051b2c8c2d..40abb1dee4 100644 --- a/app/src/main/java/androidx/activity/result/ActivityResult.java +++ b/app/src/main/java/androidx/activity/result/ActivityResult.java @@ -59,12 +59,12 @@ public final class ActivityResult implements Parcelable { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("ActivityResult{resultCode="); - P.append(resultCodeToString(this.mResultCode)); - P.append(", data="); - P.append(this.mData); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("ActivityResult{resultCode="); + O.append(resultCodeToString(this.mResultCode)); + O.append(", data="); + O.append(this.mData); + O.append('}'); + return O.toString(); } @Override // android.os.Parcelable diff --git a/app/src/main/java/androidx/activity/result/ActivityResultRegistry.java b/app/src/main/java/androidx/activity/result/ActivityResultRegistry.java index 848ad15110..bcf444de35 100644 --- a/app/src/main/java/androidx/activity/result/ActivityResultRegistry.java +++ b/app/src/main/java/androidx/activity/result/ActivityResultRegistry.java @@ -288,15 +288,15 @@ public abstract class ActivityResultRegistry { } this.mKeyToCallback.remove(str); if (this.mParsedPendingResults.containsKey(str)) { - StringBuilder V = a.V("Dropping pending result for request ", str, ": "); - V.append(this.mParsedPendingResults.get(str)); - Log.w(LOG_TAG, V.toString()); + StringBuilder U = a.U("Dropping pending result for request ", str, ": "); + U.append(this.mParsedPendingResults.get(str)); + Log.w(LOG_TAG, U.toString()); this.mParsedPendingResults.remove(str); } if (this.mPendingResults.containsKey(str)) { - StringBuilder V2 = a.V("Dropping pending result for request ", str, ": "); - V2.append(this.mPendingResults.getParcelable(str)); - Log.w(LOG_TAG, V2.toString()); + StringBuilder U2 = a.U("Dropping pending result for request ", str, ": "); + U2.append(this.mPendingResults.getParcelable(str)); + Log.w(LOG_TAG, U2.toString()); this.mPendingResults.remove(str); } LifecycleContainer lifecycleContainer = this.mKeyToLifecycleContainers.get(str); diff --git a/app/src/main/java/androidx/appcompat/app/AppCompatDelegateImpl.java b/app/src/main/java/androidx/appcompat/app/AppCompatDelegateImpl.java index 4619ec9a78..9a6689368b 100644 --- a/app/src/main/java/androidx/appcompat/app/AppCompatDelegateImpl.java +++ b/app/src/main/java/androidx/appcompat/app/AppCompatDelegateImpl.java @@ -1165,16 +1165,16 @@ public class AppCompatDelegateImpl extends AppCompatDelegate implements MenuBuil contentFrameLayout.setAttachListener(new AnonymousClass5()); return viewGroup; } - StringBuilder P = a.P("AppCompat does not support the current theme features: { windowActionBar: "); - P.append(this.mHasActionBar); - P.append(", windowActionBarOverlay: "); - P.append(this.mOverlayActionBar); - P.append(", android:windowIsFloating: "); - P.append(this.mIsFloating); - P.append(", windowActionModeOverlay: "); - P.append(this.mOverlayActionMode); - P.append(", windowNoTitle: "); - throw new IllegalArgumentException(a.L(P, this.mWindowNoTitle, " }")); + StringBuilder O = a.O("AppCompat does not support the current theme features: { windowActionBar: "); + O.append(this.mHasActionBar); + O.append(", windowActionBarOverlay: "); + O.append(this.mOverlayActionBar); + O.append(", android:windowIsFloating: "); + O.append(this.mIsFloating); + O.append(", windowActionModeOverlay: "); + O.append(this.mOverlayActionMode); + O.append(", windowNoTitle: "); + throw new IllegalArgumentException(a.K(O, this.mWindowNoTitle, " }")); } obtainStyledAttributes.recycle(); throw new IllegalStateException("You need to use a Theme.AppCompat theme (or descendant) with this activity."); diff --git a/app/src/main/java/androidx/appcompat/app/AppCompatViewInflater.java b/app/src/main/java/androidx/appcompat/app/AppCompatViewInflater.java index 78cd61efb2..a6b086b048 100644 --- a/app/src/main/java/androidx/appcompat/app/AppCompatViewInflater.java +++ b/app/src/main/java/androidx/appcompat/app/AppCompatViewInflater.java @@ -69,17 +69,17 @@ public class AppCompatViewInflater { if (id2 == -1) { str = ""; } else { - StringBuilder P = a.P(" with id '"); - P.append(this.mHostView.getContext().getResources().getResourceEntryName(id2)); - P.append("'"); - str = P.toString(); + StringBuilder O = a.O(" with id '"); + O.append(this.mHostView.getContext().getResources().getResourceEntryName(id2)); + O.append("'"); + str = O.toString(); } - StringBuilder P2 = a.P("Could not find method "); - P2.append(this.mMethodName); - P2.append("(View) in a parent or ancestor Context for android:onClick attribute defined on view "); - P2.append(this.mHostView.getClass()); - P2.append(str); - throw new IllegalStateException(P2.toString()); + StringBuilder O2 = a.O("Could not find method "); + O2.append(this.mMethodName); + O2.append("(View) in a parent or ancestor Context for android:onClick attribute defined on view "); + O2.append(this.mHostView.getClass()); + O2.append(str); + throw new IllegalStateException(O2.toString()); } @Override // android.view.View.OnClickListener diff --git a/app/src/main/java/androidx/appcompat/app/TwilightManager.java b/app/src/main/java/androidx/appcompat/app/TwilightManager.java index 628a42f1e5..b53d0180dc 100644 --- a/app/src/main/java/androidx/appcompat/app/TwilightManager.java +++ b/app/src/main/java/androidx/appcompat/app/TwilightManager.java @@ -9,6 +9,7 @@ import androidx.annotation.NonNull; import androidx.annotation.RequiresPermission; import androidx.annotation.VisibleForTesting; import androidx.core.content.PermissionChecker; +import com.discord.models.domain.ModelAuditLogEntry; import java.util.Calendar; public class TwilightManager { private static final int SUNRISE = 6; @@ -37,7 +38,7 @@ public class TwilightManager { public static TwilightManager getInstance(@NonNull Context context) { if (sInstance == null) { Context applicationContext = context.getApplicationContext(); - sInstance = new TwilightManager(applicationContext, (LocationManager) applicationContext.getSystemService("location")); + sInstance = new TwilightManager(applicationContext, (LocationManager) applicationContext.getSystemService(ModelAuditLogEntry.CHANGE_KEY_LOCATION)); } return sInstance; } diff --git a/app/src/main/java/androidx/appcompat/app/WindowDecorActionBar.java b/app/src/main/java/androidx/appcompat/app/WindowDecorActionBar.java index 48ed38520e..f63566b78e 100644 --- a/app/src/main/java/androidx/appcompat/app/WindowDecorActionBar.java +++ b/app/src/main/java/androidx/appcompat/app/WindowDecorActionBar.java @@ -509,9 +509,9 @@ public class WindowDecorActionBar extends ActionBar implements ActionBarOverlayL if (view instanceof Toolbar) { return ((Toolbar) view).getWrapper(); } - StringBuilder P = a.P("Can't make a decor toolbar out of "); - P.append(view != null ? view.getClass().getSimpleName() : "null"); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Can't make a decor toolbar out of "); + O.append(view != null ? view.getClass().getSimpleName() : "null"); + throw new IllegalStateException(O.toString()); } private void hideForActionMode() { diff --git a/app/src/main/java/androidx/appcompat/view/SupportMenuInflater.java b/app/src/main/java/androidx/appcompat/view/SupportMenuInflater.java index 22f767164b..de27fbfe27 100644 --- a/app/src/main/java/androidx/appcompat/view/SupportMenuInflater.java +++ b/app/src/main/java/androidx/appcompat/view/SupportMenuInflater.java @@ -57,9 +57,9 @@ public class SupportMenuInflater extends MenuInflater { try { this.mMethod = cls.getMethod(str, PARAM_TYPES); } catch (Exception e) { - StringBuilder V = a.V("Couldn't resolve menu item onClick handler ", str, " in class "); - V.append(cls.getName()); - InflateException inflateException = new InflateException(V.toString()); + StringBuilder U = a.U("Couldn't resolve menu item onClick handler ", str, " in class "); + U.append(cls.getName()); + InflateException inflateException = new InflateException(U.toString()); inflateException.initCause(e); throw inflateException; } diff --git a/app/src/main/java/androidx/appcompat/widget/ActionBarOverlayLayout.java b/app/src/main/java/androidx/appcompat/widget/ActionBarOverlayLayout.java index 0703d3fe23..150e5c19c1 100644 --- a/app/src/main/java/androidx/appcompat/widget/ActionBarOverlayLayout.java +++ b/app/src/main/java/androidx/appcompat/widget/ActionBarOverlayLayout.java @@ -219,9 +219,9 @@ public class ActionBarOverlayLayout extends ViewGroup implements DecorContentPar if (view instanceof Toolbar) { return ((Toolbar) view).getWrapper(); } - StringBuilder P = a.P("Can't make a decor toolbar out of "); - P.append(view.getClass().getSimpleName()); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Can't make a decor toolbar out of "); + O.append(view.getClass().getSimpleName()); + throw new IllegalStateException(O.toString()); } private void init(Context context) { diff --git a/app/src/main/java/androidx/appcompat/widget/ActivityChooserModel.java b/app/src/main/java/androidx/appcompat/widget/ActivityChooserModel.java index 339f46c6d4..1c086a6555 100644 --- a/app/src/main/java/androidx/appcompat/widget/ActivityChooserModel.java +++ b/app/src/main/java/androidx/appcompat/widget/ActivityChooserModel.java @@ -86,12 +86,12 @@ public class ActivityChooserModel extends DataSetObservable { @Override // java.lang.Object public String toString() { - StringBuilder U = a.U("[", "resolveInfo:"); - U.append(this.resolveInfo.toString()); - U.append("; weight:"); - U.append(new BigDecimal((double) this.weight)); - U.append("]"); - return U.toString(); + StringBuilder S = a.S("[", "resolveInfo:"); + S.append(this.resolveInfo.toString()); + S.append("; weight:"); + S.append(new BigDecimal((double) this.weight)); + S.append("]"); + return S.toString(); } } @@ -169,14 +169,14 @@ public class ActivityChooserModel extends DataSetObservable { } public String toString() { - StringBuilder U = a.U("[", "; activity:"); - U.append(this.activity); - U.append("; time:"); - U.append(this.time); - U.append("; weight:"); - U.append(new BigDecimal((double) this.weight)); - U.append("]"); - return U.toString(); + StringBuilder S = a.S("[", "; activity:"); + S.append(this.activity); + S.append("; time:"); + S.append(this.time); + S.append("; weight:"); + S.append(new BigDecimal((double) this.weight)); + S.append("]"); + return S.toString(); } } diff --git a/app/src/main/java/androidx/appcompat/widget/AppCompatTextViewAutoSizeHelper.java b/app/src/main/java/androidx/appcompat/widget/AppCompatTextViewAutoSizeHelper.java index 3da342b61b..4c1d9f6613 100644 --- a/app/src/main/java/androidx/appcompat/widget/AppCompatTextViewAutoSizeHelper.java +++ b/app/src/main/java/androidx/appcompat/widget/AppCompatTextViewAutoSizeHelper.java @@ -471,9 +471,9 @@ public class AppCompatTextViewAutoSizeHelper { } this.mAutoSizeTextSizesInPx = cleanupAutoSizePresetSizes(iArr2); if (!setupAutoSizeUniformPresetSizesConfiguration()) { - StringBuilder P = a.P("None of the preset sizes is valid: "); - P.append(Arrays.toString(iArr)); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("None of the preset sizes is valid: "); + O.append(Arrays.toString(iArr)); + throw new IllegalArgumentException(O.toString()); } } else { this.mHasPresetAutoSizeValues = false; diff --git a/app/src/main/java/androidx/appcompat/widget/LinearLayoutCompat.java b/app/src/main/java/androidx/appcompat/widget/LinearLayoutCompat.java index f4db3de415..203628ea1b 100644 --- a/app/src/main/java/androidx/appcompat/widget/LinearLayoutCompat.java +++ b/app/src/main/java/androidx/appcompat/widget/LinearLayoutCompat.java @@ -1263,10 +1263,10 @@ public class LinearLayoutCompat extends ViewGroup { public void setBaselineAlignedChildIndex(int i) { if (i < 0 || i >= getChildCount()) { - StringBuilder P = a.P("base aligned child index out of range (0, "); - P.append(getChildCount()); - P.append(")"); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("base aligned child index out of range (0, "); + O.append(getChildCount()); + O.append(")"); + throw new IllegalArgumentException(O.toString()); } this.mBaselineAlignedChildIndex = i; } diff --git a/app/src/main/java/androidx/appcompat/widget/ListPopupWindow.java b/app/src/main/java/androidx/appcompat/widget/ListPopupWindow.java index 8dc70f175e..9d4a3dcff3 100644 --- a/app/src/main/java/androidx/appcompat/widget/ListPopupWindow.java +++ b/app/src/main/java/androidx/appcompat/widget/ListPopupWindow.java @@ -312,9 +312,9 @@ public class ListPopupWindow implements ShowableListMenu { linearLayout.addView(view); linearLayout.addView(dropDownListView, layoutParams); } else if (i5 != 1) { - StringBuilder P = a.P("Invalid hint position "); - P.append(this.mPromptPosition); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("Invalid hint position "); + O.append(this.mPromptPosition); + Log.e(TAG, O.toString()); } else { linearLayout.addView(dropDownListView, layoutParams); linearLayout.addView(view); diff --git a/app/src/main/java/androidx/appcompat/widget/SearchView.java b/app/src/main/java/androidx/appcompat/widget/SearchView.java index c714cd598c..9dfc55d931 100644 --- a/app/src/main/java/androidx/appcompat/widget/SearchView.java +++ b/app/src/main/java/androidx/appcompat/widget/SearchView.java @@ -379,10 +379,10 @@ public class SearchView extends LinearLayoutCompat implements CollapsibleActionV @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("SearchView.SavedState{"); - P.append(Integer.toHexString(System.identityHashCode(this))); - P.append(" isIconified="); - return a.L(P, this.isIconified, "}"); + StringBuilder O = a.O("SearchView.SavedState{"); + O.append(Integer.toHexString(System.identityHashCode(this))); + O.append(" isIconified="); + return a.K(O, this.isIconified, "}"); } @Override // androidx.customview.view.AbsSavedState, android.os.Parcelable diff --git a/app/src/main/java/androidx/appcompat/widget/SuggestionsAdapter.java b/app/src/main/java/androidx/appcompat/widget/SuggestionsAdapter.java index 9bca3fdd99..dc1c1c4859 100644 --- a/app/src/main/java/androidx/appcompat/widget/SuggestionsAdapter.java +++ b/app/src/main/java/androidx/appcompat/widget/SuggestionsAdapter.java @@ -111,9 +111,9 @@ public class SuggestionsAdapter extends ResourceCursorAdapter implements View.On if (drawable != null) { return drawable; } - StringBuilder Q = a.Q("Invalid icon resource ", iconResource, " for "); - Q.append(componentName.flattenToShortString()); - Log.w(LOG_TAG, Q.toString()); + StringBuilder P = a.P("Invalid icon resource ", iconResource, " for "); + P.append(componentName.flattenToShortString()); + Log.w(LOG_TAG, P.toString()); return null; } catch (PackageManager.NameNotFoundException e) { Log.w(LOG_TAG, e.toString()); @@ -206,7 +206,7 @@ public class SuggestionsAdapter extends ResourceCursorAdapter implements View.On storeInIconCache(str, drawable2); return drawable2; } catch (Resources.NotFoundException unused2) { - a.l0("Icon resource not found: ", str, LOG_TAG); + a.k0("Icon resource not found: ", str, LOG_TAG); return null; } } diff --git a/app/src/main/java/androidx/arch/core/internal/SafeIterableMap.java b/app/src/main/java/androidx/arch/core/internal/SafeIterableMap.java index 7b40f5c352..06ae1ba470 100644 --- a/app/src/main/java/androidx/arch/core/internal/SafeIterableMap.java +++ b/app/src/main/java/androidx/arch/core/internal/SafeIterableMap.java @@ -319,15 +319,15 @@ public class SafeIterableMap implements Iterable> { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("["); + StringBuilder O = a.O("["); Iterator> it = iterator(); while (it.hasNext()) { - P.append(it.next().toString()); + O.append(it.next().toString()); if (it.hasNext()) { - P.append(", "); + O.append(", "); } } - P.append("]"); - return P.toString(); + O.append("]"); + return O.toString(); } } diff --git a/app/src/main/java/androidx/browser/browseractions/BrowserServiceFileProvider.java b/app/src/main/java/androidx/browser/browseractions/BrowserServiceFileProvider.java index 5b6b78876f..c3e8f69e5e 100644 --- a/app/src/main/java/androidx/browser/browseractions/BrowserServiceFileProvider.java +++ b/app/src/main/java/androidx/browser/browseractions/BrowserServiceFileProvider.java @@ -230,9 +230,9 @@ public final class BrowserServiceFileProvider extends FileProvider { @NonNull @UiThread public static ResolvableFuture saveBitmap(@NonNull Context context, @NonNull Bitmap bitmap, @NonNull String str, int i) { - StringBuilder U = a.U(str, "_"); - U.append(Integer.toString(i)); - String sb = U.toString(); + StringBuilder S = a.S(str, "_"); + S.append(Integer.toString(i)); + String sb = S.toString(); Uri generateUri = generateUri(context, sb); ResolvableFuture create = ResolvableFuture.create(); new FileSaveTask(context, sb, bitmap, generateUri, create).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, new String[0]); diff --git a/app/src/main/java/androidx/browser/trusted/ConnectionHolder.java b/app/src/main/java/androidx/browser/trusted/ConnectionHolder.java index ffcd00dc63..1ed95f1cfc 100644 --- a/app/src/main/java/androidx/browser/trusted/ConnectionHolder.java +++ b/app/src/main/java/androidx/browser/trusted/ConnectionHolder.java @@ -66,9 +66,9 @@ public class ConnectionHolder implements ServiceConnection { } else { throw this.mCancellationException; } - StringBuilder P = a.P("ConnectionHolder, state = "); - P.append(this.mState); - return P.toString(); + StringBuilder O = a.O("ConnectionHolder, state = "); + O.append(this.mState); + return O.toString(); } @MainThread diff --git a/app/src/main/java/androidx/browser/trusted/TrustedWebActivityServiceConnectionPool.java b/app/src/main/java/androidx/browser/trusted/TrustedWebActivityServiceConnectionPool.java index 1b9e419212..65a6564262 100644 --- a/app/src/main/java/androidx/browser/trusted/TrustedWebActivityServiceConnectionPool.java +++ b/app/src/main/java/androidx/browser/trusted/TrustedWebActivityServiceConnectionPool.java @@ -99,16 +99,16 @@ public final class TrustedWebActivityServiceConnectionPool { ResolveInfo resolveService = context.getPackageManager().resolveService(intent2, 131072); if (resolveService == null) { if (z2) { - a.l0("Could not find TWAService for ", str, TAG); + a.k0("Could not find TWAService for ", str, TAG); } return null; } if (z2) { - StringBuilder P = a.P("Found "); - P.append(resolveService.serviceInfo.name); - P.append(" to handle request for "); - P.append(uri); - Log.i(TAG, P.toString()); + StringBuilder O = a.O("Found "); + O.append(resolveService.serviceInfo.name); + O.append(" to handle request for "); + O.append(uri); + Log.i(TAG, O.toString()); } Intent intent3 = new Intent(); intent3.setComponent(new ComponentName(str, resolveService.serviceInfo.name)); diff --git a/app/src/main/java/androidx/concurrent/futures/AbstractResolvableFuture.java b/app/src/main/java/androidx/concurrent/futures/AbstractResolvableFuture.java index 96ece756d3..68201bf603 100644 --- a/app/src/main/java/androidx/concurrent/futures/AbstractResolvableFuture.java +++ b/app/src/main/java/androidx/concurrent/futures/AbstractResolvableFuture.java @@ -595,9 +595,9 @@ public abstract class AbstractResolvableFuture implements a { String timeUnit2 = timeUnit.toString(); Locale locale = Locale.ROOT; String lowerCase = timeUnit2.toLowerCase(locale); - StringBuilder S = c.d.b.a.a.S("Waited ", j, " "); - S.append(timeUnit.toString().toLowerCase(locale)); - String sb = S.toString(); + StringBuilder R = c.d.b.a.a.R("Waited ", j, " "); + R.append(timeUnit.toString().toLowerCase(locale)); + String sb = R.toString(); if (nanos + 1000 < 0) { String u = c.d.b.a.a.u(sb, " (plus "); long j2 = -nanos; @@ -649,15 +649,15 @@ public abstract class AbstractResolvableFuture implements a { public String pendingToString() { Object obj = this.value; if (obj instanceof SetFuture) { - return c.d.b.a.a.H(c.d.b.a.a.P("setFuture=["), userObjectToString(((SetFuture) obj).future), "]"); + return c.d.b.a.a.G(c.d.b.a.a.O("setFuture=["), userObjectToString(((SetFuture) obj).future), "]"); } if (!(this instanceof ScheduledFuture)) { return null; } - StringBuilder P = c.d.b.a.a.P("remaining delay=["); - P.append(((ScheduledFuture) this).getDelay(TimeUnit.MILLISECONDS)); - P.append(" ms]"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("remaining delay=["); + O.append(((ScheduledFuture) this).getDelay(TimeUnit.MILLISECONDS)); + O.append(" ms]"); + return O.toString(); } public boolean set(@Nullable V v) { @@ -725,9 +725,9 @@ public abstract class AbstractResolvableFuture implements a { try { str = pendingToString(); } catch (RuntimeException e) { - StringBuilder P = c.d.b.a.a.P("Exception thrown from implementation: "); - P.append(e.getClass()); - str = P.toString(); + StringBuilder O = c.d.b.a.a.O("Exception thrown from implementation: "); + O.append(e.getClass()); + str = O.toString(); } if (str != null && !str.isEmpty()) { sb.append("PENDING, info=["); diff --git a/app/src/main/java/androidx/concurrent/futures/CallbackToFutureAdapter.java b/app/src/main/java/androidx/concurrent/futures/CallbackToFutureAdapter.java index d608ae0f37..4e842b2718 100644 --- a/app/src/main/java/androidx/concurrent/futures/CallbackToFutureAdapter.java +++ b/app/src/main/java/androidx/concurrent/futures/CallbackToFutureAdapter.java @@ -33,9 +33,9 @@ public final class CallbackToFutureAdapter { ResolvableFuture resolvableFuture; SafeFuture safeFuture = this.future; if (safeFuture != null && !safeFuture.isDone()) { - StringBuilder P = a.P("The completer object was garbage collected - this future would otherwise never complete. The tag was: "); - P.append(this.tag); - safeFuture.setException(new FutureGarbageCollectedException(P.toString())); + StringBuilder O = a.O("The completer object was garbage collected - this future would otherwise never complete. The tag was: "); + O.append(this.tag); + safeFuture.setException(new FutureGarbageCollectedException(O.toString())); } if (!this.attemptedSetting && (resolvableFuture = this.cancellationFuture) != null) { resolvableFuture.set(null); @@ -119,10 +119,10 @@ public final class CallbackToFutureAdapter { if (completer == null) { return "Completer object has been garbage collected, future will fail soon"; } - StringBuilder P = a.P("tag=["); - P.append(completer.tag); - P.append("]"); - return P.toString(); + StringBuilder O = a.O("tag=["); + O.append(completer.tag); + O.append("]"); + return O.toString(); } } diff --git a/app/src/main/java/androidx/constraintlayout/motion/utils/Easing.java b/app/src/main/java/androidx/constraintlayout/motion/utils/Easing.java index 30d717dbb3..447151a602 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/utils/Easing.java +++ b/app/src/main/java/androidx/constraintlayout/motion/utils/Easing.java @@ -169,9 +169,9 @@ public class Easing { case 3: return new CubicEasing(STANDARD); default: - StringBuilder P = a.P("transitionEasing syntax error syntax:transitionEasing=\"cubic(1.0,0.5,0.0,0.6)\" or "); - P.append(Arrays.toString(NAMED_EASING)); - Log.e("ConstraintSet", P.toString()); + StringBuilder O = a.O("transitionEasing syntax error syntax:transitionEasing=\"cubic(1.0,0.5,0.0,0.6)\" or "); + O.append(Arrays.toString(NAMED_EASING)); + Log.e("ConstraintSet", O.toString()); return sDefault; } } diff --git a/app/src/main/java/androidx/constraintlayout/motion/utils/Oscillator.java b/app/src/main/java/androidx/constraintlayout/motion/utils/Oscillator.java index b289dd2810..04545b9cc0 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/utils/Oscillator.java +++ b/app/src/main/java/androidx/constraintlayout/motion/utils/Oscillator.java @@ -175,10 +175,10 @@ public class Oscillator { } public String toString() { - StringBuilder P = a.P("pos ="); - P.append(Arrays.toString(this.mPosition)); - P.append(" period="); - P.append(Arrays.toString(this.mPeriod)); - return P.toString(); + StringBuilder O = a.O("pos ="); + O.append(Arrays.toString(this.mPosition)); + O.append(" period="); + O.append(Arrays.toString(this.mPeriod)); + return O.toString(); } } diff --git a/app/src/main/java/androidx/constraintlayout/motion/utils/StopLogic.java b/app/src/main/java/androidx/constraintlayout/motion/utils/StopLogic.java index 866c6ef369..b2d379f5df 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/utils/StopLogic.java +++ b/app/src/main/java/androidx/constraintlayout/motion/utils/StopLogic.java @@ -156,9 +156,9 @@ public class StopLogic extends MotionInterpolator { } public void debug(String str, String str2, float f) { - StringBuilder U = a.U(str2, " ===== "); - U.append(this.mType); - Log.v(str, U.toString()); + StringBuilder S = a.S(str2, " ===== "); + S.append(this.mType); + Log.v(str, S.toString()); StringBuilder sb = new StringBuilder(); sb.append(str2); sb.append(this.mBackwards ? "backwards" : "forward "); @@ -169,22 +169,22 @@ public class StopLogic extends MotionInterpolator { Log.v(str, sb.toString()); Log.v(str, str2 + " dur " + this.mStage1Duration + " vel " + this.mStage1Velocity + " pos " + this.mStage1EndPosition); if (this.mNumberOfStages > 1) { - StringBuilder U2 = a.U(str2, " dur "); - U2.append(this.mStage2Duration); - U2.append(" vel "); - U2.append(this.mStage2Velocity); - U2.append(" pos "); - U2.append(this.mStage2EndPosition); - Log.v(str, U2.toString()); + StringBuilder S2 = a.S(str2, " dur "); + S2.append(this.mStage2Duration); + S2.append(" vel "); + S2.append(this.mStage2Velocity); + S2.append(" pos "); + S2.append(this.mStage2EndPosition); + Log.v(str, S2.toString()); } if (this.mNumberOfStages > 2) { - StringBuilder U3 = a.U(str2, " dur "); - U3.append(this.mStage3Duration); - U3.append(" vel "); - U3.append(this.mStage3Velocity); - U3.append(" pos "); - U3.append(this.mStage3EndPosition); - Log.v(str, U3.toString()); + StringBuilder S3 = a.S(str2, " dur "); + S3.append(this.mStage3Duration); + S3.append(" vel "); + S3.append(this.mStage3Velocity); + S3.append(" pos "); + S3.append(this.mStage3EndPosition); + Log.v(str, S3.toString()); } float f2 = this.mStage1Duration; if (f <= f2) { diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/Debug.java b/app/src/main/java/androidx/constraintlayout/motion/widget/Debug.java index b9738899af..3cf1537fa4 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/Debug.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/Debug.java @@ -13,18 +13,18 @@ import java.lang.reflect.Modifier; public class Debug { public static void dumpLayoutParams(ViewGroup.LayoutParams layoutParams, String str) { StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1]; - StringBuilder P = a.P(".("); - P.append(stackTraceElement.getFileName()); - P.append(":"); - P.append(stackTraceElement.getLineNumber()); - P.append(") "); - P.append(str); - P.append(" "); - String sb = P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTraceElement.getFileName()); + O.append(":"); + O.append(stackTraceElement.getLineNumber()); + O.append(") "); + O.append(str); + O.append(" "); + String sb = O.toString(); PrintStream printStream = System.out; - StringBuilder V = a.V(" >>>>>>>>>>>>>>>>>>. dump ", sb, " "); - V.append(layoutParams.getClass().getName()); - printStream.println(V.toString()); + StringBuilder U = a.U(" >>>>>>>>>>>>>>>>>>. dump ", sb, " "); + U.append(layoutParams.getClass().getName()); + printStream.println(U.toString()); Field[] fields = layoutParams.getClass().getFields(); for (Field field : fields) { try { @@ -43,22 +43,22 @@ public class Debug { public static void dumpLayoutParams(ViewGroup viewGroup, String str) { StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1]; - StringBuilder P = a.P(".("); - P.append(stackTraceElement.getFileName()); - P.append(":"); - P.append(stackTraceElement.getLineNumber()); - P.append(") "); - P.append(str); - P.append(" "); - String sb = P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTraceElement.getFileName()); + O.append(":"); + O.append(stackTraceElement.getLineNumber()); + O.append(") "); + O.append(str); + O.append(" "); + String sb = O.toString(); int childCount = viewGroup.getChildCount(); System.out.println(str + " children " + childCount); for (int i = 0; i < childCount; i++) { View childAt = viewGroup.getChildAt(i); PrintStream printStream = System.out; - StringBuilder U = a.U(sb, " "); - U.append(getName(childAt)); - printStream.println(U.toString()); + StringBuilder S = a.S(sb, " "); + S.append(getName(childAt)); + printStream.println(S.toString()); ViewGroup.LayoutParams layoutParams = childAt.getLayoutParams(); Field[] fields = layoutParams.getClass().getFields(); for (Field field : fields) { @@ -77,18 +77,18 @@ public class Debug { public static void dumpPoc(Object obj) { StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1]; - StringBuilder P = a.P(".("); - P.append(stackTraceElement.getFileName()); - P.append(":"); - P.append(stackTraceElement.getLineNumber()); - P.append(")"); - String sb = P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTraceElement.getFileName()); + O.append(":"); + O.append(stackTraceElement.getLineNumber()); + O.append(")"); + String sb = O.toString(); Class cls = obj.getClass(); PrintStream printStream = System.out; - StringBuilder U = a.U(sb, "------------- "); - U.append(cls.getName()); - U.append(" --------------------"); - printStream.println(U.toString()); + StringBuilder S = a.S(sb, "------------- "); + S.append(cls.getName()); + S.append(" --------------------"); + printStream.println(S.toString()); Field[] fields = cls.getFields(); for (Field field : fields) { try { @@ -108,10 +108,10 @@ public class Debug { } } PrintStream printStream2 = System.out; - StringBuilder U2 = a.U(sb, "------------- "); - U2.append(cls.getSimpleName()); - U2.append(" --------------------"); - printStream2.println(U2.toString()); + StringBuilder S2 = a.S(sb, "------------- "); + S2.append(cls.getSimpleName()); + S2.append(" --------------------"); + printStream2.println(S2.toString()); } public static String getActionType(MotionEvent motionEvent) { @@ -130,44 +130,44 @@ public class Debug { public static String getCallFrom(int i) { StackTraceElement stackTraceElement = new Throwable().getStackTrace()[i + 2]; - StringBuilder P = a.P(".("); - P.append(stackTraceElement.getFileName()); - P.append(":"); - P.append(stackTraceElement.getLineNumber()); - P.append(")"); - return P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTraceElement.getFileName()); + O.append(":"); + O.append(stackTraceElement.getLineNumber()); + O.append(")"); + return O.toString(); } public static String getLoc() { StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1]; - StringBuilder P = a.P(".("); - P.append(stackTraceElement.getFileName()); - P.append(":"); - P.append(stackTraceElement.getLineNumber()); - P.append(") "); - P.append(stackTraceElement.getMethodName()); - P.append("()"); - return P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTraceElement.getFileName()); + O.append(":"); + O.append(stackTraceElement.getLineNumber()); + O.append(") "); + O.append(stackTraceElement.getMethodName()); + O.append("()"); + return O.toString(); } public static String getLocation() { StackTraceElement stackTraceElement = new Throwable().getStackTrace()[1]; - StringBuilder P = a.P(".("); - P.append(stackTraceElement.getFileName()); - P.append(":"); - P.append(stackTraceElement.getLineNumber()); - P.append(")"); - return P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTraceElement.getFileName()); + O.append(":"); + O.append(stackTraceElement.getLineNumber()); + O.append(")"); + return O.toString(); } public static String getLocation2() { StackTraceElement stackTraceElement = new Throwable().getStackTrace()[2]; - StringBuilder P = a.P(".("); - P.append(stackTraceElement.getFileName()); - P.append(":"); - P.append(stackTraceElement.getLineNumber()); - P.append(")"); - return P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTraceElement.getFileName()); + O.append(":"); + O.append(stackTraceElement.getLineNumber()); + O.append(")"); + return O.toString(); } public static String getName(Context context, int i) { @@ -224,13 +224,13 @@ public class Debug { String str3 = " "; for (int i2 = 1; i2 <= min; i2++) { StackTraceElement stackTraceElement = stackTrace[i2]; - StringBuilder P = a.P(".("); - P.append(stackTrace[i2].getFileName()); - P.append(":"); - P.append(stackTrace[i2].getLineNumber()); - P.append(") "); - P.append(stackTrace[i2].getMethodName()); - String sb = P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTrace[i2].getFileName()); + O.append(":"); + O.append(stackTrace[i2].getLineNumber()); + O.append(") "); + O.append(stackTrace[i2].getMethodName()); + String sb = O.toString(); str3 = a.u(str3, " "); Log.v(str, str2 + str3 + sb + str3); } @@ -242,12 +242,12 @@ public class Debug { String str2 = " "; for (int i2 = 1; i2 <= min; i2++) { StackTraceElement stackTraceElement = stackTrace[i2]; - StringBuilder P = a.P(".("); - P.append(stackTrace[i2].getFileName()); - P.append(":"); - P.append(stackTrace[i2].getLineNumber()); - P.append(") "); - String sb = P.toString(); + StringBuilder O = a.O(".("); + O.append(stackTrace[i2].getFileName()); + O.append(":"); + O.append(stackTrace[i2].getLineNumber()); + O.append(") "); + String sb = O.toString(); str2 = a.u(str2, " "); PrintStream printStream = System.out; printStream.println(str + str2 + sb + str2); diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyAttributes.java b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyAttributes.java index d7aab1345b..ff30042e1b 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyAttributes.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyAttributes.java @@ -95,11 +95,11 @@ public class KeyAttributes extends Key { case 3: case 11: default: - StringBuilder P = a.P("unused attribute 0x"); - P.append(Integer.toHexString(index)); - P.append(" "); - P.append(mAttrMap.get(index)); - Log.e("KeyAttribute", P.toString()); + StringBuilder O = a.O("unused attribute 0x"); + O.append(Integer.toHexString(index)); + O.append(" "); + O.append(mAttrMap.get(index)); + Log.e("KeyAttribute", O.toString()); break; case 4: KeyAttributes.access$202(keyAttributes, typedArray.getFloat(index, KeyAttributes.access$200(keyAttributes))); diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycle.java b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycle.java index 2d32207d75..3af1224633 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycle.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycle.java @@ -176,11 +176,11 @@ public class KeyCycle extends Key { KeyCycle.access$1802(keyCycle, typedArray.getFloat(index, KeyCycle.access$1800(keyCycle))); break; default: - StringBuilder P = a.P("unused attribute 0x"); - P.append(Integer.toHexString(index)); - P.append(" "); - P.append(mAttrMap.get(index)); - Log.e("KeyCycle", P.toString()); + StringBuilder O = a.O("unused attribute 0x"); + O.append(Integer.toHexString(index)); + O.append(" "); + O.append(mAttrMap.get(index)); + Log.e("KeyCycle", O.toString()); break; } } @@ -368,10 +368,10 @@ public class KeyCycle extends Key { @Override // androidx.constraintlayout.motion.widget.Key public void addValues(HashMap hashMap) { - StringBuilder P = a.P("add "); - P.append(hashMap.size()); - P.append(" values"); - Debug.logStack("KeyCycle", P.toString(), 2); + StringBuilder O = a.O("add "); + O.append(hashMap.size()); + O.append(" values"); + Debug.logStack("KeyCycle", O.toString(), 2); for (String str : hashMap.keySet()) { SplineSet splineSet = hashMap.get(str); str.hashCode(); diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycleOscillator.java b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycleOscillator.java index 05da93cdba..0456aaa676 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycleOscillator.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyCycleOscillator.java @@ -88,9 +88,9 @@ public abstract class KeyCycleOscillator { if (constraintAttribute.getType() == attributeType) { return constraintAttribute; } - StringBuilder P = a.P("ConstraintAttribute is already a "); - P.append(constraintAttribute.getType().name()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("ConstraintAttribute is already a "); + O.append(constraintAttribute.getType().name()); + throw new IllegalArgumentException(O.toString()); } ConstraintAttribute constraintAttribute2 = new ConstraintAttribute(str, attributeType); this.mCustomConstraints.put(str, constraintAttribute2); @@ -593,12 +593,12 @@ public abstract class KeyCycleOscillator { Iterator it = this.mWavePoints.iterator(); while (it.hasNext()) { WavePoint next = it.next(); - StringBuilder U = a.U(str, "["); - U.append(next.mPosition); - U.append(" , "); - U.append(decimalFormat.format((double) next.mValue)); - U.append("] "); - str = U.toString(); + StringBuilder S = a.S(str, "["); + S.append(next.mPosition); + S.append(" , "); + S.append(decimalFormat.format((double) next.mValue)); + S.append("] "); + str = S.toString(); } return str; } diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyPosition.java b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyPosition.java index 8296f595b4..77ffcfc82e 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyPosition.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyPosition.java @@ -138,11 +138,11 @@ public class KeyPosition extends KeyPositionBase { keyPosition.mPercentHeight = typedArray.getFloat(index, keyPosition.mPercentHeight); break; default: - StringBuilder P = a.P("unused attribute 0x"); - P.append(Integer.toHexString(index)); - P.append(" "); - P.append(mAttrMap.get(index)); - Log.e("KeyPosition", P.toString()); + StringBuilder O = a.O("unused attribute 0x"); + O.append(Integer.toHexString(index)); + O.append(" "); + O.append(mAttrMap.get(index)); + Log.e("KeyPosition", O.toString()); break; } } diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTimeCycle.java b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTimeCycle.java index f19c0e9562..2c80683adc 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTimeCycle.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTimeCycle.java @@ -97,11 +97,11 @@ public class KeyTimeCycle extends Key { case 3: case 11: default: - StringBuilder P = a.P("unused attribute 0x"); - P.append(Integer.toHexString(index)); - P.append(" "); - P.append(mAttrMap.get(index)); - Log.e("KeyTimeCycle", P.toString()); + StringBuilder O = a.O("unused attribute 0x"); + O.append(Integer.toHexString(index)); + O.append(" "); + O.append(mAttrMap.get(index)); + Log.e("KeyTimeCycle", O.toString()); break; case 4: KeyTimeCycle.access$202(keyTimeCycle, typedArray.getFloat(index, KeyTimeCycle.access$200(keyTimeCycle))); diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTrigger.java b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTrigger.java index e642a28509..08b86cd800 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTrigger.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/KeyTrigger.java @@ -118,11 +118,11 @@ public class KeyTrigger extends Key { KeyTrigger.access$702(keyTrigger, typedArray.getResourceId(index, KeyTrigger.access$700(keyTrigger))); break; } - StringBuilder P = a.P("unused attribute 0x"); - P.append(Integer.toHexString(index)); - P.append(" "); - P.append(mAttrMap.get(index)); - Log.e("KeyTrigger", P.toString()); + StringBuilder O = a.O("unused attribute 0x"); + O.append(Integer.toHexString(index)); + O.append(" "); + O.append(mAttrMap.get(index)); + Log.e("KeyTrigger", O.toString()); } } } @@ -266,13 +266,13 @@ public class KeyTrigger extends Key { try { this.mFireNegativeCross = view.getClass().getMethod(this.mNegativeCross, new Class[0]); } catch (NoSuchMethodException unused) { - StringBuilder P = a.P("Could not find method \""); - P.append(this.mNegativeCross); - P.append("\"on class "); - P.append(view.getClass().getSimpleName()); - P.append(" "); - P.append(Debug.getName(view)); - Log.e("KeyTrigger", P.toString()); + StringBuilder O = a.O("Could not find method \""); + O.append(this.mNegativeCross); + O.append("\"on class "); + O.append(view.getClass().getSimpleName()); + O.append(" "); + O.append(Debug.getName(view)); + Log.e("KeyTrigger", O.toString()); } } this.mFireNegativeCross.invoke(view, new Object[0]); @@ -282,13 +282,13 @@ public class KeyTrigger extends Key { try { this.mFirePositiveCross = view.getClass().getMethod(this.mPositiveCross, new Class[0]); } catch (NoSuchMethodException unused2) { - StringBuilder P2 = a.P("Could not find method \""); - P2.append(this.mPositiveCross); - P2.append("\"on class "); - P2.append(view.getClass().getSimpleName()); - P2.append(" "); - P2.append(Debug.getName(view)); - Log.e("KeyTrigger", P2.toString()); + StringBuilder O2 = a.O("Could not find method \""); + O2.append(this.mPositiveCross); + O2.append("\"on class "); + O2.append(view.getClass().getSimpleName()); + O2.append(" "); + O2.append(Debug.getName(view)); + Log.e("KeyTrigger", O2.toString()); } } this.mFirePositiveCross.invoke(view, new Object[0]); @@ -298,26 +298,26 @@ public class KeyTrigger extends Key { try { this.mFireCross = view.getClass().getMethod(this.mCross, new Class[0]); } catch (NoSuchMethodException unused3) { - StringBuilder P3 = a.P("Could not find method \""); - P3.append(this.mCross); - P3.append("\"on class "); - P3.append(view.getClass().getSimpleName()); - P3.append(" "); - P3.append(Debug.getName(view)); - Log.e("KeyTrigger", P3.toString()); + StringBuilder O3 = a.O("Could not find method \""); + O3.append(this.mCross); + O3.append("\"on class "); + O3.append(view.getClass().getSimpleName()); + O3.append(" "); + O3.append(Debug.getName(view)); + Log.e("KeyTrigger", O3.toString()); } } try { this.mFireCross.invoke(view, new Object[0]); return; } catch (Exception unused4) { - StringBuilder P4 = a.P("Exception in call \""); - P4.append(this.mCross); - P4.append("\"on class "); - P4.append(view.getClass().getSimpleName()); - P4.append(" "); - P4.append(Debug.getName(view)); - Log.e("KeyTrigger", P4.toString()); + StringBuilder O4 = a.O("Exception in call \""); + O4.append(this.mCross); + O4.append("\"on class "); + O4.append(view.getClass().getSimpleName()); + O4.append(" "); + O4.append(Debug.getName(view)); + Log.e("KeyTrigger", O4.toString()); return; } } else { @@ -408,26 +408,26 @@ public class KeyTrigger extends Key { try { this.mFireNegativeCross.invoke(view, new Object[0]); } catch (Exception unused5) { - StringBuilder P5 = a.P("Exception in call \""); - P5.append(this.mNegativeCross); - P5.append("\"on class "); - P5.append(view.getClass().getSimpleName()); - P5.append(" "); - P5.append(Debug.getName(view)); - Log.e("KeyTrigger", P5.toString()); + StringBuilder O5 = a.O("Exception in call \""); + O5.append(this.mNegativeCross); + O5.append("\"on class "); + O5.append(view.getClass().getSimpleName()); + O5.append(" "); + O5.append(Debug.getName(view)); + Log.e("KeyTrigger", O5.toString()); } if (this.mFirePositiveCross == null) { } try { this.mFirePositiveCross.invoke(view, new Object[0]); } catch (Exception unused6) { - StringBuilder P6 = a.P("Exception in call \""); - P6.append(this.mPositiveCross); - P6.append("\"on class "); - P6.append(view.getClass().getSimpleName()); - P6.append(" "); - P6.append(Debug.getName(view)); - Log.e("KeyTrigger", P6.toString()); + StringBuilder O6 = a.O("Exception in call \""); + O6.append(this.mPositiveCross); + O6.append("\"on class "); + O6.append(view.getClass().getSimpleName()); + O6.append(" "); + O6.append(Debug.getName(view)); + Log.e("KeyTrigger", O6.toString()); } if (!z4) { } diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/MotionController.java b/app/src/main/java/androidx/constraintlayout/motion/widget/MotionController.java index 7988c33e1b..8ddda9d2e0 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/MotionController.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/MotionController.java @@ -174,10 +174,10 @@ public class MotionController { private void insertKey(MotionPaths motionPaths) { int binarySearch = Collections.binarySearch(this.mMotionPaths, motionPaths); if (binarySearch == 0) { - StringBuilder P = a.P(" KeyPath positon \""); - P.append(motionPaths.position); - P.append("\" outside of range"); - Log.e(TAG, P.toString()); + StringBuilder O = a.O(" KeyPath positon \""); + O.append(motionPaths.position); + O.append("\" outside of range"); + Log.e(TAG, O.toString()); } this.mMotionPaths.add((-binarySearch) - 1, motionPaths); } @@ -1154,11 +1154,11 @@ public class MotionController { break; } if (iArr4[i15] < MotionPaths.names.length) { - String H = a.H(new StringBuilder(), MotionPaths.names[this.mInterpolateVariables[i15]], " ["); + String G = a.G(new StringBuilder(), MotionPaths.names[this.mInterpolateVariables[i15]], " ["); for (int i16 = 0; i16 < size; i16++) { - StringBuilder P = a.P(H); - P.append(dArr[i16][i15]); - H = P.toString(); + StringBuilder O = a.O(G); + O.append(dArr[i16][i15]); + G = O.toString(); } } i15++; @@ -1242,14 +1242,14 @@ public class MotionController { } public String toString() { - StringBuilder P = a.P(" start: x: "); - P.append(this.mStartMotionPath.f21x); - P.append(" y: "); - P.append(this.mStartMotionPath.f22y); - P.append(" end: x: "); - P.append(this.mEndMotionPath.f21x); - P.append(" y: "); - P.append(this.mEndMotionPath.f22y); - return P.toString(); + StringBuilder O = a.O(" start: x: "); + O.append(this.mStartMotionPath.f21x); + O.append(" y: "); + O.append(this.mStartMotionPath.f22y); + O.append(" end: x: "); + O.append(this.mEndMotionPath.f21x); + O.append(" y: "); + O.append(this.mEndMotionPath.f22y); + return O.toString(); } } diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/MotionLayout.java b/app/src/main/java/androidx/constraintlayout/motion/widget/MotionLayout.java index fc2ff42221..5129e1f6a6 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/MotionLayout.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/MotionLayout.java @@ -321,15 +321,15 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar float max = Math.max(f4, f6); float min2 = f - Math.min(f3, f5); float max2 = Math.max(f4, f6) - f2; - StringBuilder P = a.P(""); - P.append(((float) ((int) (((double) ((min2 * 100.0f) / Math.abs(f5 - f3))) + 0.5d))) / 100.0f); - String sb = P.toString(); + StringBuilder O = a.O(""); + O.append(((float) ((int) (((double) ((min2 * 100.0f) / Math.abs(f5 - f3))) + 0.5d))) / 100.0f); + String sb = O.toString(); getTextBounds(sb, this.mTextPaint); canvas.drawText(sb, ((min2 / 2.0f) - ((float) (this.mBounds.width() / 2))) + min, f2 - 20.0f, this.mTextPaint); canvas.drawLine(f, f2, Math.min(f3, f5), f2, this.mPaintGraph); - StringBuilder P2 = a.P(""); - P2.append(((float) ((int) (((double) ((max2 * 100.0f) / Math.abs(f6 - f4))) + 0.5d))) / 100.0f); - String sb2 = P2.toString(); + StringBuilder O2 = a.O(""); + O2.append(((float) ((int) (((double) ((max2 * 100.0f) / Math.abs(f6 - f4))) + 0.5d))) / 100.0f); + String sb2 = O2.toString(); getTextBounds(sb2, this.mTextPaint); canvas.drawText(sb2, f + 5.0f, max - ((max2 / 2.0f) - ((float) (this.mBounds.height() / 2))), this.mTextPaint); canvas.drawLine(f, f2, f, Math.max(f4, f6), this.mPaintGraph); @@ -356,24 +356,24 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar path.moveTo(f, f2); path.lineTo(f10, f11); float hypot2 = (float) Math.hypot((double) (f10 - f), (double) (f11 - f2)); - StringBuilder P = a.P(""); - P.append(((float) ((int) ((hypot2 * 100.0f) / hypot))) / 100.0f); - String sb = P.toString(); + StringBuilder O = a.O(""); + O.append(((float) ((int) ((hypot2 * 100.0f) / hypot))) / 100.0f); + String sb = O.toString(); getTextBounds(sb, this.mTextPaint); canvas.drawTextOnPath(sb, path, (hypot2 / 2.0f) - ((float) (this.mBounds.width() / 2)), -20.0f, this.mTextPaint); canvas.drawLine(f, f2, f10, f11, this.mPaintGraph); } private void drawPathScreenTicks(Canvas canvas, float f, float f2, int i, int i2) { - StringBuilder P = a.P(""); - P.append(((float) ((int) (((double) (((f - ((float) (i / 2))) * 100.0f) / ((float) (MotionLayout.this.getWidth() - i)))) + 0.5d))) / 100.0f); - String sb = P.toString(); + StringBuilder O = a.O(""); + O.append(((float) ((int) (((double) (((f - ((float) (i / 2))) * 100.0f) / ((float) (MotionLayout.this.getWidth() - i)))) + 0.5d))) / 100.0f); + String sb = O.toString(); getTextBounds(sb, this.mTextPaint); canvas.drawText(sb, ((f / 2.0f) - ((float) (this.mBounds.width() / 2))) + 0.0f, f2 - 20.0f, this.mTextPaint); canvas.drawLine(f, f2, Math.min(0.0f, 1.0f), f2, this.mPaintGraph); - StringBuilder P2 = a.P(""); - P2.append(((float) ((int) (((double) (((f2 - ((float) (i2 / 2))) * 100.0f) / ((float) (MotionLayout.this.getHeight() - i2)))) + 0.5d))) / 100.0f); - String sb2 = P2.toString(); + StringBuilder O2 = a.O(""); + O2.append(((float) ((int) (((double) (((f2 - ((float) (i2 / 2))) * 100.0f) / ((float) (MotionLayout.this.getHeight() - i2)))) + 0.5d))) / 100.0f); + String sb2 = O2.toString(); getTextBounds(sb2, this.mTextPaint); canvas.drawText(sb2, f + 5.0f, 0.0f - ((f2 / 2.0f) - ((float) (this.mBounds.height() / 2))), this.mTextPaint); canvas.drawLine(f, f2, f, Math.max(0.0f, 1.0f), this.mPaintGraph); @@ -558,34 +558,34 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar } private void debugLayout(String str, ConstraintWidgetContainer constraintWidgetContainer) { - StringBuilder U = a.U(str, " "); - U.append(Debug.getName((View) constraintWidgetContainer.getCompanionWidget())); - String sb = U.toString(); + StringBuilder S = a.S(str, " "); + S.append(Debug.getName((View) constraintWidgetContainer.getCompanionWidget())); + String sb = S.toString(); Log.v(MotionLayout.TAG, sb + " ========= " + constraintWidgetContainer); int size = constraintWidgetContainer.getChildren().size(); for (int i = 0; i < size; i++) { String str2 = sb + "[" + i + "] "; ConstraintWidget constraintWidget = constraintWidgetContainer.getChildren().get(i); - StringBuilder P = a.P(""); + StringBuilder O = a.O(""); String str3 = "_"; - P.append(constraintWidget.mTop.mTarget != null ? ExifInterface.GPS_DIRECTION_TRUE : str3); - StringBuilder P2 = a.P(P.toString()); - P2.append(constraintWidget.mBottom.mTarget != null ? "B" : str3); - StringBuilder P3 = a.P(P2.toString()); - P3.append(constraintWidget.mLeft.mTarget != null ? "L" : str3); - StringBuilder P4 = a.P(P3.toString()); + O.append(constraintWidget.mTop.mTarget != null ? ExifInterface.GPS_DIRECTION_TRUE : str3); + StringBuilder O2 = a.O(O.toString()); + O2.append(constraintWidget.mBottom.mTarget != null ? "B" : str3); + StringBuilder O3 = a.O(O2.toString()); + O3.append(constraintWidget.mLeft.mTarget != null ? "L" : str3); + StringBuilder O4 = a.O(O3.toString()); if (constraintWidget.mRight.mTarget != null) { str3 = "R"; } - P4.append(str3); - String sb2 = P4.toString(); + O4.append(str3); + String sb2 = O4.toString(); View view = (View) constraintWidget.getCompanionWidget(); String name = Debug.getName(view); if (view instanceof TextView) { - StringBuilder U2 = a.U(name, "("); - U2.append((Object) ((TextView) view).getText()); - U2.append(")"); - name = U2.toString(); + StringBuilder S2 = a.S(name, "("); + S2.append((Object) ((TextView) view).getText()); + S2.append(")"); + name = S2.toString(); } Log.v(MotionLayout.TAG, str2 + " " + name + " " + constraintWidget + " " + sb2); } @@ -593,35 +593,35 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar } private void debugLayoutParam(String str, ConstraintLayout.LayoutParams layoutParams) { - StringBuilder P = a.P(" "); - P.append(layoutParams.startToStart != -1 ? "SS" : "__"); - StringBuilder P2 = a.P(P.toString()); + StringBuilder O = a.O(" "); + O.append(layoutParams.startToStart != -1 ? "SS" : "__"); + StringBuilder O2 = a.O(O.toString()); String str2 = "|__"; - P2.append(layoutParams.startToEnd != -1 ? "|SE" : str2); - StringBuilder P3 = a.P(P2.toString()); - P3.append(layoutParams.endToStart != -1 ? "|ES" : str2); - StringBuilder P4 = a.P(P3.toString()); - P4.append(layoutParams.endToEnd != -1 ? "|EE" : str2); - StringBuilder P5 = a.P(P4.toString()); - P5.append(layoutParams.leftToLeft != -1 ? "|LL" : str2); - StringBuilder P6 = a.P(P5.toString()); - P6.append(layoutParams.leftToRight != -1 ? "|LR" : str2); - StringBuilder P7 = a.P(P6.toString()); - P7.append(layoutParams.rightToLeft != -1 ? "|RL" : str2); - StringBuilder P8 = a.P(P7.toString()); - P8.append(layoutParams.rightToRight != -1 ? "|RR" : str2); - StringBuilder P9 = a.P(P8.toString()); - P9.append(layoutParams.topToTop != -1 ? "|TT" : str2); - StringBuilder P10 = a.P(P9.toString()); - P10.append(layoutParams.topToBottom != -1 ? "|TB" : str2); - StringBuilder P11 = a.P(P10.toString()); - P11.append(layoutParams.bottomToTop != -1 ? "|BT" : str2); - StringBuilder P12 = a.P(P11.toString()); + O2.append(layoutParams.startToEnd != -1 ? "|SE" : str2); + StringBuilder O3 = a.O(O2.toString()); + O3.append(layoutParams.endToStart != -1 ? "|ES" : str2); + StringBuilder O4 = a.O(O3.toString()); + O4.append(layoutParams.endToEnd != -1 ? "|EE" : str2); + StringBuilder O5 = a.O(O4.toString()); + O5.append(layoutParams.leftToLeft != -1 ? "|LL" : str2); + StringBuilder O6 = a.O(O5.toString()); + O6.append(layoutParams.leftToRight != -1 ? "|LR" : str2); + StringBuilder O7 = a.O(O6.toString()); + O7.append(layoutParams.rightToLeft != -1 ? "|RL" : str2); + StringBuilder O8 = a.O(O7.toString()); + O8.append(layoutParams.rightToRight != -1 ? "|RR" : str2); + StringBuilder O9 = a.O(O8.toString()); + O9.append(layoutParams.topToTop != -1 ? "|TT" : str2); + StringBuilder O10 = a.O(O9.toString()); + O10.append(layoutParams.topToBottom != -1 ? "|TB" : str2); + StringBuilder O11 = a.O(O10.toString()); + O11.append(layoutParams.bottomToTop != -1 ? "|BT" : str2); + StringBuilder O12 = a.O(O11.toString()); if (layoutParams.bottomToBottom != -1) { str2 = "|BB"; } - P12.append(str2); - String sb = P12.toString(); + O12.append(str2); + String sb = O12.toString(); Log.v(MotionLayout.TAG, str + sb); } @@ -629,50 +629,50 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar String str2; String str3; String str4; - StringBuilder P = a.P(" "); + StringBuilder O = a.O(" "); String str5 = "B"; String str6 = "__"; if (constraintWidget.mTop.mTarget != null) { - StringBuilder P2 = a.P(ExifInterface.GPS_DIRECTION_TRUE); - P2.append(constraintWidget.mTop.mTarget.mType == ConstraintAnchor.Type.TOP ? ExifInterface.GPS_DIRECTION_TRUE : str5); - str2 = P2.toString(); + StringBuilder O2 = a.O(ExifInterface.GPS_DIRECTION_TRUE); + O2.append(constraintWidget.mTop.mTarget.mType == ConstraintAnchor.Type.TOP ? ExifInterface.GPS_DIRECTION_TRUE : str5); + str2 = O2.toString(); } else { str2 = str6; } - P.append(str2); - StringBuilder P3 = a.P(P.toString()); + O.append(str2); + StringBuilder O3 = a.O(O.toString()); if (constraintWidget.mBottom.mTarget != null) { - StringBuilder P4 = a.P(str5); + StringBuilder O4 = a.O(str5); if (constraintWidget.mBottom.mTarget.mType == ConstraintAnchor.Type.TOP) { str5 = ExifInterface.GPS_DIRECTION_TRUE; } - P4.append(str5); - str3 = P4.toString(); + O4.append(str5); + str3 = O4.toString(); } else { str3 = str6; } - P3.append(str3); - StringBuilder P5 = a.P(P3.toString()); + O3.append(str3); + StringBuilder O5 = a.O(O3.toString()); String str7 = "R"; if (constraintWidget.mLeft.mTarget != null) { - StringBuilder P6 = a.P("L"); - P6.append(constraintWidget.mLeft.mTarget.mType == ConstraintAnchor.Type.LEFT ? "L" : str7); - str4 = P6.toString(); + StringBuilder O6 = a.O("L"); + O6.append(constraintWidget.mLeft.mTarget.mType == ConstraintAnchor.Type.LEFT ? "L" : str7); + str4 = O6.toString(); } else { str4 = str6; } - P5.append(str4); - StringBuilder P7 = a.P(P5.toString()); + O5.append(str4); + StringBuilder O7 = a.O(O5.toString()); if (constraintWidget.mRight.mTarget != null) { - StringBuilder P8 = a.P(str7); + StringBuilder O8 = a.O(str7); if (constraintWidget.mRight.mTarget.mType == ConstraintAnchor.Type.LEFT) { str7 = "L"; } - P8.append(str7); - str6 = P8.toString(); + O8.append(str7); + str6 = O8.toString(); } - P7.append(str6); - String sb = P7.toString(); + O7.append(str6); + String sb = O7.toString(); Log.v(MotionLayout.TAG, str + sb + " --- " + constraintWidget); } @@ -1255,15 +1255,15 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar View childAt = getChildAt(i2); int id2 = childAt.getId(); if (id2 == -1) { - StringBuilder V = a.V("CHECK: ", name, " ALL VIEWS SHOULD HAVE ID's "); - V.append(childAt.getClass().getName()); - V.append(" does not!"); - Log.w(TAG, V.toString()); + StringBuilder U = a.U("CHECK: ", name, " ALL VIEWS SHOULD HAVE ID's "); + U.append(childAt.getClass().getName()); + U.append(" does not!"); + Log.w(TAG, U.toString()); } if (constraintSet.getConstraint(id2) == null) { - StringBuilder V2 = a.V("CHECK: ", name, " NO CONSTRAINTS for "); - V2.append(Debug.getName(childAt)); - Log.w(TAG, V2.toString()); + StringBuilder U2 = a.U("CHECK: ", name, " NO CONSTRAINTS for "); + U2.append(Debug.getName(childAt)); + Log.w(TAG, U2.toString()); } } int[] knownIds = constraintSet.getKnownIds(); @@ -1283,9 +1283,9 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar } private void checkStructure(MotionScene.Transition transition) { - StringBuilder P = a.P("CHECK: transition = "); - P.append(transition.debugString(getContext())); - Log.v(TAG, P.toString()); + StringBuilder O = a.O("CHECK: transition = "); + O.append(transition.debugString(getContext())); + Log.v(TAG, O.toString()); Log.v(TAG, "CHECK: transition.setDuration = " + transition.getDuration()); if (transition.getStartConstraintSetId() == transition.getEndConstraintSetId()) { Log.e(TAG, "CHECK: start and end constraint set should not be the same!"); @@ -1306,18 +1306,18 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar private void debugPos() { for (int i = 0; i < getChildCount(); i++) { View childAt = getChildAt(i); - StringBuilder P = a.P(" "); - P.append(Debug.getLocation()); - P.append(" "); - P.append(Debug.getName(this)); - P.append(" "); - P.append(Debug.getName(getContext(), this.mCurrentState)); - P.append(" "); - P.append(Debug.getName(childAt)); - P.append(childAt.getLeft()); - P.append(" "); - P.append(childAt.getTop()); - Log.v(TAG, P.toString()); + StringBuilder O = a.O(" "); + O.append(Debug.getLocation()); + O.append(" "); + O.append(Debug.getName(this)); + O.append(" "); + O.append(Debug.getName(getContext(), this.mCurrentState)); + O.append(" "); + O.append(Debug.getName(childAt)); + O.append(childAt.getLeft()); + O.append(" "); + O.append(childAt.getTop()); + Log.v(TAG, O.toString()); } } @@ -1647,14 +1647,14 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar } Paint paint = new Paint(); paint.setTextSize(42.0f); - StringBuilder P = a.P(this.mLastFps + " fps " + Debug.getState(this, this.mBeginState) + " -> "); - P.append(Debug.getState(this, this.mEndState)); - P.append(" (progress: "); - P.append(((float) ((int) (getProgress() * 1000.0f))) / 10.0f); - P.append(" ) state="); + StringBuilder O = a.O(this.mLastFps + " fps " + Debug.getState(this, this.mBeginState) + " -> "); + O.append(Debug.getState(this, this.mEndState)); + O.append(" (progress: "); + O.append(((float) ((int) (getProgress() * 1000.0f))) / 10.0f); + O.append(" ) state="); int i = this.mCurrentState; - P.append(i == -1 ? "undefined" : Debug.getState(this, i)); - String sb = P.toString(); + O.append(i == -1 ? "undefined" : Debug.getState(this, i)); + String sb = O.toString(); paint.setColor(ViewCompat.MEASURED_STATE_MASK); canvas.drawText(sb, 11.0f, (float) (getHeight() - 29), paint); paint.setColor(-7864184); @@ -1891,7 +1891,7 @@ public class MotionLayout extends ConstraintLayout implements NestedScrollingPar this.lastY = y2; return; } - a.l0("WARNING could not find view id ", viewById == null ? a.l("", i) : viewById.getContext().getResources().getResourceName(i), TAG); + a.k0("WARNING could not find view id ", viewById == null ? a.l("", i) : viewById.getContext().getResources().getResourceName(i), TAG); } public ConstraintSet getConstraintSet(int i) { diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/MotionScene.java b/app/src/main/java/androidx/constraintlayout/motion/widget/MotionScene.java index 937af91619..84e875e448 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/MotionScene.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/MotionScene.java @@ -147,9 +147,9 @@ public class MotionScene { motionLayout2 = motionLayout.findViewById(i2); } if (motionLayout2 == null) { - StringBuilder P = a.P("OnClick could not find id "); - P.append(this.mTargetId); - Log.e(MotionScene.TAG, P.toString()); + StringBuilder O = a.O("OnClick could not find id "); + O.append(this.mTargetId); + Log.e(MotionScene.TAG, O.toString()); return; } int access$100 = Transition.access$100(transition); @@ -242,9 +242,9 @@ public class MotionScene { if (i != -1) { View findViewById = motionLayout.findViewById(i); if (findViewById == null) { - StringBuilder P = a.P(" (*) could not find id "); - P.append(this.mTargetId); - Log.e(MotionScene.TAG, P.toString()); + StringBuilder O = a.O(" (*) could not find id "); + O.append(this.mTargetId); + Log.e(MotionScene.TAG, O.toString()); return; } findViewById.setOnClickListener(null); @@ -437,9 +437,9 @@ public class MotionScene { if (this.mConstraintSetEnd == -1) { return a.u(resourceEntryName, " -> null"); } - StringBuilder U = a.U(resourceEntryName, " -> "); - U.append(context.getResources().getResourceEntryName(this.mConstraintSetEnd)); - return U.toString(); + StringBuilder S = a.S(resourceEntryName, " -> "); + S.append(context.getResources().getResourceEntryName(this.mConstraintSetEnd)); + return S.toString(); } public int getAutoTransition() { @@ -789,9 +789,9 @@ public class MotionScene { ConstraintSet constraintSet = this.mConstraintSetMap.get(i); ConstraintSet constraintSet2 = this.mConstraintSetMap.get(i2); if (constraintSet2 == null) { - StringBuilder P = a.P("ERROR! invalid deriveConstraintsFrom: @id/"); - P.append(Debug.getName(this.mMotionLayout.getContext(), i2)); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("ERROR! invalid deriveConstraintsFrom: @id/"); + O.append(Debug.getName(this.mMotionLayout.getContext(), i2)); + Log.e(TAG, O.toString()); return; } constraintSet.readFallback(constraintSet2); @@ -956,9 +956,9 @@ public class MotionScene { PrintStream printStream = System.out; printStream.println("id " + i); PrintStream printStream2 = System.out; - StringBuilder P = a.P("size "); - P.append(this.mConstraintSetMap.size()); - printStream2.println(P.toString()); + StringBuilder O = a.O("size "); + O.append(this.mConstraintSetMap.size()); + printStream2.println(O.toString()); } StateSet stateSet = this.mStateSet; if (!(stateSet == null || (stateGetConstraintID = stateSet.stateGetConstraintID(i, i2, i3)) == -1)) { @@ -967,10 +967,10 @@ public class MotionScene { if (this.mConstraintSetMap.get(i) != null) { return this.mConstraintSetMap.get(i); } - StringBuilder P2 = a.P("Warning could not find ConstraintSet id/"); - P2.append(Debug.getName(this.mMotionLayout.getContext(), i)); - P2.append(" In MotionScene"); - Log.e(TAG, P2.toString()); + StringBuilder O2 = a.O("Warning could not find ConstraintSet id/"); + O2.append(Debug.getName(this.mMotionLayout.getContext(), i)); + O2.append(" In MotionScene"); + Log.e(TAG, O2.toString()); SparseArray sparseArray = this.mConstraintSetMap; return sparseArray.get(sparseArray.keyAt(0)); } @@ -980,9 +980,9 @@ public class MotionScene { PrintStream printStream = System.out; printStream.println("id " + str); PrintStream printStream2 = System.out; - StringBuilder P = a.P("size "); - P.append(this.mConstraintSetMap.size()); - printStream2.println(P.toString()); + StringBuilder O = a.O("size "); + O.append(this.mConstraintSetMap.size()); + printStream2.println(O.toString()); } for (int i = 0; i < this.mConstraintSetMap.size(); i++) { int keyAt = this.mConstraintSetMap.keyAt(i); diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/SplineSet.java b/app/src/main/java/androidx/constraintlayout/motion/widget/SplineSet.java index fc4ea52a56..5f7f4ec4fc 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/SplineSet.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/SplineSet.java @@ -454,12 +454,12 @@ public abstract class SplineSet { String str = this.mType; DecimalFormat decimalFormat = new DecimalFormat("##.##"); for (int i = 0; i < this.count; i++) { - StringBuilder U = a.U(str, "["); - U.append(this.mTimePoints[i]); - U.append(" , "); - U.append(decimalFormat.format((double) this.mValues[i])); - U.append("] "); - str = U.toString(); + StringBuilder S = a.S(str, "["); + S.append(this.mTimePoints[i]); + S.append(" , "); + S.append(decimalFormat.format((double) this.mValues[i])); + S.append("] "); + str = S.toString(); } return str; } diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/TimeCycleSplineSet.java b/app/src/main/java/androidx/constraintlayout/motion/widget/TimeCycleSplineSet.java index 66ff5738e6..8842318715 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/TimeCycleSplineSet.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/TimeCycleSplineSet.java @@ -502,9 +502,9 @@ public abstract class TimeCycleSplineSet { public void setup(int i) { int i2 = this.count; if (i2 == 0) { - StringBuilder P = a.P("Error no points added to "); - P.append(this.mType); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("Error no points added to "); + O.append(this.mType); + Log.e(TAG, O.toString()); return; } Sort.doubleQuickSort(this.mTimePoints, this.mValues, 0, i2 - 1); @@ -550,12 +550,12 @@ public abstract class TimeCycleSplineSet { String str = this.mType; DecimalFormat decimalFormat = new DecimalFormat("##.##"); for (int i = 0; i < this.count; i++) { - StringBuilder U = a.U(str, "["); - U.append(this.mTimePoints[i]); - U.append(" , "); - U.append(decimalFormat.format(this.mValues[i])); - U.append("] "); - str = U.toString(); + StringBuilder S = a.S(str, "["); + S.append(this.mTimePoints[i]); + S.append(" , "); + S.append(decimalFormat.format(this.mValues[i])); + S.append("] "); + str = S.toString(); } return str; } diff --git a/app/src/main/java/androidx/constraintlayout/motion/widget/TouchResponse.java b/app/src/main/java/androidx/constraintlayout/motion/widget/TouchResponse.java index a1165ebbfd..37837d0863 100644 --- a/app/src/main/java/androidx/constraintlayout/motion/widget/TouchResponse.java +++ b/app/src/main/java/androidx/constraintlayout/motion/widget/TouchResponse.java @@ -385,9 +385,9 @@ public class TouchResponse { if (i != -1) { view = this.mMotionLayout.findViewById(i); if (view == null) { - StringBuilder P = a.P("cannot find TouchAnchorId @id/"); - P.append(Debug.getName(this.mMotionLayout.getContext(), this.mTouchAnchorId)); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("cannot find TouchAnchorId @id/"); + O.append(Debug.getName(this.mMotionLayout.getContext(), this.mTouchAnchorId)); + Log.e(TAG, O.toString()); } } else { view = null; diff --git a/app/src/main/java/androidx/constraintlayout/solver/ArrayLinkedVariables.java b/app/src/main/java/androidx/constraintlayout/solver/ArrayLinkedVariables.java index 3cafc642f9..34df577665 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/ArrayLinkedVariables.java +++ b/app/src/main/java/androidx/constraintlayout/solver/ArrayLinkedVariables.java @@ -493,12 +493,12 @@ public class ArrayLinkedVariables implements ArrayRow.ArrayRowVariables { String str = ""; int i2 = 0; while (i != -1 && i2 < this.currentSize) { - StringBuilder P = a.P(a.u(str, " -> ")); - P.append(this.mArrayValues[i]); - P.append(" : "); - StringBuilder P2 = a.P(P.toString()); - P2.append(this.mCache.mIndexedVariables[this.mArrayIndices[i]]); - str = P2.toString(); + StringBuilder O = a.O(a.u(str, " -> ")); + O.append(this.mArrayValues[i]); + O.append(" : "); + StringBuilder O2 = a.O(O.toString()); + O2.append(this.mCache.mIndexedVariables[this.mArrayIndices[i]]); + str = O2.toString(); i = this.mArrayNextIndices[i]; i2++; } diff --git a/app/src/main/java/androidx/constraintlayout/solver/ArrayRow.java b/app/src/main/java/androidx/constraintlayout/solver/ArrayRow.java index f84cc2993f..50c95b5edd 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/ArrayRow.java +++ b/app/src/main/java/androidx/constraintlayout/solver/ArrayRow.java @@ -441,15 +441,15 @@ public class ArrayRow implements LinearSystem.Row { if (this.variable == null) { str = "0"; } else { - StringBuilder P = a.P(""); - P.append(this.variable); - str = P.toString(); + StringBuilder O = a.O(""); + O.append(this.variable); + str = O.toString(); } String u = a.u(str, " = "); if (this.constantValue != 0.0f) { - StringBuilder P2 = a.P(u); - P2.append(this.constantValue); - u = P2.toString(); + StringBuilder O2 = a.O(u); + O2.append(this.constantValue); + u = O2.toString(); z2 = true; } else { z2 = false; diff --git a/app/src/main/java/androidx/constraintlayout/solver/LinearSystem.java b/app/src/main/java/androidx/constraintlayout/solver/LinearSystem.java index 9da229b480..bfe51984f7 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/LinearSystem.java +++ b/app/src/main/java/androidx/constraintlayout/solver/LinearSystem.java @@ -219,21 +219,21 @@ public class LinearSystem { displaySolverVariables(); String str = ""; for (int i = 0; i < this.mNumRows; i++) { - StringBuilder P = a.P(str); - P.append(this.mRows[i]); - str = a.u(P.toString(), "\n"); + StringBuilder O = a.O(str); + O.append(this.mRows[i]); + str = a.u(O.toString(), "\n"); } - StringBuilder P2 = a.P(str); - P2.append(this.mGoal); - P2.append("\n"); - System.out.println(P2.toString()); + StringBuilder O2 = a.O(str); + O2.append(this.mGoal); + O2.append("\n"); + System.out.println(O2.toString()); } private void displaySolverVariables() { - StringBuilder P = a.P("Display Rows ("); - P.append(this.mNumRows); - P.append("x"); - System.out.println(a.z(P, this.mNumColumns, ")\n")); + StringBuilder O = a.O("Display Rows ("); + O.append(this.mNumRows); + O.append("x"); + System.out.println(a.z(O, this.mNumColumns, ")\n")); } private int enforceBFS(Row row) throws Exception { @@ -812,7 +812,7 @@ public class LinearSystem { public void displayReadableRows() { displaySolverVariables(); - String z2 = a.z(a.P(" num vars "), this.mVariablesID, "\n"); + String z2 = a.z(a.O(" num vars "), this.mVariablesID, "\n"); for (int i = 0; i < this.mVariablesID + 1; i++) { SolverVariable solverVariable = this.mCache.mIndexedVariables[i]; if (solverVariable != null && solverVariable.isFinalValue) { @@ -829,15 +829,15 @@ public class LinearSystem { } String u2 = a.u(u, "\n\n # "); for (int i3 = 0; i3 < this.mNumRows; i3++) { - StringBuilder P = a.P(u2); - P.append(this.mRows[i3].toReadableString()); - u2 = a.u(P.toString(), "\n # "); + StringBuilder O = a.O(u2); + O.append(this.mRows[i3].toReadableString()); + u2 = a.u(O.toString(), "\n # "); } if (this.mGoal != null) { - StringBuilder U = a.U(u2, "Goal: "); - U.append(this.mGoal); - U.append("\n"); - u2 = U.toString(); + StringBuilder S = a.S(u2, "Goal: "); + S.append(this.mGoal); + S.append("\n"); + u2 = S.toString(); } System.out.println(u2); } @@ -858,28 +858,28 @@ public class LinearSystem { } } PrintStream printStream = System.out; - StringBuilder P = a.P("Linear System -> Table size: "); - P.append(this.TABLE_SIZE); - P.append(" ("); + StringBuilder O = a.O("Linear System -> Table size: "); + O.append(this.TABLE_SIZE); + O.append(" ("); int i5 = this.TABLE_SIZE; - P.append(getDisplaySize(i5 * i5)); - P.append(") -- row sizes: "); - P.append(getDisplaySize(i)); - P.append(", actual size: "); - P.append(getDisplaySize(i3)); - P.append(" rows: "); - P.append(this.mNumRows); - P.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN); - P.append(this.mMaxRows); - P.append(" cols: "); - P.append(this.mNumColumns); - P.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN); - P.append(this.mMaxColumns); - P.append(" "); - P.append(0); - P.append(" occupied cells, "); - P.append(getDisplaySize(0)); - printStream.println(P.toString()); + O.append(getDisplaySize(i5 * i5)); + O.append(") -- row sizes: "); + O.append(getDisplaySize(i)); + O.append(", actual size: "); + O.append(getDisplaySize(i3)); + O.append(" rows: "); + O.append(this.mNumRows); + O.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN); + O.append(this.mMaxRows); + O.append(" cols: "); + O.append(this.mNumColumns); + O.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN); + O.append(this.mMaxColumns); + O.append(" "); + O.append(0); + O.append(" occupied cells, "); + O.append(getDisplaySize(0)); + printStream.println(O.toString()); } public void displayVariablesReadableRows() { @@ -887,15 +887,15 @@ public class LinearSystem { String str = ""; for (int i = 0; i < this.mNumRows; i++) { if (this.mRows[i].variable.mType == SolverVariable.Type.UNRESTRICTED) { - StringBuilder P = a.P(str); - P.append(this.mRows[i].toReadableString()); - str = a.u(P.toString(), "\n"); + StringBuilder O = a.O(str); + O.append(this.mRows[i].toReadableString()); + str = a.u(O.toString(), "\n"); } } - StringBuilder P2 = a.P(str); - P2.append(this.mGoal); - P2.append("\n"); - System.out.println(P2.toString()); + StringBuilder O2 = a.O(str); + O2.append(this.mGoal); + O2.append("\n"); + System.out.println(O2.toString()); } public void fillMetrics(Metrics metrics) { diff --git a/app/src/main/java/androidx/constraintlayout/solver/Metrics.java b/app/src/main/java/androidx/constraintlayout/solver/Metrics.java index 2bcbf29570..d2d425b098 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/Metrics.java +++ b/app/src/main/java/androidx/constraintlayout/solver/Metrics.java @@ -83,23 +83,23 @@ public class Metrics { } public String toString() { - StringBuilder P = a.P("\n*** Metrics ***\nmeasures: "); - P.append(this.measures); - P.append("\nmeasuresWrap: "); - P.append(this.measuresWrap); - P.append("\nmeasuresWrapInfeasible: "); - P.append(this.measuresWrapInfeasible); - P.append("\ndetermineGroups: "); - P.append(this.determineGroups); - P.append("\ninfeasibleDetermineGroups: "); - P.append(this.infeasibleDetermineGroups); - P.append("\ngraphOptimizer: "); - P.append(this.graphOptimizer); - P.append("\nwidgets: "); - P.append(this.widgets); - P.append("\ngraphSolved: "); - P.append(this.graphSolved); - P.append("\nlinearSolved: "); - return a.A(P, this.linearSolved, "\n"); + StringBuilder O = a.O("\n*** Metrics ***\nmeasures: "); + O.append(this.measures); + O.append("\nmeasuresWrap: "); + O.append(this.measuresWrap); + O.append("\nmeasuresWrapInfeasible: "); + O.append(this.measuresWrapInfeasible); + O.append("\ndetermineGroups: "); + O.append(this.determineGroups); + O.append("\ninfeasibleDetermineGroups: "); + O.append(this.infeasibleDetermineGroups); + O.append("\ngraphOptimizer: "); + O.append(this.graphOptimizer); + O.append("\nwidgets: "); + O.append(this.widgets); + O.append("\ngraphSolved: "); + O.append(this.graphSolved); + O.append("\nlinearSolved: "); + return a.A(O, this.linearSolved, "\n"); } } diff --git a/app/src/main/java/androidx/constraintlayout/solver/PriorityGoalRow.java b/app/src/main/java/androidx/constraintlayout/solver/PriorityGoalRow.java index 245cd77f11..f369b9a594 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/PriorityGoalRow.java +++ b/app/src/main/java/androidx/constraintlayout/solver/PriorityGoalRow.java @@ -132,15 +132,15 @@ public class PriorityGoalRow extends ArrayRow { String str = "[ "; if (this.variable != null) { for (int i = 0; i < 9; i++) { - StringBuilder P = a.P(str); - P.append(this.variable.goalStrengthVector[i]); - P.append(" "); - str = P.toString(); + StringBuilder O = a.O(str); + O.append(this.variable.goalStrengthVector[i]); + O.append(" "); + str = O.toString(); } } - StringBuilder U = a.U(str, "] "); - U.append(this.variable); - return U.toString(); + StringBuilder S = a.S(str, "] "); + S.append(this.variable); + return S.toString(); } } @@ -251,10 +251,10 @@ public class PriorityGoalRow extends ArrayRow { @Override // androidx.constraintlayout.solver.ArrayRow public String toString() { - StringBuilder U = a.U("", " goal -> ("); - U.append(this.constantValue); - U.append(") : "); - String sb = U.toString(); + StringBuilder S = a.S("", " goal -> ("); + S.append(this.constantValue); + S.append(") : "); + String sb = S.toString(); for (int i = 0; i < this.numGoals; i++) { this.accessor.init(this.arrayGoals[i]); sb = sb + this.accessor + " "; diff --git a/app/src/main/java/androidx/constraintlayout/solver/SolverVariable.java b/app/src/main/java/androidx/constraintlayout/solver/SolverVariable.java index 90c5973b44..53c328dec6 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/SolverVariable.java +++ b/app/src/main/java/androidx/constraintlayout/solver/SolverVariable.java @@ -118,41 +118,41 @@ public class SolverVariable { private static String getUniqueName(Type type, String str) { if (str != null) { - StringBuilder P = a.P(str); - P.append(uniqueErrorId); - return P.toString(); + StringBuilder O = a.O(str); + O.append(uniqueErrorId); + return O.toString(); } int ordinal = type.ordinal(); if (ordinal == 0) { - StringBuilder P2 = a.P("U"); + StringBuilder O2 = a.O("U"); int i = uniqueUnrestrictedId + 1; uniqueUnrestrictedId = i; - P2.append(i); - return P2.toString(); + O2.append(i); + return O2.toString(); } else if (ordinal == 1) { - StringBuilder P3 = a.P("C"); + StringBuilder O3 = a.O("C"); int i2 = uniqueConstantId + 1; uniqueConstantId = i2; - P3.append(i2); - return P3.toString(); + O3.append(i2); + return O3.toString(); } else if (ordinal == 2) { - StringBuilder P4 = a.P(ExifInterface.LATITUDE_SOUTH); + StringBuilder O4 = a.O(ExifInterface.LATITUDE_SOUTH); int i3 = uniqueSlackId + 1; uniqueSlackId = i3; - P4.append(i3); - return P4.toString(); + O4.append(i3); + return O4.toString(); } else if (ordinal == 3) { - StringBuilder P5 = a.P("e"); + StringBuilder O5 = a.O("e"); int i4 = uniqueErrorId + 1; uniqueErrorId = i4; - P5.append(i4); - return P5.toString(); + O5.append(i4); + return O5.toString(); } else if (ordinal == 4) { - StringBuilder P6 = a.P(ExifInterface.GPS_MEASUREMENT_INTERRUPTED); + StringBuilder O6 = a.O(ExifInterface.GPS_MEASUREMENT_INTERRUPTED); int i5 = uniqueId + 1; uniqueId = i5; - P6.append(i5); - return P6.toString(); + O6.append(i5); + return O6.toString(); } else { throw new AssertionError(type.name()); } @@ -274,9 +274,9 @@ public class SolverVariable { boolean z2 = false; boolean z3 = true; while (i < this.strengthVector.length) { - StringBuilder P = a.P(str); - P.append(this.strengthVector[i]); - String sb = P.toString(); + StringBuilder O = a.O(str); + O.append(this.strengthVector[i]); + String sb = O.toString(); float[] fArr = this.strengthVector; if (fArr[i] > 0.0f) { z2 = false; @@ -297,13 +297,13 @@ public class SolverVariable { public String toString() { if (this.mName != null) { - StringBuilder P = a.P(""); - P.append(this.mName); - return P.toString(); + StringBuilder O = a.O(""); + O.append(this.mName); + return O.toString(); } - StringBuilder P2 = a.P(""); - P2.append(this.f23id); - return P2.toString(); + StringBuilder O2 = a.O(""); + O2.append(this.f23id); + return O2.toString(); } public final void updateReferencesWithNewDefinition(LinearSystem linearSystem, ArrayRow arrayRow) { diff --git a/app/src/main/java/androidx/constraintlayout/solver/SolverVariableValues.java b/app/src/main/java/androidx/constraintlayout/solver/SolverVariableValues.java index 70cc111008..2036ff30eb 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/SolverVariableValues.java +++ b/app/src/main/java/androidx/constraintlayout/solver/SolverVariableValues.java @@ -65,9 +65,9 @@ public class SolverVariableValues implements ArrayRow.ArrayRowVariables { int i2 = this.keys[i]; boolean z2 = false; while (!z2) { - StringBuilder U = a.U(str, " "); - U.append(this.variables[i2]); - str = U.toString(); + StringBuilder S = a.S(str, " "); + S.append(this.variables[i2]); + str = S.toString(); int[] iArr = this.nextKeys; if (iArr[i2] != -1) { i2 = iArr[i2]; @@ -406,17 +406,17 @@ public class SolverVariableValues implements ArrayRow.ArrayRowVariables { int indexOf = indexOf(variable); String u = a.u(str4, "[p: "); if (this.previous[indexOf] != -1) { - StringBuilder P = a.P(u); - P.append(this.mCache.mIndexedVariables[this.variables[this.previous[indexOf]]]); - str = P.toString(); + StringBuilder O = a.O(u); + O.append(this.mCache.mIndexedVariables[this.variables[this.previous[indexOf]]]); + str = O.toString(); } else { str = a.u(u, "none"); } String u2 = a.u(str, ", n: "); if (this.next[indexOf] != -1) { - StringBuilder P2 = a.P(u2); - P2.append(this.mCache.mIndexedVariables[this.variables[this.next[indexOf]]]); - str2 = P2.toString(); + StringBuilder O2 = a.O(u2); + O2.append(this.mCache.mIndexedVariables[this.variables[this.next[indexOf]]]); + str2 = O2.toString(); } else { str2 = a.u(u2, "none"); } diff --git a/app/src/main/java/androidx/constraintlayout/solver/state/ConstraintReference.java b/app/src/main/java/androidx/constraintlayout/solver/state/ConstraintReference.java index d65214c32e..fd37ea65e5 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/state/ConstraintReference.java +++ b/app/src/main/java/androidx/constraintlayout/solver/state/ConstraintReference.java @@ -131,9 +131,9 @@ public class ConstraintReference implements Reference { @Override // java.lang.Throwable, java.lang.Object public String toString() { - StringBuilder P = a.P("IncorrectConstraintException: "); - P.append(this.mErrors.toString()); - return P.toString(); + StringBuilder O = a.O("IncorrectConstraintException: "); + O.append(this.mErrors.toString()); + return O.toString(); } } diff --git a/app/src/main/java/androidx/constraintlayout/solver/state/State.java b/app/src/main/java/androidx/constraintlayout/solver/state/State.java index e4f584c059..ccb93ca2ec 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/state/State.java +++ b/app/src/main/java/androidx/constraintlayout/solver/state/State.java @@ -105,10 +105,10 @@ public class State { } private String createHelperKey() { - StringBuilder P = a.P("__HELPER_KEY_"); + StringBuilder O = a.O("__HELPER_KEY_"); int i = this.numHelpers; this.numHelpers = i + 1; - return a.z(P, i, "__"); + return a.z(O, i, "__"); } public void apply(ConstraintWidgetContainer constraintWidgetContainer) { diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/Barrier.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/Barrier.java index e69837263c..4a5edb9f6b 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/Barrier.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/Barrier.java @@ -252,18 +252,18 @@ public class Barrier extends HelperWidget { @Override // androidx.constraintlayout.solver.widgets.ConstraintWidget public String toString() { - StringBuilder P = a.P("[Barrier] "); - P.append(getDebugName()); - P.append(" {"); - String sb = P.toString(); + StringBuilder O = a.O("[Barrier] "); + O.append(getDebugName()); + O.append(" {"); + String sb = O.toString(); for (int i = 0; i < this.mWidgetsCount; i++) { ConstraintWidget constraintWidget = this.mWidgets[i]; if (i > 0) { sb = a.u(sb, ", "); } - StringBuilder P2 = a.P(sb); - P2.append(constraintWidget.getDebugName()); - sb = P2.toString(); + StringBuilder O2 = a.O(sb); + O2.append(constraintWidget.getDebugName()); + sb = O2.toString(); } return a.u(sb, "}"); } diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/ConstraintWidget.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/ConstraintWidget.java index a84f4ecf27..dfccbe52d5 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/ConstraintWidget.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/ConstraintWidget.java @@ -3058,9 +3058,9 @@ public class ConstraintWidget { public String toString() { StringBuilder sb = new StringBuilder(); String str = ""; - sb.append(this.mType != null ? a.H(a.P("type: "), this.mType, " ") : str); + sb.append(this.mType != null ? a.G(a.O("type: "), this.mType, " ") : str); if (this.mDebugName != null) { - str = a.H(a.P("id: "), this.mDebugName, " "); + str = a.G(a.O("id: "), this.mDebugName, " "); } sb.append(str); sb.append("("); diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/ChainRun.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/ChainRun.java index 728bd628b5..8e9de52acb 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/ChainRun.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/ChainRun.java @@ -173,9 +173,9 @@ public class ChainRun extends WidgetRun { } public String toString() { - StringBuilder P = a.P("ChainRun "); - P.append(this.orientation == 0 ? "horizontal : " : "vertical : "); - String sb = P.toString(); + StringBuilder O = a.O("ChainRun "); + O.append(this.orientation == 0 ? "horizontal : " : "vertical : "); + String sb = O.toString(); Iterator it = this.widgets.iterator(); while (it.hasNext()) { String u = a.u(sb, "<"); diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyGraph.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyGraph.java index 75cec53290..5c827add21 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyGraph.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyGraph.java @@ -298,9 +298,9 @@ public class DependencyGraph { private String generateChainDisplayGraph(ChainRun chainRun, String str) { int i = chainRun.orientation; - StringBuilder P = a.P("cluster_"); - P.append(chainRun.widget.getDebugName()); - String sb = P.toString(); + StringBuilder O = a.O("cluster_"); + O.append(chainRun.widget.getDebugName()); + String sb = O.toString(); String v = a.v("subgraph ", i == 0 ? a.u(sb, "_h") : a.u(sb, "_v"), " {\n"); Iterator it = chainRun.widgets.iterator(); String str2 = ""; @@ -320,9 +320,9 @@ public class DependencyGraph { if (!(widgetRun instanceof HelperReferences) && dependencyNode.dependencies.isEmpty() && (dependencyNode2.dependencies.isEmpty() && dependencyNode.targets.isEmpty()) && dependencyNode2.targets.isEmpty()) { return str; } - StringBuilder P = a.P(str); - P.append(nodeDefinition(widgetRun)); - String sb = P.toString(); + StringBuilder O = a.O(str); + O.append(nodeDefinition(widgetRun)); + String sb = O.toString(); boolean isCenteredConnection = isCenteredConnection(dependencyNode, dependencyNode2); String generateDisplayNode = generateDisplayNode(dependencyNode2, isCenteredConnection, generateDisplayNode(dependencyNode, isCenteredConnection, sb)); boolean z3 = widgetRun instanceof VerticalWidgetRun; @@ -333,19 +333,19 @@ public class DependencyGraph { ConstraintWidget.DimensionBehaviour horizontalDimensionBehaviour = widgetRun.widget.getHorizontalDimensionBehaviour(); if (horizontalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.FIXED || horizontalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.WRAP_CONTENT) { if (!dependencyNode.targets.isEmpty() && dependencyNode2.targets.isEmpty()) { - StringBuilder P2 = a.P("\n"); - P2.append(dependencyNode2.name()); - P2.append(" -> "); - P2.append(dependencyNode.name()); - P2.append("\n"); - generateDisplayNode = a.u(generateDisplayNode, P2.toString()); + StringBuilder O2 = a.O("\n"); + O2.append(dependencyNode2.name()); + O2.append(" -> "); + O2.append(dependencyNode.name()); + O2.append("\n"); + generateDisplayNode = a.u(generateDisplayNode, O2.toString()); } else if (dependencyNode.targets.isEmpty() && !dependencyNode2.targets.isEmpty()) { - StringBuilder P3 = a.P("\n"); - P3.append(dependencyNode.name()); - P3.append(" -> "); - P3.append(dependencyNode2.name()); - P3.append("\n"); - generateDisplayNode = a.u(generateDisplayNode, P3.toString()); + StringBuilder O3 = a.O("\n"); + O3.append(dependencyNode.name()); + O3.append(" -> "); + O3.append(dependencyNode2.name()); + O3.append("\n"); + generateDisplayNode = a.u(generateDisplayNode, O3.toString()); } } else if (horizontalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.MATCH_CONSTRAINT && widgetRun.widget.getDimensionRatio() > 0.0f) { widgetRun.widget.getDebugName(); @@ -354,19 +354,19 @@ public class DependencyGraph { ConstraintWidget.DimensionBehaviour verticalDimensionBehaviour = widgetRun.widget.getVerticalDimensionBehaviour(); if (verticalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.FIXED || verticalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.WRAP_CONTENT) { if (!dependencyNode.targets.isEmpty() && dependencyNode2.targets.isEmpty()) { - StringBuilder P4 = a.P("\n"); - P4.append(dependencyNode2.name()); - P4.append(" -> "); - P4.append(dependencyNode.name()); - P4.append("\n"); - generateDisplayNode = a.u(generateDisplayNode, P4.toString()); + StringBuilder O4 = a.O("\n"); + O4.append(dependencyNode2.name()); + O4.append(" -> "); + O4.append(dependencyNode.name()); + O4.append("\n"); + generateDisplayNode = a.u(generateDisplayNode, O4.toString()); } else if (dependencyNode.targets.isEmpty() && !dependencyNode2.targets.isEmpty()) { - StringBuilder P5 = a.P("\n"); - P5.append(dependencyNode.name()); - P5.append(" -> "); - P5.append(dependencyNode2.name()); - P5.append("\n"); - generateDisplayNode = a.u(generateDisplayNode, P5.toString()); + StringBuilder O5 = a.O("\n"); + O5.append(dependencyNode.name()); + O5.append(" -> "); + O5.append(dependencyNode2.name()); + O5.append("\n"); + generateDisplayNode = a.u(generateDisplayNode, O5.toString()); } } else if (verticalDimensionBehaviour == ConstraintWidget.DimensionBehaviour.MATCH_CONSTRAINT && widgetRun.widget.getDimensionRatio() > 0.0f) { widgetRun.widget.getDebugName(); @@ -377,15 +377,15 @@ public class DependencyGraph { private String generateDisplayNode(DependencyNode dependencyNode, boolean z2, String str) { for (DependencyNode dependencyNode2 : dependencyNode.targets) { - StringBuilder P = a.P("\n"); - P.append(dependencyNode.name()); - StringBuilder U = a.U(P.toString(), " -> "); - U.append(dependencyNode2.name()); - String sb = U.toString(); + StringBuilder O = a.O("\n"); + O.append(dependencyNode.name()); + StringBuilder S = a.S(O.toString(), " -> "); + S.append(dependencyNode2.name()); + String sb = S.toString(); if (dependencyNode.margin > 0 || z2 || (dependencyNode.run instanceof HelperReferences)) { String u = a.u(sb, "["); if (dependencyNode.margin > 0) { - u = a.z(a.U(u, "label=\""), dependencyNode.margin, "\""); + u = a.z(a.S(u, "label=\""), dependencyNode.margin, "\""); if (z2) { u = a.u(u, ","); } @@ -468,10 +468,10 @@ public class DependencyGraph { u4 = a.u(u4, "style=\"dashed\""); } if (runGroup != null) { - StringBuilder P = a.P(" ["); - P.append(runGroup.groupIndex + 1); - P.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN); - str2 = a.z(P, RunGroup.index, "]"); + StringBuilder O = a.O(" ["); + O.append(runGroup.groupIndex + 1); + O.append(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN); + str2 = a.z(O, RunGroup.index, "]"); } else { str2 = ""; } diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyNode.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyNode.java index 6ccc2196f6..e2c01b2268 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyNode.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/DependencyNode.java @@ -51,9 +51,9 @@ public class DependencyNode implements Dependency { public String name() { String debugName = this.run.widget.getDebugName(); Type type = this.type; - StringBuilder U = a.U((type == Type.LEFT || type == Type.RIGHT) ? a.u(debugName, "_HORIZONTAL") : a.u(debugName, "_VERTICAL"), ":"); - U.append(this.type.name()); - return U.toString(); + StringBuilder S = a.S((type == Type.LEFT || type == Type.RIGHT) ? a.u(debugName, "_HORIZONTAL") : a.u(debugName, "_VERTICAL"), ":"); + S.append(this.type.name()); + return S.toString(); } public void resolve(int i) { diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/HorizontalWidgetRun.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/HorizontalWidgetRun.java index eba993f56e..ae4c337bbb 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/HorizontalWidgetRun.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/HorizontalWidgetRun.java @@ -257,9 +257,9 @@ public class HorizontalWidgetRun extends WidgetRun { } public String toString() { - StringBuilder P = a.P("HorizontalRun "); - P.append(this.widget.getDebugName()); - return P.toString(); + StringBuilder O = a.O("HorizontalRun "); + O.append(this.widget.getDebugName()); + return O.toString(); } /* JADX WARNING: Code restructure failed: missing block: B:103:0x02ba, code lost: diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/VerticalWidgetRun.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/VerticalWidgetRun.java index 5c3b6ce90c..78afa77b79 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/VerticalWidgetRun.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/VerticalWidgetRun.java @@ -283,9 +283,9 @@ public class VerticalWidgetRun extends WidgetRun { } public String toString() { - StringBuilder P = a.P("VerticalRun "); - P.append(this.widget.getDebugName()); - return P.toString(); + StringBuilder O = a.O("VerticalRun "); + O.append(this.widget.getDebugName()); + return O.toString(); } @Override // androidx.constraintlayout.solver.widgets.analyzer.WidgetRun, androidx.constraintlayout.solver.widgets.analyzer.Dependency diff --git a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/WidgetGroup.java b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/WidgetGroup.java index af417b5631..cf40da7238 100644 --- a/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/WidgetGroup.java +++ b/app/src/main/java/androidx/constraintlayout/solver/widgets/analyzer/WidgetGroup.java @@ -203,9 +203,9 @@ public class WidgetGroup { String z2 = a.z(sb, this.f26id, "] <"); Iterator it = this.widgets.iterator(); while (it.hasNext()) { - StringBuilder U = a.U(z2, " "); - U.append(it.next().getDebugName()); - z2 = U.toString(); + StringBuilder S = a.S(z2, " "); + S.append(it.next().getDebugName()); + z2 = S.toString(); } return a.u(z2, " >"); } diff --git a/app/src/main/java/androidx/constraintlayout/widget/ConstraintAttribute.java b/app/src/main/java/androidx/constraintlayout/widget/ConstraintAttribute.java index 0a7eb7ee2d..7a7ddea623 100644 --- a/app/src/main/java/androidx/constraintlayout/widget/ConstraintAttribute.java +++ b/app/src/main/java/androidx/constraintlayout/widget/ConstraintAttribute.java @@ -213,14 +213,14 @@ public class ConstraintAttribute { sb.append(u); Log.e(TAG, sb.toString()); } catch (IllegalAccessException e2) { - StringBuilder V = a.V(" Custom Attribute \"", str, "\" not found on "); - V.append(cls.getName()); - Log.e(TAG, V.toString()); + StringBuilder U = a.U(" Custom Attribute \"", str, "\" not found on "); + U.append(cls.getName()); + Log.e(TAG, U.toString()); e2.printStackTrace(); } catch (InvocationTargetException e3) { - StringBuilder V2 = a.V(" Custom Attribute \"", str, "\" not found on "); - V2.append(cls.getName()); - Log.e(TAG, V2.toString()); + StringBuilder U2 = a.U(" Custom Attribute \"", str, "\" not found on "); + U2.append(cls.getName()); + Log.e(TAG, U2.toString()); e3.printStackTrace(); } } @@ -329,9 +329,9 @@ public class ConstraintAttribute { */ public void setInterpolatedValue(View view, float[] fArr) { Class cls = view.getClass(); - StringBuilder P = a.P("set"); - P.append(this.mName); - String sb = P.toString(); + StringBuilder O = a.O("set"); + O.append(this.mName); + String sb = O.toString(); try { boolean z2 = true; switch (this.mType.ordinal()) { @@ -370,16 +370,16 @@ public class ConstraintAttribute { return; } } catch (NoSuchMethodException e) { - StringBuilder V = a.V("no method ", sb, "on View \""); - V.append(Debug.getName(view)); - V.append("\""); - Log.e(TAG, V.toString()); + StringBuilder U = a.U("no method ", sb, "on View \""); + U.append(Debug.getName(view)); + U.append("\""); + Log.e(TAG, U.toString()); e.printStackTrace(); } catch (IllegalAccessException e2) { - StringBuilder V2 = a.V("cannot access method ", sb, "on View \""); - V2.append(Debug.getName(view)); - V2.append("\""); - Log.e(TAG, V2.toString()); + StringBuilder U2 = a.U("cannot access method ", sb, "on View \""); + U2.append(Debug.getName(view)); + U2.append("\""); + Log.e(TAG, U2.toString()); e2.printStackTrace(); } catch (InvocationTargetException e3) { e3.printStackTrace(); diff --git a/app/src/main/java/androidx/constraintlayout/widget/ConstraintHelper.java b/app/src/main/java/androidx/constraintlayout/widget/ConstraintHelper.java index b1cd04d4af..f39190fcf9 100644 --- a/app/src/main/java/androidx/constraintlayout/widget/ConstraintHelper.java +++ b/app/src/main/java/androidx/constraintlayout/widget/ConstraintHelper.java @@ -109,10 +109,10 @@ public abstract class ConstraintHelper extends View { ViewGroup.LayoutParams layoutParams = childAt.getLayoutParams(); if ((layoutParams instanceof ConstraintLayout.LayoutParams) && trim.equals(((ConstraintLayout.LayoutParams) layoutParams).constraintTag)) { if (childAt.getId() == -1) { - StringBuilder P = a.P("to use ConstraintTag view "); - P.append(childAt.getClass().getSimpleName()); - P.append(" must have an ID"); - Log.w("ConstraintHelper", P.toString()); + StringBuilder O = a.O("to use ConstraintTag view "); + O.append(childAt.getClass().getSimpleName()); + O.append(" must have an ID"); + Log.w("ConstraintHelper", O.toString()); } else { addRscID(childAt.getId()); } diff --git a/app/src/main/java/androidx/constraintlayout/widget/ConstraintProperties.java b/app/src/main/java/androidx/constraintlayout/widget/ConstraintProperties.java index 488a3c59dd..82b2210ff5 100644 --- a/app/src/main/java/androidx/constraintlayout/widget/ConstraintProperties.java +++ b/app/src/main/java/androidx/constraintlayout/widget/ConstraintProperties.java @@ -181,7 +181,7 @@ public class ConstraintProperties { layoutParams2.leftToRight = i2; layoutParams2.leftToLeft = -1; } else { - throw new IllegalArgumentException(a.H(a.P("Left to "), sideToString(i3), " undefined")); + throw new IllegalArgumentException(a.G(a.O("Left to "), sideToString(i3), " undefined")); } ((ViewGroup.MarginLayoutParams) this.mParams).leftMargin = i4; break; @@ -195,7 +195,7 @@ public class ConstraintProperties { layoutParams4.rightToRight = i2; layoutParams4.rightToLeft = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i3), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i3), " undefined")); } ((ViewGroup.MarginLayoutParams) this.mParams).rightMargin = i4; break; @@ -211,7 +211,7 @@ public class ConstraintProperties { layoutParams6.topToTop = -1; layoutParams6.baselineToBaseline = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i3), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i3), " undefined")); } ((ViewGroup.MarginLayoutParams) this.mParams).topMargin = i4; break; @@ -227,7 +227,7 @@ public class ConstraintProperties { layoutParams8.bottomToBottom = -1; layoutParams8.baselineToBaseline = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i3), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i3), " undefined")); } ((ViewGroup.MarginLayoutParams) this.mParams).bottomMargin = i4; break; @@ -241,7 +241,7 @@ public class ConstraintProperties { layoutParams9.topToBottom = -1; break; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i3), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i3), " undefined")); } case 6: if (i3 == 6) { @@ -253,7 +253,7 @@ public class ConstraintProperties { layoutParams11.startToEnd = i2; layoutParams11.startToStart = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i3), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i3), " undefined")); } this.mParams.setMarginStart(i4); break; @@ -267,7 +267,7 @@ public class ConstraintProperties { layoutParams13.endToStart = i2; layoutParams13.endToEnd = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i3), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i3), " undefined")); } this.mParams.setMarginEnd(i4); break; @@ -275,7 +275,7 @@ public class ConstraintProperties { StringBuilder sb = new StringBuilder(); sb.append(sideToString(i)); sb.append(" to "); - throw new IllegalArgumentException(a.H(sb, sideToString(i3), " unknown")); + throw new IllegalArgumentException(a.G(sb, sideToString(i3), " unknown")); } return this; } diff --git a/app/src/main/java/androidx/constraintlayout/widget/ConstraintSet.java b/app/src/main/java/androidx/constraintlayout/widget/ConstraintSet.java index af49ff6011..74d9a8db5c 100644 --- a/app/src/main/java/androidx/constraintlayout/widget/ConstraintSet.java +++ b/app/src/main/java/androidx/constraintlayout/widget/ConstraintSet.java @@ -287,9 +287,9 @@ public class ConstraintSet { if (constraintAttribute.getType() == attributeType) { return constraintAttribute; } - StringBuilder P = a.P("ConstraintAttribute is already a "); - P.append(constraintAttribute.getType().name()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("ConstraintAttribute is already a "); + O.append(constraintAttribute.getType().name()); + throw new IllegalArgumentException(O.toString()); } ConstraintAttribute constraintAttribute2 = new ConstraintAttribute(str, attributeType); this.mCustomConstraints.put(str, constraintAttribute2); @@ -857,21 +857,21 @@ public class ConstraintSet { this.mBarrierAllowsGoneWidgets = obtainStyledAttributes.getBoolean(index, this.mBarrierAllowsGoneWidgets); continue; case 76: - StringBuilder P = a.P("unused attribute 0x"); - P.append(Integer.toHexString(index)); - P.append(" "); - P.append(mapToConstant.get(index)); - Log.w(ConstraintSet.TAG, P.toString()); + StringBuilder O = a.O("unused attribute 0x"); + O.append(Integer.toHexString(index)); + O.append(" "); + O.append(mapToConstant.get(index)); + Log.w(ConstraintSet.TAG, O.toString()); continue; case 77: this.mConstraintTag = obtainStyledAttributes.getString(index); continue; default: - StringBuilder P2 = a.P("Unknown attribute 0x"); - P2.append(Integer.toHexString(index)); - P2.append(" "); - P2.append(mapToConstant.get(index)); - Log.w(ConstraintSet.TAG, P2.toString()); + StringBuilder O2 = a.O("Unknown attribute 0x"); + O2.append(Integer.toHexString(index)); + O2.append(" "); + O2.append(mapToConstant.get(index)); + Log.w(ConstraintSet.TAG, O2.toString()); continue; continue; continue; @@ -1207,9 +1207,9 @@ public class ConstraintSet { if (this.mSavedAttributes.containsKey(strArr[i])) { ConstraintAttribute constraintAttribute = this.mSavedAttributes.get(strArr[i]); if (constraintAttribute.getType() != attributeType) { - StringBuilder P = a.P("ConstraintAttribute is already a "); - P.append(constraintAttribute.getType().name()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("ConstraintAttribute is already a "); + O.append(constraintAttribute.getType().name()); + throw new IllegalArgumentException(O.toString()); } } else { this.mSavedAttributes.put(strArr[i], new ConstraintAttribute(strArr[i], attributeType)); @@ -1624,18 +1624,18 @@ public class ConstraintSet { layout53.constrainedHeight = typedArray.getBoolean(index, layout53.constrainedHeight); break; case 82: - StringBuilder P = a.P("unused attribute 0x"); - P.append(Integer.toHexString(index)); - P.append(" "); - P.append(mapToConstant.get(index)); - Log.w(TAG, P.toString()); + StringBuilder O = a.O("unused attribute 0x"); + O.append(Integer.toHexString(index)); + O.append(" "); + O.append(mapToConstant.get(index)); + Log.w(TAG, O.toString()); break; default: - StringBuilder P2 = a.P("Unknown attribute 0x"); - P2.append(Integer.toHexString(index)); - P2.append(" "); - P2.append(mapToConstant.get(index)); - Log.w(TAG, P2.toString()); + StringBuilder O2 = a.O("Unknown attribute 0x"); + O2.append(Integer.toHexString(index)); + O2.append(" "); + O2.append(mapToConstant.get(index)); + Log.w(TAG, O2.toString()); break; } } @@ -1734,9 +1734,9 @@ public class ConstraintSet { View childAt = constraintLayout.getChildAt(i); int id2 = childAt.getId(); if (!this.mConstraints.containsKey(Integer.valueOf(id2))) { - StringBuilder P = a.P("id unknown "); - P.append(Debug.getName(childAt)); - Log.v(TAG, P.toString()); + StringBuilder O = a.O("id unknown "); + O.append(Debug.getName(childAt)); + Log.v(TAG, O.toString()); } else if (this.mForceId && id2 == -1) { throw new RuntimeException("All children of ConstraintLayout must have ids to use ConstraintSet"); } else if (this.mConstraints.containsKey(Integer.valueOf(id2))) { @@ -1768,9 +1768,9 @@ public class ConstraintSet { View childAt = constraintLayout.getChildAt(i); int id2 = childAt.getId(); if (!this.mConstraints.containsKey(Integer.valueOf(id2))) { - StringBuilder P = a.P("id unknown "); - P.append(Debug.getName(childAt)); - Log.w(TAG, P.toString()); + StringBuilder O = a.O("id unknown "); + O.append(Debug.getName(childAt)); + Log.w(TAG, O.toString()); } else if (this.mForceId && id2 == -1) { throw new RuntimeException("All children of ConstraintLayout must have ids to use ConstraintSet"); } else if (id2 != -1) { @@ -2103,7 +2103,7 @@ public class ConstraintSet { layout2.leftToLeft = -1; return; } else { - throw new IllegalArgumentException(a.H(a.P("left to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("left to "), sideToString(i4), " undefined")); } case 2: if (i4 == 1) { @@ -2117,7 +2117,7 @@ public class ConstraintSet { layout4.rightToLeft = -1; return; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } case 3: if (i4 == 3) { @@ -2133,7 +2133,7 @@ public class ConstraintSet { layout6.baselineToBaseline = -1; return; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } case 4: if (i4 == 4) { @@ -2149,7 +2149,7 @@ public class ConstraintSet { layout8.baselineToBaseline = -1; return; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } case 5: if (i4 == 5) { @@ -2161,7 +2161,7 @@ public class ConstraintSet { layout9.topToBottom = -1; return; } - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); case 6: if (i4 == 6) { Layout layout10 = constraint.layout; @@ -2174,7 +2174,7 @@ public class ConstraintSet { layout11.startToStart = -1; return; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } case 7: if (i4 == 7) { @@ -2188,13 +2188,13 @@ public class ConstraintSet { layout13.endToEnd = -1; return; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } default: StringBuilder sb = new StringBuilder(); sb.append(sideToString(i2)); sb.append(" to "); - throw new IllegalArgumentException(a.H(sb, sideToString(i4), " unknown")); + throw new IllegalArgumentException(a.G(sb, sideToString(i4), " unknown")); } } @@ -2214,7 +2214,7 @@ public class ConstraintSet { layout2.leftToRight = i3; layout2.leftToLeft = -1; } else { - throw new IllegalArgumentException(a.H(a.P("Left to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("Left to "), sideToString(i4), " undefined")); } constraint.layout.leftMargin = i5; return; @@ -2228,7 +2228,7 @@ public class ConstraintSet { layout4.rightToRight = i3; layout4.rightToLeft = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } constraint.layout.rightMargin = i5; return; @@ -2244,7 +2244,7 @@ public class ConstraintSet { layout6.topToTop = -1; layout6.baselineToBaseline = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } constraint.layout.topMargin = i5; return; @@ -2260,7 +2260,7 @@ public class ConstraintSet { layout8.bottomToBottom = -1; layout8.baselineToBaseline = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } constraint.layout.bottomMargin = i5; return; @@ -2274,7 +2274,7 @@ public class ConstraintSet { layout9.topToBottom = -1; return; } - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); case 6: if (i4 == 6) { Layout layout10 = constraint.layout; @@ -2285,7 +2285,7 @@ public class ConstraintSet { layout11.startToEnd = i3; layout11.startToStart = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } constraint.layout.startMargin = i5; return; @@ -2299,7 +2299,7 @@ public class ConstraintSet { layout13.endToStart = i3; layout13.endToEnd = -1; } else { - throw new IllegalArgumentException(a.H(a.P("right to "), sideToString(i4), " undefined")); + throw new IllegalArgumentException(a.G(a.O("right to "), sideToString(i4), " undefined")); } constraint.layout.endMargin = i5; return; @@ -2307,7 +2307,7 @@ public class ConstraintSet { StringBuilder sb = new StringBuilder(); sb.append(sideToString(i2)); sb.append(" to "); - throw new IllegalArgumentException(a.H(sb, sideToString(i4), " unknown")); + throw new IllegalArgumentException(a.G(sb, sideToString(i4), " unknown")); } } @@ -2669,7 +2669,7 @@ public class ConstraintSet { for (int i = 0; i < split.length; i++) { String[] split2 = split[i].split("="); if (split2.length != 2) { - a.n0(a.P(" Unable to parse "), split[i], TAG); + a.m0(a.O(" Unable to parse "), split[i], TAG); } else { Constraint.access$600(constraint, split2[0], Color.parseColor(split2[1])); } @@ -2681,7 +2681,7 @@ public class ConstraintSet { for (int i = 0; i < split.length; i++) { String[] split2 = split[i].split("="); if (split2.length != 2) { - a.n0(a.P(" Unable to parse "), split[i], TAG); + a.m0(a.O(" Unable to parse "), split[i], TAG); } else { Constraint.access$700(constraint, split2[0], Float.parseFloat(split2[1])); } @@ -2693,7 +2693,7 @@ public class ConstraintSet { for (int i = 0; i < split.length; i++) { String[] split2 = split[i].split("="); if (split2.length != 2) { - a.n0(a.P(" Unable to parse "), split[i], TAG); + a.m0(a.O(" Unable to parse "), split[i], TAG); } else { Constraint.access$700(constraint, split2[0], (float) Integer.decode(split2[1]).intValue()); } @@ -2704,7 +2704,7 @@ public class ConstraintSet { String[] splitString = splitString(str); for (int i = 0; i < splitString.length; i++) { String[] split = splitString[i].split("="); - a.n0(a.P(" Unable to parse "), splitString[i], TAG); + a.m0(a.O(" Unable to parse "), splitString[i], TAG); Constraint.access$800(constraint, split[0], split[1]); } } diff --git a/app/src/main/java/androidx/coordinatorlayout/widget/CoordinatorLayout.java b/app/src/main/java/androidx/coordinatorlayout/widget/CoordinatorLayout.java index 8f518b6c9c..6a51dbd85b 100644 --- a/app/src/main/java/androidx/coordinatorlayout/widget/CoordinatorLayout.java +++ b/app/src/main/java/androidx/coordinatorlayout/widget/CoordinatorLayout.java @@ -379,11 +379,11 @@ public class CoordinatorLayout extends ViewGroup implements NestedScrollingParen this.mAnchorDirectChild = null; this.mAnchorView = null; } else { - StringBuilder P = a.P("Could not find CoordinatorLayout descendant view with id "); - P.append(coordinatorLayout.getResources().getResourceName(this.mAnchorId)); - P.append(" to anchor view "); - P.append(view); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Could not find CoordinatorLayout descendant view with id "); + O.append(coordinatorLayout.getResources().getResourceName(this.mAnchorId)); + O.append(" to anchor view "); + O.append(view); + throw new IllegalStateException(O.toString()); } } @@ -826,11 +826,11 @@ public class CoordinatorLayout extends ViewGroup implements NestedScrollingParen if (behavior == null || !behavior.getInsetDodgeRect(this, view, acquireTempRect)) { acquireTempRect.set(acquireTempRect2); } else if (!acquireTempRect2.contains(acquireTempRect)) { - StringBuilder P = a.P("Rect should be within the child's bounds. Rect:"); - P.append(acquireTempRect.toShortString()); - P.append(" | Bounds:"); - P.append(acquireTempRect2.toShortString()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Rect should be within the child's bounds. Rect:"); + O.append(acquireTempRect.toShortString()); + O.append(" | Bounds:"); + O.append(acquireTempRect2.toShortString()); + throw new IllegalArgumentException(O.toString()); } releaseTempRect(acquireTempRect2); if (acquireTempRect.isEmpty()) { @@ -1257,10 +1257,10 @@ public class CoordinatorLayout extends ViewGroup implements NestedScrollingParen try { layoutParams.setBehavior((Behavior) defaultBehavior.value().getDeclaredConstructor(new Class[0]).newInstance(new Object[0])); } catch (Exception e) { - StringBuilder P = a.P("Default behavior class "); - P.append(defaultBehavior.value().getName()); - P.append(" could not be instantiated. Did you forget a default constructor?"); - Log.e(TAG, P.toString(), e); + StringBuilder O = a.O("Default behavior class "); + O.append(defaultBehavior.value().getName()); + O.append(" could not be instantiated. Did you forget a default constructor?"); + Log.e(TAG, O.toString(), e); } } layoutParams.mBehaviorResolved = true; diff --git a/app/src/main/java/androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.java b/app/src/main/java/androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.java index 395b65ac45..0b82e1ae22 100644 --- a/app/src/main/java/androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.java +++ b/app/src/main/java/androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.java @@ -28,27 +28,27 @@ public final class AccessibilityServiceInfoCompat { @NonNull public static String feedbackTypeToString(int i) { - StringBuilder P = a.P("["); + StringBuilder O = a.O("["); while (i > 0) { int numberOfTrailingZeros = 1 << Integer.numberOfTrailingZeros(i); i &= ~numberOfTrailingZeros; - if (P.length() > 1) { - P.append(", "); + if (O.length() > 1) { + O.append(", "); } if (numberOfTrailingZeros == 1) { - P.append("FEEDBACK_SPOKEN"); + O.append("FEEDBACK_SPOKEN"); } else if (numberOfTrailingZeros == 2) { - P.append("FEEDBACK_HAPTIC"); + O.append("FEEDBACK_HAPTIC"); } else if (numberOfTrailingZeros == 4) { - P.append("FEEDBACK_AUDIBLE"); + O.append("FEEDBACK_AUDIBLE"); } else if (numberOfTrailingZeros == 8) { - P.append("FEEDBACK_VISUAL"); + O.append("FEEDBACK_VISUAL"); } else if (numberOfTrailingZeros == 16) { - P.append("FEEDBACK_GENERIC"); + O.append("FEEDBACK_GENERIC"); } } - P.append("]"); - return P.toString(); + O.append("]"); + return O.toString(); } @Nullable diff --git a/app/src/main/java/androidx/core/app/ActivityCompat.java b/app/src/main/java/androidx/core/app/ActivityCompat.java index 412b8c31a3..ac6bd92aa2 100644 --- a/app/src/main/java/androidx/core/app/ActivityCompat.java +++ b/app/src/main/java/androidx/core/app/ActivityCompat.java @@ -220,7 +220,7 @@ public class ActivityCompat extends ContextCompat { if (permissionCompatDelegate == null || !permissionCompatDelegate.requestPermissions(activity, strArr, i)) { for (String str : strArr) { if (TextUtils.isEmpty(str)) { - throw new IllegalArgumentException(a.H(a.P("Permission request for permissions "), Arrays.toString(strArr), " must not contain null or empty values")); + throw new IllegalArgumentException(a.G(a.O("Permission request for permissions "), Arrays.toString(strArr), " must not contain null or empty values")); } } if (Build.VERSION.SDK_INT >= 23) { diff --git a/app/src/main/java/androidx/core/app/JobIntentService.java b/app/src/main/java/androidx/core/app/JobIntentService.java index 8e1300348f..19950cfff6 100644 --- a/app/src/main/java/androidx/core/app/JobIntentService.java +++ b/app/src/main/java/androidx/core/app/JobIntentService.java @@ -266,9 +266,9 @@ public abstract class JobIntentService extends Service { this.mHasJobId = true; this.mJobId = i; } else if (this.mJobId != i) { - StringBuilder Q = a.Q("Given job ID ", i, " is different than previous "); - Q.append(this.mJobId); - throw new IllegalArgumentException(Q.toString()); + StringBuilder P = a.P("Given job ID ", i, " is different than previous "); + P.append(this.mJobId); + throw new IllegalArgumentException(P.toString()); } } diff --git a/app/src/main/java/androidx/core/app/NavUtils.java b/app/src/main/java/androidx/core/app/NavUtils.java index e4e448e6ba..fbe71cb379 100644 --- a/app/src/main/java/androidx/core/app/NavUtils.java +++ b/app/src/main/java/androidx/core/app/NavUtils.java @@ -99,10 +99,10 @@ public final class NavUtils { navigateUpTo(activity, parentActivityIntent); return; } - StringBuilder P = a.P("Activity "); - P.append(activity.getClass().getSimpleName()); - P.append(" does not have a parent activity name specified. (Did you forget to add the android.support.PARENT_ACTIVITY element in your manifest?)"); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Activity "); + O.append(activity.getClass().getSimpleName()); + O.append(" does not have a parent activity name specified. (Did you forget to add the android.support.PARENT_ACTIVITY element in your manifest?)"); + throw new IllegalArgumentException(O.toString()); } public static void navigateUpTo(@NonNull Activity activity, @NonNull Intent intent) { diff --git a/app/src/main/java/androidx/core/app/NotificationManagerCompat.java b/app/src/main/java/androidx/core/app/NotificationManagerCompat.java index 31e903d977..a950aa2b04 100644 --- a/app/src/main/java/androidx/core/app/NotificationManagerCompat.java +++ b/app/src/main/java/androidx/core/app/NotificationManagerCompat.java @@ -106,7 +106,7 @@ public final class NotificationManagerCompat { sb.append(", tag:"); sb.append(this.tag); sb.append(", all:"); - return c.d.b.a.a.L(sb, this.all, "]"); + return c.d.b.a.a.K(sb, this.all, "]"); } } @@ -138,7 +138,7 @@ public final class NotificationManagerCompat { sb.append(", id:"); sb.append(this.f28id); sb.append(", tag:"); - return c.d.b.a.a.H(sb, this.tag, "]"); + return c.d.b.a.a.G(sb, this.tag, "]"); } } @@ -192,9 +192,9 @@ public final class NotificationManagerCompat { if (bindService) { listenerRecord.retryCount = 0; } else { - StringBuilder P = c.d.b.a.a.P("Unable to bind to listener "); - P.append(listenerRecord.componentName); - Log.w(NotificationManagerCompat.TAG, P.toString()); + StringBuilder O = c.d.b.a.a.O("Unable to bind to listener "); + O.append(listenerRecord.componentName); + Log.w(NotificationManagerCompat.TAG, O.toString()); this.mContext.unbindService(this); } return listenerRecord.bound; @@ -241,12 +241,12 @@ public final class NotificationManagerCompat { private void processListenerQueue(ListenerRecord listenerRecord) { if (Log.isLoggable(NotificationManagerCompat.TAG, 3)) { - StringBuilder P = c.d.b.a.a.P("Processing component "); - P.append(listenerRecord.componentName); - P.append(", "); - P.append(listenerRecord.taskQueue.size()); - P.append(" queued tasks"); - Log.d(NotificationManagerCompat.TAG, P.toString()); + StringBuilder O = c.d.b.a.a.O("Processing component "); + O.append(listenerRecord.componentName); + O.append(", "); + O.append(listenerRecord.taskQueue.size()); + O.append(" queued tasks"); + Log.d(NotificationManagerCompat.TAG, O.toString()); } if (!listenerRecord.taskQueue.isEmpty()) { if (!ensureServiceBound(listenerRecord) || listenerRecord.service == null) { @@ -266,14 +266,14 @@ public final class NotificationManagerCompat { listenerRecord.taskQueue.remove(); } catch (DeadObjectException unused) { if (Log.isLoggable(NotificationManagerCompat.TAG, 3)) { - StringBuilder P2 = c.d.b.a.a.P("Remote service has died: "); - P2.append(listenerRecord.componentName); - Log.d(NotificationManagerCompat.TAG, P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Remote service has died: "); + O2.append(listenerRecord.componentName); + Log.d(NotificationManagerCompat.TAG, O2.toString()); } } catch (RemoteException e) { - StringBuilder P3 = c.d.b.a.a.P("RemoteException communicating with "); - P3.append(listenerRecord.componentName); - Log.w(NotificationManagerCompat.TAG, P3.toString(), e); + StringBuilder O3 = c.d.b.a.a.O("RemoteException communicating with "); + O3.append(listenerRecord.componentName); + Log.w(NotificationManagerCompat.TAG, O3.toString(), e); } } if (!listenerRecord.taskQueue.isEmpty()) { @@ -287,14 +287,14 @@ public final class NotificationManagerCompat { int i = listenerRecord.retryCount + 1; listenerRecord.retryCount = i; if (i > 6) { - StringBuilder P = c.d.b.a.a.P("Giving up on delivering "); - P.append(listenerRecord.taskQueue.size()); - P.append(" tasks to "); - P.append(listenerRecord.componentName); - P.append(" after "); - P.append(listenerRecord.retryCount); - P.append(" retries"); - Log.w(NotificationManagerCompat.TAG, P.toString()); + StringBuilder O = c.d.b.a.a.O("Giving up on delivering "); + O.append(listenerRecord.taskQueue.size()); + O.append(" tasks to "); + O.append(listenerRecord.componentName); + O.append(" after "); + O.append(listenerRecord.retryCount); + O.append(" retries"); + Log.w(NotificationManagerCompat.TAG, O.toString()); listenerRecord.taskQueue.clear(); return; } @@ -338,9 +338,9 @@ public final class NotificationManagerCompat { Map.Entry next = it2.next(); if (!hashSet.contains(next.getKey())) { if (Log.isLoggable(NotificationManagerCompat.TAG, 3)) { - StringBuilder P = c.d.b.a.a.P("Removing listener record for "); - P.append(next.getKey()); - Log.d(NotificationManagerCompat.TAG, P.toString()); + StringBuilder O = c.d.b.a.a.O("Removing listener record for "); + O.append(next.getKey()); + Log.d(NotificationManagerCompat.TAG, O.toString()); } ensureServiceUnbound(next.getValue()); it2.remove(); diff --git a/app/src/main/java/androidx/core/app/Person.java b/app/src/main/java/androidx/core/app/Person.java index 8d55f0a8aa..d7e52afb21 100644 --- a/app/src/main/java/androidx/core/app/Person.java +++ b/app/src/main/java/androidx/core/app/Person.java @@ -160,9 +160,9 @@ public class Person { if (this.mName == null) { return ""; } - StringBuilder P = a.P("name:"); - P.append((Object) this.mName); - return P.toString(); + StringBuilder O = a.O("name:"); + O.append((Object) this.mName); + return O.toString(); } @NonNull diff --git a/app/src/main/java/androidx/core/app/ShareCompat.java b/app/src/main/java/androidx/core/app/ShareCompat.java index 41581054c1..ab1b7519f6 100644 --- a/app/src/main/java/androidx/core/app/ShareCompat.java +++ b/app/src/main/java/androidx/core/app/ShareCompat.java @@ -453,11 +453,11 @@ public final class ShareCompat { if (i == 0) { return (Uri) this.mIntent.getParcelableExtra("android.intent.extra.STREAM"); } - StringBuilder P = a.P("Stream items available: "); - P.append(getStreamCount()); - P.append(" index requested: "); - P.append(i); - throw new IndexOutOfBoundsException(P.toString()); + StringBuilder O = a.O("Stream items available: "); + O.append(getStreamCount()); + O.append(" index requested: "); + O.append(i); + throw new IndexOutOfBoundsException(O.toString()); } public int getStreamCount() { @@ -514,9 +514,9 @@ public final class ShareCompat { public static void configureMenuItem(@NonNull MenuItem menuItem, @NonNull IntentBuilder intentBuilder) { ActionProvider actionProvider = menuItem.getActionProvider(); ShareActionProvider shareActionProvider = !(actionProvider instanceof ShareActionProvider) ? new ShareActionProvider(intentBuilder.getContext()) : (ShareActionProvider) actionProvider; - StringBuilder P = a.P(HISTORY_FILENAME_PREFIX); - P.append(intentBuilder.getContext().getClass().getName()); - shareActionProvider.setShareHistoryFileName(P.toString()); + StringBuilder O = a.O(HISTORY_FILENAME_PREFIX); + O.append(intentBuilder.getContext().getClass().getName()); + shareActionProvider.setShareHistoryFileName(O.toString()); shareActionProvider.setShareIntent(intentBuilder.getIntent()); menuItem.setActionProvider(shareActionProvider); } diff --git a/app/src/main/java/androidx/core/content/ContextCompat.java b/app/src/main/java/androidx/core/content/ContextCompat.java index 2ae0b8e276..d751fdf7bd 100644 --- a/app/src/main/java/androidx/core/content/ContextCompat.java +++ b/app/src/main/java/androidx/core/content/ContextCompat.java @@ -73,6 +73,7 @@ import androidx.appcompat.widget.ActivityChooserModel; import androidx.core.app.NotificationCompat; import androidx.core.content.res.ResourcesCompat; import androidx.core.os.ExecutorCompat; +import com.discord.models.domain.ModelAuditLogEntry; import com.discord.utilities.analytics.ChatInputComponentTypes; import java.io.File; import java.util.HashMap; @@ -265,7 +266,7 @@ public class ContextCompat { hashMap.put(InputMethodManager.class, "input_method"); hashMap.put(KeyguardManager.class, "keyguard"); hashMap.put(LayoutInflater.class, "layout_inflater"); - hashMap.put(LocationManager.class, "location"); + hashMap.put(LocationManager.class, ModelAuditLogEntry.CHANGE_KEY_LOCATION); hashMap.put(NfcManager.class, "nfc"); hashMap.put(NotificationManager.class, "notification"); hashMap.put(PowerManager.class, "power"); diff --git a/app/src/main/java/androidx/core/content/LocusIdCompat.java b/app/src/main/java/androidx/core/content/LocusIdCompat.java index 38565d7fe3..d9cd15806a 100644 --- a/app/src/main/java/androidx/core/content/LocusIdCompat.java +++ b/app/src/main/java/androidx/core/content/LocusIdCompat.java @@ -79,6 +79,6 @@ public final class LocusIdCompat { @NonNull public String toString() { - return a.H(a.P("LocusIdCompat["), getSanitizedId(), "]"); + return a.G(a.O("LocusIdCompat["), getSanitizedId(), "]"); } } diff --git a/app/src/main/java/androidx/core/content/pm/ShortcutInfoCompat.java b/app/src/main/java/androidx/core/content/pm/ShortcutInfoCompat.java index cffb0d9976..7db4495158 100644 --- a/app/src/main/java/androidx/core/content/pm/ShortcutInfoCompat.java +++ b/app/src/main/java/androidx/core/content/pm/ShortcutInfoCompat.java @@ -352,10 +352,10 @@ public class ShortcutInfoCompat { int i = 0; while (i < this.mPersons.length) { PersistableBundle persistableBundle = this.mExtras; - StringBuilder P = a.P(EXTRA_PERSON_); + StringBuilder O = a.O(EXTRA_PERSON_); int i2 = i + 1; - P.append(i2); - persistableBundle.putPersistableBundle(P.toString(), this.mPersons[i].toPersistableBundle()); + O.append(i2); + persistableBundle.putPersistableBundle(O.toString(), this.mPersons[i].toPersistableBundle()); i = i2; } } @@ -422,10 +422,10 @@ public class ShortcutInfoCompat { Person[] personArr = new Person[i]; int i2 = 0; while (i2 < i) { - StringBuilder P = a.P(EXTRA_PERSON_); + StringBuilder O = a.O(EXTRA_PERSON_); int i3 = i2 + 1; - P.append(i3); - personArr[i2] = Person.fromPersistableBundle(persistableBundle.getPersistableBundle(P.toString())); + O.append(i3); + personArr[i2] = Person.fromPersistableBundle(persistableBundle.getPersistableBundle(O.toString())); i2 = i3; } return personArr; diff --git a/app/src/main/java/androidx/core/content/res/ResourcesCompat.java b/app/src/main/java/androidx/core/content/res/ResourcesCompat.java index a2ae6497b3..351cbe261d 100644 --- a/app/src/main/java/androidx/core/content/res/ResourcesCompat.java +++ b/app/src/main/java/androidx/core/content/res/ResourcesCompat.java @@ -276,12 +276,12 @@ public final class ResourcesCompat { if (typedValue.type == 4) { return typedValue.getFloat(); } - StringBuilder P = a.P("Resource ID #0x"); - P.append(Integer.toHexString(i)); - P.append(" type #0x"); - P.append(Integer.toHexString(typedValue.type)); - P.append(" is not valid"); - throw new Resources.NotFoundException(P.toString()); + StringBuilder O = a.O("Resource ID #0x"); + O.append(Integer.toHexString(i)); + O.append(" type #0x"); + O.append(Integer.toHexString(typedValue.type)); + O.append(" is not valid"); + throw new Resources.NotFoundException(O.toString()); } @Nullable @@ -348,10 +348,10 @@ public final class ResourcesCompat { if (loadFont != null || fontCallback != null || z3) { return loadFont; } - StringBuilder P = a.P("Font resource ID #0x"); - P.append(Integer.toHexString(i)); - P.append(" could not be retrieved."); - throw new Resources.NotFoundException(P.toString()); + StringBuilder O = a.O("Font resource ID #0x"); + O.append(Integer.toHexString(i)); + O.append(" could not be retrieved."); + throw new Resources.NotFoundException(O.toString()); } /* JADX WARNING: Removed duplicated region for block: B:36:0x00a7 */ @@ -409,13 +409,13 @@ public final class ResourcesCompat { } } } else { - StringBuilder P = a.P("Resource \""); - P.append(resources.getResourceName(i)); - P.append("\" ("); - P.append(Integer.toHexString(i)); - P.append(") is not a Font: "); - P.append(typedValue); - throw new Resources.NotFoundException(P.toString()); + StringBuilder O = a.O("Resource \""); + O.append(resources.getResourceName(i)); + O.append("\" ("); + O.append(Integer.toHexString(i)); + O.append(") is not a Font: "); + O.append(typedValue); + throw new Resources.NotFoundException(O.toString()); } } } diff --git a/app/src/main/java/androidx/core/graphics/CanvasKt.java b/app/src/main/java/androidx/core/graphics/CanvasKt.java index e84d910b95..a2c2de1e57 100644 --- a/app/src/main/java/androidx/core/graphics/CanvasKt.java +++ b/app/src/main/java/androidx/core/graphics/CanvasKt.java @@ -20,7 +20,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -33,7 +33,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i5, canvas, save, i5); + a.a0(i5, canvas, save, i5); } } @@ -47,7 +47,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -61,7 +61,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -75,7 +75,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -89,7 +89,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -106,7 +106,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i2, canvas, save, i2); + a.a0(i2, canvas, save, i2); } } @@ -119,7 +119,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -141,7 +141,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i2, canvas, save, i2); + a.a0(i2, canvas, save, i2); } } @@ -153,7 +153,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -166,7 +166,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -191,7 +191,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i2, canvas, save, i2); + a.a0(i2, canvas, save, i2); } } @@ -204,7 +204,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -223,7 +223,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i2, canvas, save, i2); + a.a0(i2, canvas, save, i2); } } @@ -236,7 +236,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i, canvas, save, i); + a.a0(i, canvas, save, i); } } @@ -255,7 +255,7 @@ public final class CanvasKt { try { function1.invoke(canvas); } finally { - a.b0(i2, canvas, save, i2); + a.a0(i2, canvas, save, i2); } } } diff --git a/app/src/main/java/androidx/core/graphics/ColorUtils.java b/app/src/main/java/androidx/core/graphics/ColorUtils.java index f02535c848..b02ac3c00f 100644 --- a/app/src/main/java/androidx/core/graphics/ColorUtils.java +++ b/app/src/main/java/androidx/core/graphics/ColorUtils.java @@ -206,9 +206,9 @@ public final class ColorUtils { double calculateLuminance2 = calculateLuminance(i2) + 0.05d; return Math.max(calculateLuminance, calculateLuminance2) / Math.min(calculateLuminance, calculateLuminance2); } - StringBuilder P = a.P("background can not be translucent: #"); - P.append(Integer.toHexString(i2)); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("background can not be translucent: #"); + O.append(Integer.toHexString(i2)); + throw new IllegalArgumentException(O.toString()); } @FloatRange(from = ShadowDrawableWrapper.COS_45, to = 1.0d) @@ -236,9 +236,9 @@ public final class ColorUtils { } return i3; } - StringBuilder P = a.P("background can not be translucent: #"); - P.append(Integer.toHexString(i2)); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("background can not be translucent: #"); + O.append(Integer.toHexString(i2)); + throw new IllegalArgumentException(O.toString()); } @VisibleForTesting @@ -298,12 +298,12 @@ public final class ColorUtils { } return Color.valueOf(components2, color2.getColorSpace()); } - StringBuilder P = a.P("Color models must match ("); - P.append(color.getModel()); - P.append(" vs. "); - P.append(color2.getModel()); - P.append(")"); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Color models must match ("); + O.append(color.getModel()); + O.append(" vs. "); + O.append(color2.getModel()); + O.append(")"); + throw new IllegalArgumentException(O.toString()); } private static int compositeComponent(int i, int i2, int i3, int i4, int i5) { diff --git a/app/src/main/java/androidx/core/graphics/Insets.java b/app/src/main/java/androidx/core/graphics/Insets.java index 9d5a03830f..25ffb4aa20 100644 --- a/app/src/main/java/androidx/core/graphics/Insets.java +++ b/app/src/main/java/androidx/core/graphics/Insets.java @@ -86,13 +86,13 @@ public final class Insets { } public String toString() { - StringBuilder P = a.P("Insets{left="); - P.append(this.left); - P.append(", top="); - P.append(this.top); - P.append(", right="); - P.append(this.right); - P.append(", bottom="); - return a.y(P, this.bottom, '}'); + StringBuilder O = a.O("Insets{left="); + O.append(this.left); + O.append(", top="); + O.append(this.top); + O.append(", right="); + O.append(this.right); + O.append(", bottom="); + return a.y(O, this.bottom, '}'); } } diff --git a/app/src/main/java/androidx/core/graphics/PathSegment.java b/app/src/main/java/androidx/core/graphics/PathSegment.java index 999c0140a4..3e6ed2992b 100644 --- a/app/src/main/java/androidx/core/graphics/PathSegment.java +++ b/app/src/main/java/androidx/core/graphics/PathSegment.java @@ -59,15 +59,15 @@ public final class PathSegment { } public String toString() { - StringBuilder P = a.P("PathSegment{start="); - P.append(this.mStart); - P.append(", startFraction="); - P.append(this.mStartFraction); - P.append(", end="); - P.append(this.mEnd); - P.append(", endFraction="); - P.append(this.mEndFraction); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("PathSegment{start="); + O.append(this.mStart); + O.append(", startFraction="); + O.append(this.mStartFraction); + O.append(", end="); + O.append(this.mEnd); + O.append(", endFraction="); + O.append(this.mEndFraction); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/androidx/core/graphics/TypefaceCompatApi26Impl.java b/app/src/main/java/androidx/core/graphics/TypefaceCompatApi26Impl.java index 2e4fe1147f..bcfd8a471f 100644 --- a/app/src/main/java/androidx/core/graphics/TypefaceCompatApi26Impl.java +++ b/app/src/main/java/androidx/core/graphics/TypefaceCompatApi26Impl.java @@ -60,9 +60,9 @@ public class TypefaceCompatApi26Impl extends TypefaceCompatApi21Impl { method5 = obtainCreateFromFamiliesWithDefaultMethod(obtainFontFamily); cls = obtainFontFamily; } catch (ClassNotFoundException | NoSuchMethodException e) { - StringBuilder P = a.P("Unable to collect necessary methods for class "); - P.append(e.getClass().getName()); - Log.e(TAG, P.toString(), e); + StringBuilder O = a.O("Unable to collect necessary methods for class "); + O.append(e.getClass().getName()); + Log.e(TAG, O.toString(), e); method5 = null; constructor = null; method4 = null; diff --git a/app/src/main/java/androidx/core/graphics/TypefaceCompatUtil.java b/app/src/main/java/androidx/core/graphics/TypefaceCompatUtil.java index f6ea6d5c71..0337125787 100644 --- a/app/src/main/java/androidx/core/graphics/TypefaceCompatUtil.java +++ b/app/src/main/java/androidx/core/graphics/TypefaceCompatUtil.java @@ -139,12 +139,12 @@ public class TypefaceCompatUtil { if (cacheDir == null) { return null; } - StringBuilder P = a.P(CACHE_FILE_PREFIX); - P.append(Process.myPid()); - P.append("-"); - P.append(Process.myTid()); - P.append("-"); - String sb = P.toString(); + StringBuilder O = a.O(CACHE_FILE_PREFIX); + O.append(Process.myPid()); + O.append("-"); + O.append(Process.myTid()); + O.append("-"); + String sb = O.toString(); for (int i = 0; i < 100; i++) { File file = new File(cacheDir, a.l(sb, i)); try { diff --git a/app/src/main/java/androidx/core/graphics/drawable/IconCompat.java b/app/src/main/java/androidx/core/graphics/drawable/IconCompat.java index a49be0e2b6..e146db60c8 100644 --- a/app/src/main/java/androidx/core/graphics/drawable/IconCompat.java +++ b/app/src/main/java/androidx/core/graphics/drawable/IconCompat.java @@ -134,7 +134,7 @@ public class IconCompat extends CustomVersionedParcelable { break; case 0: default: - a.j0("Unknown type ", i, TAG); + a.i0("Unknown type ", i, TAG); return null; case 2: case 4: @@ -506,9 +506,9 @@ public class IconCompat extends CustomVersionedParcelable { drawable2.setBounds(0, 0, bitmap.getWidth(), bitmap.getHeight()); drawable2.draw(new Canvas(bitmap)); } catch (PackageManager.NameNotFoundException e) { - StringBuilder P = a.P("Can't find package "); - P.append(this.mObj1); - throw new IllegalArgumentException(P.toString(), e); + StringBuilder O = a.O("Can't find package "); + O.append(this.mObj1); + throw new IllegalArgumentException(O.toString(), e); } } else if (i == 5) { bitmap = createLegacyIconFromAdaptiveIcon((Bitmap) this.mObj1, true); @@ -830,14 +830,14 @@ public class IconCompat extends CustomVersionedParcelable { break; } } else { - StringBuilder P = a.P("Cannot load adaptive icon from uri: "); - P.append(getUri()); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Cannot load adaptive icon from uri: "); + O.append(getUri()); + throw new IllegalStateException(O.toString()); } } else { - StringBuilder P2 = a.P("Context is required to resolve the file uri of the icon: "); - P2.append(getUri()); - throw new IllegalArgumentException(P2.toString()); + StringBuilder O2 = a.O("Context is required to resolve the file uri of the icon: "); + O2.append(getUri()); + throw new IllegalArgumentException(O2.toString()); } } ColorStateList colorStateList = this.mTintList; diff --git a/app/src/main/java/androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.java b/app/src/main/java/androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.java index 4245f03c3a..1ea6cd0c59 100644 --- a/app/src/main/java/androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.java +++ b/app/src/main/java/androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.java @@ -61,7 +61,7 @@ public final class RoundedBitmapDrawableFactory { public static RoundedBitmapDrawable create(@NonNull Resources resources, @NonNull String str) { RoundedBitmapDrawable create = create(resources, BitmapFactory.decodeFile(str)); if (create.getBitmap() == null) { - a.l0("RoundedBitmapDrawable cannot decode ", str, TAG); + a.k0("RoundedBitmapDrawable cannot decode ", str, TAG); } return create; } diff --git a/app/src/main/java/androidx/core/net/UriCompat.java b/app/src/main/java/androidx/core/net/UriCompat.java index 2e27859f24..b05e16e0a5 100644 --- a/app/src/main/java/androidx/core/net/UriCompat.java +++ b/app/src/main/java/androidx/core/net/UriCompat.java @@ -30,15 +30,15 @@ public final class UriCompat { } return sb.toString(); } else if (scheme.equalsIgnoreCase("http") || scheme.equalsIgnoreCase(Constants.SCHEME) || scheme.equalsIgnoreCase("ftp") || scheme.equalsIgnoreCase("rtsp")) { - StringBuilder P = a.P("//"); + StringBuilder O = a.O("//"); String str = ""; - P.append(uri.getHost() != null ? uri.getHost() : str); + O.append(uri.getHost() != null ? uri.getHost() : str); if (uri.getPort() != -1) { - StringBuilder P2 = a.P(":"); - P2.append(uri.getPort()); - str = P2.toString(); + StringBuilder O2 = a.O(":"); + O2.append(uri.getPort()); + str = O2.toString(); } - schemeSpecificPart = a.H(P, str, "/..."); + schemeSpecificPart = a.G(O, str, "/..."); } } StringBuilder sb2 = new StringBuilder(64); diff --git a/app/src/main/java/androidx/core/os/LocaleListCompatWrapper.java b/app/src/main/java/androidx/core/os/LocaleListCompatWrapper.java index 8f3a851b05..086ae2415d 100644 --- a/app/src/main/java/androidx/core/os/LocaleListCompatWrapper.java +++ b/app/src/main/java/androidx/core/os/LocaleListCompatWrapper.java @@ -229,19 +229,19 @@ public final class LocaleListCompatWrapper implements LocaleListInterface { } public String toString() { - StringBuilder P = a.P("["); + StringBuilder O = a.O("["); int i = 0; while (true) { Locale[] localeArr = this.mList; if (i < localeArr.length) { - P.append(localeArr[i]); + O.append(localeArr[i]); if (i < this.mList.length - 1) { - P.append(','); + O.append(','); } i++; } else { - P.append("]"); - return P.toString(); + O.append("]"); + return O.toString(); } } } diff --git a/app/src/main/java/androidx/core/provider/FontProvider.java b/app/src/main/java/androidx/core/provider/FontProvider.java index f9e2847ec0..0abaa07460 100644 --- a/app/src/main/java/androidx/core/provider/FontProvider.java +++ b/app/src/main/java/androidx/core/provider/FontProvider.java @@ -97,9 +97,9 @@ public class FontProvider { } return null; } else { - StringBuilder V = a.V("Found content provider ", providerAuthority, ", but package was not "); - V.append(fontRequest.getProviderPackage()); - throw new PackageManager.NameNotFoundException(V.toString()); + StringBuilder U = a.U("Found content provider ", providerAuthority, ", but package was not "); + U.append(fontRequest.getProviderPackage()); + throw new PackageManager.NameNotFoundException(U.toString()); } } diff --git a/app/src/main/java/androidx/core/provider/FontRequest.java b/app/src/main/java/androidx/core/provider/FontRequest.java index 1b170e8b4c..43b9d19758 100644 --- a/app/src/main/java/androidx/core/provider/FontRequest.java +++ b/app/src/main/java/androidx/core/provider/FontRequest.java @@ -78,14 +78,14 @@ public final class FontRequest { public String toString() { StringBuilder sb = new StringBuilder(); - StringBuilder P = a.P("FontRequest {mProviderAuthority: "); - P.append(this.mProviderAuthority); - P.append(", mProviderPackage: "); - P.append(this.mProviderPackage); - P.append(", mQuery: "); - P.append(this.mQuery); - P.append(", mCertificates:"); - sb.append(P.toString()); + StringBuilder O = a.O("FontRequest {mProviderAuthority: "); + O.append(this.mProviderAuthority); + O.append(", mProviderPackage: "); + O.append(this.mProviderPackage); + O.append(", mQuery: "); + O.append(this.mQuery); + O.append(", mCertificates:"); + sb.append(O.toString()); for (int i = 0; i < this.mCertificates.size(); i++) { sb.append(" ["); List list = this.mCertificates.get(i); diff --git a/app/src/main/java/androidx/core/text/PrecomputedTextCompat.java b/app/src/main/java/androidx/core/text/PrecomputedTextCompat.java index e2c6b76fb3..7e16c1e85c 100644 --- a/app/src/main/java/androidx/core/text/PrecomputedTextCompat.java +++ b/app/src/main/java/androidx/core/text/PrecomputedTextCompat.java @@ -172,36 +172,36 @@ public class PrecomputedTextCompat implements Spannable { public String toString() { StringBuilder sb = new StringBuilder("{"); - StringBuilder P = a.P("textSize="); - P.append(this.mPaint.getTextSize()); - sb.append(P.toString()); + StringBuilder O = a.O("textSize="); + O.append(this.mPaint.getTextSize()); + sb.append(O.toString()); sb.append(", textScaleX=" + this.mPaint.getTextScaleX()); sb.append(", textSkewX=" + this.mPaint.getTextSkewX()); int i = Build.VERSION.SDK_INT; - StringBuilder P2 = a.P(", letterSpacing="); - P2.append(this.mPaint.getLetterSpacing()); - sb.append(P2.toString()); + StringBuilder O2 = a.O(", letterSpacing="); + O2.append(this.mPaint.getLetterSpacing()); + sb.append(O2.toString()); sb.append(", elegantTextHeight=" + this.mPaint.isElegantTextHeight()); if (i >= 24) { - StringBuilder P3 = a.P(", textLocale="); - P3.append(this.mPaint.getTextLocales()); - sb.append(P3.toString()); + StringBuilder O3 = a.O(", textLocale="); + O3.append(this.mPaint.getTextLocales()); + sb.append(O3.toString()); } else { - StringBuilder P4 = a.P(", textLocale="); - P4.append(this.mPaint.getTextLocale()); - sb.append(P4.toString()); + StringBuilder O4 = a.O(", textLocale="); + O4.append(this.mPaint.getTextLocale()); + sb.append(O4.toString()); } - StringBuilder P5 = a.P(", typeface="); - P5.append(this.mPaint.getTypeface()); - sb.append(P5.toString()); + StringBuilder O5 = a.O(", typeface="); + O5.append(this.mPaint.getTypeface()); + sb.append(O5.toString()); if (i >= 26) { - StringBuilder P6 = a.P(", variationSettings="); - P6.append(this.mPaint.getFontVariationSettings()); - sb.append(P6.toString()); + StringBuilder O6 = a.O(", variationSettings="); + O6.append(this.mPaint.getFontVariationSettings()); + sb.append(O6.toString()); } - StringBuilder P7 = a.P(", textDir="); - P7.append(this.mTextDir); - sb.append(P7.toString()); + StringBuilder O7 = a.O(", textDir="); + O7.append(this.mTextDir); + sb.append(O7.toString()); sb.append(", breakStrategy=" + this.mBreakStrategy); sb.append(", hyphenationFrequency=" + this.mHyphenationFrequency); sb.append("}"); diff --git a/app/src/main/java/androidx/core/text/util/LinkifyCompat.java b/app/src/main/java/androidx/core/text/util/LinkifyCompat.java index 47450bbf63..d14973a89d 100644 --- a/app/src/main/java/androidx/core/text/util/LinkifyCompat.java +++ b/app/src/main/java/androidx/core/text/util/LinkifyCompat.java @@ -273,7 +273,7 @@ public final class LinkifyCompat { str = strArr[i] + str.substring(strArr[i].length()); } } - return (z2 || strArr.length <= 0) ? str : a.H(new StringBuilder(), strArr[0], str); + return (z2 || strArr.length <= 0) ? str : a.G(new StringBuilder(), strArr[0], str); } private static void pruneOverlaps(ArrayList arrayList, Spannable spannable) { diff --git a/app/src/main/java/androidx/core/util/AtomicFile.java b/app/src/main/java/androidx/core/util/AtomicFile.java index c220f867e0..ceeb3197ef 100644 --- a/app/src/main/java/androidx/core/util/AtomicFile.java +++ b/app/src/main/java/androidx/core/util/AtomicFile.java @@ -56,9 +56,9 @@ public class AtomicFile { Log.e(LOG_TAG, "Failed to close file output stream", e); } if (!this.mNewName.delete()) { - StringBuilder P = a.P("Failed to delete new file "); - P.append(this.mNewName); - Log.e(LOG_TAG, P.toString()); + StringBuilder O = a.O("Failed to delete new file "); + O.append(this.mNewName); + Log.e(LOG_TAG, O.toString()); } } } @@ -88,9 +88,9 @@ public class AtomicFile { rename(this.mLegacyBackupName, this.mBaseName); } if (this.mNewName.exists() && this.mBaseName.exists() && !this.mNewName.delete()) { - StringBuilder P = a.P("Failed to delete outdated new file "); - P.append(this.mNewName); - Log.e(LOG_TAG, P.toString()); + StringBuilder O = a.O("Failed to delete outdated new file "); + O.append(this.mNewName); + Log.e(LOG_TAG, O.toString()); } return new FileInputStream(this.mBaseName); } @@ -131,14 +131,14 @@ public class AtomicFile { try { return new FileOutputStream(this.mNewName); } catch (FileNotFoundException e) { - StringBuilder P = a.P("Failed to create new file "); - P.append(this.mNewName); - throw new IOException(P.toString(), e); + StringBuilder O = a.O("Failed to create new file "); + O.append(this.mNewName); + throw new IOException(O.toString(), e); } } else { - StringBuilder P2 = a.P("Failed to create directory for "); - P2.append(this.mNewName); - throw new IOException(P2.toString()); + StringBuilder O2 = a.O("Failed to create directory for "); + O2.append(this.mNewName); + throw new IOException(O2.toString()); } } } diff --git a/app/src/main/java/androidx/core/util/Pair.java b/app/src/main/java/androidx/core/util/Pair.java index ffa087c0dd..d4640b1b0b 100644 --- a/app/src/main/java/androidx/core/util/Pair.java +++ b/app/src/main/java/androidx/core/util/Pair.java @@ -37,11 +37,11 @@ public class Pair { @NonNull public String toString() { - StringBuilder P = a.P("Pair{"); - P.append((Object) this.first); - P.append(" "); - P.append((Object) this.second); - P.append("}"); - return P.toString(); + StringBuilder O = a.O("Pair{"); + O.append((Object) this.first); + O.append(" "); + O.append((Object) this.second); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/androidx/core/util/Preconditions.java b/app/src/main/java/androidx/core/util/Preconditions.java index 7ce2106939..fd42ddc825 100644 --- a/app/src/main/java/androidx/core/util/Preconditions.java +++ b/app/src/main/java/androidx/core/util/Preconditions.java @@ -55,12 +55,12 @@ public final class Preconditions { if ((i & i2) == i) { return i; } - StringBuilder P = a.P("Requested flags 0x"); - P.append(Integer.toHexString(i)); - P.append(", but only 0x"); - P.append(Integer.toHexString(i2)); - P.append(" are allowed"); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Requested flags 0x"); + O.append(Integer.toHexString(i)); + O.append(", but only 0x"); + O.append(Integer.toHexString(i2)); + O.append(" are allowed"); + throw new IllegalArgumentException(O.toString()); } @NonNull diff --git a/app/src/main/java/androidx/core/view/ActionProvider.java b/app/src/main/java/androidx/core/view/ActionProvider.java index c9649abd7e..5d4d359378 100644 --- a/app/src/main/java/androidx/core/view/ActionProvider.java +++ b/app/src/main/java/androidx/core/view/ActionProvider.java @@ -74,10 +74,10 @@ public abstract class ActionProvider { public void setVisibilityListener(VisibilityListener visibilityListener) { if (!(this.mVisibilityListener == null || visibilityListener == null)) { - StringBuilder P = a.P("setVisibilityListener: Setting a new ActionProvider.VisibilityListener when one is already set. Are you reusing this "); - P.append(getClass().getSimpleName()); - P.append(" instance while it is still in use somewhere else?"); - Log.w(TAG, P.toString()); + StringBuilder O = a.O("setVisibilityListener: Setting a new ActionProvider.VisibilityListener when one is already set. Are you reusing this "); + O.append(getClass().getSimpleName()); + O.append(" instance while it is still in use somewhere else?"); + Log.w(TAG, O.toString()); } this.mVisibilityListener = visibilityListener; } diff --git a/app/src/main/java/androidx/core/view/ContentInfoCompat.java b/app/src/main/java/androidx/core/view/ContentInfoCompat.java index c8e3e2b422..247d81420f 100644 --- a/app/src/main/java/androidx/core/view/ContentInfoCompat.java +++ b/app/src/main/java/androidx/core/view/ContentInfoCompat.java @@ -177,25 +177,25 @@ public final class ContentInfoCompat { @NonNull public String toString() { String str; - StringBuilder P = a.P("ContentInfoCompat{clip="); - P.append(this.mClip.getDescription()); - P.append(", source="); - P.append(sourceToString(this.mSource)); - P.append(", flags="); - P.append(flagsToString(this.mFlags)); + StringBuilder O = a.O("ContentInfoCompat{clip="); + O.append(this.mClip.getDescription()); + O.append(", source="); + O.append(sourceToString(this.mSource)); + O.append(", flags="); + O.append(flagsToString(this.mFlags)); String str2 = ""; if (this.mLinkUri == null) { str = str2; } else { - StringBuilder P2 = a.P(", hasLinkUri("); - P2.append(this.mLinkUri.toString().length()); - P2.append(")"); - str = P2.toString(); + StringBuilder O2 = a.O(", hasLinkUri("); + O2.append(this.mLinkUri.toString().length()); + O2.append(")"); + str = O2.toString(); } - P.append(str); + O.append(str); if (this.mExtras != null) { str2 = ", hasExtras"; } - return a.H(P, str2, "}"); + return a.G(O, str2, "}"); } } diff --git a/app/src/main/java/androidx/core/view/DisplayCutoutCompat.java b/app/src/main/java/androidx/core/view/DisplayCutoutCompat.java index 253467a849..970387c1aa 100644 --- a/app/src/main/java/androidx/core/view/DisplayCutoutCompat.java +++ b/app/src/main/java/androidx/core/view/DisplayCutoutCompat.java @@ -121,10 +121,10 @@ public final class DisplayCutoutCompat { } public String toString() { - StringBuilder P = a.P("DisplayCutoutCompat{"); - P.append(this.mDisplayCutout); - P.append("}"); - return P.toString(); + StringBuilder O = a.O("DisplayCutoutCompat{"); + O.append(this.mDisplayCutout); + O.append("}"); + return O.toString(); } @RequiresApi(api = 28) diff --git a/app/src/main/java/androidx/core/view/LayoutInflaterCompat.java b/app/src/main/java/androidx/core/view/LayoutInflaterCompat.java index 61ef73c6ea..7382c4f091 100644 --- a/app/src/main/java/androidx/core/view/LayoutInflaterCompat.java +++ b/app/src/main/java/androidx/core/view/LayoutInflaterCompat.java @@ -47,10 +47,10 @@ public final class LayoutInflaterCompat { sLayoutInflaterFactory2Field = declaredField; declaredField.setAccessible(true); } catch (NoSuchFieldException e) { - StringBuilder P = a.P("forceSetFactory2 Could not find field 'mFactory2' on class "); - P.append(LayoutInflater.class.getName()); - P.append("; inflation may have unexpected results."); - Log.e(TAG, P.toString(), e); + StringBuilder O = a.O("forceSetFactory2 Could not find field 'mFactory2' on class "); + O.append(LayoutInflater.class.getName()); + O.append("; inflation may have unexpected results."); + Log.e(TAG, O.toString(), e); } sCheckedField = true; } diff --git a/app/src/main/java/androidx/core/view/ViewCompat.java b/app/src/main/java/androidx/core/view/ViewCompat.java index bf9d1b5e74..d1078db178 100644 --- a/app/src/main/java/androidx/core/view/ViewCompat.java +++ b/app/src/main/java/androidx/core/view/ViewCompat.java @@ -1792,9 +1792,9 @@ public class ViewCompat { i++; } } - StringBuilder P = a.P("A MIME type set here must not start with *: "); - P.append(Arrays.toString(strArr)); - Preconditions.checkArgument(!z2, P.toString()); + StringBuilder O = a.O("A MIME type set here must not start with *: "); + O.append(Arrays.toString(strArr)); + Preconditions.checkArgument(!z2, O.toString()); } view.setTag(R.id.tag_on_receive_content_mime_types, strArr); view.setTag(R.id.tag_on_receive_content_listener, onReceiveContentListener); diff --git a/app/src/main/java/androidx/core/view/ViewGroupKt.java b/app/src/main/java/androidx/core/view/ViewGroupKt.java index ca153896b2..696d28091c 100644 --- a/app/src/main/java/androidx/core/view/ViewGroupKt.java +++ b/app/src/main/java/androidx/core/view/ViewGroupKt.java @@ -67,9 +67,9 @@ public final class ViewGroupKt { if (childAt != null) { return childAt; } - StringBuilder Q = a.Q("Index: ", i, ", Size: "); - Q.append(viewGroup.getChildCount()); - throw new IndexOutOfBoundsException(Q.toString()); + StringBuilder P = a.P("Index: ", i, ", Size: "); + P.append(viewGroup.getChildCount()); + throw new IndexOutOfBoundsException(P.toString()); } public static final Sequence getChildren(ViewGroup viewGroup) { diff --git a/app/src/main/java/androidx/core/view/WindowInsetsAnimationCompat.java b/app/src/main/java/androidx/core/view/WindowInsetsAnimationCompat.java index 2621af5fe3..edcaeb2c48 100644 --- a/app/src/main/java/androidx/core/view/WindowInsetsAnimationCompat.java +++ b/app/src/main/java/androidx/core/view/WindowInsetsAnimationCompat.java @@ -76,12 +76,12 @@ public final class WindowInsetsAnimationCompat { } public String toString() { - StringBuilder P = a.P("Bounds{lower="); - P.append(this.mLowerBound); - P.append(" upper="); - P.append(this.mUpperBound); - P.append("}"); - return P.toString(); + StringBuilder O = a.O("Bounds{lower="); + O.append(this.mLowerBound); + O.append(" upper="); + O.append(this.mUpperBound); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/androidx/core/view/WindowInsetsAnimationControllerCompat.java b/app/src/main/java/androidx/core/view/WindowInsetsAnimationControllerCompat.java index 6ab78ba66f..ac69dc9487 100644 --- a/app/src/main/java/androidx/core/view/WindowInsetsAnimationControllerCompat.java +++ b/app/src/main/java/androidx/core/view/WindowInsetsAnimationControllerCompat.java @@ -132,10 +132,10 @@ public final class WindowInsetsAnimationControllerCompat { this.mImpl = new Impl(); return; } - StringBuilder P = a.P("On API 30+, the constructor taking a "); - P.append(WindowInsetsAnimationController.class.getSimpleName()); - P.append(" as parameter"); - throw new UnsupportedOperationException(P.toString()); + StringBuilder O = a.O("On API 30+, the constructor taking a "); + O.append(WindowInsetsAnimationController.class.getSimpleName()); + O.append(" as parameter"); + throw new UnsupportedOperationException(O.toString()); } @RequiresApi(30) diff --git a/app/src/main/java/androidx/core/view/WindowInsetsCompat.java b/app/src/main/java/androidx/core/view/WindowInsetsCompat.java index 8cdd3102b1..439a2b2140 100644 --- a/app/src/main/java/androidx/core/view/WindowInsetsCompat.java +++ b/app/src/main/java/androidx/core/view/WindowInsetsCompat.java @@ -47,9 +47,9 @@ public class WindowInsetsCompat { sContentInsets = declaredField3; declaredField3.setAccessible(true); } catch (ReflectiveOperationException e) { - StringBuilder P = a.P("Failed to get visible insets from AttachInfo "); - P.append(e.getMessage()); - Log.w(WindowInsetsCompat.TAG, P.toString(), e); + StringBuilder O = a.O("Failed to get visible insets from AttachInfo "); + O.append(e.getMessage()); + Log.w(WindowInsetsCompat.TAG, O.toString(), e); } } @@ -72,9 +72,9 @@ public class WindowInsetsCompat { } } } catch (IllegalAccessException e) { - StringBuilder P = a.P("Failed to get insets from AttachInfo. "); - P.append(e.getMessage()); - Log.w(WindowInsetsCompat.TAG, P.toString(), e); + StringBuilder O = a.O("Failed to get insets from AttachInfo. "); + O.append(e.getMessage()); + Log.w(WindowInsetsCompat.TAG, O.toString(), e); } } return null; @@ -596,9 +596,9 @@ public class WindowInsetsCompat { } return null; } catch (ReflectiveOperationException e) { - StringBuilder P = a.P("Failed to get visible insets. (Reflection error). "); - P.append(e.getMessage()); - Log.e(WindowInsetsCompat.TAG, P.toString(), e); + StringBuilder O = a.O("Failed to get visible insets. (Reflection error). "); + O.append(e.getMessage()); + Log.e(WindowInsetsCompat.TAG, O.toString(), e); } } return null; @@ -618,9 +618,9 @@ public class WindowInsetsCompat { sVisibleInsetsField.setAccessible(true); sAttachInfoField.setAccessible(true); } catch (ReflectiveOperationException e) { - StringBuilder P = a.P("Failed to get visible insets. (Reflection error). "); - P.append(e.getMessage()); - Log.e(WindowInsetsCompat.TAG, P.toString(), e); + StringBuilder O = a.O("Failed to get visible insets. (Reflection error). "); + O.append(e.getMessage()); + Log.e(WindowInsetsCompat.TAG, O.toString(), e); } sVisibleRectReflectionFetched = true; } diff --git a/app/src/main/java/androidx/core/widget/NestedScrollView.java b/app/src/main/java/androidx/core/widget/NestedScrollView.java index c63388ef70..8014650345 100644 --- a/app/src/main/java/androidx/core/widget/NestedScrollView.java +++ b/app/src/main/java/androidx/core/widget/NestedScrollView.java @@ -170,10 +170,10 @@ public class NestedScrollView extends FrameLayout implements NestedScrollingPare @Override // java.lang.Object @NonNull public String toString() { - StringBuilder P = a.P("HorizontalScrollView.SavedState{"); - P.append(Integer.toHexString(System.identityHashCode(this))); - P.append(" scrollPosition="); - return a.z(P, this.scrollPosition, "}"); + StringBuilder O = a.O("HorizontalScrollView.SavedState{"); + O.append(Integer.toHexString(System.identityHashCode(this))); + O.append(" scrollPosition="); + return a.z(O, this.scrollPosition, "}"); } @Override // android.view.View.BaseSavedState, android.os.Parcelable, android.view.AbsSavedState @@ -1183,10 +1183,10 @@ public class NestedScrollView extends FrameLayout implements NestedScrollingPare } else if (actionMasked == 2) { int findPointerIndex = motionEvent.findPointerIndex(this.mActivePointerId); if (findPointerIndex == -1) { - StringBuilder P = a.P("Invalid pointerId="); - P.append(this.mActivePointerId); - P.append(" in onTouchEvent"); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("Invalid pointerId="); + O.append(this.mActivePointerId); + O.append(" in onTouchEvent"); + Log.e(TAG, O.toString()); } else { int y2 = (int) motionEvent.getY(findPointerIndex); int i2 = this.mLastMotionY - y2; diff --git a/app/src/main/java/androidx/core/widget/TextViewCompat.java b/app/src/main/java/androidx/core/widget/TextViewCompat.java index 831c389ef7..2c0390bc2a 100644 --- a/app/src/main/java/androidx/core/widget/TextViewCompat.java +++ b/app/src/main/java/androidx/core/widget/TextViewCompat.java @@ -353,10 +353,10 @@ public final class TextViewCompat { try { return field.getInt(textView); } catch (IllegalAccessException unused) { - StringBuilder P = a.P("Could not retrieve value of "); - P.append(field.getName()); - P.append(" field."); - Log.d(LOG_TAG, P.toString()); + StringBuilder O = a.O("Could not retrieve value of "); + O.append(field.getName()); + O.append(" field."); + Log.d(LOG_TAG, O.toString()); return -1; } } diff --git a/app/src/main/java/androidx/customview/widget/ViewDragHelper.java b/app/src/main/java/androidx/customview/widget/ViewDragHelper.java index 2351df9ccc..878ceca195 100644 --- a/app/src/main/java/androidx/customview/widget/ViewDragHelper.java +++ b/app/src/main/java/androidx/customview/widget/ViewDragHelper.java @@ -465,10 +465,10 @@ public class ViewDragHelper { setDragState(1); return; } - StringBuilder P = a.P("captureChildView: parameter must be a descendant of the ViewDragHelper's tracked parent view ("); - P.append(this.mParentView); - P.append(")"); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("captureChildView: parameter must be a descendant of the ViewDragHelper's tracked parent view ("); + O.append(this.mParentView); + O.append(")"); + throw new IllegalArgumentException(O.toString()); } public boolean checkTouchSlop(int i) { diff --git a/app/src/main/java/androidx/drawerlayout/widget/DrawerLayout.java b/app/src/main/java/androidx/drawerlayout/widget/DrawerLayout.java index b8e4c57349..a0b421bb37 100644 --- a/app/src/main/java/androidx/drawerlayout/widget/DrawerLayout.java +++ b/app/src/main/java/androidx/drawerlayout/widget/DrawerLayout.java @@ -748,9 +748,9 @@ public class DrawerLayout extends ViewGroup { closeDrawer(findDrawerWithGravity, z2); return; } - StringBuilder P = a.P("No drawer view found with gravity "); - P.append(gravityToString(i)); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("No drawer view found with gravity "); + O.append(gravityToString(i)); + throw new IllegalArgumentException(O.toString()); } public void closeDrawer(@NonNull View view) { @@ -1342,13 +1342,13 @@ public class DrawerLayout extends ViewGroup { i4++; i3 = 0; } else { - StringBuilder P = a.P("Child drawer has absolute gravity "); - P.append(gravityToString(drawerViewAbsoluteGravity)); - P.append(" but this "); - P.append(TAG); - P.append(" already has a "); - P.append("drawer view along that edge"); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Child drawer has absolute gravity "); + O.append(gravityToString(drawerViewAbsoluteGravity)); + O.append(" but this "); + O.append(TAG); + O.append(" already has a "); + O.append("drawer view along that edge"); + throw new IllegalStateException(O.toString()); } } else { throw new IllegalStateException("Child " + childAt + " at index " + i4 + " does not have a valid layout_gravity - must be Gravity.LEFT, Gravity.RIGHT or Gravity.NO_GRAVITY"); @@ -1475,9 +1475,9 @@ public class DrawerLayout extends ViewGroup { openDrawer(findDrawerWithGravity, z2); return; } - StringBuilder P = a.P("No drawer view found with gravity "); - P.append(gravityToString(i)); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("No drawer view found with gravity "); + O.append(gravityToString(i)); + throw new IllegalArgumentException(O.toString()); } public void openDrawer(@NonNull View view) { diff --git a/app/src/main/java/androidx/exifinterface/media/ExifInterface.java b/app/src/main/java/androidx/exifinterface/media/ExifInterface.java index 08c867313b..1f53d54e08 100644 --- a/app/src/main/java/androidx/exifinterface/media/ExifInterface.java +++ b/app/src/main/java/androidx/exifinterface/media/ExifInterface.java @@ -719,9 +719,9 @@ public class ExifInterface { if (byteOrder == BIG_ENDIAN) { return (read << 24) + (read2 << 16) + (read3 << 8) + read4; } - StringBuilder P = a.P("Invalid byte order: "); - P.append(this.mByteOrder); - throw new IOException(P.toString()); + StringBuilder O = a.O("Invalid byte order: "); + O.append(this.mByteOrder); + throw new IOException(O.toString()); } throw new EOFException(); } @@ -755,9 +755,9 @@ public class ExifInterface { if (byteOrder == BIG_ENDIAN) { return (((long) read) << 56) + (((long) read2) << 48) + (((long) read3) << 40) + (((long) read4) << 32) + (((long) read5) << 24) + (((long) read6) << 16) + (((long) read7) << 8) + ((long) read8); } - StringBuilder P = a.P("Invalid byte order: "); - P.append(this.mByteOrder); - throw new IOException(P.toString()); + StringBuilder O = a.O("Invalid byte order: "); + O.append(this.mByteOrder); + throw new IOException(O.toString()); } throw new EOFException(); } @@ -779,9 +779,9 @@ public class ExifInterface { if (byteOrder == BIG_ENDIAN) { return (short) ((read << 8) + read2); } - StringBuilder P = a.P("Invalid byte order: "); - P.append(this.mByteOrder); - throw new IOException(P.toString()); + StringBuilder O = a.O("Invalid byte order: "); + O.append(this.mByteOrder); + throw new IOException(O.toString()); } throw new EOFException(); } @@ -819,9 +819,9 @@ public class ExifInterface { if (byteOrder == BIG_ENDIAN) { return (read << 8) + read2; } - StringBuilder P = a.P("Invalid byte order: "); - P.append(this.mByteOrder); - throw new IOException(P.toString()); + StringBuilder O = a.O("Invalid byte order: "); + O.append(this.mByteOrder); + throw new IOException(O.toString()); } throw new EOFException(); } @@ -1370,10 +1370,10 @@ public class ExifInterface { } public String toString() { - StringBuilder P = a.P("("); - P.append(ExifInterface.IFD_FORMAT_NAMES[this.format]); - P.append(", data length:"); - return a.z(P, this.bytes.length, ")"); + StringBuilder O = a.O("("); + O.append(ExifInterface.IFD_FORMAT_NAMES[this.format]); + O.append(", data length:"); + return a.z(O, this.bytes.length, ")"); } } @@ -1740,18 +1740,18 @@ public class ExifInterface { while (true) { byte[] bArr3 = new byte[4]; if (byteOrderedDataInputStream.read(bArr3) != 4) { - StringBuilder P = a.P("Encountered invalid length while copying WebP chunks up tochunk type "); + StringBuilder O = a.O("Encountered invalid length while copying WebP chunks up tochunk type "); Charset charset = ASCII; - P.append(new String(bArr, charset)); + O.append(new String(bArr, charset)); if (bArr2 == null) { str = ""; } else { - StringBuilder P2 = a.P(" or "); - P2.append(new String(bArr2, charset)); - str = P2.toString(); + StringBuilder O2 = a.O(" or "); + O2.append(new String(bArr2, charset)); + str = O2.toString(); } - P.append(str); - throw new IOException(P.toString()); + O.append(str); + throw new IOException(O.toString()); } copyWebPChunk(byteOrderedDataInputStream, byteOrderedDataOutputStream, bArr3); if (Arrays.equals(bArr3, bArr)) { @@ -1895,9 +1895,9 @@ public class ExifInterface { byte readByte = byteOrderedDataInputStream.readByte(); byte b = -1; if (readByte != -1) { - StringBuilder P = a.P("Invalid marker: "); - P.append(Integer.toHexString(readByte & 255)); - throw new IOException(P.toString()); + StringBuilder O = a.O("Invalid marker: "); + O.append(Integer.toHexString(readByte & 255)); + throw new IOException(O.toString()); } else if (byteOrderedDataInputStream.readByte() == -40) { int i3 = 2; int i4 = 2; @@ -1908,21 +1908,21 @@ public class ExifInterface { byte readByte3 = byteOrderedDataInputStream.readByte(); boolean z2 = DEBUG; if (z2) { - StringBuilder P2 = a.P("Found JPEG segment indicator: "); - P2.append(Integer.toHexString(readByte3 & 255)); - Log.d(TAG, P2.toString()); + StringBuilder O2 = a.O("Found JPEG segment indicator: "); + O2.append(Integer.toHexString(readByte3 & 255)); + Log.d(TAG, O2.toString()); } int i6 = i5 + 1; if (readByte3 != -39 && readByte3 != -38) { int readUnsignedShort = byteOrderedDataInputStream.readUnsignedShort() - i3; int i7 = i6 + i3; if (z2) { - StringBuilder P3 = a.P("JPEG segment: "); - P3.append(Integer.toHexString(readByte3 & 255)); - P3.append(" (length: "); - P3.append(readUnsignedShort + 2); - P3.append(")"); - Log.d(TAG, P3.toString()); + StringBuilder O3 = a.O("JPEG segment: "); + O3.append(Integer.toHexString(readByte3 & 255)); + O3.append(" (length: "); + O3.append(readUnsignedShort + 2); + O3.append(")"); + Log.d(TAG, O3.toString()); } if (readUnsignedShort >= 0) { if (readByte3 == -31) { @@ -2005,16 +2005,16 @@ public class ExifInterface { } } } else { - StringBuilder P4 = a.P("Invalid marker:"); - P4.append(Integer.toHexString(readByte2 & 255)); - throw new IOException(P4.toString()); + StringBuilder O4 = a.O("Invalid marker:"); + O4.append(Integer.toHexString(readByte2 & 255)); + throw new IOException(O4.toString()); } } byteOrderedDataInputStream.setByteOrder(this.mExifByteOrder); } else { - StringBuilder P5 = a.P("Invalid marker: "); - P5.append(Integer.toHexString(readByte & 255)); - throw new IOException(P5.toString()); + StringBuilder O5 = a.O("Invalid marker: "); + O5.append(Integer.toHexString(readByte & 255)); + throw new IOException(O5.toString()); } } @@ -2073,9 +2073,9 @@ public class ExifInterface { if (exifAttribute4 != null) { int[] iArr = (int[]) exifAttribute4.getValue(this.mExifByteOrder); if (iArr == null || iArr.length != 4) { - StringBuilder P = a.P("Invalid aspect frame values. frame="); - P.append(Arrays.toString(iArr)); - Log.w(TAG, P.toString()); + StringBuilder O = a.O("Invalid aspect frame values. frame="); + O.append(Arrays.toString(iArr)); + Log.w(TAG, O.toString()); } else if (iArr[2] > iArr[0] && iArr[3] > iArr[1]) { int i = (iArr[2] - iArr[0]) + 1; int i2 = (iArr[3] - iArr[1]) + 1; @@ -2172,7 +2172,7 @@ public class ExifInterface { byteOrderedDataInputStream.setByteOrder(ByteOrder.BIG_ENDIAN); int readInt = byteOrderedDataInputStream.readInt(); if (z2) { - a.i0("numberOfDirectoryEntry: ", readInt, TAG); + a.h0("numberOfDirectoryEntry: ", readInt, TAG); } for (int i4 = 0; i4 < readInt; i4++) { int readUnsignedShort = byteOrderedDataInputStream.readUnsignedShort(); @@ -3049,26 +3049,26 @@ public class ExifInterface { } return; } - StringBuilder P = a.P("Invalid start code: "); - P.append(Integer.toHexString(readUnsignedShort)); - throw new IOException(P.toString()); + StringBuilder O = a.O("Invalid start code: "); + O.append(Integer.toHexString(readUnsignedShort)); + throw new IOException(O.toString()); } private void printAttributes() { for (int i = 0; i < this.mAttributes.length; i++) { - StringBuilder Q = a.Q("The size of tag group[", i, "]: "); - Q.append(this.mAttributes[i].size()); - Log.d(TAG, Q.toString()); + StringBuilder P = a.P("The size of tag group[", i, "]: "); + P.append(this.mAttributes[i].size()); + Log.d(TAG, P.toString()); for (Map.Entry entry : this.mAttributes[i].entrySet()) { ExifAttribute value = entry.getValue(); - StringBuilder P = a.P("tagName: "); - P.append(entry.getKey()); - P.append(", tagType: "); - P.append(value.toString()); - P.append(", tagValue: '"); - P.append(value.getStringValue(this.mExifByteOrder)); - P.append("'"); - Log.d(TAG, P.toString()); + StringBuilder O = a.O("tagName: "); + O.append(entry.getKey()); + O.append(", tagType: "); + O.append(value.toString()); + O.append(", tagValue: '"); + O.append(value.getStringValue(this.mExifByteOrder)); + O.append("'"); + Log.d(TAG, O.toString()); } } } @@ -3086,9 +3086,9 @@ public class ExifInterface { } return ByteOrder.BIG_ENDIAN; } else { - StringBuilder P = a.P("Invalid byte order: "); - P.append(Integer.toHexString(readShort)); - throw new IOException(P.toString()); + StringBuilder O = a.O("Invalid byte order: "); + O.append(Integer.toHexString(readShort)); + throw new IOException(O.toString()); } } @@ -3121,7 +3121,7 @@ public class ExifInterface { if (byteOrderedDataInputStream.mPosition + 2 <= byteOrderedDataInputStream.mLength) { short readShort = byteOrderedDataInputStream.readShort(); if (DEBUG) { - a.i0("numberOfDirectoryEntry: ", readShort, TAG); + a.h0("numberOfDirectoryEntry: ", readShort, TAG); } if ((readShort * 12) + byteOrderedDataInputStream.mPosition <= byteOrderedDataInputStream.mLength && readShort > 0) { char c2 = 0; @@ -3155,7 +3155,7 @@ public class ExifInterface { j = ((long) readInt) * ((long) iArr[readUnsignedShort2]); if (j < 0 || j > 2147483647L) { if (z3) { - a.i0("Skip the tag entry since the number of components is invalid: ", readInt, TAG); + a.h0("Skip the tag entry since the number of components is invalid: ", readInt, TAG); } z2 = false; if (z2) { @@ -3164,7 +3164,7 @@ public class ExifInterface { if (j > 4) { int readInt2 = byteOrderedDataInputStream.readInt(); if (z3) { - a.i0("seek to data offset: ", readInt2, TAG); + a.h0("seek to data offset: ", readInt2, TAG); } i3 = readUnsignedShort2; if (this.mMimeType == 7) { @@ -3187,7 +3187,7 @@ public class ExifInterface { byteOrderedDataInputStream.seek(j4); } else { if (z3) { - a.i0("Skip the tag entry since data offset is invalid: ", readInt2, TAG); + a.h0("Skip the tag entry since data offset is invalid: ", readInt2, TAG); } byteOrderedDataInputStream.seek(peek); } @@ -3283,18 +3283,18 @@ public class ExifInterface { readShort = s3; } } else if (z3) { - StringBuilder P = a.P("Skip the tag entry since data format ("); - P.append(IFD_FORMAT_NAMES[readUnsignedShort2]); - P.append(") is unexpected for tag: "); - P.append(exifTag2.name); - Log.d(TAG, P.toString()); + StringBuilder O = a.O("Skip the tag entry since data format ("); + O.append(IFD_FORMAT_NAMES[readUnsignedShort2]); + O.append(") is unexpected for tag: "); + O.append(exifTag2.name); + Log.d(TAG, O.toString()); } } } s3 = readShort; s2 = s4; if (z3) { - a.i0("Skip the tag entry since data format is invalid: ", readUnsignedShort2, TAG); + a.h0("Skip the tag entry since data format is invalid: ", readUnsignedShort2, TAG); } j = 0; z2 = false; @@ -3305,7 +3305,7 @@ public class ExifInterface { i5 = i; readShort = s3; } else if (z3) { - a.i0("Skip the tag entry since tag number is not defined: ", readUnsignedShort, TAG); + a.h0("Skip the tag entry since tag number is not defined: ", readUnsignedShort, TAG); } s3 = readShort; s2 = s4; @@ -3327,7 +3327,7 @@ public class ExifInterface { long j6 = (long) readInt3; if (j6 <= 0 || readInt3 >= byteOrderedDataInputStream.mLength) { if (z4) { - a.i0("Stop reading file since a wrong offset may cause an infinite loop: ", readInt3, TAG); + a.h0("Stop reading file since a wrong offset may cause an infinite loop: ", readInt3, TAG); } } else if (!this.mAttributesOffsets.contains(Integer.valueOf(readInt3))) { byteOrderedDataInputStream.seek(j6); @@ -3337,7 +3337,7 @@ public class ExifInterface { readImageFileDirectory(byteOrderedDataInputStream, 5); } } else if (z4) { - a.i0("Stop reading file since re-reading an IFD may cause an infinite loop: ", readInt3, TAG); + a.h0("Stop reading file since re-reading an IFD may cause an infinite loop: ", readInt3, TAG); } } } @@ -3748,9 +3748,9 @@ public class ExifInterface { if (exifAttribute3.format == 5) { Rational[] rationalArr = (Rational[]) exifAttribute3.getValue(this.mExifByteOrder); if (rationalArr == null || rationalArr.length != 2) { - StringBuilder P = a.P("Invalid crop size values. cropSize="); - P.append(Arrays.toString(rationalArr)); - Log.w(TAG, P.toString()); + StringBuilder O = a.O("Invalid crop size values. cropSize="); + O.append(Arrays.toString(rationalArr)); + Log.w(TAG, O.toString()); return; } exifAttribute2 = ExifAttribute.createURational(rationalArr[0], this.mExifByteOrder); @@ -3758,9 +3758,9 @@ public class ExifInterface { } else { int[] iArr = (int[]) exifAttribute3.getValue(this.mExifByteOrder); if (iArr == null || iArr.length != 2) { - StringBuilder P2 = a.P("Invalid crop size values. cropSize="); - P2.append(Arrays.toString(iArr)); - Log.w(TAG, P2.toString()); + StringBuilder O2 = a.O("Invalid crop size values. cropSize="); + O2.append(Arrays.toString(iArr)); + Log.w(TAG, O2.toString()); return; } exifAttribute2 = ExifAttribute.createUShort(iArr[0], this.mExifByteOrder); @@ -4029,14 +4029,14 @@ public class ExifInterface { if (rationalArr != null && rationalArr.length == 3) { return String.format("%02d:%02d:%02d", Integer.valueOf((int) (((float) rationalArr[0].numerator) / ((float) rationalArr[0].denominator))), Integer.valueOf((int) (((float) rationalArr[1].numerator) / ((float) rationalArr[1].denominator))), Integer.valueOf((int) (((float) rationalArr[2].numerator) / ((float) rationalArr[2].denominator)))); } - StringBuilder P = a.P("Invalid GPS Timestamp array. array="); - P.append(Arrays.toString(rationalArr)); - Log.w(TAG, P.toString()); + StringBuilder O = a.O("Invalid GPS Timestamp array. array="); + O.append(Arrays.toString(rationalArr)); + Log.w(TAG, O.toString()); return null; } - StringBuilder P2 = a.P("GPS Timestamp format is not rational. format="); - P2.append(exifAttribute.format); - Log.w(TAG, P2.toString()); + StringBuilder O2 = a.O("GPS Timestamp format is not rational. format="); + O2.append(exifAttribute.format); + Log.w(TAG, O2.toString()); return null; } try { @@ -4160,9 +4160,9 @@ public class ExifInterface { try { return new double[]{convertRationalLatLonToDouble(attribute, attribute2), convertRationalLatLonToDouble(attribute3, attribute4)}; } catch (IllegalArgumentException unused) { - StringBuilder P = a.P("Latitude/longitude values are not parsable. "); - P.append(String.format("latValue=%s, latRef=%s, lngValue=%s, lngRef=%s", attribute, attribute2, attribute3, attribute4)); - Log.w(TAG, P.toString()); + StringBuilder O = a.O("Latitude/longitude values are not parsable. "); + O.append(String.format("latValue=%s, latRef=%s, lngValue=%s, lngRef=%s", attribute, attribute2, attribute3, attribute4)); + Log.w(TAG, O.toString()); return null; } } @@ -4714,28 +4714,28 @@ public class ExifInterface { if (i7 == i3 || i7 == 7 || i7 == i2) { i = i7; } else if (DEBUG) { - StringBuilder V = a.V("Given tag (", str4, ") value didn't match with one of expected formats: "); + StringBuilder U = a.U("Given tag (", str4, ") value didn't match with one of expected formats: "); String[] strArr = IFD_FORMAT_NAMES; - V.append(strArr[exifTag.primaryFormat]); + U.append(strArr[exifTag.primaryFormat]); String str6 = ""; if (exifTag.secondaryFormat == -1) { str3 = str6; } else { - StringBuilder P = a.P(", "); - P.append(strArr[exifTag.secondaryFormat]); - str3 = P.toString(); + StringBuilder O = a.O(", "); + O.append(strArr[exifTag.secondaryFormat]); + str3 = O.toString(); } - V.append(str3); - V.append(" (guess: "); - V.append(strArr[((Integer) guessDataFormat.first).intValue()]); + U.append(str3); + U.append(" (guess: "); + U.append(strArr[((Integer) guessDataFormat.first).intValue()]); if (((Integer) guessDataFormat.second).intValue() != -1) { - StringBuilder P2 = a.P(", "); - P2.append(strArr[((Integer) guessDataFormat.second).intValue()]); - str6 = P2.toString(); + StringBuilder O2 = a.O(", "); + O2.append(strArr[((Integer) guessDataFormat.second).intValue()]); + str6 = O2.toString(); } - V.append(str6); - V.append(")"); - Log.d(TAG, V.toString()); + U.append(str6); + U.append(")"); + Log.d(TAG, U.toString()); } } else { i = exifTag.secondaryFormat; @@ -4782,7 +4782,7 @@ public class ExifInterface { case 11: default: if (DEBUG) { - a.i0("Data format isn't one of expected formats: ", i, TAG); + a.h0("Data format isn't one of expected formats: ", i, TAG); break; } else { continue; diff --git a/app/src/main/java/androidx/fragment/app/BackStackRecord.java b/app/src/main/java/androidx/fragment/app/BackStackRecord.java index 33d3a39384..67ed92dd2c 100644 --- a/app/src/main/java/androidx/fragment/app/BackStackRecord.java +++ b/app/src/main/java/androidx/fragment/app/BackStackRecord.java @@ -40,11 +40,11 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme if (fragment != null) { fragment.mBackStackNesting += i; if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P = a.P("Bump nesting of "); - P.append(op.mFragment); - P.append(" to "); - P.append(op.mFragment.mBackStackNesting); - Log.v("FragmentManager", P.toString()); + StringBuilder O = a.O("Bump nesting of "); + O.append(op.mFragment); + O.append(" to "); + O.append(op.mFragment.mBackStackNesting); + Log.v("FragmentManager", O.toString()); } } } @@ -100,10 +100,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme if (fragmentManager == null || fragmentManager == this.mManager) { return super.detach(fragment); } - StringBuilder P = a.P("Cannot detach Fragment attached to a different FragmentManager. Fragment "); - P.append(fragment.toString()); - P.append(" is already attached to a FragmentManager."); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Cannot detach Fragment attached to a different FragmentManager. Fragment "); + O.append(fragment.toString()); + O.append(" is already attached to a FragmentManager."); + throw new IllegalStateException(O.toString()); } @Override // androidx.fragment.app.FragmentTransaction @@ -201,9 +201,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme str2 = "OP_SET_MAX_LIFECYCLE"; break; default: - StringBuilder P = a.P("cmd="); - P.append(op.mCmd); - str2 = P.toString(); + StringBuilder O = a.O("cmd="); + O.append(op.mCmd); + str2 = O.toString(); break; } printWriter.print(str); @@ -250,9 +250,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme break; case 2: default: - StringBuilder P = a.P("Unknown cmd: "); - P.append(op.mCmd); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Unknown cmd: "); + O.append(op.mCmd); + throw new IllegalArgumentException(O.toString()); case 3: fragment.setNextAnim(op.mExitAnim); this.mManager.removeFragment(fragment); @@ -311,9 +311,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme break; case 2: default: - StringBuilder P = a.P("Unknown cmd: "); - P.append(op.mCmd); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Unknown cmd: "); + O.append(op.mCmd); + throw new IllegalArgumentException(O.toString()); case 3: fragment.setNextAnim(op.mPopEnterAnim); this.mManager.addFragment(fragment); @@ -473,10 +473,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme if (fragmentManager == null || fragmentManager == this.mManager) { return super.hide(fragment); } - StringBuilder P = a.P("Cannot hide Fragment attached to a different FragmentManager. Fragment "); - P.append(fragment.toString()); - P.append(" is already attached to a FragmentManager."); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Cannot hide Fragment attached to a different FragmentManager. Fragment "); + O.append(fragment.toString()); + O.append(" is already attached to a FragmentManager."); + throw new IllegalStateException(O.toString()); } public boolean interactsWith(int i) { @@ -538,10 +538,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme if (fragmentManager == null || fragmentManager == this.mManager) { return super.remove(fragment); } - StringBuilder P = a.P("Cannot remove Fragment attached to a different FragmentManager. Fragment "); - P.append(fragment.toString()); - P.append(" is already attached to a FragmentManager."); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Cannot remove Fragment attached to a different FragmentManager. Fragment "); + O.append(fragment.toString()); + O.append(" is already attached to a FragmentManager."); + throw new IllegalStateException(O.toString()); } public void runOnCommitRunnables() { @@ -557,9 +557,9 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme @NonNull public FragmentTransaction setMaxLifecycle(@NonNull Fragment fragment, @NonNull Lifecycle.State state) { if (fragment.mFragmentManager != this.mManager) { - StringBuilder P = a.P("Cannot setMaxLifecycle for Fragment not attached to FragmentManager "); - P.append(this.mManager); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Cannot setMaxLifecycle for Fragment not attached to FragmentManager "); + O.append(this.mManager); + throw new IllegalArgumentException(O.toString()); } else if (state == Lifecycle.State.INITIALIZED && fragment.mState > -1) { throw new IllegalArgumentException("Cannot set maximum Lifecycle to " + state + " after the Fragment has been created"); } else if (state != Lifecycle.State.DESTROYED) { @@ -585,10 +585,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme if (fragment == null || (fragmentManager = fragment.mFragmentManager) == null || fragmentManager == this.mManager) { return super.setPrimaryNavigationFragment(fragment); } - StringBuilder P = a.P("Cannot setPrimaryNavigation for Fragment attached to a different FragmentManager. Fragment "); - P.append(fragment.toString()); - P.append(" is already attached to a FragmentManager."); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Cannot setPrimaryNavigation for Fragment attached to a different FragmentManager. Fragment "); + O.append(fragment.toString()); + O.append(" is already attached to a FragmentManager."); + throw new IllegalStateException(O.toString()); } @Override // androidx.fragment.app.FragmentTransaction @@ -598,10 +598,10 @@ public final class BackStackRecord extends FragmentTransaction implements Fragme if (fragmentManager == null || fragmentManager == this.mManager) { return super.show(fragment); } - StringBuilder P = a.P("Cannot show Fragment attached to a different FragmentManager. Fragment "); - P.append(fragment.toString()); - P.append(" is already attached to a FragmentManager."); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Cannot show Fragment attached to a different FragmentManager. Fragment "); + O.append(fragment.toString()); + O.append(" is already attached to a FragmentManager."); + throw new IllegalStateException(O.toString()); } public String toString() { diff --git a/app/src/main/java/androidx/fragment/app/DefaultSpecialEffectsController.java b/app/src/main/java/androidx/fragment/app/DefaultSpecialEffectsController.java index 7b757e41ec..073cafefe6 100644 --- a/app/src/main/java/androidx/fragment/app/DefaultSpecialEffectsController.java +++ b/app/src/main/java/androidx/fragment/app/DefaultSpecialEffectsController.java @@ -341,13 +341,13 @@ public class DefaultSpecialEffectsController extends SpecialEffectsController { if (handlingImpl == null || handlingImpl2 == null || handlingImpl == handlingImpl2) { return handlingImpl != null ? handlingImpl : handlingImpl2; } - StringBuilder P = a.P("Mixing framework transitions and AndroidX transitions is not allowed. Fragment "); - P.append(getOperation().getFragment()); - P.append(" returned Transition "); - P.append(this.mTransition); - P.append(" which uses a different Transition type than its shared element transition "); - P.append(this.mSharedElementTransition); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Mixing framework transitions and AndroidX transitions is not allowed. Fragment "); + O.append(getOperation().getFragment()); + O.append(" returned Transition "); + O.append(this.mTransition); + O.append(" which uses a different Transition type than its shared element transition "); + O.append(this.mSharedElementTransition); + throw new IllegalArgumentException(O.toString()); } @Nullable @@ -485,12 +485,12 @@ public class DefaultSpecialEffectsController extends SpecialEffectsController { if (fragmentTransitionImpl2 == null) { fragmentTransitionImpl2 = handlingImpl; } else if (!(handlingImpl == null || fragmentTransitionImpl2 == handlingImpl)) { - StringBuilder P = a.P("Mixing framework transitions and AndroidX transitions is not allowed. Fragment "); - P.append(transitionInfo.getOperation().getFragment()); - P.append(" returned Transition "); - P.append(transitionInfo.getTransition()); - P.append(" which uses a different Transition type than other Fragments."); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Mixing framework transitions and AndroidX transitions is not allowed. Fragment "); + O.append(transitionInfo.getOperation().getFragment()); + O.append(" returned Transition "); + O.append(transitionInfo.getTransition()); + O.append(" which uses a different Transition type than other Fragments."); + throw new IllegalArgumentException(O.toString()); } } } diff --git a/app/src/main/java/androidx/fragment/app/Fragment.java b/app/src/main/java/androidx/fragment/app/Fragment.java index 283e464590..114ad4937c 100644 --- a/app/src/main/java/androidx/fragment/app/Fragment.java +++ b/app/src/main/java/androidx/fragment/app/Fragment.java @@ -191,10 +191,10 @@ public class Fragment implements ComponentCallbacks, View.OnCreateContextMenuLis if (view != null) { return view.findViewById(i); } - StringBuilder P = a.P("Fragment "); - P.append(Fragment.this); - P.append(" does not have a view"); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Fragment "); + O.append(Fragment.this); + O.append(" does not have a view"); + throw new IllegalStateException(O.toString()); } @Override // androidx.fragment.app.FragmentContainer @@ -650,11 +650,11 @@ public class Fragment implements ComponentCallbacks, View.OnCreateContextMenuLis @NonNull public String generateActivityResultKey() { - StringBuilder P = a.P("fragment_"); - P.append(this.mWho); - P.append("_rq#"); - P.append(this.mNextLocalRequestCode.getAndIncrement()); - return P.toString(); + StringBuilder O = a.O("fragment_"); + O.append(this.mWho); + O.append("_rq#"); + O.append(this.mNextLocalRequestCode.getAndIncrement()); + return O.toString(); } @Nullable @@ -740,10 +740,10 @@ public class Fragment implements ComponentCallbacks, View.OnCreateContextMenuLis } } if (application == null && FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("Could not find Application instance from Context "); - P.append(requireContext().getApplicationContext()); - P.append(", you will not be able to use AndroidViewModel with the default ViewModelProvider.Factory"); - Log.d(FragmentManager.TAG, P.toString()); + StringBuilder O = a.O("Could not find Application instance from Context "); + O.append(requireContext().getApplicationContext()); + O.append(", you will not be able to use AndroidViewModel with the default ViewModelProvider.Factory"); + Log.d(FragmentManager.TAG, O.toString()); } this.mDefaultFactory = new SavedStateViewModelFactory(application, this, getArguments()); } diff --git a/app/src/main/java/androidx/fragment/app/FragmentManager.java b/app/src/main/java/androidx/fragment/app/FragmentManager.java index 625bd7c463..3af4a0e698 100644 --- a/app/src/main/java/androidx/fragment/app/FragmentManager.java +++ b/app/src/main/java/androidx/fragment/app/FragmentManager.java @@ -139,7 +139,7 @@ public abstract class FragmentManager implements FragmentResultOwner { int i = pollFirst.mRequestCode; Fragment findFragmentByWho = FragmentManager.access$200(FragmentManager.this).findFragmentByWho(str); if (findFragmentByWho == null) { - a.l0("Intent Sender result delivered for unknown Fragment ", str, FragmentManager.TAG); + a.k0("Intent Sender result delivered for unknown Fragment ", str, FragmentManager.TAG); } else { findFragmentByWho.onActivityResult(i, activityResult.getResultCode(), activityResult.getData()); } @@ -168,7 +168,7 @@ public abstract class FragmentManager implements FragmentResultOwner { int i2 = pollFirst.mRequestCode; Fragment findFragmentByWho = FragmentManager.access$200(FragmentManager.this).findFragmentByWho(str); if (findFragmentByWho == null) { - a.l0("Permission request result delivered for unknown Fragment ", str, FragmentManager.TAG); + a.k0("Permission request result delivered for unknown Fragment ", str, FragmentManager.TAG); } else { findFragmentByWho.onRequestPermissionsResult(i2, strArr, iArr); } @@ -307,7 +307,7 @@ public abstract class FragmentManager implements FragmentResultOwner { int i = pollFirst.mRequestCode; Fragment findFragmentByWho = FragmentManager.access$200(FragmentManager.this).findFragmentByWho(str); if (findFragmentByWho == null) { - a.l0("Activity result delivered for unknown Fragment ", str, FragmentManager.TAG); + a.k0("Activity result delivered for unknown Fragment ", str, FragmentManager.TAG); } else { findFragmentByWho.onActivityResult(i, activityResult.getResultCode(), activityResult.getData()); } @@ -1315,7 +1315,7 @@ public abstract class FragmentManager implements FragmentResultOwner { FragmentHostCallback fragmentHostCallback2 = this.mHost; if (fragmentHostCallback2 instanceof ActivityResultRegistryOwner) { ActivityResultRegistry activityResultRegistry = ((ActivityResultRegistryOwner) fragmentHostCallback2).getActivityResultRegistry(); - String u = a.u("FragmentManager:", fragment != null ? a.H(new StringBuilder(), fragment.mWho, ":") : ""); + String u = a.u("FragmentManager:", fragment != null ? a.G(new StringBuilder(), fragment.mWho, ":") : ""); this.mStartActivityForResult = activityResultRegistry.register(a.u(u, "StartActivityForResult"), new ActivityResultContracts.StartActivityForResult(), new AnonymousClass9()); this.mStartIntentSenderForResult = activityResultRegistry.register(a.u(u, "StartIntentSenderForResult"), new FragmentIntentSenderContract(), new AnonymousClass10()); this.mRequestPermissions = activityResultRegistry.register(a.u(u, "RequestPermissions"), new ActivityResultContracts.RequestMultiplePermissions(), new AnonymousClass11()); @@ -2409,11 +2409,11 @@ public abstract class FragmentManager implements FragmentResultOwner { Fragment fragment = fragmentStateManager.getFragment(); fragment.mFragmentManager = this; if (isLoggingEnabled(2)) { - StringBuilder P = a.P("restoreSaveState: active ("); - P.append(fragment.mWho); - P.append("): "); - P.append(fragment); - Log.v(TAG, P.toString()); + StringBuilder O = a.O("restoreSaveState: active ("); + O.append(fragment.mWho); + O.append("): "); + O.append(fragment); + Log.v(TAG, O.toString()); } fragmentStateManager.restoreState(this.mHost.getContext().getClassLoader()); this.mFragmentStore.makeActive(fragmentStateManager); @@ -2445,11 +2445,11 @@ public abstract class FragmentManager implements FragmentResultOwner { } BackStackRecord instantiate = backStackStateArr[i].instantiate(this); if (isLoggingEnabled(2)) { - StringBuilder Q = a.Q("restoreAllState: back stack #", i, " (index "); - Q.append(instantiate.mIndex); - Q.append("): "); - Q.append(instantiate); - Log.v(TAG, Q.toString()); + StringBuilder P = a.P("restoreAllState: back stack #", i, " (index "); + P.append(instantiate.mIndex); + P.append("): "); + P.append(instantiate); + Log.v(TAG, P.toString()); PrintWriter printWriter = new PrintWriter(new LogWriter(TAG)); instantiate.dump(" ", printWriter, false); printWriter.close(); @@ -2508,9 +2508,9 @@ public abstract class FragmentManager implements FragmentResultOwner { for (int i = 0; i < size; i++) { backStackStateArr[i] = new BackStackState(this.mBackStack.get(i)); if (isLoggingEnabled(2)) { - StringBuilder Q = a.Q("saveAllState: adding back stack #", i, ": "); - Q.append(this.mBackStack.get(i)); - Log.v(TAG, Q.toString()); + StringBuilder P = a.P("saveAllState: adding back stack #", i, ": "); + P.append(this.mBackStack.get(i)); + Log.v(TAG, P.toString()); } } } diff --git a/app/src/main/java/androidx/fragment/app/FragmentStateManager.java b/app/src/main/java/androidx/fragment/app/FragmentStateManager.java index 2531998f27..3d340a1771 100644 --- a/app/src/main/java/androidx/fragment/app/FragmentStateManager.java +++ b/app/src/main/java/androidx/fragment/app/FragmentStateManager.java @@ -183,9 +183,9 @@ public class FragmentStateManager { public void activityCreated() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("moveto ACTIVITY_CREATED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("moveto ACTIVITY_CREATED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } Fragment fragment = this.mFragment; fragment.performActivityCreated(fragment.mSavedFragmentState); @@ -202,9 +202,9 @@ public class FragmentStateManager { public void attach() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("moveto ATTACHED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("moveto ATTACHED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } Fragment fragment = this.mFragment; Fragment fragment2 = fragment.mTarget; @@ -217,20 +217,20 @@ public class FragmentStateManager { fragment3.mTarget = null; fragmentStateManager = fragmentStateManager2; } else { - StringBuilder P2 = a.P("Fragment "); - P2.append(this.mFragment); - P2.append(" declared target fragment "); - P2.append(this.mFragment.mTarget); - P2.append(" that does not belong to this FragmentManager!"); - throw new IllegalStateException(P2.toString()); + StringBuilder O2 = a.O("Fragment "); + O2.append(this.mFragment); + O2.append(" declared target fragment "); + O2.append(this.mFragment.mTarget); + O2.append(" that does not belong to this FragmentManager!"); + throw new IllegalStateException(O2.toString()); } } else { String str = fragment.mTargetWho; if (str != null && (fragmentStateManager = this.mFragmentStore.getFragmentStateManager(str)) == null) { - StringBuilder P3 = a.P("Fragment "); - P3.append(this.mFragment); - P3.append(" declared target fragment "); - throw new IllegalStateException(a.H(P3, this.mFragment.mTargetWho, " that does not belong to this FragmentManager!")); + StringBuilder O3 = a.O("Fragment "); + O3.append(this.mFragment); + O3.append(" declared target fragment "); + throw new IllegalStateException(a.G(O3, this.mFragment.mTargetWho, " that does not belong to this FragmentManager!")); } } if (fragmentStateManager != null && (FragmentManager.USE_STATE_MANAGER || fragmentStateManager.getFragment().mState < 1)) { @@ -297,18 +297,18 @@ public class FragmentStateManager { i = Math.min(i, 4); } if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder Q = a.Q("computeExpectedState() of ", i, " for "); - Q.append(this.mFragment); - Log.v("FragmentManager", Q.toString()); + StringBuilder P = a.P("computeExpectedState() of ", i, " for "); + P.append(this.mFragment); + Log.v("FragmentManager", P.toString()); } return i; } public void create() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("moveto CREATED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("moveto CREATED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } Fragment fragment = this.mFragment; if (!fragment.mIsCreated) { @@ -328,9 +328,9 @@ public class FragmentStateManager { String str; if (!this.mFragment.mFromLayout) { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("moveto CREATE_VIEW: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("moveto CREATE_VIEW: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } Fragment fragment = this.mFragment; LayoutInflater performGetLayoutInflater = fragment.performGetLayoutInflater(fragment.mSavedFragmentState); @@ -352,20 +352,20 @@ public class FragmentStateManager { } catch (Resources.NotFoundException unused) { str = EnvironmentCompat.MEDIA_UNKNOWN; } - StringBuilder P2 = a.P("No view found for id 0x"); - P2.append(Integer.toHexString(this.mFragment.mContainerId)); - P2.append(" ("); - P2.append(str); - P2.append(") for fragment "); - P2.append(this.mFragment); - throw new IllegalArgumentException(P2.toString()); + StringBuilder O2 = a.O("No view found for id 0x"); + O2.append(Integer.toHexString(this.mFragment.mContainerId)); + O2.append(" ("); + O2.append(str); + O2.append(") for fragment "); + O2.append(this.mFragment); + throw new IllegalArgumentException(O2.toString()); } } } else { - StringBuilder P3 = a.P("Cannot create fragment "); - P3.append(this.mFragment); - P3.append(" for a container view with no id"); - throw new IllegalArgumentException(P3.toString()); + StringBuilder O3 = a.O("Cannot create fragment "); + O3.append(this.mFragment); + O3.append(" for a container view with no id"); + throw new IllegalArgumentException(O3.toString()); } } } @@ -425,9 +425,9 @@ public class FragmentStateManager { public void destroy() { Fragment findActiveFragment; if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("movefrom CREATED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("movefrom CREATED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } Fragment fragment = this.mFragment; boolean z2 = true; @@ -471,9 +471,9 @@ public class FragmentStateManager { public void destroyFragmentView() { View view; if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("movefrom CREATE_VIEW: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("movefrom CREATE_VIEW: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } Fragment fragment = this.mFragment; ViewGroup viewGroup = fragment.mContainer; @@ -492,9 +492,9 @@ public class FragmentStateManager { public void detach() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("movefrom ATTACHED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("movefrom ATTACHED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } this.mFragment.performDetach(); boolean z2 = false; @@ -509,9 +509,9 @@ public class FragmentStateManager { } if (z2 || this.mFragmentStore.getNonConfig().shouldDestroy(this.mFragment)) { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P2 = a.P("initState called for fragment: "); - P2.append(this.mFragment); - Log.d("FragmentManager", P2.toString()); + StringBuilder O2 = a.O("initState called for fragment: "); + O2.append(this.mFragment); + Log.d("FragmentManager", O2.toString()); } this.mFragment.initState(); } @@ -521,9 +521,9 @@ public class FragmentStateManager { Fragment fragment = this.mFragment; if (fragment.mFromLayout && fragment.mInLayout && !fragment.mPerformedCreateView) { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("moveto CREATE_VIEW: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("moveto CREATE_VIEW: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } Fragment fragment2 = this.mFragment; fragment2.performCreateView(fragment2.performGetLayoutInflater(fragment2.mSavedFragmentState), null, this.mFragment.mSavedFragmentState); @@ -659,17 +659,17 @@ public class FragmentStateManager { this.mMovingToState = z2; } } else if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P = a.P("Ignoring re-entrant call to moveToExpectedState() for "); - P.append(getFragment()); - Log.v("FragmentManager", P.toString()); + StringBuilder O = a.O("Ignoring re-entrant call to moveToExpectedState() for "); + O.append(getFragment()); + Log.v("FragmentManager", O.toString()); } } public void pause() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("movefrom RESUMED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("movefrom RESUMED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } this.mFragment.performPause(); this.mDispatcher.dispatchOnFragmentPaused(this.mFragment, false); @@ -706,9 +706,9 @@ public class FragmentStateManager { public void resume() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("moveto RESUMED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("moveto RESUMED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } View focusedView = this.mFragment.getFocusedView(); if (focusedView != null && isFragmentViewChild(focusedView)) { @@ -788,9 +788,9 @@ public class FragmentStateManager { public void start() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("moveto STARTED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("moveto STARTED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } this.mFragment.performStart(); this.mDispatcher.dispatchOnFragmentStarted(this.mFragment, false); @@ -798,9 +798,9 @@ public class FragmentStateManager { public void stop() { if (FragmentManager.isLoggingEnabled(3)) { - StringBuilder P = a.P("movefrom STARTED: "); - P.append(this.mFragment); - Log.d("FragmentManager", P.toString()); + StringBuilder O = a.O("movefrom STARTED: "); + O.append(this.mFragment); + Log.d("FragmentManager", O.toString()); } this.mFragment.performStop(); this.mDispatcher.dispatchOnFragmentStopped(this.mFragment, false); diff --git a/app/src/main/java/androidx/fragment/app/FragmentStatePagerAdapter.java b/app/src/main/java/androidx/fragment/app/FragmentStatePagerAdapter.java index 4adc626cf9..54ded15e73 100644 --- a/app/src/main/java/androidx/fragment/app/FragmentStatePagerAdapter.java +++ b/app/src/main/java/androidx/fragment/app/FragmentStatePagerAdapter.java @@ -138,7 +138,7 @@ public abstract class FragmentStatePagerAdapter extends PagerAdapter { fragment.setMenuVisibility(false); this.mFragments.set(parseInt, fragment); } else { - a.l0("Bad fragment at key ", str, TAG); + a.k0("Bad fragment at key ", str, TAG); } } } diff --git a/app/src/main/java/androidx/fragment/app/FragmentTabHost.java b/app/src/main/java/androidx/fragment/app/FragmentTabHost.java index b449d0c9f8..57150a0a70 100644 --- a/app/src/main/java/androidx/fragment/app/FragmentTabHost.java +++ b/app/src/main/java/androidx/fragment/app/FragmentTabHost.java @@ -72,10 +72,10 @@ public class FragmentTabHost extends TabHost implements TabHost.OnTabChangeListe @Override // java.lang.Object @NonNull public String toString() { - StringBuilder P = a.P("FragmentTabHost.SavedState{"); - P.append(Integer.toHexString(System.identityHashCode(this))); - P.append(" curTab="); - return a.H(P, this.curTab, "}"); + StringBuilder O = a.O("FragmentTabHost.SavedState{"); + O.append(Integer.toHexString(System.identityHashCode(this))); + O.append(" curTab="); + return a.G(O, this.curTab, "}"); } @Override // android.view.View.BaseSavedState, android.os.Parcelable, android.view.AbsSavedState @@ -146,9 +146,9 @@ public class FragmentTabHost extends TabHost implements TabHost.OnTabChangeListe FrameLayout frameLayout = (FrameLayout) findViewById(this.mContainerId); this.mRealTabContent = frameLayout; if (frameLayout == null) { - StringBuilder P = a.P("No tab content FrameLayout found for id "); - P.append(this.mContainerId); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("No tab content FrameLayout found for id "); + O.append(this.mContainerId); + throw new IllegalStateException(O.toString()); } } } diff --git a/app/src/main/java/androidx/fragment/app/FragmentTransaction.java b/app/src/main/java/androidx/fragment/app/FragmentTransaction.java index 48f3af05ae..f379f4d0a9 100644 --- a/app/src/main/java/androidx/fragment/app/FragmentTransaction.java +++ b/app/src/main/java/androidx/fragment/app/FragmentTransaction.java @@ -229,10 +229,10 @@ public abstract class FragmentTransaction { Class cls = fragment.getClass(); int modifiers = cls.getModifiers(); if (cls.isAnonymousClass() || !Modifier.isPublic(modifiers) || (cls.isMemberClass() && !Modifier.isStatic(modifiers))) { - StringBuilder P = a.P("Fragment "); - P.append(cls.getCanonicalName()); - P.append(" must be a public static class to be properly recreated from instance state."); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Fragment "); + O.append(cls.getCanonicalName()); + O.append(" must be a public static class to be properly recreated from instance state."); + throw new IllegalStateException(O.toString()); } if (str != null) { String str2 = fragment.mTag; diff --git a/app/src/main/java/androidx/fragment/app/SpecialEffectsController.java b/app/src/main/java/androidx/fragment/app/SpecialEffectsController.java index 5a0ee6308c..b29f0c357e 100644 --- a/app/src/main/java/androidx/fragment/app/SpecialEffectsController.java +++ b/app/src/main/java/androidx/fragment/app/SpecialEffectsController.java @@ -297,40 +297,40 @@ public abstract class SpecialEffectsController { if (ordinal != 1) { if (ordinal == 2) { if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P = a.P("SpecialEffectsController: For fragment "); - P.append(this.mFragment); - P.append(" mFinalState = "); - P.append(this.mFinalState); - P.append(" -> REMOVED. mLifecycleImpact = "); - P.append(this.mLifecycleImpact); - P.append(" to REMOVING."); - Log.v(FragmentManager.TAG, P.toString()); + StringBuilder O = a.O("SpecialEffectsController: For fragment "); + O.append(this.mFragment); + O.append(" mFinalState = "); + O.append(this.mFinalState); + O.append(" -> REMOVED. mLifecycleImpact = "); + O.append(this.mLifecycleImpact); + O.append(" to REMOVING."); + Log.v(FragmentManager.TAG, O.toString()); } this.mFinalState = State.REMOVED; this.mLifecycleImpact = LifecycleImpact.REMOVING; } } else if (this.mFinalState == State.REMOVED) { if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P2 = a.P("SpecialEffectsController: For fragment "); - P2.append(this.mFragment); - P2.append(" mFinalState = REMOVED -> VISIBLE. mLifecycleImpact = "); - P2.append(this.mLifecycleImpact); - P2.append(" to ADDING."); - Log.v(FragmentManager.TAG, P2.toString()); + StringBuilder O2 = a.O("SpecialEffectsController: For fragment "); + O2.append(this.mFragment); + O2.append(" mFinalState = REMOVED -> VISIBLE. mLifecycleImpact = "); + O2.append(this.mLifecycleImpact); + O2.append(" to ADDING."); + Log.v(FragmentManager.TAG, O2.toString()); } this.mFinalState = State.VISIBLE; this.mLifecycleImpact = LifecycleImpact.ADDING; } } else if (this.mFinalState != State.REMOVED) { if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P3 = a.P("SpecialEffectsController: For fragment "); - P3.append(this.mFragment); - P3.append(" mFinalState = "); - P3.append(this.mFinalState); - P3.append(" -> "); - P3.append(state); - P3.append(". "); - Log.v(FragmentManager.TAG, P3.toString()); + StringBuilder O3 = a.O("SpecialEffectsController: For fragment "); + O3.append(this.mFragment); + O3.append(" mFinalState = "); + O3.append(this.mFinalState); + O3.append(" -> "); + O3.append(state); + O3.append(". "); + Log.v(FragmentManager.TAG, O3.toString()); } this.mFinalState = state; } @@ -341,22 +341,22 @@ public abstract class SpecialEffectsController { @NonNull public String toString() { - StringBuilder U = a.U("Operation ", "{"); - U.append(Integer.toHexString(System.identityHashCode(this))); - U.append("} "); - U.append("{"); - U.append("mFinalState = "); - U.append(this.mFinalState); - U.append("} "); - U.append("{"); - U.append("mLifecycleImpact = "); - U.append(this.mLifecycleImpact); - U.append("} "); - U.append("{"); - U.append("mFragment = "); - U.append(this.mFragment); - U.append("}"); - return U.toString(); + StringBuilder S = a.S("Operation ", "{"); + S.append(Integer.toHexString(System.identityHashCode(this))); + S.append("} "); + S.append("{"); + S.append("mFinalState = "); + S.append(this.mFinalState); + S.append("} "); + S.append("{"); + S.append("mLifecycleImpact = "); + S.append(this.mLifecycleImpact); + S.append("} "); + S.append("{"); + S.append("mFragment = "); + S.append(this.mFragment); + S.append("}"); + return S.toString(); } } @@ -432,36 +432,36 @@ public abstract class SpecialEffectsController { public void enqueueAdd(@NonNull Operation.State state, @NonNull FragmentStateManager fragmentStateManager) { if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P = a.P("SpecialEffectsController: Enqueuing add operation for fragment "); - P.append(fragmentStateManager.getFragment()); - Log.v(FragmentManager.TAG, P.toString()); + StringBuilder O = a.O("SpecialEffectsController: Enqueuing add operation for fragment "); + O.append(fragmentStateManager.getFragment()); + Log.v(FragmentManager.TAG, O.toString()); } enqueue(state, Operation.LifecycleImpact.ADDING, fragmentStateManager); } public void enqueueHide(@NonNull FragmentStateManager fragmentStateManager) { if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P = a.P("SpecialEffectsController: Enqueuing hide operation for fragment "); - P.append(fragmentStateManager.getFragment()); - Log.v(FragmentManager.TAG, P.toString()); + StringBuilder O = a.O("SpecialEffectsController: Enqueuing hide operation for fragment "); + O.append(fragmentStateManager.getFragment()); + Log.v(FragmentManager.TAG, O.toString()); } enqueue(Operation.State.GONE, Operation.LifecycleImpact.NONE, fragmentStateManager); } public void enqueueRemove(@NonNull FragmentStateManager fragmentStateManager) { if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P = a.P("SpecialEffectsController: Enqueuing remove operation for fragment "); - P.append(fragmentStateManager.getFragment()); - Log.v(FragmentManager.TAG, P.toString()); + StringBuilder O = a.O("SpecialEffectsController: Enqueuing remove operation for fragment "); + O.append(fragmentStateManager.getFragment()); + Log.v(FragmentManager.TAG, O.toString()); } enqueue(Operation.State.REMOVED, Operation.LifecycleImpact.REMOVING, fragmentStateManager); } public void enqueueShow(@NonNull FragmentStateManager fragmentStateManager) { if (FragmentManager.isLoggingEnabled(2)) { - StringBuilder P = a.P("SpecialEffectsController: Enqueuing show operation for fragment "); - P.append(fragmentStateManager.getFragment()); - Log.v(FragmentManager.TAG, P.toString()); + StringBuilder O = a.O("SpecialEffectsController: Enqueuing show operation for fragment "); + O.append(fragmentStateManager.getFragment()); + Log.v(FragmentManager.TAG, O.toString()); } enqueue(Operation.State.VISIBLE, Operation.LifecycleImpact.NONE, fragmentStateManager); } diff --git a/app/src/main/java/androidx/lifecycle/ClassesInfoCache.java b/app/src/main/java/androidx/lifecycle/ClassesInfoCache.java index ee113546da..c7e3e396a2 100644 --- a/app/src/main/java/androidx/lifecycle/ClassesInfoCache.java +++ b/app/src/main/java/androidx/lifecycle/ClassesInfoCache.java @@ -155,15 +155,15 @@ public final class ClassesInfoCache { Lifecycle.Event event2 = map.get(methodReference); if (event2 != null && event != event2) { Method method = methodReference.mMethod; - StringBuilder P = a.P("Method "); - P.append(method.getName()); - P.append(" in "); - P.append(cls.getName()); - P.append(" already declared with different @OnLifecycleEvent value: previous value "); - P.append(event2); - P.append(", new value "); - P.append(event); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Method "); + O.append(method.getName()); + O.append(" in "); + O.append(cls.getName()); + O.append(" already declared with different @OnLifecycleEvent value: previous value "); + O.append(event2); + O.append(", new value "); + O.append(event); + throw new IllegalArgumentException(O.toString()); } else if (event2 == null) { map.put(methodReference, event); } diff --git a/app/src/main/java/androidx/lifecycle/LifecycleRegistry.java b/app/src/main/java/androidx/lifecycle/LifecycleRegistry.java index 7c8500ba72..3dacab5a42 100644 --- a/app/src/main/java/androidx/lifecycle/LifecycleRegistry.java +++ b/app/src/main/java/androidx/lifecycle/LifecycleRegistry.java @@ -68,9 +68,9 @@ public class LifecycleRegistry extends Lifecycle { value.dispatchEvent(lifecycleOwner, downFrom); popParentState(); } else { - StringBuilder P = a.P("no event down from "); - P.append(value.mState); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("no event down from "); + O.append(value.mState); + throw new IllegalStateException(O.toString()); } } } @@ -114,9 +114,9 @@ public class LifecycleRegistry extends Lifecycle { observerWithState.dispatchEvent(lifecycleOwner, upFrom); popParentState(); } else { - StringBuilder P = a.P("no event up from "); - P.append(observerWithState.mState); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("no event up from "); + O.append(observerWithState.mState); + throw new IllegalStateException(O.toString()); } } } @@ -198,9 +198,9 @@ public class LifecycleRegistry extends Lifecycle { popParentState(); calculateTargetState = calculateTargetState(lifecycleObserver); } else { - StringBuilder P = a.P("no event up from "); - P.append(observerWithState.mState); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("no event up from "); + O.append(observerWithState.mState); + throw new IllegalStateException(O.toString()); } } if (!z2) { diff --git a/app/src/main/java/androidx/lifecycle/SavedStateHandle.java b/app/src/main/java/androidx/lifecycle/SavedStateHandle.java index 0245bdf5c8..83c989e88a 100644 --- a/app/src/main/java/androidx/lifecycle/SavedStateHandle.java +++ b/app/src/main/java/androidx/lifecycle/SavedStateHandle.java @@ -137,10 +137,10 @@ public final class SavedStateHandle { return; } } - StringBuilder P = a.P("Can't put value with type "); - P.append(obj.getClass()); - P.append(" into saved state"); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Can't put value with type "); + O.append(obj.getClass()); + O.append(" into saved state"); + throw new IllegalArgumentException(O.toString()); } } diff --git a/app/src/main/java/androidx/loader/app/LoaderManagerImpl.java b/app/src/main/java/androidx/loader/app/LoaderManagerImpl.java index 7839566748..1eedb99682 100644 --- a/app/src/main/java/androidx/loader/app/LoaderManagerImpl.java +++ b/app/src/main/java/androidx/loader/app/LoaderManagerImpl.java @@ -214,11 +214,11 @@ public class LoaderManagerImpl extends LoaderManager { @Override // androidx.lifecycle.Observer public void onChanged(@Nullable D d) { if (LoaderManagerImpl.DEBUG) { - StringBuilder P = a.P(" onLoadFinished in "); - P.append(this.mLoader); - P.append(": "); - P.append(this.mLoader.dataToString(d)); - Log.v(LoaderManagerImpl.TAG, P.toString()); + StringBuilder O = a.O(" onLoadFinished in "); + O.append(this.mLoader); + O.append(": "); + O.append(this.mLoader.dataToString(d)); + Log.v(LoaderManagerImpl.TAG, O.toString()); } this.mCallback.onLoadFinished(this.mLoader, d); this.mDeliveredData = true; @@ -228,9 +228,9 @@ public class LoaderManagerImpl extends LoaderManager { public void reset() { if (this.mDeliveredData) { if (LoaderManagerImpl.DEBUG) { - StringBuilder P = a.P(" Resetting: "); - P.append(this.mLoader); - Log.v(LoaderManagerImpl.TAG, P.toString()); + StringBuilder O = a.O(" Resetting: "); + O.append(this.mLoader); + Log.v(LoaderManagerImpl.TAG, O.toString()); } this.mCallback.onLoaderReset(this.mLoader); } diff --git a/app/src/main/java/androidx/loader/content/ModernAsyncTask.java b/app/src/main/java/androidx/loader/content/ModernAsyncTask.java index 4a377e6261..76118ba488 100644 --- a/app/src/main/java/androidx/loader/content/ModernAsyncTask.java +++ b/app/src/main/java/androidx/loader/content/ModernAsyncTask.java @@ -45,9 +45,9 @@ public abstract class ModernAsyncTask { @Override // java.util.concurrent.ThreadFactory public Thread newThread(Runnable runnable) { - StringBuilder P = a.P("ModernAsyncTask #"); - P.append(this.mCount.getAndIncrement()); - return new Thread(runnable, P.toString()); + StringBuilder O = a.O("ModernAsyncTask #"); + O.append(this.mCount.getAndIncrement()); + return new Thread(runnable, O.toString()); } } diff --git a/app/src/main/java/androidx/media/AudioAttributesImplApi21.java b/app/src/main/java/androidx/media/AudioAttributesImplApi21.java index 47d2c5ceb8..5935e89cf9 100644 --- a/app/src/main/java/androidx/media/AudioAttributesImplApi21.java +++ b/app/src/main/java/androidx/media/AudioAttributesImplApi21.java @@ -131,8 +131,8 @@ public class AudioAttributesImplApi21 implements AudioAttributesImpl { @NonNull public String toString() { - StringBuilder P = a.P("AudioAttributesCompat: audioattributes="); - P.append(this.mAudioAttributes); - return P.toString(); + StringBuilder O = a.O("AudioAttributesCompat: audioattributes="); + O.append(this.mAudioAttributes); + return O.toString(); } } diff --git a/app/src/main/java/androidx/media/MediaBrowserServiceCompat.java b/app/src/main/java/androidx/media/MediaBrowserServiceCompat.java index 5a276c5764..e6a146cf1b 100644 --- a/app/src/main/java/androidx/media/MediaBrowserServiceCompat.java +++ b/app/src/main/java/androidx/media/MediaBrowserServiceCompat.java @@ -89,17 +89,17 @@ public abstract class MediaBrowserServiceCompat extends Service { try { this.val$connection.callbacks.onLoadChildren(this.val$parentId, list, this.val$subscribeOptions, this.val$notifyChildrenChangedOptions); } catch (RemoteException unused) { - StringBuilder P = a.P("Calling onLoadChildren() failed for id="); - P.append(this.val$parentId); - P.append(" package="); - a.n0(P, this.val$connection.pkg, MediaBrowserServiceCompat.TAG); + StringBuilder O = a.O("Calling onLoadChildren() failed for id="); + O.append(this.val$parentId); + O.append(" package="); + a.m0(O, this.val$connection.pkg, MediaBrowserServiceCompat.TAG); } } else if (MediaBrowserServiceCompat.DEBUG) { - StringBuilder P2 = a.P("Not sending onLoadChildren result for connection that has been disconnected. pkg="); - P2.append(this.val$connection.pkg); - P2.append(" id="); - P2.append(this.val$parentId); - Log.d(MediaBrowserServiceCompat.TAG, P2.toString()); + StringBuilder O2 = a.O("Not sending onLoadChildren result for connection that has been disconnected. pkg="); + O2.append(this.val$connection.pkg); + O2.append(" id="); + O2.append(this.val$parentId); + Log.d(MediaBrowserServiceCompat.TAG, O2.toString()); } } } @@ -708,10 +708,10 @@ public abstract class MediaBrowserServiceCompat extends Service { try { next.callbacks.onConnect(next.root.getRootId(), this.val$token, next.root.getExtras()); } catch (RemoteException unused) { - StringBuilder P = a.P("Connection for "); - P.append(next.pkg); - P.append(" is no longer valid."); - Log.w(MediaBrowserServiceCompat.TAG, P.toString()); + StringBuilder O = a.O("Connection for "); + O.append(next.pkg); + O.append(" is no longer valid."); + Log.w(MediaBrowserServiceCompat.TAG, O.toString()); it.remove(); } } @@ -847,19 +847,19 @@ public abstract class MediaBrowserServiceCompat extends Service { public void detach() { if (this.mDetachCalled) { - StringBuilder P = a.P("detach() called when detach() had already been called for: "); - P.append(this.mDebug); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("detach() called when detach() had already been called for: "); + O.append(this.mDebug); + throw new IllegalStateException(O.toString()); } else if (this.mSendResultCalled) { - StringBuilder P2 = a.P("detach() called when sendResult() had already been called for: "); - P2.append(this.mDebug); - throw new IllegalStateException(P2.toString()); + StringBuilder O2 = a.O("detach() called when sendResult() had already been called for: "); + O2.append(this.mDebug); + throw new IllegalStateException(O2.toString()); } else if (!this.mSendErrorCalled) { this.mDetachCalled = true; } else { - StringBuilder P3 = a.P("detach() called when sendError() had already been called for: "); - P3.append(this.mDebug); - throw new IllegalStateException(P3.toString()); + StringBuilder O3 = a.O("detach() called when sendError() had already been called for: "); + O3.append(this.mDebug); + throw new IllegalStateException(O3.toString()); } } @@ -872,15 +872,15 @@ public abstract class MediaBrowserServiceCompat extends Service { } public void onErrorSent(Bundle bundle) { - StringBuilder P = a.P("It is not supported to send an error for "); - P.append(this.mDebug); - throw new UnsupportedOperationException(P.toString()); + StringBuilder O = a.O("It is not supported to send an error for "); + O.append(this.mDebug); + throw new UnsupportedOperationException(O.toString()); } public void onProgressUpdateSent(Bundle bundle) { - StringBuilder P = a.P("It is not supported to send an interim update for "); - P.append(this.mDebug); - throw new UnsupportedOperationException(P.toString()); + StringBuilder O = a.O("It is not supported to send an interim update for "); + O.append(this.mDebug); + throw new UnsupportedOperationException(O.toString()); } public void onResultSent(T t) { @@ -888,9 +888,9 @@ public abstract class MediaBrowserServiceCompat extends Service { public void sendError(Bundle bundle) { if (this.mSendResultCalled || this.mSendErrorCalled) { - StringBuilder P = a.P("sendError() called when either sendResult() or sendError() had already been called for: "); - P.append(this.mDebug); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("sendError() called when either sendResult() or sendError() had already been called for: "); + O.append(this.mDebug); + throw new IllegalStateException(O.toString()); } this.mSendErrorCalled = true; onErrorSent(bundle); @@ -898,9 +898,9 @@ public abstract class MediaBrowserServiceCompat extends Service { public void sendProgressUpdate(Bundle bundle) { if (this.mSendResultCalled || this.mSendErrorCalled) { - StringBuilder P = a.P("sendProgressUpdate() called when either sendResult() or sendError() had already been called for: "); - P.append(this.mDebug); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("sendProgressUpdate() called when either sendResult() or sendError() had already been called for: "); + O.append(this.mDebug); + throw new IllegalStateException(O.toString()); } checkExtraFields(bundle); onProgressUpdateSent(bundle); @@ -908,9 +908,9 @@ public abstract class MediaBrowserServiceCompat extends Service { public void sendResult(T t) { if (this.mSendResultCalled || this.mSendErrorCalled) { - StringBuilder P = a.P("sendResult() called when either sendResult() or sendError() had already been called for: "); - P.append(this.mDebug); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("sendResult() called when either sendResult() or sendError() had already been called for: "); + O.append(this.mDebug); + throw new IllegalStateException(O.toString()); } this.mSendResultCalled = true; onResultSent(t); @@ -993,15 +993,15 @@ public abstract class MediaBrowserServiceCompat extends Service { MediaBrowserServiceCompat mediaBrowserServiceCompat2 = MediaBrowserServiceCompat.this; mediaBrowserServiceCompat2.mCurConnection = null; if (onGetRoot == null) { - StringBuilder P = a.P("No root for client "); - P.append(this.val$pkg); - P.append(" from service "); - P.append(getClass().getName()); - Log.i(MediaBrowserServiceCompat.TAG, P.toString()); + StringBuilder O = a.O("No root for client "); + O.append(this.val$pkg); + O.append(" from service "); + O.append(getClass().getName()); + Log.i(MediaBrowserServiceCompat.TAG, O.toString()); try { this.val$callbacks.onConnectFailed(); } catch (RemoteException unused) { - a.n0(a.P("Calling onConnectFailed() failed. Ignoring. pkg="), this.val$pkg, MediaBrowserServiceCompat.TAG); + a.m0(a.O("Calling onConnectFailed() failed. Ignoring. pkg="), this.val$pkg, MediaBrowserServiceCompat.TAG); } } else { try { @@ -1011,7 +1011,7 @@ public abstract class MediaBrowserServiceCompat extends Service { this.val$callbacks.onConnect(connectionRecord.root.getRootId(), MediaBrowserServiceCompat.this.mSession, connectionRecord.root.getExtras()); } } catch (RemoteException unused2) { - a.n0(a.P("Calling onConnect() failed. Dropping client. pkg="), this.val$pkg, MediaBrowserServiceCompat.TAG); + a.m0(a.O("Calling onConnect() failed. Dropping client. pkg="), this.val$pkg, MediaBrowserServiceCompat.TAG); MediaBrowserServiceCompat.this.mConnections.remove(asBinder); } } @@ -1053,7 +1053,7 @@ public abstract class MediaBrowserServiceCompat extends Service { public void run() { ConnectionRecord connectionRecord = MediaBrowserServiceCompat.this.mConnections.get(this.val$callbacks.asBinder()); if (connectionRecord == null) { - a.n0(a.P("addSubscription for callback that isn't registered id="), this.val$id, MediaBrowserServiceCompat.TAG); + a.m0(a.O("addSubscription for callback that isn't registered id="), this.val$id, MediaBrowserServiceCompat.TAG); } else { MediaBrowserServiceCompat.this.addSubscription(this.val$id, connectionRecord, this.val$token, this.val$options); } @@ -1076,12 +1076,12 @@ public abstract class MediaBrowserServiceCompat extends Service { public void run() { ConnectionRecord connectionRecord = MediaBrowserServiceCompat.this.mConnections.get(this.val$callbacks.asBinder()); if (connectionRecord == null) { - a.n0(a.P("removeSubscription for callback that isn't registered id="), this.val$id, MediaBrowserServiceCompat.TAG); + a.m0(a.O("removeSubscription for callback that isn't registered id="), this.val$id, MediaBrowserServiceCompat.TAG); } else if (!MediaBrowserServiceCompat.this.removeSubscription(this.val$id, connectionRecord, this.val$token)) { - StringBuilder P = a.P("removeSubscription called for "); - P.append(this.val$id); - P.append(" which is not subscribed"); - Log.w(MediaBrowserServiceCompat.TAG, P.toString()); + StringBuilder O = a.O("removeSubscription called for "); + O.append(this.val$id); + O.append(" which is not subscribed"); + Log.w(MediaBrowserServiceCompat.TAG, O.toString()); } } } @@ -1102,7 +1102,7 @@ public abstract class MediaBrowserServiceCompat extends Service { public void run() { ConnectionRecord connectionRecord = MediaBrowserServiceCompat.this.mConnections.get(this.val$callbacks.asBinder()); if (connectionRecord == null) { - a.n0(a.P("getMediaItem for callback that isn't registered id="), this.val$mediaId, MediaBrowserServiceCompat.TAG); + a.m0(a.O("getMediaItem for callback that isn't registered id="), this.val$mediaId, MediaBrowserServiceCompat.TAG); } else { MediaBrowserServiceCompat.this.performLoadItem(this.val$mediaId, connectionRecord, this.val$receiver); } @@ -1188,7 +1188,7 @@ public abstract class MediaBrowserServiceCompat extends Service { public void run() { ConnectionRecord connectionRecord = MediaBrowserServiceCompat.this.mConnections.get(this.val$callbacks.asBinder()); if (connectionRecord == null) { - a.n0(a.P("search for callback that isn't registered query="), this.val$query, MediaBrowserServiceCompat.TAG); + a.m0(a.O("search for callback that isn't registered query="), this.val$query, MediaBrowserServiceCompat.TAG); } else { MediaBrowserServiceCompat.this.performSearch(this.val$query, this.val$extras, connectionRecord, this.val$receiver); } @@ -1213,11 +1213,11 @@ public abstract class MediaBrowserServiceCompat extends Service { public void run() { ConnectionRecord connectionRecord = MediaBrowserServiceCompat.this.mConnections.get(this.val$callbacks.asBinder()); if (connectionRecord == null) { - StringBuilder P = a.P("sendCustomAction for callback that isn't registered action="); - P.append(this.val$action); - P.append(", extras="); - P.append(this.val$extras); - Log.w(MediaBrowserServiceCompat.TAG, P.toString()); + StringBuilder O = a.O("sendCustomAction for callback that isn't registered action="); + O.append(this.val$action); + O.append(", extras="); + O.append(this.val$extras); + Log.w(MediaBrowserServiceCompat.TAG, O.toString()); return; } MediaBrowserServiceCompat.this.performCustomAction(this.val$action, this.val$extras, connectionRecord, this.val$receiver); @@ -1589,11 +1589,11 @@ public abstract class MediaBrowserServiceCompat extends Service { } this.mCurConnection = null; if (!r7.isDone()) { - StringBuilder P = a.P("onLoadChildren must call detach() or sendResult() before returning for package="); - P.append(connectionRecord.pkg); - P.append(" id="); - P.append(str); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("onLoadChildren must call detach() or sendResult() before returning for package="); + O.append(connectionRecord.pkg); + O.append(" id="); + O.append(str); + throw new IllegalStateException(O.toString()); } } diff --git a/app/src/main/java/androidx/media/MediaSessionManagerImplBase.java b/app/src/main/java/androidx/media/MediaSessionManagerImplBase.java index 4297967311..2a086ad0d2 100644 --- a/app/src/main/java/androidx/media/MediaSessionManagerImplBase.java +++ b/app/src/main/java/androidx/media/MediaSessionManagerImplBase.java @@ -99,10 +99,10 @@ public class MediaSessionManagerImplBase implements MediaSessionManager.MediaSes return isPermissionGranted(remoteUserInfoImpl, PERMISSION_STATUS_BAR_SERVICE) || isPermissionGranted(remoteUserInfoImpl, PERMISSION_MEDIA_CONTENT_CONTROL) || remoteUserInfoImpl.getUid() == 1000 || isEnabledNotificationListener(remoteUserInfoImpl); } catch (PackageManager.NameNotFoundException unused) { if (DEBUG) { - StringBuilder P = a.P("Package "); - P.append(remoteUserInfoImpl.getPackageName()); - P.append(" doesn't exist"); - Log.d("MediaSessionManager", P.toString()); + StringBuilder O = a.O("Package "); + O.append(remoteUserInfoImpl.getPackageName()); + O.append(" doesn't exist"); + Log.d("MediaSessionManager", O.toString()); } return false; } diff --git a/app/src/main/java/androidx/media/session/MediaButtonReceiver.java b/app/src/main/java/androidx/media/session/MediaButtonReceiver.java index 7300092393..4a058384a6 100644 --- a/app/src/main/java/androidx/media/session/MediaButtonReceiver.java +++ b/app/src/main/java/androidx/media/session/MediaButtonReceiver.java @@ -141,9 +141,9 @@ public class MediaButtonReceiver extends BroadcastReceiver { } else if (queryIntentServices.isEmpty()) { return null; } else { - StringBuilder V = a.V("Expected 1 service that handles ", str, ", found "); - V.append(queryIntentServices.size()); - throw new IllegalStateException(V.toString()); + StringBuilder U = a.U("Expected 1 service that handles ", str, ", found "); + U.append(queryIntentServices.size()); + throw new IllegalStateException(U.toString()); } } diff --git a/app/src/main/java/androidx/preference/Preference.java b/app/src/main/java/androidx/preference/Preference.java index e877fba477..173840541e 100644 --- a/app/src/main/java/androidx/preference/Preference.java +++ b/app/src/main/java/androidx/preference/Preference.java @@ -253,14 +253,14 @@ public class Preference implements Comparable { findPreferenceInHierarchy.registerDependent(this); return; } - StringBuilder P = a.P("Dependency \""); - P.append(this.mDependencyKey); - P.append("\" not found for preference \""); - P.append(this.mKey); - P.append("\" (title: \""); - P.append((Object) this.mTitle); - P.append("\""); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Dependency \""); + O.append(this.mDependencyKey); + O.append("\" not found for preference \""); + O.append(this.mKey); + O.append("\" (title: \""); + O.append((Object) this.mTitle); + O.append("\""); + throw new IllegalStateException(O.toString()); } } diff --git a/app/src/main/java/androidx/preference/PreferenceFragmentCompat.java b/app/src/main/java/androidx/preference/PreferenceFragmentCompat.java index 1105606880..758465b2b3 100644 --- a/app/src/main/java/androidx/preference/PreferenceFragmentCompat.java +++ b/app/src/main/java/androidx/preference/PreferenceFragmentCompat.java @@ -398,10 +398,10 @@ public abstract class PreferenceFragmentCompat extends Fragment implements Prefe } else if (preference instanceof MultiSelectListPreference) { dialogFragment = MultiSelectListPreferenceDialogFragmentCompat.newInstance(preference.getKey()); } else { - StringBuilder P = a.P("Cannot display dialog for an unknown Preference type: "); - P.append(preference.getClass().getSimpleName()); - P.append(". Make sure to implement onPreferenceDisplayDialog() to handle displaying a custom dialog for this Preference."); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Cannot display dialog for an unknown Preference type: "); + O.append(preference.getClass().getSimpleName()); + O.append(". Make sure to implement onPreferenceDisplayDialog() to handle displaying a custom dialog for this Preference."); + throw new IllegalArgumentException(O.toString()); } dialogFragment.setTargetFragment(this, 0); dialogFragment.show(getParentFragmentManager(), DIALOG_FRAGMENT_TAG); diff --git a/app/src/main/java/androidx/preference/PreferenceGroupKt.java b/app/src/main/java/androidx/preference/PreferenceGroupKt.java index f93e05ff5d..4a0766cfc3 100644 --- a/app/src/main/java/androidx/preference/PreferenceGroupKt.java +++ b/app/src/main/java/androidx/preference/PreferenceGroupKt.java @@ -45,9 +45,9 @@ public final class PreferenceGroupKt { if (preference != null) { return preference; } - StringBuilder Q = a.Q("Index: ", i, ", Size: "); - Q.append(preferenceGroup.getPreferenceCount()); - throw new IndexOutOfBoundsException(Q.toString()); + StringBuilder P = a.P("Index: ", i, ", Size: "); + P.append(preferenceGroup.getPreferenceCount()); + throw new IndexOutOfBoundsException(P.toString()); } public static final T get(PreferenceGroup preferenceGroup, CharSequence charSequence) { diff --git a/app/src/main/java/androidx/recyclerview/widget/AsyncListUtil.java b/app/src/main/java/androidx/recyclerview/widget/AsyncListUtil.java index 4b19301511..410dd22800 100644 --- a/app/src/main/java/androidx/recyclerview/widget/AsyncListUtil.java +++ b/app/src/main/java/androidx/recyclerview/widget/AsyncListUtil.java @@ -57,9 +57,9 @@ public class AsyncListUtil { } TileList.Tile addOrReplace = AsyncListUtil.this.mTileList.addOrReplace(tile); if (addOrReplace != null) { - StringBuilder P = a.P("duplicate tile @"); - P.append(addOrReplace.mStartPosition); - Log.e(AsyncListUtil.TAG, P.toString()); + StringBuilder O = a.O("duplicate tile @"); + O.append(addOrReplace.mStartPosition); + Log.e(AsyncListUtil.TAG, O.toString()); AsyncListUtil.this.mBackgroundProxy.recycleTile(addOrReplace); } int i2 = tile.mStartPosition + tile.mItemCount; @@ -161,9 +161,9 @@ public class AsyncListUtil { } private void log(String str, Object... objArr) { - StringBuilder P = a.P("[BKGR] "); - P.append(String.format(str, objArr)); - Log.d(AsyncListUtil.TAG, P.toString()); + StringBuilder O = a.O("[BKGR] "); + O.append(String.format(str, objArr)); + Log.d(AsyncListUtil.TAG, O.toString()); } private void removeTile(int i) { @@ -308,9 +308,9 @@ public class AsyncListUtil { } public void log(String str, Object... objArr) { - StringBuilder P = a.P("[MAIN] "); - P.append(String.format(str, objArr)); - Log.d(TAG, P.toString()); + StringBuilder O = a.O("[MAIN] "); + O.append(String.format(str, objArr)); + Log.d(TAG, O.toString()); } public void onRangeChanged() { diff --git a/app/src/main/java/androidx/recyclerview/widget/DefaultItemAnimator.java b/app/src/main/java/androidx/recyclerview/widget/DefaultItemAnimator.java index 13f3d72c70..22ad563cc9 100644 --- a/app/src/main/java/androidx/recyclerview/widget/DefaultItemAnimator.java +++ b/app/src/main/java/androidx/recyclerview/widget/DefaultItemAnimator.java @@ -264,18 +264,18 @@ public class DefaultItemAnimator extends SimpleItemAnimator { } public String toString() { - StringBuilder P = a.P("ChangeInfo{oldHolder="); - P.append(this.oldHolder); - P.append(", newHolder="); - P.append(this.newHolder); - P.append(", fromX="); - P.append(this.fromX); - P.append(", fromY="); - P.append(this.fromY); - P.append(", toX="); - P.append(this.toX); - P.append(", toY="); - return a.y(P, this.toY, '}'); + StringBuilder O = a.O("ChangeInfo{oldHolder="); + O.append(this.oldHolder); + O.append(", newHolder="); + O.append(this.newHolder); + O.append(", fromX="); + O.append(this.fromX); + O.append(", fromY="); + O.append(this.fromY); + O.append(", toX="); + O.append(this.toX); + O.append(", toY="); + return a.y(O, this.toY, '}'); } } diff --git a/app/src/main/java/androidx/recyclerview/widget/DiffUtil.java b/app/src/main/java/androidx/recyclerview/widget/DiffUtil.java index 77a30fadb9..7a9e7d3a14 100644 --- a/app/src/main/java/androidx/recyclerview/widget/DiffUtil.java +++ b/app/src/main/java/androidx/recyclerview/widget/DiffUtil.java @@ -104,9 +104,9 @@ public class DiffUtil { } else if (i6 == 16) { list.add(new PostponedUpdate(i5, i, false)); } else { - StringBuilder Q = a.Q("unknown flag for pos ", i5, " "); - Q.append(Long.toBinaryString((long) i6)); - throw new IllegalStateException(Q.toString()); + StringBuilder P = a.P("unknown flag for pos ", i5, " "); + P.append(Long.toBinaryString((long) i6)); + throw new IllegalStateException(P.toString()); } } } @@ -135,9 +135,9 @@ public class DiffUtil { } else if (i6 == 16) { list.add(new PostponedUpdate(i5, i + i4, true)); } else { - StringBuilder Q = a.Q("unknown flag for pos ", i5, " "); - Q.append(Long.toBinaryString((long) i6)); - throw new IllegalStateException(Q.toString()); + StringBuilder P = a.P("unknown flag for pos ", i5, " "); + P.append(Long.toBinaryString((long) i6)); + throw new IllegalStateException(P.toString()); } } } @@ -255,9 +255,9 @@ public class DiffUtil { public int convertNewPositionToOld(@IntRange(from = 0) int i) { if (i < 0 || i >= this.mNewListSize) { - StringBuilder Q = a.Q("Index out of bounds - passed position = ", i, ", new list size = "); - Q.append(this.mNewListSize); - throw new IndexOutOfBoundsException(Q.toString()); + StringBuilder P = a.P("Index out of bounds - passed position = ", i, ", new list size = "); + P.append(this.mNewListSize); + throw new IndexOutOfBoundsException(P.toString()); } int i2 = this.mNewItemStatuses[i]; if ((i2 & 31) == 0) { @@ -268,9 +268,9 @@ public class DiffUtil { public int convertOldPositionToNew(@IntRange(from = 0) int i) { if (i < 0 || i >= this.mOldListSize) { - StringBuilder Q = a.Q("Index out of bounds - passed position = ", i, ", old list size = "); - Q.append(this.mOldListSize); - throw new IndexOutOfBoundsException(Q.toString()); + StringBuilder P = a.P("Index out of bounds - passed position = ", i, ", old list size = "); + P.append(this.mOldListSize); + throw new IndexOutOfBoundsException(P.toString()); } int i2 = this.mOldItemStatuses[i]; if ((i2 & 31) == 0) { diff --git a/app/src/main/java/androidx/recyclerview/widget/GridLayoutManager.java b/app/src/main/java/androidx/recyclerview/widget/GridLayoutManager.java index c128dfe762..3b65e14005 100644 --- a/app/src/main/java/androidx/recyclerview/widget/GridLayoutManager.java +++ b/app/src/main/java/androidx/recyclerview/widget/GridLayoutManager.java @@ -386,7 +386,7 @@ public class GridLayoutManager extends LinearLayoutManager { if (convertPreLayoutPositionToPostLayout != -1) { return this.mSpanSizeLookup.getCachedSpanGroupIndex(convertPreLayoutPositionToPostLayout, this.mSpanCount); } - a.j0("Cannot find span size for pre layout position. ", i, TAG); + a.i0("Cannot find span size for pre layout position. ", i, TAG); return 0; } @@ -402,7 +402,7 @@ public class GridLayoutManager extends LinearLayoutManager { if (convertPreLayoutPositionToPostLayout != -1) { return this.mSpanSizeLookup.getCachedSpanIndex(convertPreLayoutPositionToPostLayout, this.mSpanCount); } - a.j0("Cannot find span size for pre layout position. It is not cached, not in the adapter. Pos:", i, TAG); + a.i0("Cannot find span size for pre layout position. It is not cached, not in the adapter. Pos:", i, TAG); return 0; } @@ -418,7 +418,7 @@ public class GridLayoutManager extends LinearLayoutManager { if (convertPreLayoutPositionToPostLayout != -1) { return this.mSpanSizeLookup.getSpanSize(convertPreLayoutPositionToPostLayout); } - a.j0("Cannot find span size for pre layout position. It is not cached, not in the adapter. Pos:", i, TAG); + a.i0("Cannot find span size for pre layout position. It is not cached, not in the adapter. Pos:", i, TAG); return 1; } @@ -630,7 +630,7 @@ public class GridLayoutManager extends LinearLayoutManager { this.mSet[i13] = next; i13++; } else { - throw new IllegalArgumentException(a.z(a.R("Item at position ", i14, " requires ", spanSize, " spans but GridLayoutManager has only "), this.mSpanCount, " spans.")); + throw new IllegalArgumentException(a.z(a.Q("Item at position ", i14, " requires ", spanSize, " spans but GridLayoutManager has only "), this.mSpanCount, " spans.")); } } if (i13 == 0) { diff --git a/app/src/main/java/androidx/recyclerview/widget/LayoutState.java b/app/src/main/java/androidx/recyclerview/widget/LayoutState.java index 5af7314a60..8b45a8acc8 100644 --- a/app/src/main/java/androidx/recyclerview/widget/LayoutState.java +++ b/app/src/main/java/androidx/recyclerview/widget/LayoutState.java @@ -31,17 +31,17 @@ public class LayoutState { } public String toString() { - StringBuilder P = a.P("LayoutState{mAvailable="); - P.append(this.mAvailable); - P.append(", mCurrentPosition="); - P.append(this.mCurrentPosition); - P.append(", mItemDirection="); - P.append(this.mItemDirection); - P.append(", mLayoutDirection="); - P.append(this.mLayoutDirection); - P.append(", mStartLine="); - P.append(this.mStartLine); - P.append(", mEndLine="); - return a.y(P, this.mEndLine, '}'); + StringBuilder O = a.O("LayoutState{mAvailable="); + O.append(this.mAvailable); + O.append(", mCurrentPosition="); + O.append(this.mCurrentPosition); + O.append(", mItemDirection="); + O.append(this.mItemDirection); + O.append(", mLayoutDirection="); + O.append(this.mLayoutDirection); + O.append(", mStartLine="); + O.append(this.mStartLine); + O.append(", mEndLine="); + return a.y(O, this.mEndLine, '}'); } } diff --git a/app/src/main/java/androidx/recyclerview/widget/LinearLayoutManager.java b/app/src/main/java/androidx/recyclerview/widget/LinearLayoutManager.java index 71e4a19d31..9210710dd4 100644 --- a/app/src/main/java/androidx/recyclerview/widget/LinearLayoutManager.java +++ b/app/src/main/java/androidx/recyclerview/widget/LinearLayoutManager.java @@ -110,16 +110,16 @@ public class LinearLayoutManager extends RecyclerView.LayoutManager implements I } public String toString() { - StringBuilder P = a.P("AnchorInfo{mPosition="); - P.append(this.mPosition); - P.append(", mCoordinate="); - P.append(this.mCoordinate); - P.append(", mLayoutFromEnd="); - P.append(this.mLayoutFromEnd); - P.append(", mValid="); - P.append(this.mValid); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("AnchorInfo{mPosition="); + O.append(this.mPosition); + O.append(", mCoordinate="); + O.append(this.mCoordinate); + O.append(", mLayoutFromEnd="); + O.append(this.mLayoutFromEnd); + O.append(", mValid="); + O.append(this.mValid); + O.append('}'); + return O.toString(); } } @@ -191,17 +191,17 @@ public class LinearLayoutManager extends RecyclerView.LayoutManager implements I } public void log() { - StringBuilder P = a.P("avail:"); - P.append(this.mAvailable); - P.append(", ind:"); - P.append(this.mCurrentPosition); - P.append(", dir:"); - P.append(this.mItemDirection); - P.append(", offset:"); - P.append(this.mOffset); - P.append(", layoutDir:"); - P.append(this.mLayoutDirection); - Log.d(TAG, P.toString()); + StringBuilder O = a.O("avail:"); + O.append(this.mAvailable); + O.append(", ind:"); + O.append(this.mCurrentPosition); + O.append(", dir:"); + O.append(this.mItemDirection); + O.append(", offset:"); + O.append(this.mOffset); + O.append(", layoutDir:"); + O.append(this.mLayoutDirection); + Log.d(TAG, O.toString()); } public View next(RecyclerView.Recycler recycler) { @@ -470,11 +470,11 @@ public class LinearLayoutManager extends RecyclerView.LayoutManager implements I Log.d(TAG, "internal representation of views on the screen"); for (int i = 0; i < getChildCount(); i++) { View childAt = getChildAt(i); - StringBuilder P = a.P("item "); - P.append(getPosition(childAt)); - P.append(", coord:"); - P.append(this.mOrientationHelper.getDecoratedStart(childAt)); - Log.d(TAG, P.toString()); + StringBuilder O = a.O("item "); + O.append(getPosition(childAt)); + O.append(", coord:"); + O.append(this.mOrientationHelper.getDecoratedStart(childAt)); + Log.d(TAG, O.toString()); } Log.d(TAG, "=============="); } @@ -1533,9 +1533,9 @@ public class LinearLayoutManager extends RecyclerView.LayoutManager implements I } public void validateChildOrder() { - StringBuilder P = a.P("validating child count "); - P.append(getChildCount()); - Log.d(TAG, P.toString()); + StringBuilder O = a.O("validating child count "); + O.append(getChildCount()); + Log.d(TAG, O.toString()); boolean z2 = true; if (getChildCount() >= 1) { int position = getPosition(getChildAt(0)); @@ -1547,12 +1547,12 @@ public class LinearLayoutManager extends RecyclerView.LayoutManager implements I int decoratedStart2 = this.mOrientationHelper.getDecoratedStart(childAt); if (position2 < position) { logChildren(); - StringBuilder P2 = a.P("detected invalid position. loc invalid? "); + StringBuilder O2 = a.O("detected invalid position. loc invalid? "); if (decoratedStart2 >= decoratedStart) { z2 = false; } - P2.append(z2); - throw new RuntimeException(P2.toString()); + O2.append(z2); + throw new RuntimeException(O2.toString()); } else if (decoratedStart2 > decoratedStart) { logChildren(); throw new RuntimeException("detected invalid location"); @@ -1566,12 +1566,12 @@ public class LinearLayoutManager extends RecyclerView.LayoutManager implements I int decoratedStart3 = this.mOrientationHelper.getDecoratedStart(childAt2); if (position3 < position) { logChildren(); - StringBuilder P3 = a.P("detected invalid position. loc invalid? "); + StringBuilder O3 = a.O("detected invalid position. loc invalid? "); if (decoratedStart3 >= decoratedStart) { z2 = false; } - P3.append(z2); - throw new RuntimeException(P3.toString()); + O3.append(z2); + throw new RuntimeException(O3.toString()); } else if (decoratedStart3 < decoratedStart) { logChildren(); throw new RuntimeException("detected invalid location"); diff --git a/app/src/main/java/androidx/recyclerview/widget/MessageThreadUtil.java b/app/src/main/java/androidx/recyclerview/widget/MessageThreadUtil.java index 69bd9b3ee2..1ea1bada4b 100644 --- a/app/src/main/java/androidx/recyclerview/widget/MessageThreadUtil.java +++ b/app/src/main/java/androidx/recyclerview/widget/MessageThreadUtil.java @@ -36,9 +36,9 @@ public class MessageThreadUtil implements ThreadUtil { } else if (i == 2) { AnonymousClass1.this.val$callback.addTile(next.arg1, (TileList.Tile) next.data); } else if (i != 3) { - StringBuilder P = a.P("Unsupported message, what="); - P.append(next.what); - Log.e("ThreadUtil", P.toString()); + StringBuilder O = a.O("Unsupported message, what="); + O.append(next.what); + Log.e("ThreadUtil", O.toString()); } else { AnonymousClass1.this.val$callback.removeTile(next.arg1, next.arg2); } @@ -108,9 +108,9 @@ public class MessageThreadUtil implements ThreadUtil { } else if (i == 3) { AnonymousClass2.this.val$callback.loadTile(next.arg1, next.arg2); } else if (i != 4) { - StringBuilder P = a.P("Unsupported message, what="); - P.append(next.what); - Log.e("ThreadUtil", P.toString()); + StringBuilder O = a.O("Unsupported message, what="); + O.append(next.what); + Log.e("ThreadUtil", O.toString()); } else { AnonymousClass2.this.val$callback.recycleTile((TileList.Tile) next.data); } diff --git a/app/src/main/java/androidx/recyclerview/widget/RecyclerView.java b/app/src/main/java/androidx/recyclerview/widget/RecyclerView.java index 2ace96f6f9..ab81cc6d3d 100644 --- a/app/src/main/java/androidx/recyclerview/widget/RecyclerView.java +++ b/app/src/main/java/androidx/recyclerview/widget/RecyclerView.java @@ -1005,9 +1005,9 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro i = this.mChildHelper.getChildCount(); } if (indexOfChild == -1) { - StringBuilder P = a.P("Added View has RecyclerView as parent but view is not a real child. Unfiltered index:"); - P.append(this.mRecyclerView.indexOfChild(view)); - throw new IllegalStateException(a.i(this.mRecyclerView, P)); + StringBuilder O = a.O("Added View has RecyclerView as parent but view is not a real child. Unfiltered index:"); + O.append(this.mRecyclerView.indexOfChild(view)); + throw new IllegalStateException(a.i(this.mRecyclerView, O)); } else if (indexOfChild != i) { this.mRecyclerView.mLayout.moveView(indexOfChild, i); } @@ -1599,7 +1599,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro ViewParent parent = view.getParent(); RecyclerView recyclerView = this.mRecyclerView; if (parent != recyclerView || recyclerView.indexOfChild(view) == -1) { - throw new IllegalArgumentException(a.i(this.mRecyclerView, a.P("View should be fully attached to be ignored"))); + throw new IllegalArgumentException(a.i(this.mRecyclerView, a.O("View should be fully attached to be ignored"))); } ViewHolder childViewHolderInt = RecyclerView.getChildViewHolderInt(view); childViewHolderInt.addFlags(128); @@ -2470,9 +2470,9 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (childViewHolderInt != null) { int findPositionOffset = RecyclerView.this.mAdapterHelper.findPositionOffset(i); if (findPositionOffset < 0 || findPositionOffset >= RecyclerView.this.mAdapter.getItemCount()) { - StringBuilder R = a.R("Inconsistency detected. Invalid item position ", i, "(offset:", findPositionOffset, ").state:"); - R.append(RecyclerView.this.mState.getItemCount()); - throw new IndexOutOfBoundsException(a.i(RecyclerView.this, R)); + StringBuilder Q = a.Q("Inconsistency detected. Invalid item position ", i, "(offset:", findPositionOffset, ").state:"); + Q.append(RecyclerView.this.mState.getItemCount()); + throw new IndexOutOfBoundsException(a.i(RecyclerView.this, Q)); } tryBindViewHolderByDeadline(childViewHolderInt, findPositionOffset, i, RecyclerView.FOREVER_NS); ViewGroup.LayoutParams layoutParams2 = childViewHolderInt.itemView.getLayoutParams(); @@ -2494,7 +2494,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro layoutParams.mPendingInvalidate = z2; return; } - throw new IllegalArgumentException(a.i(RecyclerView.this, a.P("The view does not have a ViewHolder. You cannot pass arbitrary views to this method, they should be created by the Adapter"))); + throw new IllegalArgumentException(a.i(RecyclerView.this, a.O("The view does not have a ViewHolder. You cannot pass arbitrary views to this method, they should be created by the Adapter"))); } public void clear() { @@ -2532,9 +2532,9 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (i >= 0 && i < RecyclerView.this.mState.getItemCount()) { return !RecyclerView.this.mState.isPreLayout() ? i : RecyclerView.this.mAdapterHelper.findPositionOffset(i); } - StringBuilder Q = a.Q("invalid position ", i, ". State item count is "); - Q.append(RecyclerView.this.mState.getItemCount()); - throw new IndexOutOfBoundsException(a.i(RecyclerView.this, Q)); + StringBuilder P = a.P("invalid position ", i, ". State item count is "); + P.append(RecyclerView.this.mState.getItemCount()); + throw new IndexOutOfBoundsException(a.i(RecyclerView.this, P)); } public void dispatchViewRecycled(@NonNull ViewHolder viewHolder) { @@ -2809,14 +2809,14 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro boolean z2 = false; boolean z3 = true; if (viewHolder.isScrap() || viewHolder.itemView.getParent() != null) { - StringBuilder P = a.P("Scrapped or attached views may not be recycled. isScrap:"); - P.append(viewHolder.isScrap()); - P.append(" isAttached:"); + StringBuilder O = a.O("Scrapped or attached views may not be recycled. isScrap:"); + O.append(viewHolder.isScrap()); + O.append(" isAttached:"); if (viewHolder.itemView.getParent() != null) { z2 = true; } - P.append(z2); - throw new IllegalArgumentException(a.i(RecyclerView.this, P)); + O.append(z2); + throw new IllegalArgumentException(a.i(RecyclerView.this, O)); } else if (viewHolder.isTmpDetached()) { StringBuilder sb = new StringBuilder(); sb.append("Tmp detached view should be removed from RecyclerView before it can be recycled: "); @@ -2861,7 +2861,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (!z2) { } } else { - throw new IllegalArgumentException(a.i(RecyclerView.this, a.P("Trying to recycle an ignored view holder. You should first call stopIgnoringView(view) before calling recycle."))); + throw new IllegalArgumentException(a.i(RecyclerView.this, a.O("Trying to recycle an ignored view holder. You should first call stopIgnoringView(view) before calling recycle."))); } } @@ -2877,7 +2877,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro childViewHolderInt.setScrapContainer(this, false); this.mAttachedScrap.add(childViewHolderInt); } else { - throw new IllegalArgumentException(a.i(RecyclerView.this, a.P("Called scrap view with an invalid view. Invalid views cannot be reused from scrap, they should rebound from recycler pool."))); + throw new IllegalArgumentException(a.i(RecyclerView.this, a.O("Called scrap view with an invalid view. Invalid views cannot be reused from scrap, they should rebound from recycler pool."))); } } @@ -2920,9 +2920,9 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro ViewCacheExtension viewCacheExtension; View viewForPositionAndType; if (i < 0 || i >= RecyclerView.this.mState.getItemCount()) { - StringBuilder R = a.R("Invalid item position ", i, "(", i, "). Item count:"); - R.append(RecyclerView.this.mState.getItemCount()); - throw new IndexOutOfBoundsException(a.i(RecyclerView.this, R)); + StringBuilder Q = a.Q("Invalid item position ", i, "(", i, "). Item count:"); + Q.append(RecyclerView.this.mState.getItemCount()); + throw new IndexOutOfBoundsException(a.i(RecyclerView.this, Q)); } boolean z5 = true; if (RecyclerView.this.mState.isPreLayout()) { @@ -2949,9 +2949,9 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (viewHolder == null) { int findPositionOffset = RecyclerView.this.mAdapterHelper.findPositionOffset(i); if (findPositionOffset < 0 || findPositionOffset >= RecyclerView.this.mAdapter.getItemCount()) { - StringBuilder R2 = a.R("Inconsistency detected. Invalid item position ", i, "(offset:", findPositionOffset, ").state:"); - R2.append(RecyclerView.this.mState.getItemCount()); - throw new IndexOutOfBoundsException(a.i(RecyclerView.this, R2)); + StringBuilder Q2 = a.Q("Inconsistency detected. Invalid item position ", i, "(offset:", findPositionOffset, ").state:"); + Q2.append(RecyclerView.this.mState.getItemCount()); + throw new IndexOutOfBoundsException(a.i(RecyclerView.this, Q2)); } int itemViewType = RecyclerView.this.mAdapter.getItemViewType(findPositionOffset); if (RecyclerView.this.mAdapter.hasStableIds() && (viewHolder = getScrapOrCachedViewForId(RecyclerView.this.mAdapter.getItemId(findPositionOffset), itemViewType, z2)) != null) { @@ -2961,9 +2961,9 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (!(viewHolder != null || (viewCacheExtension = this.mViewCacheExtension) == null || (viewForPositionAndType = viewCacheExtension.getViewForPositionAndType(this, i, itemViewType)) == null)) { viewHolder = RecyclerView.this.getChildViewHolder(viewForPositionAndType); if (viewHolder == null) { - throw new IllegalArgumentException(a.i(RecyclerView.this, a.P("getViewForPositionAndType returned a view which does not have a ViewHolder"))); + throw new IllegalArgumentException(a.i(RecyclerView.this, a.O("getViewForPositionAndType returned a view which does not have a ViewHolder"))); } else if (viewHolder.shouldIgnore()) { - throw new IllegalArgumentException(a.i(RecyclerView.this, a.P("getViewForPositionAndType returned a view that is ignored. You must call stopIgnoring before returning this view."))); + throw new IllegalArgumentException(a.i(RecyclerView.this, a.O("getViewForPositionAndType returned a view that is ignored. You must call stopIgnoring before returning this view."))); } } if (viewHolder == null) { @@ -3370,9 +3370,9 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (layoutManager instanceof ScrollVectorProvider) { return ((ScrollVectorProvider) layoutManager).computeScrollVectorForPosition(i); } - StringBuilder P = a.P("You should override computeScrollVectorForPosition when the LayoutManager does not implement "); - P.append(ScrollVectorProvider.class.getCanonicalName()); - Log.w(RecyclerView.TAG, P.toString()); + StringBuilder O = a.O("You should override computeScrollVectorForPosition when the LayoutManager does not implement "); + O.append(ScrollVectorProvider.class.getCanonicalName()); + Log.w(RecyclerView.TAG, O.toString()); return null; } @@ -3474,12 +3474,12 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro public void start(RecyclerView recyclerView, LayoutManager layoutManager) { recyclerView.mViewFlinger.stop(); if (this.mStarted) { - StringBuilder P = a.P("An instance of "); - P.append(getClass().getSimpleName()); - P.append(" was started more than once. Each instance of"); - P.append(getClass().getSimpleName()); - P.append(" is intended to only be used once. You should create a new instance for each use."); - Log.w(RecyclerView.TAG, P.toString()); + StringBuilder O = a.O("An instance of "); + O.append(getClass().getSimpleName()); + O.append(" was started more than once. Each instance of"); + O.append(getClass().getSimpleName()); + O.append(" is intended to only be used once. You should create a new instance for each use."); + Log.w(RecyclerView.TAG, O.toString()); } this.mRecyclerView = recyclerView; this.mLayoutManager = layoutManager; @@ -3536,11 +3536,11 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro public void assertLayoutStep(int i) { if ((this.mLayoutStep & i) == 0) { - StringBuilder P = a.P("Layout state should be one of "); - P.append(Integer.toBinaryString(i)); - P.append(" but it is "); - P.append(Integer.toBinaryString(this.mLayoutStep)); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Layout state should be one of "); + O.append(Integer.toBinaryString(i)); + O.append(" but it is "); + O.append(Integer.toBinaryString(this.mLayoutStep)); + throw new IllegalStateException(O.toString()); } } @@ -3607,28 +3607,28 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro } public String toString() { - StringBuilder P = a.P("State{mTargetPosition="); - P.append(this.mTargetPosition); - P.append(", mData="); - P.append(this.mData); - P.append(", mItemCount="); - P.append(this.mItemCount); - P.append(", mIsMeasuring="); - P.append(this.mIsMeasuring); - P.append(", mPreviousLayoutItemCount="); - P.append(this.mPreviousLayoutItemCount); - P.append(", mDeletedInvisibleItemCountSincePreviousLayout="); - P.append(this.mDeletedInvisibleItemCountSincePreviousLayout); - P.append(", mStructureChanged="); - P.append(this.mStructureChanged); - P.append(", mInPreLayout="); - P.append(this.mInPreLayout); - P.append(", mRunSimpleAnimations="); - P.append(this.mRunSimpleAnimations); - P.append(", mRunPredictiveAnimations="); - P.append(this.mRunPredictiveAnimations); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("State{mTargetPosition="); + O.append(this.mTargetPosition); + O.append(", mData="); + O.append(this.mData); + O.append(", mItemCount="); + O.append(this.mItemCount); + O.append(", mIsMeasuring="); + O.append(this.mIsMeasuring); + O.append(", mPreviousLayoutItemCount="); + O.append(this.mPreviousLayoutItemCount); + O.append(", mDeletedInvisibleItemCountSincePreviousLayout="); + O.append(this.mDeletedInvisibleItemCountSincePreviousLayout); + O.append(", mStructureChanged="); + O.append(this.mStructureChanged); + O.append(", mInPreLayout="); + O.append(this.mInPreLayout); + O.append(", mRunSimpleAnimations="); + O.append(this.mRunSimpleAnimations); + O.append(", mRunPredictiveAnimations="); + O.append(this.mRunPredictiveAnimations); + O.append('}'); + return O.toString(); } public boolean willRunPredictiveAnimations() { @@ -4125,17 +4125,17 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro } public String toString() { - StringBuilder U = a.U(getClass().isAnonymousClass() ? "ViewHolder" : getClass().getSimpleName(), "{"); - U.append(Integer.toHexString(hashCode())); - U.append(" position="); - U.append(this.mPosition); - U.append(" id="); - U.append(this.mItemId); - U.append(", oldPos="); - U.append(this.mOldPosition); - U.append(", pLpos:"); - U.append(this.mPreLayoutPosition); - StringBuilder sb = new StringBuilder(U.toString()); + StringBuilder S = a.S(getClass().isAnonymousClass() ? "ViewHolder" : getClass().getSimpleName(), "{"); + S.append(Integer.toHexString(hashCode())); + S.append(" position="); + S.append(this.mPosition); + S.append(" id="); + S.append(this.mItemId); + S.append(", oldPos="); + S.append(this.mOldPosition); + S.append(", pLpos:"); + S.append(this.mPreLayoutPosition); + StringBuilder sb = new StringBuilder(S.toString()); if (isScrap()) { sb.append(" scrap "); sb.append(this.mInChangeScrap ? "[changeScrap]" : "[attachedScrap]"); @@ -4159,10 +4159,10 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro sb.append(" tmpDetached"); } if (!isRecyclable()) { - StringBuilder P = a.P(" not recyclable("); - P.append(this.mIsRecyclableCount); - P.append(")"); - sb.append(P.toString()); + StringBuilder O = a.O(" not recyclable("); + O.append(this.mIsRecyclableCount); + O.append(")"); + sb.append(O.toString()); } if (isAdapterPositionUnknown()) { sb.append(" undefined adapter position"); @@ -5119,19 +5119,19 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro return; } if (str == null) { - throw new IllegalStateException(a.i(this, a.P("Cannot call this method unless RecyclerView is computing a layout or scrolling"))); + throw new IllegalStateException(a.i(this, a.O("Cannot call this method unless RecyclerView is computing a layout or scrolling"))); } - throw new IllegalStateException(a.i(this, a.P(str))); + throw new IllegalStateException(a.i(this, a.O(str))); } public void assertNotInLayoutOrScroll(String str) { if (isComputingLayout()) { if (str == null) { - throw new IllegalStateException(a.i(this, a.P("Cannot call this method while RecyclerView is computing a layout or scrolling"))); + throw new IllegalStateException(a.i(this, a.O("Cannot call this method while RecyclerView is computing a layout or scrolling"))); } throw new IllegalStateException(str); } else if (this.mDispatchScrollCounter > 0) { - Log.w(TAG, "Cannot call this method in a scroll callback. Scroll callbacks mightbe run during a measure & layout pass where you cannot change theRecyclerView data. Any method call that might change the structureof the RecyclerView or the adapter contents should be postponed tothe next frame.", new IllegalStateException(a.i(this, a.P("")))); + Log.w(TAG, "Cannot call this method in a scroll callback. Scroll callbacks mightbe run during a measure & layout pass where you cannot change theRecyclerView data. Any method call that might change the structureof the RecyclerView or the adapter contents should be postponed tothe next frame.", new IllegalStateException(a.i(this, a.O("")))); } } @@ -5559,15 +5559,15 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro } public String exceptionLabel() { - StringBuilder P = a.P(" "); - P.append(super.toString()); - P.append(", adapter:"); - P.append(this.mAdapter); - P.append(", layout:"); - P.append(this.mLayout); - P.append(", context:"); - P.append(getContext()); - return P.toString(); + StringBuilder O = a.O(" "); + O.append(super.toString()); + O.append(", adapter:"); + O.append(this.mAdapter); + O.append(", layout:"); + O.append(this.mLayout); + O.append(", context:"); + O.append(getContext()); + return O.toString(); } public final void fillRemainingScrollValues(State state) { @@ -5806,7 +5806,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (layoutManager != null) { return layoutManager.generateDefaultLayoutParams(); } - throw new IllegalStateException(a.i(this, a.P("RecyclerView has no LayoutManager"))); + throw new IllegalStateException(a.i(this, a.O("RecyclerView has no LayoutManager"))); } @Override // android.view.ViewGroup @@ -5815,7 +5815,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (layoutManager != null) { return layoutManager.generateLayoutParams(getContext(), attributeSet); } - throw new IllegalStateException(a.i(this, a.P("RecyclerView has no LayoutManager"))); + throw new IllegalStateException(a.i(this, a.O("RecyclerView has no LayoutManager"))); } @Override // android.view.ViewGroup @@ -5824,7 +5824,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro if (layoutManager != null) { return layoutManager.generateLayoutParams(layoutParams); } - throw new IllegalStateException(a.i(this, a.P("RecyclerView has no LayoutManager"))); + throw new IllegalStateException(a.i(this, a.O("RecyclerView has no LayoutManager"))); } @Override // android.view.ViewGroup, android.view.View @@ -6023,7 +6023,7 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro @VisibleForTesting public void initFastScroller(StateListDrawable stateListDrawable, Drawable drawable, StateListDrawable stateListDrawable2, Drawable drawable2) { if (stateListDrawable == null || drawable == null || stateListDrawable2 == null || drawable2 == null) { - throw new IllegalArgumentException(a.i(this, a.P("Trying to set fast scroller without both required drawables."))); + throw new IllegalArgumentException(a.i(this, a.O("Trying to set fast scroller without both required drawables."))); } Resources resources = getContext().getResources(); new FastScroller(this, stateListDrawable, drawable, stateListDrawable2, drawable2, resources.getDimensionPixelSize(R.dimen.fastscroll_default_thickness), resources.getDimensionPixelSize(R.dimen.fastscroll_minimum_range), resources.getDimensionPixelOffset(R.dimen.fastscroll_margin)); @@ -6370,10 +6370,10 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro } else if (actionMasked == 2) { int findPointerIndex = motionEvent.findPointerIndex(this.mScrollPointerId); if (findPointerIndex < 0) { - StringBuilder P = a.P("Error processing scroll; pointer index for id "); - P.append(this.mScrollPointerId); - P.append(" not found. Did any MotionEvents get skipped?"); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("Error processing scroll; pointer index for id "); + O.append(this.mScrollPointerId); + O.append(" not found. Did any MotionEvents get skipped?"); + Log.e(TAG, O.toString()); return false; } int x3 = (int) (motionEvent.getX(findPointerIndex) + 0.5f); @@ -6600,10 +6600,10 @@ public class RecyclerView extends ViewGroup implements ScrollingView, NestedScro } else if (actionMasked == 2) { int findPointerIndex = motionEvent.findPointerIndex(this.mScrollPointerId); if (findPointerIndex < 0) { - StringBuilder P = a.P("Error processing scroll; pointer index for id "); - P.append(this.mScrollPointerId); - P.append(" not found. Did any MotionEvents get skipped?"); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("Error processing scroll; pointer index for id "); + O.append(this.mScrollPointerId); + O.append(" not found. Did any MotionEvents get skipped?"); + Log.e(TAG, O.toString()); return false; } int x3 = (int) (motionEvent.getX(findPointerIndex) + 0.5f); diff --git a/app/src/main/java/androidx/recyclerview/widget/SortedList.java b/app/src/main/java/androidx/recyclerview/widget/SortedList.java index e76dcb485e..6c848b66c5 100644 --- a/app/src/main/java/androidx/recyclerview/widget/SortedList.java +++ b/app/src/main/java/androidx/recyclerview/widget/SortedList.java @@ -170,9 +170,9 @@ public class SortedList { this.mSize++; return; } - StringBuilder Q = a.Q("cannot add item to ", i, " because size is "); - Q.append(this.mSize); - throw new IndexOutOfBoundsException(Q.toString()); + StringBuilder P = a.P("cannot add item to ", i, " because size is "); + P.append(this.mSize); + throw new IndexOutOfBoundsException(P.toString()); } private T[] copyArray(T[] tArr) { @@ -500,9 +500,9 @@ public class SortedList { public T get(int i) throws IndexOutOfBoundsException { int i2; if (i >= this.mSize || i < 0) { - StringBuilder Q = a.Q("Asked to get item at ", i, " but size is "); - Q.append(this.mSize); - throw new IndexOutOfBoundsException(Q.toString()); + StringBuilder P = a.P("Asked to get item at ", i, " but size is "); + P.append(this.mSize); + throw new IndexOutOfBoundsException(P.toString()); } T[] tArr = this.mOldData; return (tArr == null || i < (i2 = this.mNewDataStart)) ? this.mData[i] : tArr[(i - i2) + this.mOldDataStart]; diff --git a/app/src/main/java/androidx/recyclerview/widget/StaggeredGridLayoutManager.java b/app/src/main/java/androidx/recyclerview/widget/StaggeredGridLayoutManager.java index c1c6497612..a7526afc00 100644 --- a/app/src/main/java/androidx/recyclerview/widget/StaggeredGridLayoutManager.java +++ b/app/src/main/java/androidx/recyclerview/widget/StaggeredGridLayoutManager.java @@ -216,16 +216,16 @@ public class StaggeredGridLayoutManager extends RecyclerView.LayoutManager imple @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("FullSpanItem{mPosition="); - P.append(this.mPosition); - P.append(", mGapDir="); - P.append(this.mGapDir); - P.append(", mHasUnwantedGapAfter="); - P.append(this.mHasUnwantedGapAfter); - P.append(", mGapPerSpan="); - P.append(Arrays.toString(this.mGapPerSpan)); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("FullSpanItem{mPosition="); + O.append(this.mPosition); + O.append(", mGapDir="); + O.append(this.mGapDir); + O.append(", mHasUnwantedGapAfter="); + O.append(this.mHasUnwantedGapAfter); + O.append(", mGapPerSpan="); + O.append(Arrays.toString(this.mGapPerSpan)); + O.append('}'); + return O.toString(); } @Override // android.os.Parcelable @@ -1795,11 +1795,11 @@ public class StaggeredGridLayoutManager extends RecyclerView.LayoutManager imple if (iArr == null) { iArr = new int[this.mSpanCount]; } else if (iArr.length < this.mSpanCount) { - StringBuilder P = a.P("Provided int[]'s size must be more than or equal to span count. Expected:"); - P.append(this.mSpanCount); - P.append(", array size:"); - P.append(iArr.length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Provided int[]'s size must be more than or equal to span count. Expected:"); + O.append(this.mSpanCount); + O.append(", array size:"); + O.append(iArr.length); + throw new IllegalArgumentException(O.toString()); } for (int i = 0; i < this.mSpanCount; i++) { iArr[i] = this.mSpans[i].findFirstCompletelyVisibleItemPosition(); @@ -1859,11 +1859,11 @@ public class StaggeredGridLayoutManager extends RecyclerView.LayoutManager imple if (iArr == null) { iArr = new int[this.mSpanCount]; } else if (iArr.length < this.mSpanCount) { - StringBuilder P = a.P("Provided int[]'s size must be more than or equal to span count. Expected:"); - P.append(this.mSpanCount); - P.append(", array size:"); - P.append(iArr.length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Provided int[]'s size must be more than or equal to span count. Expected:"); + O.append(this.mSpanCount); + O.append(", array size:"); + O.append(iArr.length); + throw new IllegalArgumentException(O.toString()); } for (int i = 0; i < this.mSpanCount; i++) { iArr[i] = this.mSpans[i].findFirstVisibleItemPosition(); @@ -1875,11 +1875,11 @@ public class StaggeredGridLayoutManager extends RecyclerView.LayoutManager imple if (iArr == null) { iArr = new int[this.mSpanCount]; } else if (iArr.length < this.mSpanCount) { - StringBuilder P = a.P("Provided int[]'s size must be more than or equal to span count. Expected:"); - P.append(this.mSpanCount); - P.append(", array size:"); - P.append(iArr.length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Provided int[]'s size must be more than or equal to span count. Expected:"); + O.append(this.mSpanCount); + O.append(", array size:"); + O.append(iArr.length); + throw new IllegalArgumentException(O.toString()); } for (int i = 0; i < this.mSpanCount; i++) { iArr[i] = this.mSpans[i].findLastCompletelyVisibleItemPosition(); @@ -1891,11 +1891,11 @@ public class StaggeredGridLayoutManager extends RecyclerView.LayoutManager imple if (iArr == null) { iArr = new int[this.mSpanCount]; } else if (iArr.length < this.mSpanCount) { - StringBuilder P = a.P("Provided int[]'s size must be more than or equal to span count. Expected:"); - P.append(this.mSpanCount); - P.append(", array size:"); - P.append(iArr.length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Provided int[]'s size must be more than or equal to span count. Expected:"); + O.append(this.mSpanCount); + O.append(", array size:"); + O.append(iArr.length); + throw new IllegalArgumentException(O.toString()); } for (int i = 0; i < this.mSpanCount; i++) { iArr[i] = this.mSpans[i].findLastVisibleItemPosition(); diff --git a/app/src/main/java/androidx/room/InvalidationTracker.java b/app/src/main/java/androidx/room/InvalidationTracker.java index 16a8daf595..2686510d45 100644 --- a/app/src/main/java/androidx/room/InvalidationTracker.java +++ b/app/src/main/java/androidx/room/InvalidationTracker.java @@ -386,7 +386,7 @@ public class InvalidationTracker { } private static void appendTriggerName(StringBuilder sb, String str, String str2) { - a.o0(sb, "`", "room_table_modification_trigger_", str, "_"); + a.n0(sb, "`", "room_table_modification_trigger_", str, "_"); sb.append(str2); sb.append("`"); } @@ -413,9 +413,9 @@ public class InvalidationTracker { sb.setLength(0); sb.append("CREATE TEMP TRIGGER IF NOT EXISTS "); appendTriggerName(sb, str, str2); - a.o0(sb, " AFTER ", str2, " ON `", str); - a.o0(sb, "` BEGIN UPDATE ", UPDATE_TABLE_NAME, " SET ", INVALIDATED_COLUMN_NAME); - a.o0(sb, " = 1", " WHERE ", TABLE_ID_COLUMN_NAME, " = "); + a.n0(sb, " AFTER ", str2, " ON `", str); + a.n0(sb, "` BEGIN UPDATE ", UPDATE_TABLE_NAME, " SET ", INVALIDATED_COLUMN_NAME); + a.n0(sb, " = 1", " WHERE ", TABLE_ID_COLUMN_NAME, " = "); sb.append(i); sb.append(" AND "); sb.append(INVALIDATED_COLUMN_NAME); @@ -459,9 +459,9 @@ public class InvalidationTracker { if (num != null) { iArr[i] = num.intValue(); } else { - StringBuilder P = a.P("There is no table with name "); - P.append(resolveViews[i]); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("There is no table with name "); + O.append(resolveViews[i]); + throw new IllegalArgumentException(O.toString()); } } ObserverWrapper observerWrapper = new ObserverWrapper(observer, iArr, resolveViews); diff --git a/app/src/main/java/androidx/room/Room.java b/app/src/main/java/androidx/room/Room.java index 60d7d3fa71..fb00928e6b 100644 --- a/app/src/main/java/androidx/room/Room.java +++ b/app/src/main/java/androidx/room/Room.java @@ -34,20 +34,20 @@ public class Room { } return (T) Class.forName(str2).newInstance(); } catch (ClassNotFoundException unused) { - StringBuilder P = a.P("cannot find implementation for "); - P.append(cls.getCanonicalName()); - P.append(". "); - P.append(str3); - P.append(" does not exist"); - throw new RuntimeException(P.toString()); + StringBuilder O = a.O("cannot find implementation for "); + O.append(cls.getCanonicalName()); + O.append(". "); + O.append(str3); + O.append(" does not exist"); + throw new RuntimeException(O.toString()); } catch (IllegalAccessException unused2) { - StringBuilder P2 = a.P("Cannot access the constructor"); - P2.append(cls.getCanonicalName()); - throw new RuntimeException(P2.toString()); + StringBuilder O2 = a.O("Cannot access the constructor"); + O2.append(cls.getCanonicalName()); + throw new RuntimeException(O2.toString()); } catch (InstantiationException unused3) { - StringBuilder P3 = a.P("Failed to create an instance of "); - P3.append(cls.getCanonicalName()); - throw new RuntimeException(P3.toString()); + StringBuilder O3 = a.O("Failed to create an instance of "); + O3.append(cls.getCanonicalName()); + throw new RuntimeException(O3.toString()); } } diff --git a/app/src/main/java/androidx/room/RoomOpenHelper.java b/app/src/main/java/androidx/room/RoomOpenHelper.java index 5e3e85cb55..012c30f739 100644 --- a/app/src/main/java/androidx/room/RoomOpenHelper.java +++ b/app/src/main/java/androidx/room/RoomOpenHelper.java @@ -103,9 +103,9 @@ public class RoomOpenHelper extends SupportSQLiteOpenHelper.Callback { updateIdentity(supportSQLiteDatabase); return; } - StringBuilder P = a.P("Pre-packaged database has an invalid schema: "); - P.append(onValidateSchema.expectedFoundMsg); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Pre-packaged database has an invalid schema: "); + O.append(onValidateSchema.expectedFoundMsg); + throw new IllegalStateException(O.toString()); } } @@ -156,9 +156,9 @@ public class RoomOpenHelper extends SupportSQLiteOpenHelper.Callback { if (!hasEmptySchema) { ValidationResult onValidateSchema = this.mDelegate.onValidateSchema(supportSQLiteDatabase); if (!onValidateSchema.isValid) { - StringBuilder P = a.P("Pre-packaged database has an invalid schema: "); - P.append(onValidateSchema.expectedFoundMsg); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Pre-packaged database has an invalid schema: "); + O.append(onValidateSchema.expectedFoundMsg); + throw new IllegalStateException(O.toString()); } } updateIdentity(supportSQLiteDatabase); @@ -196,9 +196,9 @@ public class RoomOpenHelper extends SupportSQLiteOpenHelper.Callback { updateIdentity(supportSQLiteDatabase); z2 = true; } else { - StringBuilder P = a.P("Migration didn't properly handle: "); - P.append(onValidateSchema.expectedFoundMsg); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Migration didn't properly handle: "); + O.append(onValidateSchema.expectedFoundMsg); + throw new IllegalStateException(O.toString()); } } if (!z2) { diff --git a/app/src/main/java/androidx/room/SQLiteCopyOpenHelper.java b/app/src/main/java/androidx/room/SQLiteCopyOpenHelper.java index a49451ec6a..86fbf78a2d 100644 --- a/app/src/main/java/androidx/room/SQLiteCopyOpenHelper.java +++ b/app/src/main/java/androidx/room/SQLiteCopyOpenHelper.java @@ -53,16 +53,16 @@ public class SQLiteCopyOpenHelper implements SupportSQLiteOpenHelper { FileUtil.copy(readableByteChannel, new FileOutputStream(createTempFile).getChannel()); File parentFile = file.getParentFile(); if (parentFile != null && !parentFile.exists() && !parentFile.mkdirs()) { - StringBuilder P = a.P("Failed to create directories for "); - P.append(file.getAbsolutePath()); - throw new IOException(P.toString()); + StringBuilder O = a.O("Failed to create directories for "); + O.append(file.getAbsolutePath()); + throw new IOException(O.toString()); } else if (!createTempFile.renameTo(file)) { - StringBuilder P2 = a.P("Failed to move intermediate file ("); - P2.append(createTempFile.getAbsolutePath()); - P2.append(") to destination ("); - P2.append(file.getAbsolutePath()); - P2.append(")."); - throw new IOException(P2.toString()); + StringBuilder O2 = a.O("Failed to move intermediate file ("); + O2.append(createTempFile.getAbsolutePath()); + O2.append(") to destination ("); + O2.append(file.getAbsolutePath()); + O2.append(")."); + throw new IOException(O2.toString()); } } diff --git a/app/src/main/java/androidx/room/paging/LimitOffsetDataSource.java b/app/src/main/java/androidx/room/paging/LimitOffsetDataSource.java index c3c1e06c90..89893411e2 100644 --- a/app/src/main/java/androidx/room/paging/LimitOffsetDataSource.java +++ b/app/src/main/java/androidx/room/paging/LimitOffsetDataSource.java @@ -37,14 +37,14 @@ public abstract class LimitOffsetDataSource extends PositionalDataSource { this.mDb = roomDatabase; this.mSourceQuery = roomSQLiteQuery; this.mInTransaction = z2; - StringBuilder P = a.P("SELECT COUNT(*) FROM ( "); - P.append(roomSQLiteQuery.getSql()); - P.append(" )"); - this.mCountQuery = P.toString(); - StringBuilder P2 = a.P("SELECT * FROM ( "); - P2.append(roomSQLiteQuery.getSql()); - P2.append(" ) LIMIT ? OFFSET ?"); - this.mLimitOffsetQuery = P2.toString(); + StringBuilder O = a.O("SELECT COUNT(*) FROM ( "); + O.append(roomSQLiteQuery.getSql()); + O.append(" )"); + this.mCountQuery = O.toString(); + StringBuilder O2 = a.O("SELECT * FROM ( "); + O2.append(roomSQLiteQuery.getSql()); + O2.append(" ) LIMIT ? OFFSET ?"); + this.mLimitOffsetQuery = O2.toString(); AnonymousClass1 r3 = new AnonymousClass1(strArr); this.mObserver = r3; roomDatabase.getInvalidationTracker().addWeakObserver(r3); diff --git a/app/src/main/java/androidx/room/util/FtsTableInfo.java b/app/src/main/java/androidx/room/util/FtsTableInfo.java index 321fe772c4..58f8934265 100644 --- a/app/src/main/java/androidx/room/util/FtsTableInfo.java +++ b/app/src/main/java/androidx/room/util/FtsTableInfo.java @@ -146,14 +146,14 @@ public class FtsTableInfo { } public String toString() { - StringBuilder P = a.P("FtsTableInfo{name='"); - P.append(this.name); - P.append('\''); - P.append(", columns="); - P.append(this.columns); - P.append(", options="); - P.append(this.options); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("FtsTableInfo{name='"); + O.append(this.name); + O.append('\''); + O.append(", columns="); + O.append(this.columns); + O.append(", options="); + O.append(this.options); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/androidx/room/util/TableInfo.java b/app/src/main/java/androidx/room/util/TableInfo.java index b4744d59d4..f04b6a8029 100644 --- a/app/src/main/java/androidx/room/util/TableInfo.java +++ b/app/src/main/java/androidx/room/util/TableInfo.java @@ -104,24 +104,24 @@ public class TableInfo { } public String toString() { - StringBuilder P = a.P("Column{name='"); - P.append(this.name); - P.append('\''); - P.append(", type='"); - P.append(this.type); - P.append('\''); - P.append(", affinity='"); - P.append(this.affinity); - P.append('\''); - P.append(", notNull="); - P.append(this.notNull); - P.append(", primaryKeyPosition="); - P.append(this.primaryKeyPosition); - P.append(", defaultValue='"); - P.append(this.defaultValue); - P.append('\''); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("Column{name='"); + O.append(this.name); + O.append('\''); + O.append(", type='"); + O.append(this.type); + O.append('\''); + O.append(", affinity='"); + O.append(this.affinity); + O.append('\''); + O.append(", notNull="); + O.append(this.notNull); + O.append(", primaryKeyPosition="); + O.append(this.primaryKeyPosition); + O.append(", defaultValue='"); + O.append(this.defaultValue); + O.append('\''); + O.append('}'); + return O.toString(); } } @@ -166,21 +166,21 @@ public class TableInfo { } public String toString() { - StringBuilder P = a.P("ForeignKey{referenceTable='"); - P.append(this.referenceTable); - P.append('\''); - P.append(", onDelete='"); - P.append(this.onDelete); - P.append('\''); - P.append(", onUpdate='"); - P.append(this.onUpdate); - P.append('\''); - P.append(", columnNames="); - P.append(this.columnNames); - P.append(", referenceColumnNames="); - P.append(this.referenceColumnNames); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("ForeignKey{referenceTable='"); + O.append(this.referenceTable); + O.append('\''); + O.append(", onDelete='"); + O.append(this.onDelete); + O.append('\''); + O.append(", onUpdate='"); + O.append(this.onUpdate); + O.append('\''); + O.append(", columnNames="); + O.append(this.columnNames); + O.append(", referenceColumnNames="); + O.append(this.referenceColumnNames); + O.append('}'); + return O.toString(); } } @@ -236,15 +236,15 @@ public class TableInfo { } public String toString() { - StringBuilder P = a.P("Index{name='"); - P.append(this.name); - P.append('\''); - P.append(", unique="); - P.append(this.unique); - P.append(", columns="); - P.append(this.columns); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("Index{name='"); + O.append(this.name); + O.append('\''); + O.append(", unique="); + O.append(this.unique); + O.append(", columns="); + O.append(this.columns); + O.append('}'); + return O.toString(); } } @@ -437,16 +437,16 @@ public class TableInfo { } public String toString() { - StringBuilder P = a.P("TableInfo{name='"); - P.append(this.name); - P.append('\''); - P.append(", columns="); - P.append(this.columns); - P.append(", foreignKeys="); - P.append(this.foreignKeys); - P.append(", indices="); - P.append(this.indices); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("TableInfo{name='"); + O.append(this.name); + O.append('\''); + O.append(", columns="); + O.append(this.columns); + O.append(", foreignKeys="); + O.append(this.foreignKeys); + O.append(", indices="); + O.append(this.indices); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/androidx/room/util/ViewInfo.java b/app/src/main/java/androidx/room/util/ViewInfo.java index 8479fd5518..e34c5a0fd0 100644 --- a/app/src/main/java/androidx/room/util/ViewInfo.java +++ b/app/src/main/java/androidx/room/util/ViewInfo.java @@ -62,13 +62,13 @@ public class ViewInfo { } public String toString() { - StringBuilder P = a.P("ViewInfo{name='"); - P.append(this.name); - P.append('\''); - P.append(", sql='"); - P.append(this.sql); - P.append('\''); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("ViewInfo{name='"); + O.append(this.name); + O.append('\''); + O.append(", sql='"); + O.append(this.sql); + O.append('\''); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/androidx/savedstate/Recreator.java b/app/src/main/java/androidx/savedstate/Recreator.java index 7884287f78..25ea4db4c8 100644 --- a/app/src/main/java/androidx/savedstate/Recreator.java +++ b/app/src/main/java/androidx/savedstate/Recreator.java @@ -55,10 +55,10 @@ public final class Recreator implements GenericLifecycleObserver { throw new RuntimeException(a.u("Failed to instantiate ", str), e); } } catch (NoSuchMethodException e2) { - StringBuilder P = a.P("Class"); - P.append(cls.getSimpleName()); - P.append(" must have default constructor in order to be automatically recreated"); - throw new IllegalStateException(P.toString(), e2); + StringBuilder O = a.O("Class"); + O.append(cls.getSimpleName()); + O.append(" must have default constructor in order to be automatically recreated"); + throw new IllegalStateException(O.toString(), e2); } } catch (ClassNotFoundException e3) { throw new RuntimeException(a.v("Class ", str, " wasn't found"), e3); diff --git a/app/src/main/java/androidx/savedstate/SavedStateRegistry.java b/app/src/main/java/androidx/savedstate/SavedStateRegistry.java index 49a67f9b88..d574fb07cb 100644 --- a/app/src/main/java/androidx/savedstate/SavedStateRegistry.java +++ b/app/src/main/java/androidx/savedstate/SavedStateRegistry.java @@ -114,10 +114,10 @@ public final class SavedStateRegistry { cls.getDeclaredConstructor(new Class[0]); this.mRecreatorProvider.add(cls.getName()); } catch (NoSuchMethodException e) { - StringBuilder P = a.P("Class"); - P.append(cls.getSimpleName()); - P.append(" must have default constructor in order to be automatically recreated"); - throw new IllegalArgumentException(P.toString(), e); + StringBuilder O = a.O("Class"); + O.append(cls.getSimpleName()); + O.append(" must have default constructor in order to be automatically recreated"); + throw new IllegalArgumentException(O.toString(), e); } } else { throw new IllegalStateException("Can not perform this action after onSaveInstanceState"); diff --git a/app/src/main/java/androidx/sharetarget/ShareTargetXmlParser.java b/app/src/main/java/androidx/sharetarget/ShareTargetXmlParser.java index fcfa5cd376..35192fa605 100644 --- a/app/src/main/java/androidx/sharetarget/ShareTargetXmlParser.java +++ b/app/src/main/java/androidx/sharetarget/ShareTargetXmlParser.java @@ -57,9 +57,9 @@ public class ShareTargetXmlParser { if (loadXmlMetaData != null) { return loadXmlMetaData; } - StringBuilder P = a.P("Failed to open android.app.shortcuts meta-data resource of "); - P.append(activityInfo.name); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Failed to open android.app.shortcuts meta-data resource of "); + O.append(activityInfo.name); + throw new IllegalArgumentException(O.toString()); } private static ShareTargetCompat parseShareTarget(XmlResourceParser xmlResourceParser) throws Exception { diff --git a/app/src/main/java/androidx/sharetarget/ShortcutsInfoSerialization.java b/app/src/main/java/androidx/sharetarget/ShortcutsInfoSerialization.java index 3ed076b4df..bee3ee4690 100644 --- a/app/src/main/java/androidx/sharetarget/ShortcutsInfoSerialization.java +++ b/app/src/main/java/androidx/sharetarget/ShortcutsInfoSerialization.java @@ -208,23 +208,23 @@ public class ShortcutsInfoSerialization { } catch (Exception e2) { e = e2; fileOutputStream = startWrite; - StringBuilder P = a.P("Failed to write to file "); - P.append(atomicFile.getBaseFile()); - Log.e("ShortcutInfoCompatSaver", P.toString(), e); + StringBuilder O = a.O("Failed to write to file "); + O.append(atomicFile.getBaseFile()); + Log.e("ShortcutInfoCompatSaver", O.toString(), e); atomicFile.failWrite(fileOutputStream); - StringBuilder P2 = a.P("Failed to write to file "); - P2.append(atomicFile.getBaseFile()); - throw new RuntimeException(P2.toString(), e); + StringBuilder O2 = a.O("Failed to write to file "); + O2.append(atomicFile.getBaseFile()); + throw new RuntimeException(O2.toString(), e); } } catch (Exception e3) { e = e3; - StringBuilder P = a.P("Failed to write to file "); - P.append(atomicFile.getBaseFile()); - Log.e("ShortcutInfoCompatSaver", P.toString(), e); + StringBuilder O = a.O("Failed to write to file "); + O.append(atomicFile.getBaseFile()); + Log.e("ShortcutInfoCompatSaver", O.toString(), e); atomicFile.failWrite(fileOutputStream); - StringBuilder P2 = a.P("Failed to write to file "); - P2.append(atomicFile.getBaseFile()); - throw new RuntimeException(P2.toString(), e); + StringBuilder O2 = a.O("Failed to write to file "); + O2.append(atomicFile.getBaseFile()); + throw new RuntimeException(O2.toString(), e); } } diff --git a/app/src/main/java/androidx/sqlite/db/SupportSQLiteOpenHelper.java b/app/src/main/java/androidx/sqlite/db/SupportSQLiteOpenHelper.java index b55efef4a8..4ff61e3b05 100644 --- a/app/src/main/java/androidx/sqlite/db/SupportSQLiteOpenHelper.java +++ b/app/src/main/java/androidx/sqlite/db/SupportSQLiteOpenHelper.java @@ -26,7 +26,7 @@ public interface SupportSQLiteOpenHelper extends Closeable { private void deleteDatabaseFile(String str) { if (!str.equalsIgnoreCase(":memory:") && str.trim().length() != 0) { - a.l0("deleting the database file: ", str, TAG); + a.k0("deleting the database file: ", str, TAG); try { SQLiteDatabase.deleteDatabase(new File(str)); } catch (Exception e) { @@ -63,9 +63,9 @@ public interface SupportSQLiteOpenHelper extends Closeable { /* JADX WARNING: Removed duplicated region for block: B:7:0x002a A[ExcHandler: all (r1v2 'th' java.lang.Throwable A[CUSTOM_DECLARE]), PHI: r0 PHI: (r0v12 java.util.List>) = (r0v4 java.util.List>), (r0v6 java.util.List>), (r0v6 java.util.List>) binds: [B:5:0x0025, B:8:0x002c, B:10:?] A[DONT_GENERATE, DONT_INLINE], Splitter:B:5:0x0025] */ public void onCorruption(@NonNull SupportSQLiteDatabase supportSQLiteDatabase) { - StringBuilder P = a.P("Corruption reported by sqlite on database: "); - P.append(supportSQLiteDatabase.getPath()); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("Corruption reported by sqlite on database: "); + O.append(supportSQLiteDatabase.getPath()); + Log.e(TAG, O.toString()); if (!supportSQLiteDatabase.isOpen()) { deleteDatabaseFile(supportSQLiteDatabase.getPath()); return; diff --git a/app/src/main/java/androidx/sqlite/db/framework/FrameworkSQLiteDatabase.java b/app/src/main/java/androidx/sqlite/db/framework/FrameworkSQLiteDatabase.java index 78a1698919..469f4f1c0d 100644 --- a/app/src/main/java/androidx/sqlite/db/framework/FrameworkSQLiteDatabase.java +++ b/app/src/main/java/androidx/sqlite/db/framework/FrameworkSQLiteDatabase.java @@ -91,9 +91,9 @@ public class FrameworkSQLiteDatabase implements SupportSQLiteDatabase { @Override // androidx.sqlite.db.SupportSQLiteDatabase public int delete(String str, String str2, Object[] objArr) { - StringBuilder U = a.U("DELETE FROM ", str); - U.append(TextUtils.isEmpty(str2) ? "" : a.u(" WHERE ", str2)); - SupportSQLiteStatement compileStatement = compileStatement(U.toString()); + StringBuilder S = a.S("DELETE FROM ", str); + S.append(TextUtils.isEmpty(str2) ? "" : a.u(" WHERE ", str2)); + SupportSQLiteStatement compileStatement = compileStatement(S.toString()); SimpleSQLiteQuery.bind(compileStatement, objArr); return compileStatement.executeUpdateDelete(); } diff --git a/app/src/main/java/androidx/transition/Transition.java b/app/src/main/java/androidx/transition/Transition.java index 2ee885622c..1facf209ad 100644 --- a/app/src/main/java/androidx/transition/Transition.java +++ b/app/src/main/java/androidx/transition/Transition.java @@ -1271,23 +1271,23 @@ public abstract class Transition implements Cloneable { } public String toString(String str) { - StringBuilder P = a.P(str); - P.append(getClass().getSimpleName()); - P.append("@"); - P.append(Integer.toHexString(hashCode())); - P.append(": "); - String sb = P.toString(); + StringBuilder O = a.O(str); + O.append(getClass().getSimpleName()); + O.append("@"); + O.append(Integer.toHexString(hashCode())); + O.append(": "); + String sb = O.toString(); if (this.mDuration != -1) { - sb = a.A(a.U(sb, "dur("), this.mDuration, ") "); + sb = a.A(a.S(sb, "dur("), this.mDuration, ") "); } if (this.mStartDelay != -1) { - sb = a.A(a.U(sb, "dly("), this.mStartDelay, ") "); + sb = a.A(a.S(sb, "dly("), this.mStartDelay, ") "); } if (this.mInterpolator != null) { - StringBuilder U = a.U(sb, "interp("); - U.append(this.mInterpolator); - U.append(") "); - sb = U.toString(); + StringBuilder S = a.S(sb, "interp("); + S.append(this.mInterpolator); + S.append(") "); + sb = S.toString(); } if (this.mTargetIds.size() <= 0 && this.mTargets.size() <= 0) { return sb; @@ -1298,9 +1298,9 @@ public abstract class Transition implements Cloneable { if (i > 0) { u = a.u(u, ", "); } - StringBuilder P2 = a.P(u); - P2.append(this.mTargetIds.get(i)); - u = P2.toString(); + StringBuilder O2 = a.O(u); + O2.append(this.mTargetIds.get(i)); + u = O2.toString(); } } if (this.mTargets.size() > 0) { @@ -1308,9 +1308,9 @@ public abstract class Transition implements Cloneable { if (i2 > 0) { u = a.u(u, ", "); } - StringBuilder P3 = a.P(u); - P3.append(this.mTargets.get(i2)); - u = P3.toString(); + StringBuilder O3 = a.O(u); + O3.append(this.mTargets.get(i2)); + u = O3.toString(); } } return a.u(u, ")"); diff --git a/app/src/main/java/androidx/transition/TransitionInflater.java b/app/src/main/java/androidx/transition/TransitionInflater.java index 758f13bd54..5dd3ac010c 100644 --- a/app/src/main/java/androidx/transition/TransitionInflater.java +++ b/app/src/main/java/androidx/transition/TransitionInflater.java @@ -100,9 +100,9 @@ public class TransitionInflater { throw new RuntimeException("Invalid use of pathMotion element"); } } else if (!"patternPathMotion".equals(name)) { - StringBuilder P = a.P("Unknown scene name: "); - P.append(xmlPullParser.getName()); - throw new RuntimeException(P.toString()); + StringBuilder O = a.O("Unknown scene name: "); + O.append(xmlPullParser.getName()); + throw new RuntimeException(O.toString()); } else if (transition != null) { transition.setPathMotion(new PatternPathMotion(this.mContext, attributeSet)); } else { @@ -149,9 +149,9 @@ public class TransitionInflater { } } } - StringBuilder P = a.P("Unknown scene name: "); - P.append(xmlPullParser.getName()); - throw new RuntimeException(P.toString()); + StringBuilder O = a.O("Unknown scene name: "); + O.append(xmlPullParser.getName()); + throw new RuntimeException(O.toString()); } public static TransitionInflater from(Context context) { @@ -205,9 +205,9 @@ public class TransitionInflater { } obtainStyledAttributes.recycle(); } else { - StringBuilder P = a.P("Unknown scene name: "); - P.append(xmlPullParser.getName()); - throw new RuntimeException(P.toString()); + StringBuilder O = a.O("Unknown scene name: "); + O.append(xmlPullParser.getName()); + throw new RuntimeException(O.toString()); } } } diff --git a/app/src/main/java/androidx/transition/TransitionSet.java b/app/src/main/java/androidx/transition/TransitionSet.java index e48063f62e..bae1a7ee4e 100644 --- a/app/src/main/java/androidx/transition/TransitionSet.java +++ b/app/src/main/java/androidx/transition/TransitionSet.java @@ -498,9 +498,9 @@ public class TransitionSet extends Transition { public String toString(String str) { String transition = super.toString(str); for (int i = 0; i < this.mTransitions.size(); i++) { - StringBuilder U = a.U(transition, "\n"); - U.append(this.mTransitions.get(i).toString(str + " ")); - transition = U.toString(); + StringBuilder S = a.S(transition, "\n"); + S.append(this.mTransitions.get(i).toString(str + " ")); + transition = S.toString(); } return transition; } diff --git a/app/src/main/java/androidx/transition/TransitionValues.java b/app/src/main/java/androidx/transition/TransitionValues.java index bfe56f9e8e..5d90a5c544 100644 --- a/app/src/main/java/androidx/transition/TransitionValues.java +++ b/app/src/main/java/androidx/transition/TransitionValues.java @@ -32,13 +32,13 @@ public class TransitionValues { } public String toString() { - StringBuilder P = a.P("TransitionValues@"); - P.append(Integer.toHexString(hashCode())); - P.append(":\n"); - StringBuilder U = a.U(P.toString(), " view = "); - U.append(this.view); - U.append("\n"); - String u = a.u(U.toString(), " values:"); + StringBuilder O = a.O("TransitionValues@"); + O.append(Integer.toHexString(hashCode())); + O.append(":\n"); + StringBuilder S = a.S(O.toString(), " view = "); + S.append(this.view); + S.append("\n"); + String u = a.u(S.toString(), " values:"); for (String str : this.values.keySet()) { u = u + " " + str + ": " + this.values.get(str) + "\n"; } diff --git a/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimationUtilsCompat.java b/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimationUtilsCompat.java index 32dea39794..038a6e21e0 100644 --- a/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimationUtilsCompat.java +++ b/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimationUtilsCompat.java @@ -57,9 +57,9 @@ public class AnimationUtilsCompat { } else if (name.equals("pathInterpolator")) { accelerateInterpolator = new PathInterpolatorCompat(context, asAttributeSet, xmlPullParser); } else { - StringBuilder P = a.P("Unknown interpolator name: "); - P.append(xmlPullParser.getName()); - throw new RuntimeException(P.toString()); + StringBuilder O = a.O("Unknown interpolator name: "); + O.append(xmlPullParser.getName()); + throw new RuntimeException(O.toString()); } interpolator = accelerateInterpolator; } diff --git a/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimatorInflaterCompat.java b/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimatorInflaterCompat.java index cae5f67350..1bc495230f 100644 --- a/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimatorInflaterCompat.java +++ b/app/src/main/java/androidx/vectordrawable/graphics/drawable/AnimatorInflaterCompat.java @@ -105,9 +105,9 @@ public class AnimatorInflaterCompat { } i2 = 1; } else { - StringBuilder P = a.P("Unknown animator name: "); - P.append(xmlPullParser.getName()); - throw new RuntimeException(P.toString()); + StringBuilder O = a.O("Unknown animator name: "); + O.append(xmlPullParser.getName()); + throw new RuntimeException(O.toString()); } if (animatorSet != null && i2 == 0) { if (arrayList == null) { @@ -156,15 +156,15 @@ public class AnimatorInflaterCompat { int length = objArr.length; for (int i = 0; i < length; i++) { Keyframe keyframe = (Keyframe) objArr[i]; - StringBuilder Q = a.Q("Keyframe ", i, ": fraction "); + StringBuilder P = a.P("Keyframe ", i, ": fraction "); Object obj = "null"; - Q.append(keyframe.getFraction() < 0.0f ? obj : Float.valueOf(keyframe.getFraction())); - Q.append(", , value : "); + P.append(keyframe.getFraction() < 0.0f ? obj : Float.valueOf(keyframe.getFraction())); + P.append(", , value : "); if (keyframe.hasValue()) { obj = keyframe.getValue(); } - Q.append(obj); - Log.d(TAG, Q.toString()); + P.append(obj); + Log.d(TAG, P.toString()); } } } diff --git a/app/src/main/java/androidx/vectordrawable/graphics/drawable/PathInterpolatorCompat.java b/app/src/main/java/androidx/vectordrawable/graphics/drawable/PathInterpolatorCompat.java index fe11f45834..bbcde4b1b4 100644 --- a/app/src/main/java/androidx/vectordrawable/graphics/drawable/PathInterpolatorCompat.java +++ b/app/src/main/java/androidx/vectordrawable/graphics/drawable/PathInterpolatorCompat.java @@ -76,16 +76,16 @@ public class PathInterpolatorCompat implements Interpolator { return; } } - StringBuilder P = a.P("The Path must start at (0,0) and end at (1,1) start: "); - P.append(this.mX[0]); - P.append(","); - P.append(this.mY[0]); - P.append(" end:"); + StringBuilder O = a.O("The Path must start at (0,0) and end at (1,1) start: "); + O.append(this.mX[0]); + O.append(","); + O.append(this.mY[0]); + O.append(" end:"); int i6 = min - 1; - P.append(this.mX[i6]); - P.append(","); - P.append(this.mY[i6]); - throw new IllegalArgumentException(P.toString()); + O.append(this.mX[i6]); + O.append(","); + O.append(this.mY[i6]); + throw new IllegalArgumentException(O.toString()); } throw new IllegalArgumentException("The Path has a invalid length " + length); } diff --git a/app/src/main/java/androidx/vectordrawable/graphics/drawable/VectorDrawableCompat.java b/app/src/main/java/androidx/vectordrawable/graphics/drawable/VectorDrawableCompat.java index 010bd05ec1..ef0da311cd 100644 --- a/app/src/main/java/androidx/vectordrawable/graphics/drawable/VectorDrawableCompat.java +++ b/app/src/main/java/androidx/vectordrawable/graphics/drawable/VectorDrawableCompat.java @@ -535,15 +535,15 @@ public class VectorDrawableCompat extends VectorDrawableCommon { float[] fArr; String str = " "; for (int i = 0; i < pathDataNodeArr.length; i++) { - StringBuilder P = a.P(str); - P.append(pathDataNodeArr[i].mType); - P.append(":"); - str = P.toString(); + StringBuilder O = a.O(str); + O.append(pathDataNodeArr[i].mType); + O.append(":"); + str = O.toString(); for (float f : pathDataNodeArr[i].mParams) { - StringBuilder P2 = a.P(str); - P2.append(f); - P2.append(","); - str = P2.toString(); + StringBuilder O2 = a.O(str); + O2.append(f); + O2.append(","); + str = O2.toString(); } } return str; @@ -554,11 +554,11 @@ public class VectorDrawableCompat extends VectorDrawableCommon { for (int i2 = 0; i2 < i; i2++) { str = a.u(str, " "); } - StringBuilder U = a.U(str, "current path is :"); - U.append(this.mPathName); - U.append(" pathData is "); - U.append(nodesToString(this.mNodes)); - Log.v(VectorDrawableCompat.LOGTAG, U.toString()); + StringBuilder S = a.S(str, "current path is :"); + S.append(this.mPathName); + S.append(" pathData is "); + S.append(nodesToString(this.mNodes)); + Log.v(VectorDrawableCompat.LOGTAG, S.toString()); } public void setPathData(PathParser.PathDataNode[] pathDataNodeArr) { @@ -1096,11 +1096,11 @@ public class VectorDrawableCompat extends VectorDrawableCommon { for (int i2 = 0; i2 < i; i2++) { str = a.u(str, " "); } - StringBuilder U = a.U(str, "current group is :"); - U.append(vGroup.getGroupName()); - U.append(" rotation is "); - U.append(vGroup.mRotate); - Log.v(LOGTAG, U.toString()); + StringBuilder S = a.S(str, "current group is :"); + S.append(vGroup.getGroupName()); + S.append(" rotation is "); + S.append(vGroup.mRotate); + Log.v(LOGTAG, S.toString()); Log.v(LOGTAG, str + "matrix is :" + vGroup.getLocalMatrix().toString()); for (int i3 = 0; i3 < vGroup.mChildren.size(); i3++) { VObject vObject = vGroup.mChildren.get(i3); diff --git a/app/src/main/java/androidx/versionedparcelable/VersionedParcelParcel.java b/app/src/main/java/androidx/versionedparcelable/VersionedParcelParcel.java index 00f052d50d..be476acf1e 100644 --- a/app/src/main/java/androidx/versionedparcelable/VersionedParcelParcel.java +++ b/app/src/main/java/androidx/versionedparcelable/VersionedParcelParcel.java @@ -61,7 +61,7 @@ public class VersionedParcelParcel extends VersionedParcel { if (i == this.mOffset) { i = this.mEnd; } - return new VersionedParcelParcel(parcel, dataPosition, i, a.H(new StringBuilder(), this.mPrefix, " "), this.mReadCache, this.mWriteCache, this.mParcelizerCache); + return new VersionedParcelParcel(parcel, dataPosition, i, a.G(new StringBuilder(), this.mPrefix, " "), this.mReadCache, this.mWriteCache, this.mParcelizerCache); } @Override // androidx.versionedparcelable.VersionedParcel diff --git a/app/src/main/java/androidx/versionedparcelable/VersionedParcelStream.java b/app/src/main/java/androidx/versionedparcelable/VersionedParcelStream.java index 866aa8a367..83f05b9c3c 100644 --- a/app/src/main/java/androidx/versionedparcelable/VersionedParcelStream.java +++ b/app/src/main/java/androidx/versionedparcelable/VersionedParcelStream.java @@ -231,9 +231,9 @@ public class VersionedParcelStream extends VersionedParcel { writeInt(14); writeFloatArray((float[]) obj); } else { - StringBuilder P = a.P("Unsupported type "); - P.append(obj.getClass()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Unsupported type "); + O.append(obj.getClass()); + throw new IllegalArgumentException(O.toString()); } } diff --git a/app/src/main/java/androidx/viewpager/widget/ViewPager.java b/app/src/main/java/androidx/viewpager/widget/ViewPager.java index 870be9eab1..e3932784db 100644 --- a/app/src/main/java/androidx/viewpager/widget/ViewPager.java +++ b/app/src/main/java/androidx/viewpager/widget/ViewPager.java @@ -346,10 +346,10 @@ public class ViewPager extends ViewGroup { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("FragmentPager.SavedState{"); - P.append(Integer.toHexString(System.identityHashCode(this))); - P.append(" position="); - return a.z(P, this.position, "}"); + StringBuilder O = a.O("FragmentPager.SavedState{"); + O.append(Integer.toHexString(System.identityHashCode(this))); + O.append(" position="); + return a.z(O, this.position, "}"); } @Override // androidx.customview.view.AbsSavedState, android.os.Parcelable @@ -981,9 +981,9 @@ public class ViewPager extends ViewGroup { sb.append(" => "); sb.append(parent2.getClass().getSimpleName()); } - StringBuilder P = a.P("arrowScroll tried to find focus based on non-child current focused view "); - P.append(sb.toString()); - Log.e(TAG, P.toString()); + StringBuilder O = a.O("arrowScroll tried to find focus based on non-child current focused view "); + O.append(sb.toString()); + Log.e(TAG, O.toString()); } } findNextFocus = FocusFinder.getInstance().findNextFocus(this, findFocus, i); @@ -2121,17 +2121,17 @@ public class ViewPager extends ViewGroup { } catch (Resources.NotFoundException unused) { str = Integer.toHexString(getId()); } - StringBuilder P = a.P("The application's PagerAdapter changed the adapter's contents without calling PagerAdapter#notifyDataSetChanged! Expected adapter item count: "); - P.append(this.mExpectedAdapterCount); - P.append(", found: "); - P.append(count); - P.append(" Pager id: "); - P.append(str); - P.append(" Pager class: "); - P.append(getClass()); - P.append(" Problematic adapter: "); - P.append(this.mAdapter.getClass()); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("The application's PagerAdapter changed the adapter's contents without calling PagerAdapter#notifyDataSetChanged! Expected adapter item count: "); + O.append(this.mExpectedAdapterCount); + O.append(", found: "); + O.append(count); + O.append(" Pager id: "); + O.append(str); + O.append(" Pager class: "); + O.append(getClass()); + O.append(" Problematic adapter: "); + O.append(this.mAdapter.getClass()); + throw new IllegalStateException(O.toString()); } } diff --git a/app/src/main/java/androidx/viewpager2/adapter/FragmentStateAdapter.java b/app/src/main/java/androidx/viewpager2/adapter/FragmentStateAdapter.java index 768892ea28..9467d85c8e 100644 --- a/app/src/main/java/androidx/viewpager2/adapter/FragmentStateAdapter.java +++ b/app/src/main/java/androidx/viewpager2/adapter/FragmentStateAdapter.java @@ -499,9 +499,9 @@ public abstract class FragmentStateAdapter extends RecyclerView.Adapter implements a { String timeUnit2 = timeUnit.toString(); Locale locale = Locale.ROOT; String lowerCase = timeUnit2.toLowerCase(locale); - StringBuilder S = c.d.b.a.a.S("Waited ", j, " "); - S.append(timeUnit.toString().toLowerCase(locale)); - String sb = S.toString(); + StringBuilder R = c.d.b.a.a.R("Waited ", j, " "); + R.append(timeUnit.toString().toLowerCase(locale)); + String sb = R.toString(); if (nanos + 1000 < 0) { String u = c.d.b.a.a.u(sb, " (plus "); long j2 = -nanos; @@ -649,15 +649,15 @@ public abstract class AbstractFuture implements a { public String pendingToString() { Object obj = this.value; if (obj instanceof SetFuture) { - return c.d.b.a.a.H(c.d.b.a.a.P("setFuture=["), userObjectToString(((SetFuture) obj).future), "]"); + return c.d.b.a.a.G(c.d.b.a.a.O("setFuture=["), userObjectToString(((SetFuture) obj).future), "]"); } if (!(this instanceof ScheduledFuture)) { return null; } - StringBuilder P = c.d.b.a.a.P("remaining delay=["); - P.append(((ScheduledFuture) this).getDelay(TimeUnit.MILLISECONDS)); - P.append(" ms]"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("remaining delay=["); + O.append(((ScheduledFuture) this).getDelay(TimeUnit.MILLISECONDS)); + O.append(" ms]"); + return O.toString(); } public boolean set(@Nullable V v) { @@ -725,9 +725,9 @@ public abstract class AbstractFuture implements a { try { str = pendingToString(); } catch (RuntimeException e) { - StringBuilder P = c.d.b.a.a.P("Exception thrown from implementation: "); - P.append(e.getClass()); - str = P.toString(); + StringBuilder O = c.d.b.a.a.O("Exception thrown from implementation: "); + O.append(e.getClass()); + str = O.toString(); } if (str != null && !str.isEmpty()) { sb.append("PENDING, info=["); diff --git a/app/src/main/java/c/a/a/a.java b/app/src/main/java/c/a/a/a.java index 77268a02b2..5c330a9645 100644 --- a/app/src/main/java/c/a/a/a.java +++ b/app/src/main/java/c/a/a/a.java @@ -31,7 +31,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: ImageUploadFailedDialog.kt */ public final class a extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(a.class, "binding", "getBinding()Lcom/discord/databinding/ImageUploadFailedDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(a.class, "binding", "getBinding()Lcom/discord/databinding/ImageUploadFailedDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); public Function0 l; @@ -70,7 +70,7 @@ public final class a extends AppDialog { ((a) this.j).dismiss(); } else if (i == 4) { KProperty[] kPropertyArr = a.i; - ((a) this.j).g().f172c.toggle(); + ((a) this.j).g().f171c.toggle(); } else { throw null; } @@ -221,10 +221,10 @@ public final class a extends AppDialog { } relativeLayout2.setVisibility(i3); g().d.setOnClickListener(new View$OnClickListenerC0001a(4, this)); - SwitchMaterial switchMaterial = g().f172c; + SwitchMaterial switchMaterial = g().f171c; m.checkNotNullExpressionValue(switchMaterial, "binding.imageUploadFaile…mpressionSettingsCheckbox"); switchMaterial.setChecked(StoreStream.Companion.getUserSettings().getIsAutoImageCompressionEnabled()); - g().f172c.setOnCheckedChangeListener(d.a); + g().f171c.setOnCheckedChangeListener(d.a); TextView textView = g().j; m.checkNotNullExpressionValue(textView, "binding.imageUploadFailedText"); CharSequence charSequence = null; diff --git a/app/src/main/java/c/a/a/b/a.java b/app/src/main/java/c/a/a/b/a.java index 485cee2776..c93b502c72 100644 --- a/app/src/main/java/c/a/a/b/a.java +++ b/app/src/main/java/c/a/a/b/a.java @@ -37,7 +37,7 @@ import rx.Observable; import rx.subjects.PublishSubject; /* compiled from: UserActionsDialog.kt */ public final class a extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(a.class, "binding", "getBinding()Lcom/discord/databinding/UserActionsDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(a.class, "binding", "getBinding()Lcom/discord/databinding/UserActionsDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); public final Lazy l; diff --git a/app/src/main/java/c/a/a/b/f.java b/app/src/main/java/c/a/a/b/f.java index 98c92ab55f..e11cad8715 100644 --- a/app/src/main/java/c/a/a/b/f.java +++ b/app/src/main/java/c/a/a/b/f.java @@ -59,7 +59,7 @@ public final class f extends AppViewModel { } public String toString() { - return c.d.b.a.a.z(c.d.b.a.a.P("Failure(failureMessageStringRes="), this.a, ")"); + return c.d.b.a.a.z(c.d.b.a.a.O("Failure(failureMessageStringRes="), this.a, ")"); } } @@ -85,7 +85,7 @@ public final class f extends AppViewModel { } public String toString() { - return c.d.b.a.a.z(c.d.b.a.a.P("Success(successMessageStringRes="), this.a, ")"); + return c.d.b.a.a.z(c.d.b.a.a.O("Success(successMessageStringRes="), this.a, ")"); } } @@ -180,16 +180,16 @@ public final class f extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Loaded(user="); - P.append(this.a); - P.append(", userNickname="); - P.append(this.b); - P.append(", showBlockItem="); - P.append(this.f36c); - P.append(", showUnblockItem="); - P.append(this.d); - P.append(", showRemoveFriendItem="); - return c.d.b.a.a.L(P, this.e, ")"); + StringBuilder O = c.d.b.a.a.O("Loaded(user="); + O.append(this.a); + O.append(", userNickname="); + O.append(this.b); + O.append(", showBlockItem="); + O.append(this.f36c); + O.append(", showUnblockItem="); + O.append(this.d); + O.append(", showRemoveFriendItem="); + return c.d.b.a.a.K(O, this.e, ")"); } } @@ -265,7 +265,7 @@ public final class f extends AppViewModel { StoreChannels channels = companion.getChannels(); Observable observeUser = users.observeUser(j); Observable observe = userRelationships.observe(j); - Observable r = channels.observeChannel(j2).X(new d(guilds, j)).r(); + Observable r = channels.observeChannel(j2).Y(new d(guilds, j)).r(); m.checkNotNullExpressionValue(r, "storeChannels\n … .distinctUntilChanged()"); observable2 = Observable.i(observeUser, observe, r, e.a).r(); m.checkNotNullExpressionValue(observable2, "Observable.combineLatest… .distinctUntilChanged()"); @@ -276,7 +276,7 @@ public final class f extends AppViewModel { m.checkNotNullParameter(observable2, "storeObservable"); this.k = j; this.l = api; - this.j = PublishSubject.j0(); + this.j = PublishSubject.k0(); ObservableExtensionsKt.appSubscribe$default(ObservableExtensionsKt.ui$default(ObservableExtensionsKt.computationLatest(observable2), this, null, 2, null), f.class, (Context) null, (Function1) null, (Function1) null, (Function0) null, (Function0) null, new b(this), 62, (Object) null); } diff --git a/app/src/main/java/c/a/a/c/a.java b/app/src/main/java/c/a/a/c/a.java index c2ea311122..51e2a97938 100644 --- a/app/src/main/java/c/a/a/c/a.java +++ b/app/src/main/java/c/a/a/c/a.java @@ -42,7 +42,7 @@ import kotlin.reflect.KProperty; import rx.Observable; /* compiled from: PremiumGuildSubscriptionCancelDialog.kt */ public final class a extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(a.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionCancelDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(a.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionCancelDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); public final Lazy l; diff --git a/app/src/main/java/c/a/a/c/b.java b/app/src/main/java/c/a/a/c/b.java index 25e2f9a3f6..469bd342ce 100644 --- a/app/src/main/java/c/a/a/c/b.java +++ b/app/src/main/java/c/a/a/c/b.java @@ -37,7 +37,7 @@ import kotlin.reflect.KProperty; import rx.Observable; /* compiled from: PremiumGuildSubscriptionUncancelDialog.kt */ public final class b extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(b.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionUncancelDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(b.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionUncancelDialogBinding;", 0)}; public static final C0006b j = new C0006b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); public final Lazy l; @@ -186,7 +186,7 @@ public final class b extends AppDialog { MaterialButton materialButton2 = bVar.g().h; m.checkNotNullExpressionValue(materialButton2, "binding.premiumGuildSubscriptionUncancelNevermind"); ViewExtensions.setEnabledAndAlpha$default(materialButton2, z3 && !((k.c.b) cVar2).b, 0.0f, 2, null); - bVar.g().f198c.setIsLoading(z3 && ((k.c.b) cVar2).b); + bVar.g().f197c.setIsLoading(z3 && ((k.c.b) cVar2).b); k.c.C0010c cVar3 = k.c.C0010c.a; if (!(!m.areEqual(cVar2, cVar3)) || !z3 || ((k.c.b) cVar2).b) { z2 = false; @@ -210,7 +210,7 @@ public final class b extends AppDialog { TextView textView5 = bVar.g().b; m.checkNotNullExpressionValue(textView5, "binding.premiumGuildSubscriptionUncancelBody"); textView5.setText(bVar.getString(R.string.premium_guild_subscription_inventory_uncancel_confirm_description)); - bVar.g().f198c.setText(bVar.getString(R.string.okay)); + bVar.g().f197c.setText(bVar.getString(R.string.okay)); } else if (cVar2 instanceof k.c.a) { Integer num = ((k.c.a) cVar2).a; if (num != null) { @@ -279,7 +279,7 @@ public final class b extends AppDialog { m.checkNotNullParameter(view, "view"); super.onViewBound(view); g().h.setOnClickListener(new a(0, this)); - g().f198c.setOnClickListener(new a(1, this)); + g().f197c.setOnClickListener(new a(1, this)); } @Override // com.discord.app.AppDialog diff --git a/app/src/main/java/c/a/a/c/c.java b/app/src/main/java/c/a/a/c/c.java index 5f96468d8a..c5786b5a7b 100644 --- a/app/src/main/java/c/a/a/c/c.java +++ b/app/src/main/java/c/a/a/c/c.java @@ -28,7 +28,7 @@ import kotlin.ranges.IntRange; import kotlin.reflect.KProperty; /* compiled from: PremiumGuildSubscriptionActivatedDialog.kt */ public final class c extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(c.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionActivatedDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(c.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionActivatedDialogBinding;", 0)}; public static final IntRange j = new IntRange(540, 825); public static final a k = new a(null); public final FragmentViewBindingDelegate l = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); diff --git a/app/src/main/java/c/a/a/c/f.java b/app/src/main/java/c/a/a/c/f.java index f4cf6aea67..37a3ad6f6b 100644 --- a/app/src/main/java/c/a/a/c/f.java +++ b/app/src/main/java/c/a/a/c/f.java @@ -65,12 +65,12 @@ public final class f extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("StoreState(premiumGuildSubscriptionState="); - P.append(this.a); - P.append(", subscriptionState="); - P.append(this.b); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("StoreState(premiumGuildSubscriptionState="); + O.append(this.a); + O.append(", subscriptionState="); + O.append(this.b); + O.append(")"); + return O.toString(); } } @@ -111,10 +111,10 @@ public final class f extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("CancelInProgress(subscription="); - P.append(this.f); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("CancelInProgress(subscription="); + O.append(this.f); + O.append(")"); + return O.toString(); } } @@ -145,10 +145,10 @@ public final class f extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Cancelled(subscription="); - P.append(this.f); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("Cancelled(subscription="); + O.append(this.f); + O.append(")"); + return O.toString(); } } @@ -188,7 +188,7 @@ public final class f extends AppViewModel { } public String toString() { - return c.d.b.a.a.E(c.d.b.a.a.P("Dismiss(dismissStringId="), this.f, ")"); + return c.d.b.a.a.D(c.d.b.a.a.O("Dismiss(dismissStringId="), this.f, ")"); } } @@ -217,10 +217,10 @@ public final class f extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("FailureCancelling(subscription="); - P.append(this.f); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("FailureCancelling(subscription="); + O.append(this.f); + O.append(")"); + return O.toString(); } } @@ -262,10 +262,10 @@ public final class f extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Loaded(subscription="); - P.append(this.f); - P.append(", isFromInventory="); - return c.d.b.a.a.L(P, this.g, ")"); + StringBuilder O = c.d.b.a.a.O("Loaded(subscription="); + O.append(this.f); + O.append(", isFromInventory="); + return c.d.b.a.a.K(O, this.g, ")"); } } diff --git a/app/src/main/java/c/a/a/c/k.java b/app/src/main/java/c/a/a/c/k.java index 1b4694419a..e9928c040b 100644 --- a/app/src/main/java/c/a/a/c/k.java +++ b/app/src/main/java/c/a/a/c/k.java @@ -54,10 +54,10 @@ public final class k extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("StoreState(subscriptionState="); - P.append(this.a); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("StoreState(subscriptionState="); + O.append(this.a); + O.append(")"); + return O.toString(); } } @@ -99,7 +99,7 @@ public final class k extends AppViewModel { } public String toString() { - return c.d.b.a.a.E(c.d.b.a.a.P("Dismiss(errorToastStringResId="), this.a, ")"); + return c.d.b.a.a.D(c.d.b.a.a.O("Dismiss(errorToastStringResId="), this.a, ")"); } } @@ -164,12 +164,12 @@ public final class k extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Loaded(subscription="); - P.append(this.a); - P.append(", uncancelInProgress="); - P.append(this.b); - P.append(", error="); - return c.d.b.a.a.L(P, this.f38c, ")"); + StringBuilder O = c.d.b.a.a.O("Loaded(subscription="); + O.append(this.a); + O.append(", uncancelInProgress="); + O.append(this.b); + O.append(", error="); + return c.d.b.a.a.K(O, this.f38c, ")"); } } diff --git a/app/src/main/java/c/a/a/d.java b/app/src/main/java/c/a/a/d.java index ab55687b56..2a50abf5c1 100644 --- a/app/src/main/java/c/a/a/d.java +++ b/app/src/main/java/c/a/a/d.java @@ -7,7 +7,6 @@ import android.widget.TextView; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import c.a.i.l1; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.R; import com.discord.app.AppDialog; import com.discord.dialogs.SimpleConfirmationDialogArgs; @@ -26,7 +25,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: SimpleConfirmationDialog.kt */ public final class d extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(d.class, "binding", "getBinding()Lcom/discord/databinding/SimpleConfirmationDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(d.class, "binding", "getBinding()Lcom/discord/databinding/SimpleConfirmationDialogBinding;", 0)}; public static final c j = new c(null); public final Lazy k = g.lazy(new b(this, "intent_args_key")); public View.OnClickListener l; @@ -85,10 +84,10 @@ public final class d extends AppDialog { if (simpleConfirmationDialogArgs2 != null) { return simpleConfirmationDialogArgs2; } - StringBuilder P = c.d.b.a.a.P("Missing args for class type "); - P.append(a0.getOrCreateKotlinClass(SimpleConfirmationDialogArgs.class).getSimpleName()); - P.append(" + key "); - throw new IllegalStateException(c.d.b.a.a.G(P, this.$argsKey, '!')); + StringBuilder O = c.d.b.a.a.O("Missing args for class type "); + O.append(a0.getOrCreateKotlinClass(SimpleConfirmationDialogArgs.class).getSimpleName()); + O.append(" + key "); + throw new IllegalStateException(c.d.b.a.a.F(O, this.$argsKey, '!')); } } @@ -102,7 +101,7 @@ public final class d extends AppDialog { m.checkNotNullParameter(simpleConfirmationDialogArgs, "args"); m.checkNotNullParameter(onClickListener, "positiveClickListener"); d dVar = new d(); - dVar.setArguments(AnimatableValueParser.H2(simpleConfirmationDialogArgs)); + dVar.setArguments(c.c.a.a0.d.d2(simpleConfirmationDialogArgs)); dVar.l = onClickListener; dVar.show(fragmentManager, a0.getOrCreateKotlinClass(d.class).toString()); return dVar; @@ -167,8 +166,8 @@ public final class d extends AppDialog { requireDialog().setCanceledOnTouchOutside(true); h().d.setOnClickListener(new a(0, this)); h().d.setText(g().k); - h().f124c.setOnClickListener(new a(1, this)); - MaterialButton materialButton = h().f124c; + h().f123c.setOnClickListener(new a(1, this)); + MaterialButton materialButton = h().f123c; m.checkNotNullExpressionValue(materialButton, "binding.simpleConfirmationDialogNegative"); materialButton.setText(g().l); TextView textView = h().e; diff --git a/app/src/main/java/c/a/a/e/a.java b/app/src/main/java/c/a/a/e/a.java index 072bf6bc0b..4bec87d9e1 100644 --- a/app/src/main/java/c/a/a/e/a.java +++ b/app/src/main/java/c/a/a/e/a.java @@ -24,7 +24,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: PremiumGuildSubscriptionUpsellDialog.kt */ public final class a extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(a.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionUpsellDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(a.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildSubscriptionUpsellDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); diff --git a/app/src/main/java/c/a/a/e/b.java b/app/src/main/java/c/a/a/e/b.java index ce3f6b2391..ffadc50ac1 100644 --- a/app/src/main/java/c/a/a/e/b.java +++ b/app/src/main/java/c/a/a/e/b.java @@ -13,7 +13,7 @@ import androidx.fragment.app.FragmentManager; import androidx.viewpager2.adapter.FragmentStateAdapter; import androidx.viewpager2.widget.ViewPager2; import c.a.i.o0; -import c.a.i.r5; +import c.a.i.q5; import com.discord.R; import com.discord.app.AppDialog; import com.discord.app.AppFragment; @@ -36,7 +36,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: MultiValuePropPremiumUpsellDialog.kt */ public final class b extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(b.class, "binding", "getBinding()Lcom/discord/databinding/MultiValuePropPremiumUpsellDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(b.class, "binding", "getBinding()Lcom/discord/databinding/MultiValuePropPremiumUpsellDialogBinding;", 0)}; public static final C0013b j = new C0013b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, f.i, null, 2, null); public e l; @@ -159,18 +159,18 @@ public final class b extends AppDialog { } public String toString() { - StringBuilder P = c.d.b.a.a.P("UpsellData(imageResId="); - P.append(this.a); - P.append(", headerText="); - P.append(this.b); - P.append(", bodyText="); - return c.d.b.a.a.D(P, this.f39c, ")"); + StringBuilder O = c.d.b.a.a.O("UpsellData(imageResId="); + O.append(this.a); + O.append(", headerText="); + O.append(this.b); + O.append(", bodyText="); + return c.d.b.a.a.C(O, this.f39c, ")"); } } /* compiled from: MultiValuePropPremiumUpsellDialog.kt */ public static final class d extends AppFragment { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(d.class, "binding", "getBinding()Lcom/discord/databinding/WidgetPremiumUpsellBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(d.class, "binding", "getBinding()Lcom/discord/databinding/WidgetPremiumUpsellBinding;", 0)}; public static final a j = new a(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, C0014b.i, null, 2, null); @@ -182,17 +182,17 @@ public final class b extends AppDialog { /* compiled from: MultiValuePropPremiumUpsellDialog.kt */ /* renamed from: c.a.a.e.b$d$b reason: collision with other inner class name */ - public static final /* synthetic */ class C0014b extends k implements Function1 { + public static final /* synthetic */ class C0014b extends k implements Function1 { public static final C0014b i = new C0014b(); public C0014b() { - super(1, r5.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetPremiumUpsellBinding;", 0); + super(1, q5.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetPremiumUpsellBinding;", 0); } /* Return type fixed from 'java.lang.Object' to match base method */ /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */ @Override // kotlin.jvm.functions.Function1 - public r5 invoke(View view) { + public q5 invoke(View view) { View view2 = view; m.checkNotNullParameter(view2, "p1"); int i2 = R.id.premium_upsell_body; @@ -204,7 +204,7 @@ public final class b extends AppDialog { i2 = R.id.premium_upsell_img; ImageView imageView = (ImageView) view2.findViewById(R.id.premium_upsell_img); if (imageView != null) { - return new r5((LinearLayout) view2, textView, textView2, imageView); + return new q5((LinearLayout) view2, textView, textView2, imageView); } } } @@ -216,8 +216,8 @@ public final class b extends AppDialog { super(R.layout.widget_premium_upsell); } - public final r5 g() { - return (r5) this.k.getValue((Fragment) this, i[0]); + public final q5 g() { + return (q5) this.k.getValue((Fragment) this, i[0]); } @Override // com.discord.app.AppFragment @@ -227,7 +227,7 @@ public final class b extends AppDialog { ImageView imageView = g().d; Bundle arguments = getArguments(); imageView.setImageResource(arguments != null ? arguments.getInt("extra_image_id") : 0); - TextView textView = g().f158c; + TextView textView = g().f152c; m.checkNotNullExpressionValue(textView, "binding.premiumUpsellHeader"); Bundle arguments2 = getArguments(); textView.setText(arguments2 != null ? arguments2.getString("extra_header_string") : null); @@ -429,11 +429,11 @@ public final class b extends AppDialog { m.throwUninitializedPropertyAccessException("pagerAdapter"); } viewPager2.setAdapter(eVar); - TabLayout tabLayout = h().f137c; + TabLayout tabLayout = h().f136c; m.checkNotNullExpressionValue(tabLayout, "binding.premiumUpsellDots"); int i2 = 8; tabLayout.setVisibility(j() ? 0 : 8); - TabLayout tabLayout2 = h().f137c; + TabLayout tabLayout2 = h().f136c; m.checkNotNullExpressionValue(tabLayout2, "binding.premiumUpsellDots"); ViewPager2 viewPager22 = h().f; m.checkNotNullExpressionValue(viewPager22, "binding.premiumUpsellViewpager"); diff --git a/app/src/main/java/c/a/a/e/c.java b/app/src/main/java/c/a/a/e/c.java index 4d08b582a3..4383a06832 100644 --- a/app/src/main/java/c/a/a/e/c.java +++ b/app/src/main/java/c/a/a/e/c.java @@ -24,7 +24,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: UpgradePremiumGuildDialog.kt */ public final class c extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(c.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildUpgradeDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(c.class, "binding", "getBinding()Lcom/discord/databinding/PremiumGuildUpgradeDialogBinding;", 0)}; public static final b j = new b(null); public Function0 k; public Function0 l; diff --git a/app/src/main/java/c/a/a/e/d.java b/app/src/main/java/c/a/a/e/d.java index 6024cdd0d8..ee0eac75c6 100644 --- a/app/src/main/java/c/a/a/e/d.java +++ b/app/src/main/java/c/a/a/e/d.java @@ -28,7 +28,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: SingleValuePropPremiumUpsellDialog.kt */ public final class d extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(d.class, "binding", "getBinding()Lcom/discord/databinding/SingleValuePropPremiumUpsellDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(d.class, "binding", "getBinding()Lcom/discord/databinding/SingleValuePropPremiumUpsellDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); @@ -167,6 +167,6 @@ public final class d extends AppDialog { textView2.setText(str); } g().b.setOnClickListener(new a(0, this)); - g().f129c.setOnClickListener(new a(1, this)); + g().f128c.setOnClickListener(new a(1, this)); } } diff --git a/app/src/main/java/c/a/a/e/e.java b/app/src/main/java/c/a/a/e/e.java index 1fc3190403..cb508862bd 100644 --- a/app/src/main/java/c/a/a/e/e.java +++ b/app/src/main/java/c/a/a/e/e.java @@ -23,7 +23,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: UpgradePremiumYearlyDialog.kt */ public final class e extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(e.class, "binding", "getBinding()Lcom/discord/databinding/PremiumUpgradeYearlyDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(e.class, "binding", "getBinding()Lcom/discord/databinding/PremiumUpgradeYearlyDialogBinding;", 0)}; public static final b j = new b(null); public Function0 k; public Function0 l; @@ -138,7 +138,7 @@ public final class e extends AppDialog { TextView textView = g().d; m.checkNotNullExpressionValue(textView, "binding.premiumUpsellYearlyTitle"); c.a.k.b.n(textView, R.string.premium_upsell_yearly_title, new Object[]{NumberFormat.getPercentInstance().format(Float.valueOf(0.16f)), k}, null, 4); - TextView textView2 = g().f76c; + TextView textView2 = g().f75c; m.checkNotNullExpressionValue(textView2, "binding.premiumUpsellYearlyDescription"); c.a.k.b.n(textView2, R.string.premium_upsell_yearly_description, new Object[]{NumberFormat.getPercentInstance().format(Float.valueOf(0.16f))}, null, 4); MaterialButton materialButton = g().f; diff --git a/app/src/main/java/c/a/a/e/f.java b/app/src/main/java/c/a/a/e/f.java index 84fb276b1b..53f5905ee0 100644 --- a/app/src/main/java/c/a/a/e/f.java +++ b/app/src/main/java/c/a/a/e/f.java @@ -25,7 +25,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: PremiumActivatedDialog.kt */ public final class f extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(f.class, "binding", "getBinding()Lcom/discord/databinding/PremiumActivatedDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(f.class, "binding", "getBinding()Lcom/discord/databinding/PremiumActivatedDialogBinding;", 0)}; public static final a j = new a(null); public Function0 k; public final FragmentViewBindingDelegate l = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); @@ -144,7 +144,7 @@ public final class f extends AppDialog { m.checkNotNullExpressionValue(imageView, "binding.premiumActivatedWumpus"); imageView.setScaleX(z2 ? 1.0f : -1.0f); g().f.setImageDrawable(ContextCompat.getDrawable(requireContext(), i2)); - TextView textView = g().f173c; + TextView textView = g().f172c; m.checkNotNullExpressionValue(textView, "binding.premiumActivatedDescription"); textView.setText(getString(i6)); requireDialog().setCanceledOnTouchOutside(true); diff --git a/app/src/main/java/c/a/a/e/g.java b/app/src/main/java/c/a/a/e/g.java index f17e1da758..1bc74c92b2 100644 --- a/app/src/main/java/c/a/a/e/g.java +++ b/app/src/main/java/c/a/a/e/g.java @@ -20,7 +20,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: PremiumAndPremiumGuildActivatedDialog.kt */ public final class g extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(g.class, "binding", "getBinding()Lcom/discord/databinding/PremiumAndPremiumGuildActivatedDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(g.class, "binding", "getBinding()Lcom/discord/databinding/PremiumAndPremiumGuildActivatedDialogBinding;", 0)}; public static final a j = new a(null); public Function0 k; public final FragmentViewBindingDelegate l = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); diff --git a/app/src/main/java/c/a/a/f/a/a.java b/app/src/main/java/c/a/a/f/a/a.java index 9d11f44e95..aa44044804 100644 --- a/app/src/main/java/c/a/a/f/a/a.java +++ b/app/src/main/java/c/a/a/f/a/a.java @@ -35,7 +35,7 @@ import kotlin.reflect.KProperty; import rx.Observable; /* compiled from: AudioOutputSelectionDialog.kt */ public final class a extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(a.class, "binding", "getBinding()Lcom/discord/databinding/AudioOutputSelectionDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(a.class, "binding", "getBinding()Lcom/discord/databinding/AudioOutputSelectionDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); public final Lazy l; @@ -215,9 +215,9 @@ public final class a extends AppDialog { public static final void g(a aVar) { Objects.requireNonNull(aVar); - Observable c02 = Observable.c0(300, TimeUnit.MILLISECONDS); - m.checkNotNullExpressionValue(c02, "Observable\n .time…S, TimeUnit.MILLISECONDS)"); - ObservableExtensionsKt.appSubscribe$default(ObservableExtensionsKt.ui$default(c02, aVar, null, 2, null), a.class, (Context) null, (Function1) null, (Function1) null, (Function0) null, (Function0) null, new b(aVar), 62, (Object) null); + Observable d02 = Observable.d0(300, TimeUnit.MILLISECONDS); + m.checkNotNullExpressionValue(d02, "Observable\n .time…S, TimeUnit.MILLISECONDS)"); + ObservableExtensionsKt.appSubscribe$default(ObservableExtensionsKt.ui$default(d02, aVar, null, 2, null), a.class, (Context) null, (Function1) null, (Function1) null, (Function0) null, (Function0) null, new b(aVar), 62, (Object) null); } public static final d h(a aVar) { diff --git a/app/src/main/java/c/a/a/f/a/d.java b/app/src/main/java/c/a/a/f/a/d.java index 53ee9fd6e4..44d7082558 100644 --- a/app/src/main/java/c/a/a/f/a/d.java +++ b/app/src/main/java/c/a/a/f/a/d.java @@ -95,18 +95,18 @@ public final class d extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Loaded(selectedAudioOutput="); - P.append(this.a); - P.append(", showBluetoothItem="); - P.append(this.b); - P.append(", bluetoothDeviceName="); - P.append(this.f40c); - P.append(", showSpeakerItem="); - P.append(this.d); - P.append(", showWiredItem="); - P.append(this.e); - P.append(", showEarpieceItem="); - return c.d.b.a.a.L(P, this.f, ")"); + StringBuilder O = c.d.b.a.a.O("Loaded(selectedAudioOutput="); + O.append(this.a); + O.append(", showBluetoothItem="); + O.append(this.b); + O.append(", bluetoothDeviceName="); + O.append(this.f40c); + O.append(", showSpeakerItem="); + O.append(this.d); + O.append(", showWiredItem="); + O.append(this.e); + O.append(", showEarpieceItem="); + return c.d.b.a.a.K(O, this.f, ")"); } } diff --git a/app/src/main/java/c/a/a/g/a.java b/app/src/main/java/c/a/a/g/a.java index c258598169..cf63471fed 100644 --- a/app/src/main/java/c/a/a/g/a.java +++ b/app/src/main/java/c/a/a/g/a.java @@ -6,7 +6,7 @@ import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; import androidx.fragment.app.Fragment; -import c.a.i.n5; +import c.a.i.m5; import com.discord.R; import com.discord.app.AppDialog; import com.discord.stores.StoreNotices; @@ -25,7 +25,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: WidgetMaskedLinksDialog.kt */ public final class a extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(a.class, "binding", "getBinding()Lcom/discord/databinding/WidgetMaskedLinksDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(a.class, "binding", "getBinding()Lcom/discord/databinding/WidgetMaskedLinksDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); @@ -79,17 +79,17 @@ public final class a extends AppDialog { } /* compiled from: WidgetMaskedLinksDialog.kt */ - public static final /* synthetic */ class c extends k implements Function1 { + public static final /* synthetic */ class c extends k implements Function1 { public static final c i = new c(); public c() { - super(1, n5.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetMaskedLinksDialogBinding;", 0); + super(1, m5.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetMaskedLinksDialogBinding;", 0); } /* Return type fixed from 'java.lang.Object' to match base method */ /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */ @Override // kotlin.jvm.functions.Function1 - public n5 invoke(View view) { + public m5 invoke(View view) { View view2 = view; m.checkNotNullParameter(view2, "p1"); int i2 = R.id.masked_links_body_text; @@ -107,7 +107,7 @@ public final class a extends AppDialog { i2 = R.id.view_dialog_confirmation_header; TextView textView3 = (TextView) view2.findViewById(R.id.view_dialog_confirmation_header); if (textView3 != null) { - return new n5((LinearLayout) view2, textView, materialButton, materialButton2, textView2, textView3); + return new m5((LinearLayout) view2, textView, materialButton, materialButton2, textView2, textView3); } } } @@ -135,8 +135,8 @@ public final class a extends AppDialog { super(R.layout.widget_masked_links_dialog); } - public final n5 g() { - return (n5) this.k.getValue((Fragment) this, i[0]); + public final m5 g() { + return (m5) this.k.getValue((Fragment) this, i[0]); } @Override // androidx.fragment.app.Fragment @@ -167,7 +167,7 @@ public final class a extends AppDialog { TextView textView = g().b; m.checkNotNullExpressionValue(textView, "binding.maskedLinksBodyText"); c.a.k.b.n(textView, R.string.masked_link_body, new Object[]{obj}, null, 4); - g().f136c.setOnClickListener(new d(this)); + g().f131c.setOnClickListener(new d(this)); g().d.setOnClickListener(new View$OnClickListenerC0018a(0, this, str)); g().e.setOnClickListener(new View$OnClickListenerC0018a(1, this, str)); } diff --git a/app/src/main/java/c/a/a/h.java b/app/src/main/java/c/a/a/h.java index 0ce1e1d60e..9807e0d5e0 100644 --- a/app/src/main/java/c/a/a/h.java +++ b/app/src/main/java/c/a/a/h.java @@ -28,7 +28,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: WidgetAccessibilityDetectionDialog.kt */ public final class h extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(h.class, "binding", "getBinding()Lcom/discord/databinding/AllowAccessibilityDetectionDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(h.class, "binding", "getBinding()Lcom/discord/databinding/AllowAccessibilityDetectionDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); public final Lazy l; diff --git a/app/src/main/java/c/a/a/i.java b/app/src/main/java/c/a/a/i.java index 2beb9da926..5b771d8559 100644 --- a/app/src/main/java/c/a/a/i.java +++ b/app/src/main/java/c/a/a/i.java @@ -19,7 +19,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: ConnectedAccountActionsDialog.kt */ public final class i extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(i.class, "binding", "getBinding()Lcom/discord/databinding/ConnectedAccountActionsDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(i.class, "binding", "getBinding()Lcom/discord/databinding/ConnectedAccountActionsDialogBinding;", 0)}; public static final b j = new b(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); @@ -110,11 +110,11 @@ public final class i extends AppDialog { String string2 = getArgumentsOrDefault().getString("ARG_USERNAME", ""); int i2 = getArgumentsOrDefault().getInt("ARG_PLATFORM_IMAGE_RES", 0); if (i2 != 0) { - TextView textView = g().f104c; + TextView textView = g().f102c; m.checkNotNullExpressionValue(textView, "binding.connectedAccountActionsDialogHeader"); ViewExtensions.setCompoundDrawableWithIntrinsicBounds$default(textView, i2, 0, 0, 0, 14, null); } - TextView textView2 = g().f104c; + TextView textView2 = g().f102c; m.checkNotNullExpressionValue(textView2, "binding.connectedAccountActionsDialogHeader"); textView2.setText(string2); TextView textView3 = g().d; diff --git a/app/src/main/java/c/a/a/j.java b/app/src/main/java/c/a/a/j.java index cc110dd170..70927b96c2 100644 --- a/app/src/main/java/c/a/a/j.java +++ b/app/src/main/java/c/a/a/j.java @@ -19,7 +19,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: CameraCapacityDialog.kt */ public final class j extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(j.class, "binding", "getBinding()Lcom/discord/databinding/CameraCapacityDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(j.class, "binding", "getBinding()Lcom/discord/databinding/CameraCapacityDialogBinding;", 0)}; public static final a j = new a(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); @@ -93,7 +93,7 @@ public final class j extends AppDialog { requireDialog().setCanceledOnTouchOutside(true); FragmentViewBindingDelegate fragmentViewBindingDelegate = this.k; KProperty[] kPropertyArr = i; - ((e) fragmentViewBindingDelegate.getValue((Fragment) this, kPropertyArr[0])).f85c.setOnClickListener(new c(this)); + ((e) fragmentViewBindingDelegate.getValue((Fragment) this, kPropertyArr[0])).f83c.setOnClickListener(new c(this)); Bundle arguments = getArguments(); Integer valueOf = arguments != null ? Integer.valueOf(arguments.getInt("ARG_MAX_VIDEO_CHANNEL_USERS")) : null; TextView textView = ((e) this.k.getValue((Fragment) this, kPropertyArr[0])).b; diff --git a/app/src/main/java/c/a/a/k.java b/app/src/main/java/c/a/a/k.java index 3d522c0f48..4a67b00f49 100644 --- a/app/src/main/java/c/a/a/k.java +++ b/app/src/main/java/c/a/a/k.java @@ -22,7 +22,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: DatePickerDialog.kt */ public final class k extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(k.class, "binding", "getBinding()Lcom/discord/databinding/DialogDatePickerBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(k.class, "binding", "getBinding()Lcom/discord/databinding/DialogDatePickerBinding;", 0)}; public static final a j = new a(null); public Function1 k; public long l; diff --git a/app/src/main/java/c/a/a/m.java b/app/src/main/java/c/a/a/m.java index cef5c0d5ef..397252a496 100644 --- a/app/src/main/java/c/a/a/m.java +++ b/app/src/main/java/c/a/a/m.java @@ -16,7 +16,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: GuildVideoAtCapacityDialog.kt */ public final class m extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(m.class, "binding", "getBinding()Lcom/discord/databinding/GuildVideoAtCapacityBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(m.class, "binding", "getBinding()Lcom/discord/databinding/GuildVideoAtCapacityBinding;", 0)}; public static final a j = new a(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); diff --git a/app/src/main/java/c/a/a/n.java b/app/src/main/java/c/a/a/n.java index ec512fd976..f05b154ee9 100644 --- a/app/src/main/java/c/a/a/n.java +++ b/app/src/main/java/c/a/a/n.java @@ -30,7 +30,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: SelectorDialog.kt */ public final class n extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(n.class, "binding", "getBinding()Lcom/discord/databinding/DialogSimpleSelectorBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(n.class, "binding", "getBinding()Lcom/discord/databinding/DialogSimpleSelectorBinding;", 0)}; public static final a j = new a(null); public Function1 k; public final FragmentViewBindingDelegate l = FragmentViewBindingDelegateKt.viewBinding$default(this, c.i, null, 2, null); @@ -176,10 +176,10 @@ public final class n extends AppDialog { g().b.setOnClickListener(new d(this)); CharSequence[] charSequenceArray = getArgumentsOrDefault().getCharSequenceArray("INTENT_DIALOG_OPTIONS"); if (charSequenceArray != null) { - MaxHeightRecyclerView maxHeightRecyclerView = g().f123c; + MaxHeightRecyclerView maxHeightRecyclerView = g().f122c; m.checkNotNullExpressionValue(maxHeightRecyclerView, "binding.dialogSelections"); maxHeightRecyclerView.setAdapter(new SimpleRecyclerAdapter(j.asList(charSequenceArray), new e(this))); - MaxHeightRecyclerView maxHeightRecyclerView2 = g().f123c; + MaxHeightRecyclerView maxHeightRecyclerView2 = g().f122c; RecyclerView.Adapter adapter = maxHeightRecyclerView2.getAdapter(); if (adapter != null) { adapter.notifyDataSetChanged(); @@ -187,7 +187,7 @@ public final class n extends AppDialog { maxHeightRecyclerView2.setHasFixedSize(false); maxHeightRecyclerView2.setNestedScrollingEnabled(false); SimpleRecyclerAdapter.Companion companion = SimpleRecyclerAdapter.Companion; - MaxHeightRecyclerView maxHeightRecyclerView3 = g().f123c; + MaxHeightRecyclerView maxHeightRecyclerView3 = g().f122c; m.checkNotNullExpressionValue(maxHeightRecyclerView3, "binding.dialogSelections"); companion.addThemedDivider(maxHeightRecyclerView3); } diff --git a/app/src/main/java/c/a/a/r.java b/app/src/main/java/c/a/a/r.java index dd14844818..e3d1bc7357 100644 --- a/app/src/main/java/c/a/a/r.java +++ b/app/src/main/java/c/a/a/r.java @@ -5,7 +5,7 @@ import android.widget.LinearLayout; import android.widget.TextView; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; -import c.a.i.e5; +import c.a.i.d5; import com.discord.R; import com.discord.api.auth.mfa.EnableMfaResponse; import com.discord.app.AppDialog; @@ -30,7 +30,7 @@ import kotlin.reflect.KProperty; import rx.Observable; /* compiled from: WidgetEnableTwoFactorPasswordDialog.kt */ public final class r extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(r.class, "binding", "getBinding()Lcom/discord/databinding/WidgetEnableTwoFactorPasswordDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(r.class, "binding", "getBinding()Lcom/discord/databinding/WidgetEnableTwoFactorPasswordDialogBinding;", 0)}; public static final a j = new a(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); public Function1 l = c.i; @@ -42,17 +42,17 @@ public final class r extends AppDialog { } /* compiled from: WidgetEnableTwoFactorPasswordDialog.kt */ - public static final /* synthetic */ class b extends k implements Function1 { + public static final /* synthetic */ class b extends k implements Function1 { public static final b i = new b(); public b() { - super(1, e5.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetEnableTwoFactorPasswordDialogBinding;", 0); + super(1, d5.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetEnableTwoFactorPasswordDialogBinding;", 0); } /* Return type fixed from 'java.lang.Object' to match base method */ /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */ @Override // kotlin.jvm.functions.Function1 - public e5 invoke(View view) { + public d5 invoke(View view) { View view2 = view; m.checkNotNullParameter(view2, "p1"); int i2 = R.id.enable_two_factor_password_body_container; @@ -76,7 +76,7 @@ public final class r extends AppDialog { i2 = R.id.enable_two_factor_password_view_input; TextInputLayout textInputLayout = (TextInputLayout) view2.findViewById(R.id.enable_two_factor_password_view_input); if (textInputLayout != null) { - return new e5((LinearLayout) view2, linearLayout, textView, materialButton, textView2, linearLayout2, loadingButton, textInputLayout); + return new d5((LinearLayout) view2, linearLayout, textView, materialButton, textView2, linearLayout2, loadingButton, textInputLayout); } } } @@ -145,7 +145,7 @@ public final class r extends AppDialog { m.checkNotNullParameter(error2, "error"); r rVar = this.this$0.i; KProperty[] kPropertyArr = r.i; - rVar.g().f89c.setIsLoading(false); + rVar.g().f82c.setIsLoading(false); Error.Response response = error2.getResponse(); m.checkNotNullExpressionValue(response, "error.response"); if (response.getCode() == 60005) { @@ -173,7 +173,7 @@ public final class r extends AppDialog { TextInputLayout textInputLayout = rVar.g().d; m.checkNotNullExpressionValue(textInputLayout, "binding.enableTwoFactorPasswordViewInput"); String textOrEmpty = ViewExtensions.getTextOrEmpty(textInputLayout); - this.i.g().f89c.setIsLoading(true); + this.i.g().f82c.setIsLoading(true); Observable ui$default = ObservableExtensionsKt.ui$default(ObservableExtensionsKt.restSubscribeOn$default(RestAPI.Companion.getApi().enableMFA(new RestAPIParams.EnableMFA("random code", "random secret", textOrEmpty)), false, 1, null), this.i, null, 2, null); a aVar = a.i; ObservableExtensionsKt.appSubscribe$default(ui$default, this.i.getClass(), this.j.getContext(), (Function1) null, new b(this), (Function0) null, (Function0) null, aVar, 52, (Object) null); @@ -201,8 +201,8 @@ public final class r extends AppDialog { super(R.layout.widget_enable_two_factor_password_dialog); } - public final e5 g() { - return (e5) this.k.getValue((Fragment) this, i[0]); + public final d5 g() { + return (d5) this.k.getValue((Fragment) this, i[0]); } @Override // com.discord.app.AppDialog @@ -210,8 +210,8 @@ public final class r extends AppDialog { m.checkNotNullParameter(view, "view"); super.onViewBound(view); setCancelable(false); - g().f89c.setIsLoading(false); - g().f89c.setOnClickListener(new d(this, view)); + g().f82c.setIsLoading(false); + g().f82c.setOnClickListener(new d(this, view)); g().b.setOnClickListener(new e(this)); } } diff --git a/app/src/main/java/c/a/a/s.java b/app/src/main/java/c/a/a/s.java index 7fd95e5058..5e7c782e35 100644 --- a/app/src/main/java/c/a/a/s.java +++ b/app/src/main/java/c/a/a/s.java @@ -9,7 +9,7 @@ import androidx.fragment.app.FragmentViewModelLazyKt; import c.a.a.w; import c.a.d.f0; import c.a.d.h0; -import c.a.i.a6; +import c.a.i.z5; import com.discord.R; import com.discord.app.AppDialog; import com.discord.app.AppViewModel; @@ -33,7 +33,7 @@ import kotlin.reflect.KProperty; import rx.subjects.PublishSubject; /* compiled from: WidgetUrgentMessageDialog.kt */ public final class s extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(s.class, "binding", "getBinding()Lcom/discord/databinding/WidgetUrgentMessageDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(s.class, "binding", "getBinding()Lcom/discord/databinding/WidgetUrgentMessageDialogBinding;", 0)}; public static final a j = new a(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); public final Lazy l; @@ -45,17 +45,17 @@ public final class s extends AppDialog { } /* compiled from: WidgetUrgentMessageDialog.kt */ - public static final /* synthetic */ class b extends k implements Function1 { + public static final /* synthetic */ class b extends k implements Function1 { public static final b i = new b(); public b() { - super(1, a6.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetUrgentMessageDialogBinding;", 0); + super(1, z5.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetUrgentMessageDialogBinding;", 0); } /* Return type fixed from 'java.lang.Object' to match base method */ /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */ @Override // kotlin.jvm.functions.Function1 - public a6 invoke(View view) { + public z5 invoke(View view) { View view2 = view; m.checkNotNullParameter(view2, "p1"); int i2 = R.id.view_dialog_confirmation_confirm; @@ -67,7 +67,7 @@ public final class s extends AppDialog { i2 = R.id.view_dialog_confirmation_text; TextView textView2 = (TextView) view2.findViewById(R.id.view_dialog_confirmation_text); if (textView2 != null) { - return new a6((LinearLayout) view2, loadingButton, textView, textView2); + return new z5((LinearLayout) view2, loadingButton, textView, textView2); } } } @@ -93,7 +93,7 @@ public final class s extends AppDialog { m.checkNotNullParameter(dVar2, "viewState"); s sVar = this.this$0; KProperty[] kPropertyArr = s.i; - TextView textView = sVar.g().f66c; + TextView textView = sVar.g().f202c; m.checkNotNullExpressionValue(textView, "binding.viewDialogConfirmationHeader"); textView.setText(sVar.getString(R.string.system_dm_urgent_message_modal_header)); TextView textView2 = sVar.g().d; @@ -159,8 +159,8 @@ public final class s extends AppDialog { this.l = FragmentViewModelLazyKt.createViewModelLazy(this, a0.getOrCreateKotlinClass(w.class), new m(1, f0Var), new h0(eVar)); } - public final a6 g() { - return (a6) this.k.getValue((Fragment) this, i[0]); + public final z5 g() { + return (z5) this.k.getValue((Fragment) this, i[0]); } public final w h() { diff --git a/app/src/main/java/c/a/a/w.java b/app/src/main/java/c/a/a/w.java index a4c376fbd2..98c3bdb6a0 100644 --- a/app/src/main/java/c/a/a/w.java +++ b/app/src/main/java/c/a/a/w.java @@ -79,10 +79,10 @@ public final class w extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("StoreState(user="); - P.append(this.a); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("StoreState(user="); + O.append(this.a); + O.append(")"); + return O.toString(); } } @@ -121,10 +121,10 @@ public final class w extends AppViewModel { } public String toString() { - StringBuilder P = c.d.b.a.a.P("ViewState(userFlags="); - P.append(this.a); - P.append(", isBusy="); - return c.d.b.a.a.L(P, this.b, ")"); + StringBuilder O = c.d.b.a.a.O("ViewState(userFlags="); + O.append(this.a); + O.append(", isBusy="); + return c.d.b.a.a.K(O, this.b, ")"); } } @@ -149,6 +149,6 @@ public final class w extends AppViewModel { m.checkNotNullParameter(observable2, "storeObservable"); this.k = api; ObservableExtensionsKt.appSubscribe$default(ObservableExtensionsKt.ui$default(ObservableExtensionsKt.computationLatest(observable2), this, null, 2, null), w.class, (Context) null, (Function1) null, (Function1) null, (Function0) null, (Function0) null, new u(this), 62, (Object) null); - this.j = PublishSubject.j0(); + this.j = PublishSubject.k0(); } } diff --git a/app/src/main/java/c/a/a/z/a.java b/app/src/main/java/c/a/a/z/a.java index 04a4ff7c8d..f80d657b28 100644 --- a/app/src/main/java/c/a/a/z/a.java +++ b/app/src/main/java/c/a/a/z/a.java @@ -36,7 +36,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: GiftPurchasedDialog.kt */ public final class a extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(a.class, "binding", "getBinding()Lcom/discord/databinding/GiftPurchasedDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(a.class, "binding", "getBinding()Lcom/discord/databinding/GiftPurchasedDialogBinding;", 0)}; public static final C0021a j = new C0021a(null); public Function0 k; public final FragmentViewBindingDelegate l = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); diff --git a/app/src/main/java/c/a/a/z/c.java b/app/src/main/java/c/a/a/z/c.java index 8b263e2858..25e88c50df 100644 --- a/app/src/main/java/c/a/a/z/c.java +++ b/app/src/main/java/c/a/a/z/c.java @@ -10,7 +10,7 @@ import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; import androidx.fragment.app.FragmentManager; import c.a.d.f; -import c.a.i.l4; +import c.a.i.k4; import com.discord.R; import com.discord.api.application.Application; import com.discord.api.premium.SubscriptionPlan; @@ -50,7 +50,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: WidgetGiftAcceptDialog.kt */ public final class c extends AppDialog { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(c.class, "binding", "getBinding()Lcom/discord/databinding/WidgetAcceptGiftDialogBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(c.class, "binding", "getBinding()Lcom/discord/databinding/WidgetAcceptGiftDialogBinding;", 0)}; public static final a j = new a(null); public final FragmentViewBindingDelegate k = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); @@ -102,17 +102,17 @@ public final class c extends AppDialog { } /* compiled from: WidgetGiftAcceptDialog.kt */ - public static final /* synthetic */ class b extends k implements Function1 { + public static final /* synthetic */ class b extends k implements Function1 { public static final b i = new b(); public b() { - super(1, l4.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetAcceptGiftDialogBinding;", 0); + super(1, k4.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetAcceptGiftDialogBinding;", 0); } /* Return type fixed from 'java.lang.Object' to match base method */ /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */ @Override // kotlin.jvm.functions.Function1 - public l4 invoke(View view) { + public k4 invoke(View view) { View view2 = view; m.checkNotNullParameter(view2, "p1"); int i2 = R.id.accept_gift_body_container; @@ -142,7 +142,7 @@ public final class c extends AppDialog { i2 = R.id.accept_gift_progress; ProgressBar progressBar = (ProgressBar) view2.findViewById(R.id.accept_gift_progress); if (progressBar != null) { - return new l4((LinearLayout) view2, linearLayout, simpleDraweeView, textView, materialButton, linearLayout2, linkifiedTextView, appViewFlipper, textView2, progressBar); + return new k4((LinearLayout) view2, linearLayout, simpleDraweeView, textView, materialButton, linearLayout2, linkifiedTextView, appViewFlipper, textView2, progressBar); } } } @@ -218,7 +218,7 @@ public final class c extends AppDialog { str = ""; } CharSequence i2 = cVar2.i(gift); - LinearLayout linearLayout = c.d.b.a.a.p0(c.d.b.a.a.p0(cVar2.h().h, "binding.acceptGiftHeader", gift.isAnyNitroGift() ? c.a.k.b.k(cVar2, R.string.gift_confirmation_header_success_nitro, new Object[]{str}, null, 4) : c.a.k.b.k(cVar2, R.string.gift_confirmation_header_success, new Object[0], null, 4), cVar2).f126c, "binding.acceptGiftBodyText", gift.isNitroClassicGift() ? c.a.k.b.k(cVar2, R.string.gift_confirmation_body_success_nitro_classic_mobile, new Object[]{i2}, null, 4) : gift.isNitroGift() ? c.a.k.b.k(cVar2, R.string.gift_confirmation_body_success_nitro_mobile, new Object[]{i2}, null, 4) : c.a.k.b.k(cVar2, R.string.gift_confirmation_body_success_mobile, new Object[]{str}, null, 4), cVar2).e; + LinearLayout linearLayout = c.d.b.a.a.p0(c.d.b.a.a.p0(cVar2.h().h, "binding.acceptGiftHeader", gift.isAnyNitroGift() ? c.a.k.b.k(cVar2, R.string.gift_confirmation_header_success_nitro, new Object[]{str}, null, 4) : c.a.k.b.k(cVar2, R.string.gift_confirmation_header_success, new Object[0], null, 4), cVar2).f120c, "binding.acceptGiftBodyText", gift.isNitroClassicGift() ? c.a.k.b.k(cVar2, R.string.gift_confirmation_body_success_nitro_classic_mobile, new Object[]{i2}, null, 4) : gift.isNitroGift() ? c.a.k.b.k(cVar2, R.string.gift_confirmation_body_success_nitro_mobile, new Object[]{i2}, null, 4) : c.a.k.b.k(cVar2, R.string.gift_confirmation_body_success_mobile, new Object[]{str}, null, 4), cVar2).e; m.checkNotNullExpressionValue(linearLayout, "binding.acceptGiftDisclaimerContainer"); linearLayout.setVisibility(8); MaterialButton materialButton = cVar2.h().d; @@ -237,7 +237,7 @@ public final class c extends AppDialog { TextView textView = cVar3.h().h; m.checkNotNullExpressionValue(textView, "binding.acceptGiftHeader"); c.a.k.b.n(textView, R.string.gift_confirmation_header_fail, new Object[0], null, 4); - TextView textView2 = cVar3.h().f126c; + TextView textView2 = cVar3.h().f120c; m.checkNotNullExpressionValue(textView2, "binding.acceptGiftBodyText"); c.a.k.b.n(textView2, R.string.gift_confirmation_body_claimed, new Object[0], null, 4); LinearLayout linearLayout2 = cVar3.h().e; @@ -254,7 +254,7 @@ public final class c extends AppDialog { cVar4.g(gift3); ModelStoreListing storeListing2 = gift3.getStoreListing(); String name = (storeListing2 == null || (sku2 = storeListing2.getSku()) == null) ? null : sku2.getName(); - LinearLayout linearLayout3 = c.d.b.a.a.p0(c.d.b.a.a.p0(cVar4.h().h, "binding.acceptGiftHeader", gift3.isAnyNitroGift() ? c.a.k.b.k(cVar4, R.string.gift_confirmation_header_confirm_nitro, new Object[]{name}, null, 4) : c.a.k.b.k(cVar4, R.string.gift_confirmation_header_confirm, new Object[0], null, 4), cVar4).f126c, "binding.acceptGiftBodyText", gift3.isAnyNitroGift() ? c.a.k.b.k(cVar4, R.string.gift_confirmation_body_confirm_nitro, new Object[]{name, cVar4.i(gift3)}, null, 4) : c.a.k.b.k(cVar4, R.string.gift_confirmation_body_confirm, new Object[]{name}, null, 4), cVar4).e; + LinearLayout linearLayout3 = c.d.b.a.a.p0(c.d.b.a.a.p0(cVar4.h().h, "binding.acceptGiftHeader", gift3.isAnyNitroGift() ? c.a.k.b.k(cVar4, R.string.gift_confirmation_header_confirm_nitro, new Object[]{name}, null, 4) : c.a.k.b.k(cVar4, R.string.gift_confirmation_header_confirm, new Object[0], null, 4), cVar4).f120c, "binding.acceptGiftBodyText", gift3.isAnyNitroGift() ? c.a.k.b.k(cVar4, R.string.gift_confirmation_body_confirm_nitro, new Object[]{name, cVar4.i(gift3)}, null, 4) : c.a.k.b.k(cVar4, R.string.gift_confirmation_body_confirm, new Object[]{name}, null, 4), cVar4).e; m.checkNotNullExpressionValue(linearLayout3, "binding.acceptGiftDisclaimerContainer"); if (!gift3.isAnyNitroGift()) { i = 8; @@ -282,7 +282,7 @@ public final class c extends AppDialog { ProgressBar progressBar = cVar5.h().i; m.checkNotNullExpressionValue(progressBar, "binding.acceptGiftProgress"); progressBar.setVisibility(0); - LinearLayout linearLayout4 = c.d.b.a.a.p0(c.d.b.a.a.p0(cVar5.h().h, "binding.acceptGiftHeader", gift4.isAnyNitroGift() ? c.a.k.b.k(cVar5, R.string.gift_confirmation_header_confirm_nitro, new Object[]{name2}, null, 4) : c.a.k.b.k(cVar5, R.string.gift_confirmation_header_confirm, new Object[0], null, 4), cVar5).f126c, "binding.acceptGiftBodyText", gift4.isAnyNitroGift() ? c.a.k.b.k(cVar5, R.string.gift_confirmation_body_confirm_nitro, new Object[]{name2, cVar5.i(gift4)}, null, 4) : c.a.k.b.k(cVar5, R.string.gift_confirmation_body_confirm, new Object[]{name2}, null, 4), cVar5).e; + LinearLayout linearLayout4 = c.d.b.a.a.p0(c.d.b.a.a.p0(cVar5.h().h, "binding.acceptGiftHeader", gift4.isAnyNitroGift() ? c.a.k.b.k(cVar5, R.string.gift_confirmation_header_confirm_nitro, new Object[]{name2}, null, 4) : c.a.k.b.k(cVar5, R.string.gift_confirmation_header_confirm, new Object[0], null, 4), cVar5).f120c, "binding.acceptGiftBodyText", gift4.isAnyNitroGift() ? c.a.k.b.k(cVar5, R.string.gift_confirmation_body_confirm_nitro, new Object[]{name2, cVar5.i(gift4)}, null, 4) : c.a.k.b.k(cVar5, R.string.gift_confirmation_body_confirm, new Object[]{name2}, null, 4), cVar5).e; m.checkNotNullExpressionValue(linearLayout4, "binding.acceptGiftDisclaimerContainer"); if (!gift4.isAnyNitroGift()) { i = 8; @@ -297,11 +297,11 @@ public final class c extends AppDialog { TextView textView3 = cVar6.h().h; m.checkNotNullExpressionValue(textView3, "binding.acceptGiftHeader"); textView3.setText(c.a.k.b.k(cVar6, R.string.gift_confirmation_header_fail, new Object[0], null, 4)); - TextView textView4 = cVar6.h().f126c; + TextView textView4 = cVar6.h().f120c; m.checkNotNullExpressionValue(textView4, "binding.acceptGiftBodyText"); c.a.k.b.n(textView4, R.string.gift_confirmation_body_unknown_error, new Object[0], null, 4); if (redeemedFailed.getCanRetry()) { - TextView textView5 = cVar6.h().f126c; + TextView textView5 = cVar6.h().f120c; m.checkNotNullExpressionValue(textView5, "binding.acceptGiftBodyText"); c.a.k.b.n(textView5, R.string.gift_confirmation_body_unknown_error, new Object[0], null, 4); MaterialButton materialButton5 = cVar6.h().d; @@ -315,13 +315,13 @@ public final class c extends AppDialog { } else { Integer errorCode = redeemedFailed.getErrorCode(); if (errorCode != null && errorCode.intValue() == 50054) { - cVar6.h().f126c.setText(R.string.gift_confirmation_body_self_gift_no_payment); + cVar6.h().f120c.setText(R.string.gift_confirmation_body_self_gift_no_payment); } else if (errorCode != null && errorCode.intValue() == 100024) { - cVar6.h().f126c.setText(R.string.gift_confirmation_body_error_nitro_upgrade_downgrade); + cVar6.h().f120c.setText(R.string.gift_confirmation_body_error_nitro_upgrade_downgrade); } else if (errorCode != null && errorCode.intValue() == 100022) { - cVar6.h().f126c.setText(R.string.gift_confirmation_body_error_subscription_managed); + cVar6.h().f120c.setText(R.string.gift_confirmation_body_error_subscription_managed); } else if (errorCode != null && errorCode.intValue() == 100025) { - cVar6.h().f126c.setText(R.string.gift_confirmation_body_error_invoice_open); + cVar6.h().f120c.setText(R.string.gift_confirmation_body_error_invoice_open); } MaterialButton materialButton6 = cVar6.h().d; m.checkNotNullExpressionValue(materialButton6, "binding.acceptGiftConfirm"); @@ -376,8 +376,8 @@ public final class c extends AppDialog { progressBar.setVisibility(8); } - public final l4 h() { - return (l4) this.k.getValue((Fragment) this, i[0]); + public final k4 h() { + return (k4) this.k.getValue((Fragment) this, i[0]); } public final CharSequence i(ModelGift modelGift) { diff --git a/app/src/main/java/c/a/d/a0.java b/app/src/main/java/c/a/d/a0.java index c8d4924bce..4df7db802a 100644 --- a/app/src/main/java/c/a/d/a0.java +++ b/app/src/main/java/c/a/d/a0.java @@ -16,6 +16,6 @@ public final class a0 implements Observable.c { @Override // j0.k.b public Object call(Object obj) { - return ((Observable) obj).X(new z(this)); + return ((Observable) obj).Y(new z(this)); } } diff --git a/app/src/main/java/c/a/d/f.java b/app/src/main/java/c/a/d/f.java index e4a48288dd..9988e82e75 100644 --- a/app/src/main/java/c/a/d/f.java +++ b/app/src/main/java/c/a/d/f.java @@ -11,31 +11,31 @@ public final class f { public static final f a = new f(); public static final String c() { - StringBuilder U = a.U("https://support.discord.com", "/hc/"); + StringBuilder S = a.S("https://support.discord.com", "/hc/"); String locale = StoreStream.Companion.getUserSettingsSystem().getLocale(); Objects.requireNonNull(locale, "null cannot be cast to non-null type java.lang.String"); String lowerCase = locale.toLowerCase(); m.checkNotNullExpressionValue(lowerCase, "(this as java.lang.String).toLowerCase()"); - U.append(lowerCase); - U.append("/requests/new"); - return U.toString(); + S.append(lowerCase); + S.append("/requests/new"); + return S.toString(); } public final String a(long j, String str) { if (str != null) { - StringBuilder U = a.U("https://support.discord.com", "/hc/"); - U.append(b()); - U.append("/articles/"); - U.append(j); - U.append(MentionUtilsKt.CHANNELS_CHAR); - U.append(str); - return U.toString(); + StringBuilder S = a.S("https://support.discord.com", "/hc/"); + S.append(b()); + S.append("/articles/"); + S.append(j); + S.append(MentionUtilsKt.CHANNELS_CHAR); + S.append(str); + return S.toString(); } - StringBuilder U2 = a.U("https://support.discord.com", "/hc/"); - U2.append(b()); - U2.append("/articles/"); - U2.append(j); - return U2.toString(); + StringBuilder S2 = a.S("https://support.discord.com", "/hc/"); + S2.append(b()); + S2.append("/articles/"); + S2.append(j); + return S2.toString(); } @SuppressLint({"DefaultLocale"}) diff --git a/app/src/main/java/c/a/d/j.java b/app/src/main/java/c/a/d/j.java index ab8893f97f..51d25355e5 100644 --- a/app/src/main/java/c/a/d/j.java +++ b/app/src/main/java/c/a/d/j.java @@ -8,7 +8,7 @@ import androidx.activity.result.ActivityResultLauncher; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentTransaction; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.discord.app.AppActivity; import com.discord.app.AppComponent; import com.discord.app.AppFragment; @@ -124,7 +124,7 @@ public final class j { if (intent2 != null) { intent = intent2; } else if (parcelable != null) { - intent = AnimatableValueParser.J2(parcelable); + intent = d.f2(parcelable); } AppLog appLog = AppLog.g; String simpleName = context.getClass().getSimpleName(); @@ -163,7 +163,7 @@ public final class j { d0.z.d.m.checkNotNullExpressionValue(instantiate, "fragment"); Bundle bundle = (Bundle) (!(parcelable instanceof Bundle) ? null : parcelable); if (bundle == null) { - bundle = AnimatableValueParser.H2(parcelable); + bundle = d.d2(parcelable); } instantiate.setArguments(bundle); } @@ -197,7 +197,7 @@ public final class j { if (intent2 != null) { intent = intent2; } else if (parcelable != null) { - intent = AnimatableValueParser.J2(parcelable); + intent = d.f2(parcelable); } activityResultLauncher.launch(a(context, cls, intent)); } diff --git a/app/src/main/java/c/a/d/l.java b/app/src/main/java/c/a/d/l.java index de956f68fe..bd6f32eb06 100644 --- a/app/src/main/java/c/a/d/l.java +++ b/app/src/main/java/c/a/d/l.java @@ -8,7 +8,7 @@ import rx.subjects.BehaviorSubject; /* compiled from: AppState.kt */ public final class l { public static final ArrayList a = new ArrayList<>(4); - public static final BehaviorSubject b = BehaviorSubject.k0(0); + public static final BehaviorSubject b = BehaviorSubject.l0(0); /* renamed from: c reason: collision with root package name */ public static final l f47c = new l(); diff --git a/app/src/main/java/c/a/d/o.java b/app/src/main/java/c/a/d/o.java index 97394adeb3..c41fa3e51c 100644 --- a/app/src/main/java/c/a/d/o.java +++ b/app/src/main/java/c/a/d/o.java @@ -58,7 +58,7 @@ public final class o { @Override // j0.k.b public Object call(Object obj) { - return ((Observable) obj).X(new s(this)).r(); + return ((Observable) obj).Y(new s(this)).r(); } } @@ -78,7 +78,7 @@ public final class o { @Override // j0.k.b public Object call(Object obj) { - return ((Observable) obj).X(new t(this)); + return ((Observable) obj).Y(new t(this)); } } diff --git a/app/src/main/java/c/a/d/s.java b/app/src/main/java/c/a/d/s.java index ed2fd86cab..7a8f1b43ad 100644 --- a/app/src/main/java/c/a/d/s.java +++ b/app/src/main/java/c/a/d/s.java @@ -15,6 +15,6 @@ public final class s implements b, Observable a() { diff --git a/app/src/main/java/c/a/f/a.java b/app/src/main/java/c/a/f/a.java index 06912634e0..17d863e3f9 100644 --- a/app/src/main/java/c/a/f/a.java +++ b/app/src/main/java/c/a/f/a.java @@ -91,7 +91,7 @@ public final class a implements View.OnClickListener { @Override // android.view.View.OnClickListener public void onClick(View view) { m.checkNotNullParameter(view, "v"); - this.p.f1613z.clearFocus(); + this.p.f1614z.clearFocus(); ChipsView chipsView = this.p; Objects.requireNonNull(chipsView); m.checkNotNullParameter(this, "chip"); @@ -101,16 +101,16 @@ public final class a implements View.OnClickListener { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("{[Data: "); - P.append(this.n); - P.append(']'); - P.append("[Label: "); - P.append(this.k); - P.append(']'); - P.append("[ImageDescription: "); - P.append(this.l); - P.append(']'); - P.append('}'); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("{[Data: "); + O.append(this.n); + O.append(']'); + O.append("[Label: "); + O.append(this.k); + O.append(']'); + O.append("[ImageDescription: "); + O.append(this.l); + O.append(']'); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/a/f/g.java b/app/src/main/java/c/a/f/g.java index d1be335522..e3fab4902e 100644 --- a/app/src/main/java/c/a/f/g.java +++ b/app/src/main/java/c/a/f/g.java @@ -12,7 +12,7 @@ public final class g implements View.OnClickListener { @Override // android.view.View.OnClickListener public final void onClick(View view) { - this.i.f1613z.requestFocus(); + this.i.f1614z.requestFocus(); this.i.f(null); } } diff --git a/app/src/main/java/c/a/i/a4.java b/app/src/main/java/c/a/i/a4.java index 2081fb5caa..b10251cbfa 100644 --- a/app/src/main/java/c/a/i/a4.java +++ b/app/src/main/java/c/a/i/a4.java @@ -2,29 +2,30 @@ package c.a.i; import android.view.View; import android.widget.ImageView; +import android.widget.ProgressBar; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.discord.views.StatusView; -/* compiled from: ViewToolbarTitleBinding */ +/* compiled from: ViewUploadProgressBinding */ public final class a4 implements ViewBinding { @NonNull - public final View a; + public final ConstraintLayout a; @NonNull - public final ImageView b; + public final ProgressBar b; @NonNull /* renamed from: c reason: collision with root package name */ - public final StatusView f64c; + public final ImageView f64c; @NonNull public final TextView d; @NonNull public final TextView e; - public a4(@NonNull View view, @NonNull ImageView imageView, @NonNull StatusView statusView, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = view; - this.b = imageView; - this.f64c = statusView; + public a4(@NonNull ConstraintLayout constraintLayout, @NonNull ProgressBar progressBar, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2) { + this.a = constraintLayout; + this.b = progressBar; + this.f64c = imageView; this.d = textView; this.e = textView2; } diff --git a/app/src/main/java/c/a/i/a5.java b/app/src/main/java/c/a/i/a5.java index a01b14bfbb..b39fe49e78 100644 --- a/app/src/main/java/c/a/i/a5.java +++ b/app/src/main/java/c/a/i/a5.java @@ -1,30 +1,38 @@ package c.a.i; import android.view.View; -import android.widget.LinearLayout; +import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.core.widget.NestedScrollView; import androidx.viewbinding.ViewBinding; import com.discord.utilities.view.text.LinkifiedTextView; -import com.discord.views.ChatActionItem; -/* compiled from: WidgetDirectoryChannelEmptyBinding */ +import com.google.android.material.textfield.TextInputEditText; +import com.google.android.material.textfield.TextInputLayout; +/* compiled from: WidgetDiscordHubEmailInputBinding */ public final class a5 implements ViewBinding { @NonNull - public final LinearLayout a; + public final NestedScrollView a; @NonNull - public final TextView b; + public final LinkifiedTextView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final ChatActionItem f65c; + public final TextInputEditText f65c; @NonNull - public final ChatActionItem d; + public final TextInputLayout d; + @NonNull + public final TextView e; + @NonNull + public final TextView f; - public a5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull ChatActionItem chatActionItem, @NonNull ChatActionItem chatActionItem2) { - this.a = linearLayout; - this.b = textView; - this.f65c = chatActionItem; - this.d = chatActionItem2; + public a5(@NonNull NestedScrollView nestedScrollView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2) { + this.a = nestedScrollView; + this.b = linkifiedTextView; + this.f65c = textInputEditText; + this.d = textInputLayout; + this.e = textView; + this.f = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/a6.java b/app/src/main/java/c/a/i/a6.java index a30dca61f0..b4050b9f74 100644 --- a/app/src/main/java/c/a/i/a6.java +++ b/app/src/main/java/c/a/i/a6.java @@ -1,29 +1,41 @@ package c.a.i; import android.view.View; -import android.widget.LinearLayout; +import android.widget.RelativeLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.views.LoadingButton; -/* compiled from: WidgetUrgentMessageDialogBinding */ +import com.discord.R; +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: WidgetUserProfileAdapterItemFriendMutualServerBinding */ public final class a6 implements ViewBinding { @NonNull - public final LinearLayout a; + public final RelativeLayout a; @NonNull - public final LoadingButton b; + public final SimpleDraweeView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f66c; - @NonNull - public final TextView d; - public a6(@NonNull LinearLayout linearLayout, @NonNull LoadingButton loadingButton, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = linearLayout; - this.b = loadingButton; + public a6(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { + this.a = relativeLayout; + this.b = simpleDraweeView; this.f66c = textView; - this.d = textView2; + } + + @NonNull + public static a6 a(@NonNull View view) { + int i = R.id.user_profile_adapter_item_friend_mutual_image; + SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.user_profile_adapter_item_friend_mutual_image); + if (simpleDraweeView != null) { + i = R.id.user_profile_adapter_item_friend_mutual_text; + TextView textView = (TextView) view.findViewById(R.id.user_profile_adapter_item_friend_mutual_text); + if (textView != null) { + return new a6((RelativeLayout) view, simpleDraweeView, textView); + } + } + throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/b4.java b/app/src/main/java/c/a/i/b4.java index 186fcecec4..47fb52c2a8 100644 --- a/app/src/main/java/c/a/i/b4.java +++ b/app/src/main/java/c/a/i/b4.java @@ -1,33 +1,32 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; -import android.widget.ProgressBar; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -/* compiled from: ViewUploadProgressBinding */ +import com.discord.views.StatusView; +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: ViewUserListItemBinding */ public final class b4 implements ViewBinding { @NonNull - public final ConstraintLayout a; + public final View a; @NonNull - public final ProgressBar b; + public final SimpleDraweeView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f71c; + public final TextView f71c; @NonNull public final TextView d; @NonNull - public final TextView e; + public final StatusView e; - public b4(@NonNull ConstraintLayout constraintLayout, @NonNull ProgressBar progressBar, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = constraintLayout; - this.b = progressBar; - this.f71c = imageView; - this.d = textView; - this.e = textView2; + public b4(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull StatusView statusView) { + this.a = view; + this.b = simpleDraweeView; + this.f71c = textView; + this.d = textView2; + this.e = statusView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/b5.java b/app/src/main/java/c/a/i/b5.java index 3211461af6..86292530c7 100644 --- a/app/src/main/java/c/a/i/b5.java +++ b/app/src/main/java/c/a/i/b5.java @@ -1,38 +1,20 @@ 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.core.widget.NestedScrollView; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -import com.google.android.material.textfield.TextInputEditText; -import com.google.android.material.textfield.TextInputLayout; -/* compiled from: WidgetDiscordHubEmailInputBinding */ +/* compiled from: WidgetDiscoveryOtherSpeakersCountBinding */ public final class b5 implements ViewBinding { @NonNull - public final NestedScrollView a; - @NonNull - public final LinkifiedTextView b; + public final LinearLayout a; @NonNull + public final TextView b; - /* renamed from: c reason: collision with root package name */ - public final TextInputEditText f72c; - @NonNull - public final TextInputLayout d; - @NonNull - public final TextView e; - @NonNull - public final TextView f; - - public b5(@NonNull NestedScrollView nestedScrollView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = nestedScrollView; - this.b = linkifiedTextView; - this.f72c = textInputEditText; - this.d = textInputLayout; - this.e = textView; - this.f = textView2; + public b5(@NonNull LinearLayout linearLayout, @NonNull TextView textView) { + this.a = linearLayout; + this.b = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/b6.java b/app/src/main/java/c/a/i/b6.java index 0bf8dd5ebd..9a9caa15ab 100644 --- a/app/src/main/java/c/a/i/b6.java +++ b/app/src/main/java/c/a/i/b6.java @@ -1,41 +1,115 @@ package c.a.i; +import android.view.LayoutInflater; import android.view.View; -import android.widget.RelativeLayout; +import android.view.ViewGroup; +import android.widget.LinearLayout; +import android.widget.Space; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.constraintlayout.widget.Barrier; import androidx.viewbinding.ViewBinding; import com.discord.R; import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: WidgetUserProfileAdapterItemFriendMutualServerBinding */ +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetUserRichPresenceBinding */ public final class b6 implements ViewBinding { @NonNull - public final RelativeLayout a; + public final LinearLayout a; @NonNull - public final SimpleDraweeView b; + public final LinearLayout b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f73c; + public final TextView f72c; + @NonNull + public final TextView d; + @NonNull + public final SimpleDraweeView e; + @NonNull + public final SimpleDraweeView f; + @NonNull + public final MaterialButton g; + @NonNull + public final MaterialButton h; + @NonNull + public final TextView i; + @NonNull + public final TextView j; + @NonNull + public final TextView k; - public b6(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { - this.a = relativeLayout; - this.b = simpleDraweeView; - this.f73c = textView; + public b6(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5) { + this.a = linearLayout; + this.b = linearLayout2; + this.f72c = textView; + this.d = textView2; + this.e = simpleDraweeView; + this.f = simpleDraweeView2; + this.g = materialButton; + this.h = materialButton2; + this.i = textView3; + this.j = textView4; + this.k = textView5; } @NonNull - public static b6 a(@NonNull View view) { - int i = R.id.user_profile_adapter_item_friend_mutual_image; - SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.user_profile_adapter_item_friend_mutual_image); - if (simpleDraweeView != null) { - i = R.id.user_profile_adapter_item_friend_mutual_text; - TextView textView = (TextView) view.findViewById(R.id.user_profile_adapter_item_friend_mutual_text); - if (textView != null) { - return new b6((RelativeLayout) view, simpleDraweeView, textView); + public static b6 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) { + View inflate = layoutInflater.inflate(R.layout.widget_user_rich_presence, viewGroup, false); + if (z2) { + viewGroup.addView(inflate); + } + int i = R.id.barrier; + Barrier barrier = (Barrier) inflate.findViewById(R.id.barrier); + if (barrier != null) { + i = R.id.image_bottom_guideline; + Space space = (Space) inflate.findViewById(R.id.image_bottom_guideline); + if (space != null) { + i = R.id.rich_presence_container_data; + LinearLayout linearLayout = (LinearLayout) inflate.findViewById(R.id.rich_presence_container_data); + if (linearLayout != null) { + i = R.id.rich_presence_details; + TextView textView = (TextView) inflate.findViewById(R.id.rich_presence_details); + if (textView != null) { + i = R.id.rich_presence_header; + TextView textView2 = (TextView) inflate.findViewById(R.id.rich_presence_header); + if (textView2 != null) { + i = R.id.rich_presence_image_large; + SimpleDraweeView simpleDraweeView = (SimpleDraweeView) inflate.findViewById(R.id.rich_presence_image_large); + if (simpleDraweeView != null) { + i = R.id.rich_presence_image_small; + SimpleDraweeView simpleDraweeView2 = (SimpleDraweeView) inflate.findViewById(R.id.rich_presence_image_small); + if (simpleDraweeView2 != null) { + i = R.id.rich_presence_primary_button; + MaterialButton materialButton = (MaterialButton) inflate.findViewById(R.id.rich_presence_primary_button); + if (materialButton != null) { + i = R.id.rich_presence_secondary_button; + MaterialButton materialButton2 = (MaterialButton) inflate.findViewById(R.id.rich_presence_secondary_button); + if (materialButton2 != null) { + i = R.id.rich_presence_state; + TextView textView3 = (TextView) inflate.findViewById(R.id.rich_presence_state); + if (textView3 != null) { + i = R.id.rich_presence_time; + TextView textView4 = (TextView) inflate.findViewById(R.id.rich_presence_time); + if (textView4 != null) { + i = R.id.rich_presence_title; + TextView textView5 = (TextView) inflate.findViewById(R.id.rich_presence_title); + if (textView5 != null) { + return new b6((LinearLayout) inflate, barrier, space, linearLayout, textView, textView2, simpleDraweeView, simpleDraweeView2, materialButton, materialButton2, textView3, textView4, textView5); + } + } + } + } + } + } + } + } + } + } } } - throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); + throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/c.java b/app/src/main/java/c/a/i/c.java index 6bbc245db4..826882b129 100644 --- a/app/src/main/java/c/a/i/c.java +++ b/app/src/main/java/c/a/i/c.java @@ -15,14 +15,14 @@ public final class c implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f74c; + public final TextView f73c; @NonNull public final MaxHeightRecyclerView d; public c(@NonNull ConstraintLayout constraintLayout, @NonNull ConstraintLayout constraintLayout2, @NonNull TextView textView, @NonNull MaxHeightRecyclerView maxHeightRecyclerView) { this.a = constraintLayout; this.b = constraintLayout2; - this.f74c = textView; + this.f73c = textView; this.d = maxHeightRecyclerView; } diff --git a/app/src/main/java/c/a/i/c0.java b/app/src/main/java/c/a/i/c0.java index 289b965487..fca3a6ad95 100644 --- a/app/src/main/java/c/a/i/c0.java +++ b/app/src/main/java/c/a/i/c0.java @@ -16,12 +16,12 @@ public final class c0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f75c; + public final MaterialButton f74c; public c0(@NonNull ConstraintLayout constraintLayout, @NonNull PhoneOrEmailInputView phoneOrEmailInputView, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull TextView textView2) { this.a = constraintLayout; this.b = phoneOrEmailInputView; - this.f75c = materialButton; + this.f74c = materialButton; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/c1.java b/app/src/main/java/c/a/i/c1.java index d4d6ed6edb..ffbb0c8d02 100644 --- a/app/src/main/java/c/a/i/c1.java +++ b/app/src/main/java/c/a/i/c1.java @@ -16,7 +16,7 @@ public final class c1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f76c; + public final TextView f75c; @NonNull public final TextView d; @NonNull @@ -27,7 +27,7 @@ public final class c1 implements ViewBinding { public c1(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull MaterialButton materialButton) { this.a = linearLayout; this.b = imageView; - this.f76c = textView; + this.f75c = textView; this.d = textView2; this.e = textView3; this.f = materialButton; diff --git a/app/src/main/java/c/a/i/c4.java b/app/src/main/java/c/a/i/c4.java index ec1f81a7a9..3b320411ce 100644 --- a/app/src/main/java/c/a/i/c4.java +++ b/app/src/main/java/c/a/i/c4.java @@ -1,32 +1,49 @@ 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; -import com.discord.views.StatusView; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: ViewUserListItemBinding */ +import com.discord.R; +/* compiled from: ViewUserStatusPresenceBinding */ public final class c4 implements ViewBinding { @NonNull - public final View a; + public final LinearLayout a; @NonNull - public final SimpleDraweeView b; + public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f77c; + public final TextView f76c; @NonNull public final TextView d; - @NonNull - public final StatusView e; - public c4(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull StatusView statusView) { - this.a = view; - this.b = simpleDraweeView; - this.f77c = textView; + public c4(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout2) { + this.a = linearLayout; + this.b = imageView; + this.f76c = textView; this.d = textView2; - this.e = statusView; + } + + @NonNull + public static c4 a(@NonNull View view) { + int i = R.id.user_status_presence_dot; + ImageView imageView = (ImageView) view.findViewById(R.id.user_status_presence_dot); + if (imageView != null) { + i = R.id.user_status_presence_subtitle; + TextView textView = (TextView) view.findViewById(R.id.user_status_presence_subtitle); + if (textView != null) { + i = R.id.user_status_presence_title; + TextView textView2 = (TextView) view.findViewById(R.id.user_status_presence_title); + if (textView2 != null) { + LinearLayout linearLayout = (LinearLayout) view; + return new c4(linearLayout, imageView, textView, textView2, linearLayout); + } + } + } + throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/c5.java b/app/src/main/java/c/a/i/c5.java index 0123b8a2eb..a879ce43a7 100644 --- a/app/src/main/java/c/a/i/c5.java +++ b/app/src/main/java/c/a/i/c5.java @@ -5,16 +5,22 @@ import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetDiscoveryOtherSpeakersCountBinding */ +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: WidgetDiscoveryStageCardSpeakerBinding */ public final class c5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final TextView b; + public final SimpleDraweeView b; + @NonNull - public c5(@NonNull LinearLayout linearLayout, @NonNull TextView textView) { + /* renamed from: c reason: collision with root package name */ + public final TextView f77c; + + public c5(@NonNull LinearLayout linearLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { this.a = linearLayout; - this.b = textView; + this.b = simpleDraweeView; + this.f77c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/c6.java b/app/src/main/java/c/a/i/c6.java deleted file mode 100644 index 0c5b291384..0000000000 --- a/app/src/main/java/c/a/i/c6.java +++ /dev/null @@ -1,120 +0,0 @@ -package c.a.i; - -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.LinearLayout; -import android.widget.Space; -import android.widget.TextView; -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; -import androidx.constraintlayout.widget.Barrier; -import androidx.viewbinding.ViewBinding; -import com.discord.R; -import com.facebook.drawee.view.SimpleDraweeView; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetUserRichPresenceBinding */ -public final class c6 implements ViewBinding { - @NonNull - public final LinearLayout a; - @NonNull - public final LinearLayout b; - @NonNull - - /* renamed from: c reason: collision with root package name */ - public final TextView f78c; - @NonNull - public final TextView d; - @NonNull - public final SimpleDraweeView e; - @NonNull - public final SimpleDraweeView f; - @NonNull - public final MaterialButton g; - @NonNull - public final MaterialButton h; - @NonNull - public final TextView i; - @NonNull - public final TextView j; - @NonNull - public final TextView k; - - public c6(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5) { - this.a = linearLayout; - this.b = linearLayout2; - this.f78c = textView; - this.d = textView2; - this.e = simpleDraweeView; - this.f = simpleDraweeView2; - this.g = materialButton; - this.h = materialButton2; - this.i = textView3; - this.j = textView4; - this.k = textView5; - } - - @NonNull - public static c6 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) { - View inflate = layoutInflater.inflate(R.layout.widget_user_rich_presence, viewGroup, false); - if (z2) { - viewGroup.addView(inflate); - } - int i = R.id.barrier; - Barrier barrier = (Barrier) inflate.findViewById(R.id.barrier); - if (barrier != null) { - i = R.id.image_bottom_guideline; - Space space = (Space) inflate.findViewById(R.id.image_bottom_guideline); - if (space != null) { - i = R.id.rich_presence_container_data; - LinearLayout linearLayout = (LinearLayout) inflate.findViewById(R.id.rich_presence_container_data); - if (linearLayout != null) { - i = R.id.rich_presence_details; - TextView textView = (TextView) inflate.findViewById(R.id.rich_presence_details); - if (textView != null) { - i = R.id.rich_presence_header; - TextView textView2 = (TextView) inflate.findViewById(R.id.rich_presence_header); - if (textView2 != null) { - i = R.id.rich_presence_image_large; - SimpleDraweeView simpleDraweeView = (SimpleDraweeView) inflate.findViewById(R.id.rich_presence_image_large); - if (simpleDraweeView != null) { - i = R.id.rich_presence_image_small; - SimpleDraweeView simpleDraweeView2 = (SimpleDraweeView) inflate.findViewById(R.id.rich_presence_image_small); - if (simpleDraweeView2 != null) { - i = R.id.rich_presence_primary_button; - MaterialButton materialButton = (MaterialButton) inflate.findViewById(R.id.rich_presence_primary_button); - if (materialButton != null) { - i = R.id.rich_presence_secondary_button; - MaterialButton materialButton2 = (MaterialButton) inflate.findViewById(R.id.rich_presence_secondary_button); - if (materialButton2 != null) { - i = R.id.rich_presence_state; - TextView textView3 = (TextView) inflate.findViewById(R.id.rich_presence_state); - if (textView3 != null) { - i = R.id.rich_presence_time; - TextView textView4 = (TextView) inflate.findViewById(R.id.rich_presence_time); - if (textView4 != null) { - i = R.id.rich_presence_title; - TextView textView5 = (TextView) inflate.findViewById(R.id.rich_presence_title); - if (textView5 != null) { - return new c6((LinearLayout) inflate, barrier, space, linearLayout, textView, textView2, simpleDraweeView, simpleDraweeView2, materialButton, materialButton2, textView3, textView4, textView5); - } - } - } - } - } - } - } - } - } - } - } - } - throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i))); - } - - @Override // androidx.viewbinding.ViewBinding - @NonNull - public View getRoot() { - return this.a; - } -} diff --git a/app/src/main/java/c/a/i/d.java b/app/src/main/java/c/a/i/d.java index 740fe322a2..bca189bad5 100644 --- a/app/src/main/java/c/a/i/d.java +++ b/app/src/main/java/c/a/i/d.java @@ -15,14 +15,14 @@ public final class d implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final SimpleDraweeView f79c; + public final SimpleDraweeView f78c; @NonNull public final MaterialTextView d; public d(@NonNull ConstraintLayout constraintLayout, @NonNull MaterialTextView materialTextView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialTextView materialTextView2) { this.a = constraintLayout; this.b = materialTextView; - this.f79c = simpleDraweeView; + this.f78c = simpleDraweeView; this.d = materialTextView2; } diff --git a/app/src/main/java/c/a/i/d0.java b/app/src/main/java/c/a/i/d0.java index 88a474db9d..9093fb9d04 100644 --- a/app/src/main/java/c/a/i/d0.java +++ b/app/src/main/java/c/a/i/d0.java @@ -16,7 +16,7 @@ public final class d0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final LoadingButton f80c; + public final LoadingButton f79c; @NonNull public final View d; @NonNull @@ -25,7 +25,7 @@ public final class d0 implements ViewBinding { public d0(@NonNull ConstraintLayout constraintLayout, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LoadingButton loadingButton, @NonNull View view, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull h0 h0Var) { this.a = constraintLayout; this.b = textView; - this.f80c = loadingButton; + this.f79c = loadingButton; this.d = view; this.e = h0Var; } diff --git a/app/src/main/java/c/a/i/d1.java b/app/src/main/java/c/a/i/d1.java index 33dd56bd9e..84af7dbb1d 100644 --- a/app/src/main/java/c/a/i/d1.java +++ b/app/src/main/java/c/a/i/d1.java @@ -13,7 +13,7 @@ public final class d1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f81c; + public final MaterialButton f80c; @NonNull public final MaterialButton d; @NonNull @@ -22,7 +22,7 @@ public final class d1 implements ViewBinding { public d1(@NonNull View view, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull MaterialButton materialButton3, @NonNull MaterialButton materialButton4) { this.a = view; this.b = materialButton; - this.f81c = materialButton2; + this.f80c = materialButton2; this.d = materialButton3; this.e = materialButton4; } diff --git a/app/src/main/java/c/a/i/d3.java b/app/src/main/java/c/a/i/d3.java index 499be7e261..7d952b685a 100644 --- a/app/src/main/java/c/a/i/d3.java +++ b/app/src/main/java/c/a/i/d3.java @@ -14,12 +14,12 @@ public final class d3 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f82c; + public final TextView f81c; public d3(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2) { this.a = linearLayout; this.b = textView; - this.f82c = textView2; + this.f81c = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/d4.java b/app/src/main/java/c/a/i/d4.java index c2676fa83f..a3e9149ab2 100644 --- a/app/src/main/java/c/a/i/d4.java +++ b/app/src/main/java/c/a/i/d4.java @@ -1,49 +1,30 @@ 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; import com.discord.R; -/* compiled from: ViewUserStatusPresenceBinding */ +import com.discord.views.CutoutView; +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: ViewUserSummaryItemBinding */ public final class d4 implements ViewBinding { @NonNull - public final LinearLayout a; - @NonNull - public final ImageView b; + public final CutoutView a; @NonNull + public final SimpleDraweeView b; - /* renamed from: c reason: collision with root package name */ - public final TextView f83c; - @NonNull - public final TextView d; - - public d4(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout2) { - this.a = linearLayout; - this.b = imageView; - this.f83c = textView; - this.d = textView2; + public d4(@NonNull CutoutView cutoutView, @NonNull SimpleDraweeView simpleDraweeView) { + this.a = cutoutView; + this.b = simpleDraweeView; } @NonNull public static d4 a(@NonNull View view) { - int i = R.id.user_status_presence_dot; - ImageView imageView = (ImageView) view.findViewById(R.id.user_status_presence_dot); - if (imageView != null) { - i = R.id.user_status_presence_subtitle; - TextView textView = (TextView) view.findViewById(R.id.user_status_presence_subtitle); - if (textView != null) { - i = R.id.user_status_presence_title; - TextView textView2 = (TextView) view.findViewById(R.id.user_status_presence_title); - if (textView2 != null) { - LinearLayout linearLayout = (LinearLayout) view; - return new d4(linearLayout, imageView, textView, textView2, linearLayout); - } - } + SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.avatar); + if (simpleDraweeView != null) { + return new d4((CutoutView) view, simpleDraweeView); } - throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); + throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(R.id.avatar))); } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/d5.java b/app/src/main/java/c/a/i/d5.java index ab037db0b7..13011cec52 100644 --- a/app/src/main/java/c/a/i/d5.java +++ b/app/src/main/java/c/a/i/d5.java @@ -5,22 +5,27 @@ import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: WidgetDiscoveryStageCardSpeakerBinding */ +import com.discord.views.LoadingButton; +import com.google.android.material.button.MaterialButton; +import com.google.android.material.textfield.TextInputLayout; +/* compiled from: WidgetEnableTwoFactorPasswordDialogBinding */ public final class d5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final SimpleDraweeView b; + public final MaterialButton b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f84c; + public final LoadingButton f82c; + @NonNull + public final TextInputLayout d; - public d5(@NonNull LinearLayout linearLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { + public d5(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull TextView textView2, @NonNull LinearLayout linearLayout3, @NonNull LoadingButton loadingButton, @NonNull TextInputLayout textInputLayout) { this.a = linearLayout; - this.b = simpleDraweeView; - this.f84c = textView; + this.b = materialButton; + this.f82c = loadingButton; + this.d = textInputLayout; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/e.java b/app/src/main/java/c/a/i/e.java index 58b722bffc..a20cd6cfd2 100644 --- a/app/src/main/java/c/a/i/e.java +++ b/app/src/main/java/c/a/i/e.java @@ -15,12 +15,12 @@ public final class e implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f85c; + public final MaterialButton f83c; public e(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull LinearLayout linearLayout2) { this.a = linearLayout; this.b = textView; - this.f85c = materialButton; + this.f83c = materialButton; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/e0.java b/app/src/main/java/c/a/i/e0.java index ddb5ce0376..3892b4bd61 100644 --- a/app/src/main/java/c/a/i/e0.java +++ b/app/src/main/java/c/a/i/e0.java @@ -17,7 +17,7 @@ public final class e0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextInputLayout f86c; + public final TextInputLayout f84c; @NonNull public final LoadingButton d; @NonNull @@ -26,7 +26,7 @@ public final class e0 implements ViewBinding { public e0(@NonNull ConstraintLayout constraintLayout, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull LoadingButton loadingButton, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = constraintLayout; this.b = textInputEditText; - this.f86c = textInputLayout; + this.f84c = textInputLayout; this.d = loadingButton; this.e = textView; } diff --git a/app/src/main/java/c/a/i/e2.java b/app/src/main/java/c/a/i/e2.java index 9663e3348e..2f749ee350 100644 --- a/app/src/main/java/c/a/i/e2.java +++ b/app/src/main/java/c/a/i/e2.java @@ -18,7 +18,7 @@ public final class e2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final SimpleDraweeView f87c; + public final SimpleDraweeView f85c; @NonNull public final TextView d; @NonNull @@ -31,7 +31,7 @@ public final class e2 implements ViewBinding { public e2(@NonNull View view, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull Barrier barrier, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView2, @NonNull FrameLayout frameLayout, @NonNull TextView textView3, @NonNull DiscoveryStageCardSpeakersView discoveryStageCardSpeakersView, @NonNull TextView textView4) { this.a = view; this.b = textView; - this.f87c = simpleDraweeView; + this.f85c = simpleDraweeView; this.d = textView2; this.e = textView3; this.f = discoveryStageCardSpeakersView; diff --git a/app/src/main/java/c/a/i/e3.java b/app/src/main/java/c/a/i/e3.java index c0348701bb..3404960909 100644 --- a/app/src/main/java/c/a/i/e3.java +++ b/app/src/main/java/c/a/i/e3.java @@ -15,14 +15,14 @@ public final class e3 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final FrameLayout f88c; + public final FrameLayout f86c; @NonNull public final TextView d; public e3(@NonNull View view, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull FrameLayout frameLayout, @NonNull TextView textView2) { this.a = view; this.b = textView; - this.f88c = frameLayout; + this.f86c = frameLayout; this.d = textView2; } diff --git a/app/src/main/java/c/a/i/e4.java b/app/src/main/java/c/a/i/e4.java index b942f43313..0acae73a67 100644 --- a/app/src/main/java/c/a/i/e4.java +++ b/app/src/main/java/c/a/i/e4.java @@ -1,30 +1,25 @@ package c.a.i; import android.view.View; +import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.R; -import com.discord.views.CutoutView; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: ViewUserSummaryItemBinding */ +import com.facebook.drawee.span.SimpleDraweeSpanTextView; +/* compiled from: ViewUsernameBinding */ public final class e4 implements ViewBinding { @NonNull - public final CutoutView a; + public final View a; @NonNull - public final SimpleDraweeView b; - - public e4(@NonNull CutoutView cutoutView, @NonNull SimpleDraweeView simpleDraweeView) { - this.a = cutoutView; - this.b = simpleDraweeView; - } - + public final TextView b; @NonNull - public static e4 a(@NonNull View view) { - SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.avatar); - if (simpleDraweeView != null) { - return new e4((CutoutView) view, simpleDraweeView); - } - throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(R.id.avatar))); + + /* renamed from: c reason: collision with root package name */ + public final SimpleDraweeSpanTextView f87c; + + public e4(@NonNull View view, @NonNull TextView textView, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView) { + this.a = view; + this.b = textView; + this.f87c = simpleDraweeSpanTextView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/e5.java b/app/src/main/java/c/a/i/e5.java index c5cbf597ec..df432c37ca 100644 --- a/app/src/main/java/c/a/i/e5.java +++ b/app/src/main/java/c/a/i/e5.java @@ -1,31 +1,25 @@ package c.a.i; import android.view.View; -import android.widget.LinearLayout; -import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.fragment.app.FragmentContainerView; import androidx.viewbinding.ViewBinding; -import com.discord.views.LoadingButton; -import com.google.android.material.button.MaterialButton; -import com.google.android.material.textfield.TextInputLayout; -/* compiled from: WidgetEnableTwoFactorPasswordDialogBinding */ +import com.discord.utilities.view.rounded.RoundedRelativeLayout; +/* compiled from: WidgetHomePanelCenterBinding */ public final class e5 implements ViewBinding { @NonNull - public final LinearLayout a; + public final RoundedRelativeLayout a; @NonNull - public final MaterialButton b; + public final f5 b; @NonNull /* renamed from: c reason: collision with root package name */ - public final LoadingButton f89c; - @NonNull - public final TextInputLayout d; + public final FragmentContainerView f88c; - public e5(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull TextView textView2, @NonNull LinearLayout linearLayout3, @NonNull LoadingButton loadingButton, @NonNull TextInputLayout textInputLayout) { - this.a = linearLayout; - this.b = materialButton; - this.f89c = loadingButton; - this.d = textInputLayout; + public e5(@NonNull RoundedRelativeLayout roundedRelativeLayout, @NonNull f5 f5Var, @NonNull FragmentContainerView fragmentContainerView) { + this.a = roundedRelativeLayout; + this.b = f5Var; + this.f88c = fragmentContainerView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/f.java b/app/src/main/java/c/a/i/f.java index 6e2e7e088a..ddc7480ba4 100644 --- a/app/src/main/java/c/a/i/f.java +++ b/app/src/main/java/c/a/i/f.java @@ -13,12 +13,12 @@ public final class f implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f90c; + public final TextView f89c; public f(@NonNull View view, @NonNull TextView textView, @NonNull TextView textView2) { this.a = view; this.b = textView; - this.f90c = textView2; + this.f89c = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/f0.java b/app/src/main/java/c/a/i/f0.java index 40bd8f8dd0..78d7201f8f 100644 --- a/app/src/main/java/c/a/i/f0.java +++ b/app/src/main/java/c/a/i/f0.java @@ -17,12 +17,12 @@ public final class f0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final LoadingButton f91c; + public final LoadingButton f90c; public f0(@NonNull ConstraintLayout constraintLayout, @NonNull RecyclerView recyclerView, @NonNull LoadingButton loadingButton, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView) { this.a = constraintLayout; this.b = recyclerView; - this.f91c = loadingButton; + this.f90c = loadingButton; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/f1.java b/app/src/main/java/c/a/i/f1.java index 2bbf6d0827..7bc60832a3 100644 --- a/app/src/main/java/c/a/i/f1.java +++ b/app/src/main/java/c/a/i/f1.java @@ -16,7 +16,7 @@ public final class f1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f92c; + public final TextView f91c; @NonNull public final TextSwitcher d; @NonNull @@ -25,7 +25,7 @@ public final class f1 implements ViewBinding { public f1(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextSwitcher textSwitcher, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView) { this.a = linearLayout; this.b = textView; - this.f92c = textView2; + this.f91c = textView2; this.d = textSwitcher; this.e = simpleDraweeSpanTextView; } diff --git a/app/src/main/java/c/a/i/f2.java b/app/src/main/java/c/a/i/f2.java index e4e3f0b609..b8c23dbed7 100644 --- a/app/src/main/java/c/a/i/f2.java +++ b/app/src/main/java/c/a/i/f2.java @@ -15,14 +15,14 @@ public final class f2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f93c; + public final TextView f92c; @NonNull public final MaterialButton d; public f2(@NonNull View view, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull MaterialButton materialButton2) { this.a = view; this.b = materialButton; - this.f93c = textView; + this.f92c = textView; this.d = materialButton2; } diff --git a/app/src/main/java/c/a/i/f3.java b/app/src/main/java/c/a/i/f3.java index 95968ff03c..3e61ea83b4 100644 --- a/app/src/main/java/c/a/i/f3.java +++ b/app/src/main/java/c/a/i/f3.java @@ -18,7 +18,7 @@ public final class f3 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f94c; + public final MaterialButton f93c; @NonNull public final ServerMemberCount d; @NonNull @@ -33,7 +33,7 @@ public final class f3 implements ViewBinding { public f3(@NonNull View view, @NonNull Barrier barrier, @NonNull Barrier barrier2, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull ServerMemberCount serverMemberCount, @NonNull TextView textView, @NonNull GuildView guildView, @NonNull ImageView imageView, @NonNull TextView textView2) { this.a = view; this.b = materialButton; - this.f94c = materialButton2; + this.f93c = materialButton2; this.d = serverMemberCount; this.e = textView; this.f = guildView; diff --git a/app/src/main/java/c/a/i/f4.java b/app/src/main/java/c/a/i/f4.java index 201dd149a3..00db9f834c 100644 --- a/app/src/main/java/c/a/i/f4.java +++ b/app/src/main/java/c/a/i/f4.java @@ -1,25 +1,82 @@ package c.a.i; import android.view.View; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.ProgressBar; +import android.widget.Space; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.facebook.drawee.span.SimpleDraweeSpanTextView; -/* compiled from: ViewUsernameBinding */ +import com.discord.views.VoiceUserView; +import com.discord.views.calls.AppVideoStreamRenderer; +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: ViewVideoCallParticipantBinding */ public final class f4 implements ViewBinding { @NonNull public final View a; @NonNull - public final TextView b; + public final View b; @NonNull /* renamed from: c reason: collision with root package name */ - public final SimpleDraweeSpanTextView f95c; + public final View f94c; + @NonNull + public final ImageView d; + @NonNull + public final ConstraintLayout e; + @NonNull + public final ImageView f; + @NonNull + public final TextView g; + @NonNull + public final TextView h; + @NonNull + public final TextView i; + @NonNull + public final ImageView j; + @NonNull + public final ConstraintLayout k; + @NonNull + public final TextView l; + @NonNull + public final SimpleDraweeView m; + @NonNull + public final TextView n; + @NonNull + public final TextView o; + @NonNull + public final ProgressBar p; + @NonNull + public final AppVideoStreamRenderer q; + @NonNull + public final LinearLayout r; + @NonNull - public f4(@NonNull View view, @NonNull TextView textView, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView) { + /* renamed from: s reason: collision with root package name */ + public final VoiceUserView f95s; + + public f4(@NonNull View view, @NonNull View view2, @NonNull View view3, @NonNull ImageView imageView, @NonNull ConstraintLayout constraintLayout, @NonNull Space space, @NonNull ImageView imageView2, @NonNull TextView textView, @NonNull LinearLayout linearLayout, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull ImageView imageView3, @NonNull ConstraintLayout constraintLayout2, @NonNull ImageView imageView4, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView6, @NonNull TextView textView7, @NonNull ProgressBar progressBar, @NonNull AppVideoStreamRenderer appVideoStreamRenderer, @NonNull LinearLayout linearLayout2, @NonNull VoiceUserView voiceUserView) { this.a = view; - this.b = textView; - this.f95c = simpleDraweeSpanTextView; + this.b = view2; + this.f94c = view3; + this.d = imageView; + this.e = constraintLayout; + this.f = imageView2; + this.g = textView; + this.h = textView2; + this.i = textView3; + this.j = imageView3; + this.k = constraintLayout2; + this.l = textView5; + this.m = simpleDraweeView; + this.n = textView6; + this.o = textView7; + this.p = progressBar; + this.q = appVideoStreamRenderer; + this.r = linearLayout2; + this.f95s = voiceUserView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/f5.java b/app/src/main/java/c/a/i/f5.java index 94627cbd6e..622e828816 100644 --- a/app/src/main/java/c/a/i/f5.java +++ b/app/src/main/java/c/a/i/f5.java @@ -1,25 +1,33 @@ package c.a.i; import android.view.View; +import android.view.ViewStub; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.fragment.app.FragmentContainerView; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.rounded.RoundedRelativeLayout; -/* compiled from: WidgetHomePanelCenterBinding */ +import com.google.android.material.appbar.AppBarLayout; +/* compiled from: WidgetHomePanelCenterChatBinding */ public final class f5 implements ViewBinding { @NonNull - public final RoundedRelativeLayout a; + public final ConstraintLayout a; @NonNull - public final g5 b; + public final ViewStub b; @NonNull /* renamed from: c reason: collision with root package name */ - public final FragmentContainerView f96c; + public final g5 f96c; + @NonNull + public final FragmentContainerView d; + @NonNull + public final FragmentContainerView e; - public f5(@NonNull RoundedRelativeLayout roundedRelativeLayout, @NonNull g5 g5Var, @NonNull FragmentContainerView fragmentContainerView) { - this.a = roundedRelativeLayout; - this.b = g5Var; - this.f96c = fragmentContainerView; + public f5(@NonNull ConstraintLayout constraintLayout, @NonNull AppBarLayout appBarLayout, @NonNull ViewStub viewStub, @NonNull ViewStub viewStub2, @NonNull g5 g5Var, @NonNull View view, @NonNull FragmentContainerView fragmentContainerView, @NonNull FragmentContainerView fragmentContainerView2, @NonNull FragmentContainerView fragmentContainerView3, @NonNull FragmentContainerView fragmentContainerView4, @NonNull ConstraintLayout constraintLayout2, @NonNull FragmentContainerView fragmentContainerView5, @NonNull FragmentContainerView fragmentContainerView6) { + this.a = constraintLayout; + this.b = viewStub2; + this.f96c = g5Var; + this.d = fragmentContainerView; + this.e = fragmentContainerView4; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/g4.java b/app/src/main/java/c/a/i/g4.java index 2cb0a1fe61..8fbf9e9c1c 100644 --- a/app/src/main/java/c/a/i/g4.java +++ b/app/src/main/java/c/a/i/g4.java @@ -2,81 +2,25 @@ package c.a.i; import android.view.View; import android.widget.ImageView; -import android.widget.LinearLayout; -import android.widget.ProgressBar; -import android.widget.Space; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.discord.views.VoiceUserView; -import com.discord.views.calls.AppVideoStreamRenderer; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: ViewVideoCallParticipantBinding */ +/* compiled from: ViewVoiceCallActiveEventBinding */ public final class g4 implements ViewBinding { @NonNull - public final View a; + public final ConstraintLayout a; @NonNull - public final View b; + public final TextView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final View f101c; - @NonNull - public final ImageView d; - @NonNull - public final ConstraintLayout e; - @NonNull - public final ImageView f; - @NonNull - public final TextView g; - @NonNull - public final TextView h; - @NonNull - public final TextView i; - @NonNull - public final ImageView j; - @NonNull - public final ConstraintLayout k; - @NonNull - public final TextView l; - @NonNull - public final SimpleDraweeView m; - @NonNull - public final TextView n; - @NonNull - public final TextView o; - @NonNull - public final ProgressBar p; - @NonNull - public final AppVideoStreamRenderer q; - @NonNull - public final LinearLayout r; - @NonNull + public final TextView f101c; - /* renamed from: s reason: collision with root package name */ - public final VoiceUserView f102s; - - public g4(@NonNull View view, @NonNull View view2, @NonNull View view3, @NonNull ImageView imageView, @NonNull ConstraintLayout constraintLayout, @NonNull Space space, @NonNull ImageView imageView2, @NonNull TextView textView, @NonNull LinearLayout linearLayout, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull ImageView imageView3, @NonNull ConstraintLayout constraintLayout2, @NonNull ImageView imageView4, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView6, @NonNull TextView textView7, @NonNull ProgressBar progressBar, @NonNull AppVideoStreamRenderer appVideoStreamRenderer, @NonNull LinearLayout linearLayout2, @NonNull VoiceUserView voiceUserView) { - this.a = view; - this.b = view2; - this.f101c = view3; - this.d = imageView; - this.e = constraintLayout; - this.f = imageView2; - this.g = textView; - this.h = textView2; - this.i = textView3; - this.j = imageView3; - this.k = constraintLayout2; - this.l = textView5; - this.m = simpleDraweeView; - this.n = textView6; - this.o = textView7; - this.p = progressBar; - this.q = appVideoStreamRenderer; - this.r = linearLayout2; - this.f102s = voiceUserView; + public g4(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull TextView textView2) { + this.a = constraintLayout; + this.b = textView; + this.f101c = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/g5.java b/app/src/main/java/c/a/i/g5.java index a3971c81cc..f64721d0a0 100644 --- a/app/src/main/java/c/a/i/g5.java +++ b/app/src/main/java/c/a/i/g5.java @@ -1,33 +1,16 @@ package c.a.i; import android.view.View; -import android.view.ViewStub; +import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; -import androidx.fragment.app.FragmentContainerView; import androidx.viewbinding.ViewBinding; -import com.google.android.material.appbar.AppBarLayout; -/* compiled from: WidgetHomePanelCenterChatBinding */ +/* compiled from: WidgetHomePanelCenterContentUnreadBinding */ public final class g5 implements ViewBinding { @NonNull - public final ConstraintLayout a; - @NonNull - public final ViewStub b; - @NonNull + public final TextView a; - /* renamed from: c reason: collision with root package name */ - public final h5 f103c; - @NonNull - public final FragmentContainerView d; - @NonNull - public final FragmentContainerView e; - - public g5(@NonNull ConstraintLayout constraintLayout, @NonNull AppBarLayout appBarLayout, @NonNull ViewStub viewStub, @NonNull ViewStub viewStub2, @NonNull h5 h5Var, @NonNull View view, @NonNull FragmentContainerView fragmentContainerView, @NonNull FragmentContainerView fragmentContainerView2, @NonNull FragmentContainerView fragmentContainerView3, @NonNull FragmentContainerView fragmentContainerView4, @NonNull ConstraintLayout constraintLayout2, @NonNull FragmentContainerView fragmentContainerView5, @NonNull FragmentContainerView fragmentContainerView6) { - this.a = constraintLayout; - this.b = viewStub2; - this.f103c = h5Var; - this.d = fragmentContainerView; - this.e = fragmentContainerView4; + public g5(@NonNull TextView textView, @NonNull TextView textView2) { + this.a = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/h.java b/app/src/main/java/c/a/i/h.java index 423c848496..7fe7deab9a 100644 --- a/app/src/main/java/c/a/i/h.java +++ b/app/src/main/java/c/a/i/h.java @@ -14,14 +14,14 @@ public final class h implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f104c; + public final TextView f102c; @NonNull public final TextView d; public h(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = linearLayout; this.b = textView; - this.f104c = textView2; + this.f102c = textView2; this.d = textView3; } diff --git a/app/src/main/java/c/a/i/h0.java b/app/src/main/java/c/a/i/h0.java index 05ab37e126..d66fbbaeb5 100644 --- a/app/src/main/java/c/a/i/h0.java +++ b/app/src/main/java/c/a/i/h0.java @@ -17,12 +17,12 @@ public final class h0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final CheckedSetting f105c; + public final CheckedSetting f103c; public h0(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull CheckedSetting checkedSetting) { this.a = linearLayout; this.b = linkifiedTextView; - this.f105c = checkedSetting; + this.f103c = checkedSetting; } @NonNull diff --git a/app/src/main/java/c/a/i/h2.java b/app/src/main/java/c/a/i/h2.java index a6bf3e3216..3cfb080b17 100644 --- a/app/src/main/java/c/a/i/h2.java +++ b/app/src/main/java/c/a/i/h2.java @@ -14,12 +14,12 @@ public final class h2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f106c; + public final TextView f104c; public h2(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { this.a = view; this.b = simpleDraweeView; - this.f106c = textView; + this.f104c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/h3.java b/app/src/main/java/c/a/i/h3.java index cab770967c..3c96bfa34b 100644 --- a/app/src/main/java/c/a/i/h3.java +++ b/app/src/main/java/c/a/i/h3.java @@ -15,7 +15,7 @@ public final class h3 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f107c; + public final TextView f105c; @NonNull public final ImageView d; @NonNull @@ -24,7 +24,7 @@ public final class h3 implements ViewBinding { public h3(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull ImageView imageView2, @NonNull TextView textView2) { this.a = linearLayout; this.b = imageView; - this.f107c = textView; + this.f105c = textView; this.d = imageView2; this.e = textView2; } diff --git a/app/src/main/java/c/a/i/h4.java b/app/src/main/java/c/a/i/h4.java index 6e8361ad30..cc6c067add 100644 --- a/app/src/main/java/c/a/i/h4.java +++ b/app/src/main/java/c/a/i/h4.java @@ -1,26 +1,25 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -/* compiled from: ViewVoiceCallActiveEventBinding */ +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: ViewVoiceUserBinding */ public final class h4 implements ViewBinding { @NonNull - public final ConstraintLayout a; + public final View a; @NonNull - public final TextView b; + public final SimpleDraweeView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f108c; + public final TextView f106c; - public h4(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull TextView textView2) { - this.a = constraintLayout; - this.b = textView; - this.f108c = textView2; + public h4(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { + this.a = view; + this.b = simpleDraweeView; + this.f106c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/h5.java b/app/src/main/java/c/a/i/h5.java index a715f0e1f3..1ee229a1eb 100644 --- a/app/src/main/java/c/a/i/h5.java +++ b/app/src/main/java/c/a/i/h5.java @@ -1,16 +1,27 @@ package c.a.i; import android.view.View; +import android.widget.FrameLayout; +import android.widget.RelativeLayout; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.fragment.app.FragmentContainerView; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetHomePanelCenterContentUnreadBinding */ +/* compiled from: WidgetHomePanelLeftBinding */ public final class h5 implements ViewBinding { @NonNull - public final TextView a; + public final RelativeLayout a; + @NonNull + public final TextView b; + @NonNull - public h5(@NonNull TextView textView, @NonNull TextView textView2) { - this.a = textView; + /* renamed from: c reason: collision with root package name */ + public final FragmentContainerView f107c; + + public h5(@NonNull RelativeLayout relativeLayout, @NonNull TextView textView, @NonNull FragmentContainerView fragmentContainerView, @NonNull FragmentContainerView fragmentContainerView2, @NonNull FrameLayout frameLayout) { + this.a = relativeLayout; + this.b = textView; + this.f107c = fragmentContainerView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/i2.java b/app/src/main/java/c/a/i/i2.java index a180650a8b..215349a30b 100644 --- a/app/src/main/java/c/a/i/i2.java +++ b/app/src/main/java/c/a/i/i2.java @@ -15,7 +15,7 @@ public final class i2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final Spinner f109c; + public final Spinner f108c; @NonNull public final TextView d; @NonNull @@ -26,7 +26,7 @@ public final class i2 implements ViewBinding { public i2(@NonNull View view, @NonNull TextView textView, @NonNull Spinner spinner, @NonNull MaterialCardView materialCardView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4) { this.a = view; this.b = textView; - this.f109c = spinner; + this.f108c = spinner; this.d = textView2; this.e = textView3; this.f = textView4; diff --git a/app/src/main/java/c/a/i/i3.java b/app/src/main/java/c/a/i/i3.java index 2695a88819..4484299205 100644 --- a/app/src/main/java/c/a/i/i3.java +++ b/app/src/main/java/c/a/i/i3.java @@ -1,20 +1,36 @@ package c.a.i; import android.view.View; -import android.widget.Button; -import android.widget.ScrollView; +import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -/* compiled from: ViewServerSettingsEmptyGuildRoleSubscriptionBinding */ +import com.facebook.drawee.view.SimpleDraweeView; +import com.google.android.material.textfield.TextInputLayout; +/* compiled from: ViewServerSettingsIconNameBinding */ public final class i3 implements ViewBinding { @NonNull - public final ScrollView a; + public final ConstraintLayout a; + @NonNull + public final TextView b; @NonNull - public final Button b; - public i3(@NonNull ScrollView scrollView, @NonNull Button button) { - this.a = scrollView; - this.b = button; + /* renamed from: c reason: collision with root package name */ + public final TextInputLayout f109c; + @NonNull + public final SimpleDraweeView d; + @NonNull + public final TextView e; + @NonNull + public final TextView f; + + public i3(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull TextInputLayout textInputLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull ConstraintLayout constraintLayout2, @NonNull TextView textView2, @NonNull TextView textView3) { + this.a = constraintLayout; + this.b = textView; + this.f109c = textInputLayout; + this.d = simpleDraweeView; + this.e = textView2; + this.f = textView3; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/i4.java b/app/src/main/java/c/a/i/i4.java index b8fe3565c1..74b95e4916 100644 --- a/app/src/main/java/c/a/i/i4.java +++ b/app/src/main/java/c/a/i/i4.java @@ -4,22 +4,21 @@ import android.view.View; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: ViewVoiceUserBinding */ +/* compiled from: VoiceUserLimitViewBinding */ public final class i4 implements ViewBinding { @NonNull public final View a; @NonNull - public final SimpleDraweeView b; + public final TextView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f110c; - public i4(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { + public i4(@NonNull View view, @NonNull TextView textView, @NonNull TextView textView2) { this.a = view; - this.b = simpleDraweeView; - this.f110c = textView; + this.b = textView; + this.f110c = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/i5.java b/app/src/main/java/c/a/i/i5.java index 9b67033d8f..8f4bc39909 100644 --- a/app/src/main/java/c/a/i/i5.java +++ b/app/src/main/java/c/a/i/i5.java @@ -2,26 +2,19 @@ package c.a.i; import android.view.View; import android.widget.FrameLayout; -import android.widget.RelativeLayout; -import android.widget.TextView; +import android.widget.ImageView; import androidx.annotation.NonNull; -import androidx.fragment.app.FragmentContainerView; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetHomePanelLeftBinding */ +/* compiled from: WidgetHomePanelLoadingBinding */ public final class i5 implements ViewBinding { @NonNull - public final RelativeLayout a; - @NonNull - public final TextView b; + public final FrameLayout a; @NonNull + public final ImageView b; - /* renamed from: c reason: collision with root package name */ - public final FragmentContainerView f111c; - - public i5(@NonNull RelativeLayout relativeLayout, @NonNull TextView textView, @NonNull FragmentContainerView fragmentContainerView, @NonNull FragmentContainerView fragmentContainerView2, @NonNull FrameLayout frameLayout) { - this.a = relativeLayout; - this.b = textView; - this.f111c = fragmentContainerView2; + public i5(@NonNull FrameLayout frameLayout, @NonNull ImageView imageView) { + this.a = frameLayout; + this.b = imageView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/j0.java b/app/src/main/java/c/a/i/j0.java index 1556078356..6c80553022 100644 --- a/app/src/main/java/c/a/i/j0.java +++ b/app/src/main/java/c/a/i/j0.java @@ -18,12 +18,12 @@ public final class j0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final Group f112c; + public final Group f111c; public j0(@NonNull ConstraintLayout constraintLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull TextView textView, @NonNull ImageView imageView3, @NonNull Group group) { this.a = constraintLayout; this.b = simpleDraweeView; - this.f112c = group; + this.f111c = group; } @NonNull diff --git a/app/src/main/java/c/a/i/j1.java b/app/src/main/java/c/a/i/j1.java index a04a5badca..eedcbe6101 100644 --- a/app/src/main/java/c/a/i/j1.java +++ b/app/src/main/java/c/a/i/j1.java @@ -15,14 +15,14 @@ public final class j1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final SimpleDraweeSpanTextView f113c; + public final SimpleDraweeSpanTextView f112c; @NonNull public final UsernameView d; public j1(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView, @NonNull UsernameView usernameView) { this.a = view; this.b = simpleDraweeView; - this.f113c = simpleDraweeSpanTextView; + this.f112c = simpleDraweeSpanTextView; this.d = usernameView; } diff --git a/app/src/main/java/c/a/i/j2.java b/app/src/main/java/c/a/i/j2.java index 88f20ec410..3281281ea1 100644 --- a/app/src/main/java/c/a/i/j2.java +++ b/app/src/main/java/c/a/i/j2.java @@ -14,12 +14,12 @@ public final class j2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f114c; + public final TextView f113c; public j2(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { this.a = view; this.b = simpleDraweeView; - this.f114c = textView; + this.f113c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/j3.java b/app/src/main/java/c/a/i/j3.java index 500280b003..828c164149 100644 --- a/app/src/main/java/c/a/i/j3.java +++ b/app/src/main/java/c/a/i/j3.java @@ -1,36 +1,25 @@ package c.a.i; import android.view.View; -import android.widget.TextView; +import android.widget.LinearLayout; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.facebook.drawee.view.SimpleDraweeView; -import com.google.android.material.textfield.TextInputLayout; -/* compiled from: ViewServerSettingsIconNameBinding */ +import com.discord.views.CheckedSetting; +/* compiled from: ViewServerSettingsNotificationsBinding */ public final class j3 implements ViewBinding { @NonNull - public final ConstraintLayout a; + public final LinearLayout a; @NonNull - public final TextView b; + public final CheckedSetting b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextInputLayout f115c; - @NonNull - public final SimpleDraweeView d; - @NonNull - public final TextView e; - @NonNull - public final TextView f; + public final CheckedSetting f114c; - public j3(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull TextInputLayout textInputLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull ConstraintLayout constraintLayout2, @NonNull TextView textView2, @NonNull TextView textView3) { - this.a = constraintLayout; - this.b = textView; - this.f115c = textInputLayout; - this.d = simpleDraweeView; - this.e = textView2; - this.f = textView3; + public j3(@NonNull LinearLayout linearLayout, @NonNull CheckedSetting checkedSetting, @NonNull CheckedSetting checkedSetting2) { + this.a = linearLayout; + this.b = checkedSetting; + this.f114c = checkedSetting2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/j4.java b/app/src/main/java/c/a/i/j4.java index 37ffedb18f..6303c8945c 100644 --- a/app/src/main/java/c/a/i/j4.java +++ b/app/src/main/java/c/a/i/j4.java @@ -1,24 +1,28 @@ package c.a.i; import android.view.View; -import android.widget.TextView; +import android.widget.ImageView; +import android.widget.SeekBar; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -/* compiled from: VoiceUserLimitViewBinding */ +/* compiled from: VolumeSliderViewBinding */ public final class j4 implements ViewBinding { @NonNull public final View a; @NonNull - public final TextView b; + public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f116c; + public final ImageView f115c; + @NonNull + public final SeekBar d; - public j4(@NonNull View view, @NonNull TextView textView, @NonNull TextView textView2) { + public j4(@NonNull View view, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull SeekBar seekBar) { this.a = view; - this.b = textView; - this.f116c = textView2; + this.b = imageView; + this.f115c = imageView2; + this.d = seekBar; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/j5.java b/app/src/main/java/c/a/i/j5.java index 3f743fcbcb..8294434aef 100644 --- a/app/src/main/java/c/a/i/j5.java +++ b/app/src/main/java/c/a/i/j5.java @@ -2,19 +2,25 @@ package c.a.i; import android.view.View; import android.widget.FrameLayout; -import android.widget.ImageView; import androidx.annotation.NonNull; +import androidx.fragment.app.FragmentContainerView; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetHomePanelLoadingBinding */ +import com.discord.utilities.view.rounded.RoundedRelativeLayout; +/* compiled from: WidgetHomePanelRightBinding */ public final class j5 implements ViewBinding { @NonNull public final FrameLayout a; @NonNull - public final ImageView b; + public final RoundedRelativeLayout b; + @NonNull - public j5(@NonNull FrameLayout frameLayout, @NonNull ImageView imageView) { + /* renamed from: c reason: collision with root package name */ + public final FragmentContainerView f116c; + + public j5(@NonNull FrameLayout frameLayout, @NonNull RoundedRelativeLayout roundedRelativeLayout, @NonNull FragmentContainerView fragmentContainerView, @NonNull FragmentContainerView fragmentContainerView2, @NonNull FragmentContainerView fragmentContainerView3) { this.a = frameLayout; - this.b = imageView; + this.b = roundedRelativeLayout; + this.f116c = fragmentContainerView3; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/k3.java b/app/src/main/java/c/a/i/k3.java index 75c29b7f56..fa53ac9e60 100644 --- a/app/src/main/java/c/a/i/k3.java +++ b/app/src/main/java/c/a/i/k3.java @@ -4,22 +4,17 @@ import android.view.View; import android.widget.LinearLayout; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.views.CheckedSetting; -/* compiled from: ViewServerSettingsNotificationsBinding */ +import com.discord.utilities.view.text.LinkifiedTextView; +/* compiled from: ViewServerSettingsRegionHelpBinding */ public final class k3 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final CheckedSetting b; - @NonNull + public final LinkifiedTextView b; - /* renamed from: c reason: collision with root package name */ - public final CheckedSetting f120c; - - public k3(@NonNull LinearLayout linearLayout, @NonNull CheckedSetting checkedSetting, @NonNull CheckedSetting checkedSetting2) { + public k3(@NonNull LinearLayout linearLayout, @NonNull LinkifiedTextView linkifiedTextView, @NonNull LinearLayout linearLayout2) { this.a = linearLayout; - this.b = checkedSetting; - this.f120c = checkedSetting2; + this.b = linkifiedTextView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/k4.java b/app/src/main/java/c/a/i/k4.java index 233099d4eb..5a74cdaee8 100644 --- a/app/src/main/java/c/a/i/k4.java +++ b/app/src/main/java/c/a/i/k4.java @@ -1,28 +1,48 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; -import android.widget.SeekBar; +import android.widget.LinearLayout; +import android.widget.ProgressBar; +import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -/* compiled from: VolumeSliderViewBinding */ +import com.discord.app.AppViewFlipper; +import com.discord.utilities.view.text.LinkifiedTextView; +import com.facebook.drawee.view.SimpleDraweeView; +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetAcceptGiftDialogBinding */ public final class k4 implements ViewBinding { @NonNull - public final View a; + public final LinearLayout a; @NonNull - public final ImageView b; + public final SimpleDraweeView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f121c; + public final TextView f120c; @NonNull - public final SeekBar d; + public final MaterialButton d; + @NonNull + public final LinearLayout e; + @NonNull + public final LinkifiedTextView f; + @NonNull + public final AppViewFlipper g; + @NonNull + public final TextView h; + @NonNull + public final ProgressBar i; - public k4(@NonNull View view, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull SeekBar seekBar) { - this.a = view; - this.b = imageView; - this.f121c = imageView2; - this.d = seekBar; + public k4(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull LinearLayout linearLayout3, @NonNull LinkifiedTextView linkifiedTextView, @NonNull AppViewFlipper appViewFlipper, @NonNull TextView textView2, @NonNull ProgressBar progressBar) { + this.a = linearLayout; + this.b = simpleDraweeView; + this.f120c = textView; + this.d = materialButton; + this.e = linearLayout3; + this.f = linkifiedTextView; + this.g = appViewFlipper; + this.h = textView2; + this.i = progressBar; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/k5.java b/app/src/main/java/c/a/i/k5.java index 992b402f2f..92539289f4 100644 --- a/app/src/main/java/c/a/i/k5.java +++ b/app/src/main/java/c/a/i/k5.java @@ -1,26 +1,29 @@ package c.a.i; import android.view.View; -import android.widget.FrameLayout; +import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.fragment.app.FragmentContainerView; +import androidx.core.widget.NestedScrollView; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.rounded.RoundedRelativeLayout; -/* compiled from: WidgetHomePanelRightBinding */ +import com.discord.utilities.view.text.LinkifiedTextView; +/* compiled from: WidgetHubEmailFlowConfirmationBinding */ public final class k5 implements ViewBinding { @NonNull - public final FrameLayout a; + public final NestedScrollView a; @NonNull - public final RoundedRelativeLayout b; + public final LinkifiedTextView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final FragmentContainerView f122c; + public final TextView f121c; + @NonNull + public final LinkifiedTextView d; - public k5(@NonNull FrameLayout frameLayout, @NonNull RoundedRelativeLayout roundedRelativeLayout, @NonNull FragmentContainerView fragmentContainerView, @NonNull FragmentContainerView fragmentContainerView2, @NonNull FragmentContainerView fragmentContainerView3) { - this.a = frameLayout; - this.b = roundedRelativeLayout; - this.f122c = fragmentContainerView3; + public k5(@NonNull NestedScrollView nestedScrollView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView2) { + this.a = nestedScrollView; + this.b = linkifiedTextView; + this.f121c = textView; + this.d = linkifiedTextView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/l.java b/app/src/main/java/c/a/i/l.java index 85a36c0b29..b582f3a50f 100644 --- a/app/src/main/java/c/a/i/l.java +++ b/app/src/main/java/c/a/i/l.java @@ -16,14 +16,14 @@ public final class l implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaxHeightRecyclerView f123c; + public final MaxHeightRecyclerView f122c; @NonNull public final TextView d; public l(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaxHeightRecyclerView maxHeightRecyclerView, @NonNull TextView textView) { this.a = linearLayout; this.b = materialButton; - this.f123c = maxHeightRecyclerView; + this.f122c = maxHeightRecyclerView; this.d = textView; } diff --git a/app/src/main/java/c/a/i/l1.java b/app/src/main/java/c/a/i/l1.java index c291b9d58b..d5502364b6 100644 --- a/app/src/main/java/c/a/i/l1.java +++ b/app/src/main/java/c/a/i/l1.java @@ -15,7 +15,7 @@ public final class l1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f124c; + public final MaterialButton f123c; @NonNull public final MaterialButton d; @NonNull @@ -24,7 +24,7 @@ public final class l1 implements ViewBinding { public l1(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2) { this.a = linearLayout; this.b = textView; - this.f124c = materialButton; + this.f123c = materialButton; this.d = materialButton2; this.e = textView2; } diff --git a/app/src/main/java/c/a/i/l2.java b/app/src/main/java/c/a/i/l2.java index 047485ff98..1544e198c1 100644 --- a/app/src/main/java/c/a/i/l2.java +++ b/app/src/main/java/c/a/i/l2.java @@ -14,12 +14,12 @@ public final class l2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ProgressBar f125c; + public final ProgressBar f124c; public l2(@NonNull View view, @NonNull MaterialButton materialButton, @NonNull ProgressBar progressBar) { this.a = view; this.b = materialButton; - this.f125c = progressBar; + this.f124c = progressBar; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/l3.java b/app/src/main/java/c/a/i/l3.java index 62512a6724..a3e82bcff5 100644 --- a/app/src/main/java/c/a/i/l3.java +++ b/app/src/main/java/c/a/i/l3.java @@ -2,19 +2,31 @@ package c.a.i; import android.view.View; import android.widget.LinearLayout; +import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -/* compiled from: ViewServerSettingsRegionHelpBinding */ +import com.discord.views.CheckedSetting; +/* compiled from: ViewServerSettingsSystemChannelWrapBinding */ public final class l3 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final LinkifiedTextView b; + public final TextView b; + @NonNull - public l3(@NonNull LinearLayout linearLayout, @NonNull LinkifiedTextView linkifiedTextView, @NonNull LinearLayout linearLayout2) { + /* renamed from: c reason: collision with root package name */ + public final CheckedSetting f125c; + @NonNull + public final CheckedSetting d; + @NonNull + public final LinearLayout e; + + public l3(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull CheckedSetting checkedSetting, @NonNull CheckedSetting checkedSetting2, @NonNull LinearLayout linearLayout2) { this.a = linearLayout; - this.b = linkifiedTextView; + this.b = textView; + this.f125c = checkedSetting; + this.d = checkedSetting2; + this.e = linearLayout2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/l4.java b/app/src/main/java/c/a/i/l4.java index 464684ffc0..6aab47c594 100644 --- a/app/src/main/java/c/a/i/l4.java +++ b/app/src/main/java/c/a/i/l4.java @@ -2,47 +2,26 @@ package c.a.i; import android.view.View; import android.widget.LinearLayout; -import android.widget.ProgressBar; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.app.AppViewFlipper; import com.discord.utilities.view.text.LinkifiedTextView; -import com.facebook.drawee.view.SimpleDraweeView; import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetAcceptGiftDialogBinding */ +/* compiled from: WidgetAuthMfaInfoBinding */ public final class l4 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final SimpleDraweeView b; + public final MaterialButton b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f126c; - @NonNull - public final MaterialButton d; - @NonNull - public final LinearLayout e; - @NonNull - public final LinkifiedTextView f; - @NonNull - public final AppViewFlipper g; - @NonNull - public final TextView h; - @NonNull - public final ProgressBar i; + public final LinkifiedTextView f126c; - public l4(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull LinearLayout linearLayout3, @NonNull LinkifiedTextView linkifiedTextView, @NonNull AppViewFlipper appViewFlipper, @NonNull TextView textView2, @NonNull ProgressBar progressBar) { + public l4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull LinkifiedTextView linkifiedTextView) { this.a = linearLayout; - this.b = simpleDraweeView; - this.f126c = textView; - this.d = materialButton; - this.e = linearLayout3; - this.f = linkifiedTextView; - this.g = appViewFlipper; - this.h = textView2; - this.i = progressBar; + this.b = materialButton; + this.f126c = linkifiedTextView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/l5.java b/app/src/main/java/c/a/i/l5.java index 07a7d4b1bb..8a8a09a309 100644 --- a/app/src/main/java/c/a/i/l5.java +++ b/app/src/main/java/c/a/i/l5.java @@ -5,25 +5,16 @@ import android.widget.TextView; import androidx.annotation.NonNull; import androidx.core.widget.NestedScrollView; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -/* compiled from: WidgetHubEmailFlowConfirmationBinding */ +/* compiled from: WidgetHubEmailFlowWaitlistBinding */ public final class l5 implements ViewBinding { @NonNull public final NestedScrollView a; @NonNull - public final LinkifiedTextView b; - @NonNull + public final TextView b; - /* renamed from: c reason: collision with root package name */ - public final TextView f127c; - @NonNull - public final LinkifiedTextView d; - - public l5(@NonNull NestedScrollView nestedScrollView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView2) { + public l5(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView) { this.a = nestedScrollView; - this.b = linkifiedTextView; - this.f127c = textView; - this.d = linkifiedTextView2; + this.b = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/m0.java b/app/src/main/java/c/a/i/m0.java index 99ca5c379f..e8ee6e9ae3 100644 --- a/app/src/main/java/c/a/i/m0.java +++ b/app/src/main/java/c/a/i/m0.java @@ -16,7 +16,7 @@ public final class m0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f128c; + public final ImageView f127c; @NonNull public final ImageView d; @NonNull @@ -29,7 +29,7 @@ public final class m0 implements ViewBinding { public m0(@NonNull ConstraintLayout constraintLayout, @NonNull Barrier barrier, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull ImageView imageView3, @NonNull ImageView imageView4, @NonNull ImageView imageView5, @NonNull TextView textView, @NonNull TextView textView2) { this.a = constraintLayout; this.b = imageView; - this.f128c = imageView3; + this.f127c = imageView3; this.d = imageView4; this.e = imageView5; this.f = textView; diff --git a/app/src/main/java/c/a/i/m1.java b/app/src/main/java/c/a/i/m1.java index 1a9bc4fc3b..53c45e81cb 100644 --- a/app/src/main/java/c/a/i/m1.java +++ b/app/src/main/java/c/a/i/m1.java @@ -17,7 +17,7 @@ public final class m1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ShinyButton f129c; + public final ShinyButton f128c; @NonNull public final TextView d; @NonNull @@ -28,7 +28,7 @@ public final class m1 implements ViewBinding { public m1(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull MaterialButton materialButton, @NonNull View view, @NonNull ShinyButton shinyButton, @NonNull View view2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull ImageView imageView) { this.a = linearLayout; this.b = materialButton; - this.f129c = shinyButton; + this.f128c = shinyButton; this.d = textView; this.e = textView2; this.f = imageView; diff --git a/app/src/main/java/c/a/i/m2.java b/app/src/main/java/c/a/i/m2.java index f6b32ccabd..f56ca7f1d9 100644 --- a/app/src/main/java/c/a/i/m2.java +++ b/app/src/main/java/c/a/i/m2.java @@ -16,14 +16,14 @@ public final class m2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f130c; + public final MaterialButton f129c; @NonNull public final TextView d; public m2(@NonNull LinearLayout linearLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = linearLayout; this.b = simpleDraweeView; - this.f130c = materialButton; + this.f129c = materialButton; this.d = textView3; } diff --git a/app/src/main/java/c/a/i/m3.java b/app/src/main/java/c/a/i/m3.java index 458b9b645b..b472a6ae5c 100644 --- a/app/src/main/java/c/a/i/m3.java +++ b/app/src/main/java/c/a/i/m3.java @@ -1,32 +1,44 @@ package c.a.i; import android.view.View; +import android.widget.FrameLayout; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.views.CheckedSetting; -/* compiled from: ViewServerSettingsSystemChannelWrapBinding */ +import com.discord.utilities.view.text.LinkifiedTextView; +import com.facebook.drawee.view.SimpleDraweeView; +import com.google.android.material.floatingactionbutton.FloatingActionButton; +/* compiled from: ViewServerSettingsUploadBannerBinding */ public final class m3 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final TextView b; + public final FrameLayout b; @NonNull /* renamed from: c reason: collision with root package name */ - public final CheckedSetting f131c; + public final TextView f130c; @NonNull - public final CheckedSetting d; + public final SimpleDraweeView d; @NonNull - public final LinearLayout e; + public final FloatingActionButton e; + @NonNull + public final LinkifiedTextView f; + @NonNull + public final TextView g; + @NonNull + public final TextView h; - public m3(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull CheckedSetting checkedSetting, @NonNull CheckedSetting checkedSetting2, @NonNull LinearLayout linearLayout2) { + public m3(@NonNull LinearLayout linearLayout, @NonNull FrameLayout frameLayout, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull FloatingActionButton floatingActionButton, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = linearLayout; - this.b = textView; - this.f131c = checkedSetting; - this.d = checkedSetting2; - this.e = linearLayout2; + this.b = frameLayout; + this.f130c = textView; + this.d = simpleDraweeView; + this.e = floatingActionButton; + this.f = linkifiedTextView; + this.g = textView2; + this.h = textView3; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/m4.java b/app/src/main/java/c/a/i/m4.java index c8a4f58399..5962bb1fee 100644 --- a/app/src/main/java/c/a/i/m4.java +++ b/app/src/main/java/c/a/i/m4.java @@ -1,27 +1,18 @@ package c.a.i; import android.view.View; -import android.widget.LinearLayout; -import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetAuthMfaInfoBinding */ +/* compiled from: WidgetCallFullscreenAudioShareWarningBinding */ public final class m4 implements ViewBinding { @NonNull - public final LinearLayout a; - @NonNull - public final MaterialButton b; + public final View a; @NonNull + public final View b; - /* renamed from: c reason: collision with root package name */ - public final LinkifiedTextView f132c; - - public m4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull LinkifiedTextView linkifiedTextView) { - this.a = linearLayout; - this.b = materialButton; - this.f132c = linkifiedTextView; + public m4(@NonNull View view, @NonNull View view2) { + this.a = view; + this.b = view2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/m5.java b/app/src/main/java/c/a/i/m5.java index 244981e552..52b0417159 100644 --- a/app/src/main/java/c/a/i/m5.java +++ b/app/src/main/java/c/a/i/m5.java @@ -1,20 +1,32 @@ package c.a.i; import android.view.View; +import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.core.widget.NestedScrollView; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetHubEmailFlowWaitlistBinding */ +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetMaskedLinksDialogBinding */ public final class m5 implements ViewBinding { @NonNull - public final NestedScrollView a; + public final LinearLayout a; @NonNull public final TextView b; + @NonNull - public m5(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView) { - this.a = nestedScrollView; + /* renamed from: c reason: collision with root package name */ + public final MaterialButton f131c; + @NonNull + public final MaterialButton d; + @NonNull + public final TextView e; + + public m5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2, @NonNull TextView textView3) { + this.a = linearLayout; this.b = textView; + this.f131c = materialButton; + this.d = materialButton2; + this.e = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/n0.java b/app/src/main/java/c/a/i/n0.java index 07b0118c55..e7d536346b 100644 --- a/app/src/main/java/c/a/i/n0.java +++ b/app/src/main/java/c/a/i/n0.java @@ -14,12 +14,12 @@ public final class n0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f133c; + public final TextView f132c; public n0(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) { this.a = view; this.b = simpleDraweeView; - this.f133c = textView; + this.f132c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/n2.java b/app/src/main/java/c/a/i/n2.java index 673910120e..06877f67b4 100644 --- a/app/src/main/java/c/a/i/n2.java +++ b/app/src/main/java/c/a/i/n2.java @@ -17,14 +17,14 @@ public final class n2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f134c; + public final TextView f133c; @NonNull public final LinkifiedTextView d; public n2(@NonNull ConstraintLayout constraintLayout, @NonNull GuildView guildView, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView) { this.a = constraintLayout; this.b = guildView; - this.f134c = textView; + this.f133c = textView; this.d = linkifiedTextView; } diff --git a/app/src/main/java/c/a/i/n3.java b/app/src/main/java/c/a/i/n3.java index 59b9f28f65..df9a74d273 100644 --- a/app/src/main/java/c/a/i/n3.java +++ b/app/src/main/java/c/a/i/n3.java @@ -9,7 +9,7 @@ import androidx.viewbinding.ViewBinding; import com.discord.utilities.view.text.LinkifiedTextView; import com.facebook.drawee.view.SimpleDraweeView; import com.google.android.material.floatingactionbutton.FloatingActionButton; -/* compiled from: ViewServerSettingsUploadBannerBinding */ +/* compiled from: ViewServerSettingsUploadSplashBinding */ public final class n3 implements ViewBinding { @NonNull public final LinearLayout a; @@ -18,11 +18,11 @@ public final class n3 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f135c; + public final FloatingActionButton f134c; @NonNull - public final SimpleDraweeView d; + public final TextView d; @NonNull - public final FloatingActionButton e; + public final SimpleDraweeView e; @NonNull public final LinkifiedTextView f; @NonNull @@ -30,12 +30,12 @@ public final class n3 implements ViewBinding { @NonNull public final TextView h; - public n3(@NonNull LinearLayout linearLayout, @NonNull FrameLayout frameLayout, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull FloatingActionButton floatingActionButton, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView2, @NonNull TextView textView3) { + public n3(@NonNull LinearLayout linearLayout, @NonNull FrameLayout frameLayout, @NonNull FloatingActionButton floatingActionButton, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = linearLayout; this.b = frameLayout; - this.f135c = textView; - this.d = simpleDraweeView; - this.e = floatingActionButton; + this.f134c = floatingActionButton; + this.d = textView; + this.e = simpleDraweeView; this.f = linkifiedTextView; this.g = textView2; this.h = textView3; diff --git a/app/src/main/java/c/a/i/n4.java b/app/src/main/java/c/a/i/n4.java index 8696f18915..e9f3c48589 100644 --- a/app/src/main/java/c/a/i/n4.java +++ b/app/src/main/java/c/a/i/n4.java @@ -1,18 +1,46 @@ package c.a.i; import android.view.View; +import android.widget.LinearLayout; +import android.widget.RelativeLayout; +import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetCallFullscreenAudioShareWarningBinding */ +import com.discord.widgets.voice.fullscreen.grid.PrivateCallBlurredGridView; +import com.discord.widgets.voice.fullscreen.grid.PrivateCallGridView; +/* compiled from: WidgetCallFullscreenPrivateCallBinding */ public final class n4 implements ViewBinding { @NonNull - public final View a; + public final RelativeLayout a; + @NonNull + public final PrivateCallBlurredGridView b; @NonNull - public final View b; - public n4(@NonNull View view, @NonNull View view2) { - this.a = view; - this.b = view2; + /* renamed from: c reason: collision with root package name */ + public final TextView f135c; + @NonNull + public final RelativeLayout d; + @NonNull + public final LinearLayout e; + @NonNull + public final PrivateCallGridView f; + @NonNull + public final TextView g; + @NonNull + public final TextView h; + @NonNull + public final TextView i; + + public n4(@NonNull RelativeLayout relativeLayout, @NonNull PrivateCallBlurredGridView privateCallBlurredGridView, @NonNull TextView textView, @NonNull RelativeLayout relativeLayout2, @NonNull LinearLayout linearLayout, @NonNull PrivateCallGridView privateCallGridView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4) { + this.a = relativeLayout; + this.b = privateCallBlurredGridView; + this.f135c = textView; + this.d = relativeLayout2; + this.e = linearLayout; + this.f = privateCallGridView; + this.g = textView2; + this.h = textView3; + this.i = textView4; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/n5.java b/app/src/main/java/c/a/i/n5.java index b4eeb0ea9b..7db683110d 100644 --- a/app/src/main/java/c/a/i/n5.java +++ b/app/src/main/java/c/a/i/n5.java @@ -1,32 +1,16 @@ package c.a.i; import android.view.View; -import android.widget.LinearLayout; -import android.widget.TextView; +import android.widget.RadioButton; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetMaskedLinksDialogBinding */ +/* compiled from: WidgetMemberVerificationMultipleChoiceRadioItemBinding */ public final class n5 implements ViewBinding { @NonNull - public final LinearLayout a; - @NonNull - public final TextView b; - @NonNull + public final RadioButton a; - /* renamed from: c reason: collision with root package name */ - public final MaterialButton f136c; - @NonNull - public final MaterialButton d; - @NonNull - public final TextView e; - - public n5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2, @NonNull TextView textView3) { - this.a = linearLayout; - this.b = textView; - this.f136c = materialButton; - this.d = materialButton2; - this.e = textView2; + public n5(@NonNull RadioButton radioButton) { + this.a = radioButton; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/o0.java b/app/src/main/java/c/a/i/o0.java index 38c11ee464..eefeaf46d2 100644 --- a/app/src/main/java/c/a/i/o0.java +++ b/app/src/main/java/c/a/i/o0.java @@ -17,7 +17,7 @@ public final class o0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TabLayout f137c; + public final TabLayout f136c; @NonNull public final MaterialButton d; @NonNull @@ -28,7 +28,7 @@ public final class o0 implements ViewBinding { public o0(@NonNull RelativeLayout relativeLayout, @NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull View view, @NonNull TabLayout tabLayout, @NonNull MaterialButton materialButton2, @NonNull MaterialButton materialButton3, @NonNull ViewPager2 viewPager2) { this.a = relativeLayout; this.b = materialButton; - this.f137c = tabLayout; + this.f136c = tabLayout; this.d = materialButton2; this.e = materialButton3; this.f = viewPager2; diff --git a/app/src/main/java/c/a/i/o1.java b/app/src/main/java/c/a/i/o1.java index f21e99750f..144a89848e 100644 --- a/app/src/main/java/c/a/i/o1.java +++ b/app/src/main/java/c/a/i/o1.java @@ -15,14 +15,14 @@ public final class o1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final RLottieImageView f138c; + public final RLottieImageView f137c; @NonNull public final ImageView d; public o1(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull RLottieImageView rLottieImageView, @NonNull ImageView imageView) { this.a = view; this.b = simpleDraweeView; - this.f138c = rLottieImageView; + this.f137c = rLottieImageView; this.d = imageView; } diff --git a/app/src/main/java/c/a/i/o3.java b/app/src/main/java/c/a/i/o3.java index 8f518b269b..6ae0e31d62 100644 --- a/app/src/main/java/c/a/i/o3.java +++ b/app/src/main/java/c/a/i/o3.java @@ -1,44 +1,25 @@ package c.a.i; import android.view.View; -import android.widget.FrameLayout; -import android.widget.LinearLayout; -import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -import com.facebook.drawee.view.SimpleDraweeView; -import com.google.android.material.floatingactionbutton.FloatingActionButton; -/* compiled from: ViewServerSettingsUploadSplashBinding */ +import com.google.android.material.checkbox.MaterialCheckBox; +/* compiled from: ViewSettingCheckBinding */ public final class o3 implements ViewBinding { @NonNull - public final LinearLayout a; + public final View a; @NonNull - public final FrameLayout b; + public final MaterialCheckBox b; @NonNull /* renamed from: c reason: collision with root package name */ - public final FloatingActionButton f139c; - @NonNull - public final TextView d; - @NonNull - public final SimpleDraweeView e; - @NonNull - public final LinkifiedTextView f; - @NonNull - public final TextView g; - @NonNull - public final TextView h; + public final ConstraintLayout f138c; - public o3(@NonNull LinearLayout linearLayout, @NonNull FrameLayout frameLayout, @NonNull FloatingActionButton floatingActionButton, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView2, @NonNull TextView textView3) { - this.a = linearLayout; - this.b = frameLayout; - this.f139c = floatingActionButton; - this.d = textView; - this.e = simpleDraweeView; - this.f = linkifiedTextView; - this.g = textView2; - this.h = textView3; + public o3(@NonNull View view, @NonNull MaterialCheckBox materialCheckBox, @NonNull ConstraintLayout constraintLayout) { + this.a = view; + this.b = materialCheckBox; + this.f138c = constraintLayout; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/o4.java b/app/src/main/java/c/a/i/o4.java index 45f24c02ab..8f46290698 100644 --- a/app/src/main/java/c/a/i/o4.java +++ b/app/src/main/java/c/a/i/o4.java @@ -2,45 +2,25 @@ package c.a.i; import android.view.View; import android.widget.LinearLayout; -import android.widget.RelativeLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.widgets.voice.fullscreen.grid.PrivateCallBlurredGridView; -import com.discord.widgets.voice.fullscreen.grid.PrivateCallGridView; -/* compiled from: WidgetCallFullscreenPrivateCallBinding */ +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetChannelSettingsCannotDeleteBinding */ public final class o4 implements ViewBinding { @NonNull - public final RelativeLayout a; + public final LinearLayout a; @NonNull - public final PrivateCallBlurredGridView b; + public final TextView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f140c; - @NonNull - public final RelativeLayout d; - @NonNull - public final LinearLayout e; - @NonNull - public final PrivateCallGridView f; - @NonNull - public final TextView g; - @NonNull - public final TextView h; - @NonNull - public final TextView i; + public final MaterialButton f139c; - public o4(@NonNull RelativeLayout relativeLayout, @NonNull PrivateCallBlurredGridView privateCallBlurredGridView, @NonNull TextView textView, @NonNull RelativeLayout relativeLayout2, @NonNull LinearLayout linearLayout, @NonNull PrivateCallGridView privateCallGridView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4) { - this.a = relativeLayout; - this.b = privateCallBlurredGridView; - this.f140c = textView; - this.d = relativeLayout2; - this.e = linearLayout; - this.f = privateCallGridView; - this.g = textView2; - this.h = textView3; - this.i = textView4; + public o4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull TextView textView2) { + this.a = linearLayout; + this.b = textView; + this.f139c = materialButton; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/o5.java b/app/src/main/java/c/a/i/o5.java index 188e45bb91..d57daebe5f 100644 --- a/app/src/main/java/c/a/i/o5.java +++ b/app/src/main/java/c/a/i/o5.java @@ -1,16 +1,58 @@ package c.a.i; import android.view.View; -import android.widget.RadioButton; +import android.widget.FrameLayout; +import android.widget.LinearLayout; +import android.widget.SeekBar; +import android.widget.Space; +import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.Barrier; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetMemberVerificationMultipleChoiceRadioItemBinding */ +import com.facebook.drawee.view.SimpleDraweeView; +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetMusicRichPresenceBinding */ public final class o5 implements ViewBinding { @NonNull - public final RadioButton a; + public final LinearLayout a; + @NonNull + public final LinearLayout b; + @NonNull - public o5(@NonNull RadioButton radioButton) { - this.a = radioButton; + /* renamed from: c reason: collision with root package name */ + public final TextView f140c; + @NonNull + public final TextView d; + @NonNull + public final SimpleDraweeView e; + @NonNull + public final SimpleDraweeView f; + @NonNull + public final TextView g; + @NonNull + public final TextView h; + @NonNull + public final MaterialButton i; + @NonNull + public final SeekBar j; + @NonNull + public final TextView k; + @NonNull + public final TextView l; + + public o5(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull FrameLayout frameLayout, @NonNull MaterialButton materialButton, @NonNull SeekBar seekBar, @NonNull TextView textView5, @NonNull TextView textView6) { + this.a = linearLayout; + this.b = linearLayout2; + this.f140c = textView; + this.d = textView2; + this.e = simpleDraweeView; + this.f = simpleDraweeView2; + this.g = textView3; + this.h = textView4; + this.i = materialButton; + this.j = seekBar; + this.k = textView5; + this.l = textView6; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/p3.java b/app/src/main/java/c/a/i/p3.java index 1e30ad46db..f387887273 100644 --- a/app/src/main/java/c/a/i/p3.java +++ b/app/src/main/java/c/a/i/p3.java @@ -4,21 +4,21 @@ import android.view.View; import androidx.annotation.NonNull; import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.google.android.material.checkbox.MaterialCheckBox; -/* compiled from: ViewSettingCheckBinding */ +import com.google.android.material.radiobutton.MaterialRadioButton; +/* compiled from: ViewSettingRadioBinding */ public final class p3 implements ViewBinding { @NonNull public final View a; @NonNull - public final MaterialCheckBox b; + public final MaterialRadioButton b; @NonNull /* renamed from: c reason: collision with root package name */ public final ConstraintLayout f143c; - public p3(@NonNull View view, @NonNull MaterialCheckBox materialCheckBox, @NonNull ConstraintLayout constraintLayout) { + public p3(@NonNull View view, @NonNull MaterialRadioButton materialRadioButton, @NonNull ConstraintLayout constraintLayout) { this.a = view; - this.b = materialCheckBox; + this.b = materialRadioButton; this.f143c = constraintLayout; } diff --git a/app/src/main/java/c/a/i/p4.java b/app/src/main/java/c/a/i/p4.java index 98bc2e47f2..13ba91286a 100644 --- a/app/src/main/java/c/a/i/p4.java +++ b/app/src/main/java/c/a/i/p4.java @@ -1,12 +1,16 @@ package c.a.i; +import android.view.LayoutInflater; import android.view.View; +import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.annotation.Nullable; import androidx.viewbinding.ViewBinding; +import com.discord.R; import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetChannelSettingsCannotDeleteBinding */ +/* compiled from: WidgetChannelSettingsDeleteBinding */ public final class p4 implements ViewBinding { @NonNull public final LinearLayout a; @@ -16,11 +20,43 @@ public final class p4 implements ViewBinding { /* renamed from: c reason: collision with root package name */ public final MaterialButton f144c; + @NonNull + public final MaterialButton d; + @NonNull + public final TextView e; - public p4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull TextView textView2) { + public p4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2) { this.a = linearLayout; this.b = textView; this.f144c = materialButton; + this.d = materialButton2; + this.e = textView2; + } + + @NonNull + public static p4 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) { + View inflate = layoutInflater.inflate(R.layout.widget_channel_settings_delete, (ViewGroup) null, false); + if (!z2) { + int i = R.id.channel_settings_delete_body; + TextView textView = (TextView) inflate.findViewById(R.id.channel_settings_delete_body); + if (textView != null) { + i = R.id.channel_settings_delete_cancel; + MaterialButton materialButton = (MaterialButton) inflate.findViewById(R.id.channel_settings_delete_cancel); + if (materialButton != null) { + i = R.id.channel_settings_delete_confirm; + MaterialButton materialButton2 = (MaterialButton) inflate.findViewById(R.id.channel_settings_delete_confirm); + if (materialButton2 != null) { + i = R.id.channel_settings_delete_title; + TextView textView2 = (TextView) inflate.findViewById(R.id.channel_settings_delete_title); + if (textView2 != null) { + return new p4((LinearLayout) inflate, textView, materialButton, materialButton2, textView2); + } + } + } + } + throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i))); + } + throw null; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/p5.java b/app/src/main/java/c/a/i/p5.java index 73cc69f8ad..8ef93473d8 100644 --- a/app/src/main/java/c/a/i/p5.java +++ b/app/src/main/java/c/a/i/p5.java @@ -1,9 +1,7 @@ package c.a.i; import android.view.View; -import android.widget.FrameLayout; import android.widget.LinearLayout; -import android.widget.SeekBar; import android.widget.Space; import android.widget.TextView; import androidx.annotation.NonNull; @@ -11,7 +9,7 @@ import androidx.constraintlayout.widget.Barrier; import androidx.viewbinding.ViewBinding; import com.facebook.drawee.view.SimpleDraweeView; import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetMusicRichPresenceBinding */ +/* compiled from: WidgetPlatformRichPresenceBinding */ public final class p5 implements ViewBinding { @NonNull public final LinearLayout a; @@ -22,37 +20,25 @@ public final class p5 implements ViewBinding { /* renamed from: c reason: collision with root package name */ public final TextView f145c; @NonNull - public final TextView d; + public final SimpleDraweeView d; @NonNull public final SimpleDraweeView e; @NonNull - public final SimpleDraweeView f; + public final MaterialButton f; @NonNull public final TextView g; @NonNull public final TextView h; - @NonNull - public final MaterialButton i; - @NonNull - public final SeekBar j; - @NonNull - public final TextView k; - @NonNull - public final TextView l; - public p5(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull FrameLayout frameLayout, @NonNull MaterialButton materialButton, @NonNull SeekBar seekBar, @NonNull TextView textView5, @NonNull TextView textView6) { + public p5(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull MaterialButton materialButton, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = linearLayout; this.b = linearLayout2; this.f145c = textView; - this.d = textView2; - this.e = simpleDraweeView; - this.f = simpleDraweeView2; - this.g = textView3; - this.h = textView4; - this.i = materialButton; - this.j = seekBar; - this.k = textView5; - this.l = textView6; + this.d = simpleDraweeView; + this.e = simpleDraweeView2; + this.f = materialButton; + this.g = textView2; + this.h = textView3; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/q3.java b/app/src/main/java/c/a/i/q3.java index 923046475a..0ad64d0db7 100644 --- a/app/src/main/java/c/a/i/q3.java +++ b/app/src/main/java/c/a/i/q3.java @@ -1,25 +1,32 @@ package c.a.i; import android.view.View; +import android.widget.ImageView; +import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.google.android.material.radiobutton.MaterialRadioButton; -/* compiled from: ViewSettingRadioBinding */ +import com.discord.utilities.view.text.LinkifiedTextView; +/* compiled from: ViewSettingSharedBinding */ public final class q3 implements ViewBinding { @NonNull public final View a; @NonNull - public final MaterialRadioButton b; + public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final ConstraintLayout f150c; + public final TextView f150c; + @NonNull + public final LinkifiedTextView d; + @NonNull + public final TextView e; - public q3(@NonNull View view, @NonNull MaterialRadioButton materialRadioButton, @NonNull ConstraintLayout constraintLayout) { + public q3(@NonNull View view, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView2) { this.a = view; - this.b = materialRadioButton; - this.f150c = constraintLayout; + this.b = imageView; + this.f150c = textView; + this.d = linkifiedTextView; + this.e = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/q4.java b/app/src/main/java/c/a/i/q4.java index b81ef5d16c..3ec454e747 100644 --- a/app/src/main/java/c/a/i/q4.java +++ b/app/src/main/java/c/a/i/q4.java @@ -1,64 +1,34 @@ package c.a.i; -import android.view.LayoutInflater; import android.view.View; -import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.annotation.Nullable; import androidx.viewbinding.ViewBinding; -import com.discord.R; import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetChannelSettingsDeleteBinding */ +/* compiled from: WidgetChatInputGuardBinding */ public final class q4 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final TextView b; + public final MaterialButton b; @NonNull /* renamed from: c reason: collision with root package name */ public final MaterialButton f151c; @NonNull - public final MaterialButton d; + public final TextView d; @NonNull public final TextView e; - public q4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2) { + public q4(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView, @NonNull TextView textView2) { this.a = linearLayout; - this.b = textView; - this.f151c = materialButton; - this.d = materialButton2; + this.b = materialButton; + this.f151c = materialButton2; + this.d = textView; this.e = textView2; } - @NonNull - public static q4 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) { - View inflate = layoutInflater.inflate(R.layout.widget_channel_settings_delete, (ViewGroup) null, false); - if (!z2) { - int i = R.id.channel_settings_delete_body; - TextView textView = (TextView) inflate.findViewById(R.id.channel_settings_delete_body); - if (textView != null) { - i = R.id.channel_settings_delete_cancel; - MaterialButton materialButton = (MaterialButton) inflate.findViewById(R.id.channel_settings_delete_cancel); - if (materialButton != null) { - i = R.id.channel_settings_delete_confirm; - MaterialButton materialButton2 = (MaterialButton) inflate.findViewById(R.id.channel_settings_delete_confirm); - if (materialButton2 != null) { - i = R.id.channel_settings_delete_title; - TextView textView2 = (TextView) inflate.findViewById(R.id.channel_settings_delete_title); - if (textView2 != null) { - return new q4((LinearLayout) inflate, textView, materialButton, materialButton2, textView2); - } - } - } - } - throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i))); - } - throw null; - } - @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { diff --git a/app/src/main/java/c/a/i/q5.java b/app/src/main/java/c/a/i/q5.java index 1ef98b8a13..ea204d2e94 100644 --- a/app/src/main/java/c/a/i/q5.java +++ b/app/src/main/java/c/a/i/q5.java @@ -1,44 +1,29 @@ package c.a.i; import android.view.View; +import android.widget.ImageView; import android.widget.LinearLayout; -import android.widget.Space; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.Barrier; import androidx.viewbinding.ViewBinding; -import com.facebook.drawee.view.SimpleDraweeView; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetPlatformRichPresenceBinding */ +/* compiled from: WidgetPremiumUpsellBinding */ public final class q5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final LinearLayout b; + public final TextView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f152c; @NonNull - public final SimpleDraweeView d; - @NonNull - public final SimpleDraweeView e; - @NonNull - public final MaterialButton f; - @NonNull - public final TextView g; - @NonNull - public final TextView h; + public final ImageView d; - public q5(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull MaterialButton materialButton, @NonNull TextView textView2, @NonNull TextView textView3) { + public q5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull ImageView imageView) { this.a = linearLayout; - this.b = linearLayout2; - this.f152c = textView; - this.d = simpleDraweeView; - this.e = simpleDraweeView2; - this.f = materialButton; - this.g = textView2; - this.h = textView3; + this.b = textView; + this.f152c = textView2; + this.d = imageView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/r3.java b/app/src/main/java/c/a/i/r3.java index cf9e888290..ced2d8e4ef 100644 --- a/app/src/main/java/c/a/i/r3.java +++ b/app/src/main/java/c/a/i/r3.java @@ -1,32 +1,25 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; -import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -/* compiled from: ViewSettingSharedBinding */ +import com.google.android.material.switchmaterial.SwitchMaterial; +/* compiled from: ViewSettingSwitchBinding */ public final class r3 implements ViewBinding { @NonNull public final View a; @NonNull - public final ImageView b; + public final SwitchMaterial b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f156c; - @NonNull - public final LinkifiedTextView d; - @NonNull - public final TextView e; + public final ConstraintLayout f156c; - public r3(@NonNull View view, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView2) { + public r3(@NonNull View view, @NonNull SwitchMaterial switchMaterial, @NonNull ConstraintLayout constraintLayout) { this.a = view; - this.b = imageView; - this.f156c = textView; - this.d = linkifiedTextView; - this.e = textView2; + this.b = switchMaterial; + this.f156c = constraintLayout; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/r4.java b/app/src/main/java/c/a/i/r4.java index 3315c26d55..721045b018 100644 --- a/app/src/main/java/c/a/i/r4.java +++ b/app/src/main/java/c/a/i/r4.java @@ -1,32 +1,27 @@ package c.a.i; import android.view.View; -import android.widget.LinearLayout; +import android.widget.ImageView; +import android.widget.RelativeLayout; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.cardview.widget.CardView; import androidx.viewbinding.ViewBinding; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetChatInputGuardBinding */ +/* compiled from: WidgetChatInputMemberVerificationGuardBinding */ public final class r4 implements ViewBinding { @NonNull - public final LinearLayout a; + public final RelativeLayout a; @NonNull - public final MaterialButton b; + public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f157c; - @NonNull - public final TextView d; - @NonNull - public final TextView e; + public final TextView f157c; - public r4(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = linearLayout; - this.b = materialButton; - this.f157c = materialButton2; - this.d = textView; - this.e = textView2; + public r4(@NonNull RelativeLayout relativeLayout, @NonNull CardView cardView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull TextView textView) { + this.a = relativeLayout; + this.b = imageView2; + this.f157c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/r5.java b/app/src/main/java/c/a/i/r5.java index d9e5a1d362..6fe7e97041 100644 --- a/app/src/main/java/c/a/i/r5.java +++ b/app/src/main/java/c/a/i/r5.java @@ -1,29 +1,20 @@ 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: WidgetPremiumUpsellBinding */ +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetRemoteAuthNotFoundBinding */ public final class r5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final TextView b; - @NonNull + public final MaterialButton b; - /* renamed from: c reason: collision with root package name */ - public final TextView f158c; - @NonNull - public final ImageView d; - - public r5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull ImageView imageView) { + public r5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton) { this.a = linearLayout; - this.b = textView; - this.f158c = textView2; - this.d = imageView; + this.b = materialButton; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/s1.java b/app/src/main/java/c/a/i/s1.java index 747ade4e23..85a81177c0 100644 --- a/app/src/main/java/c/a/i/s1.java +++ b/app/src/main/java/c/a/i/s1.java @@ -17,7 +17,7 @@ public final class s1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f159c; + public final ImageView f158c; @NonNull public final SimpleDraweeView d; @NonNull @@ -26,7 +26,7 @@ public final class s1 implements ViewBinding { public s1(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull FrameLayout frameLayout, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull RelativeLayout relativeLayout2, @NonNull StatusView statusView) { this.a = relativeLayout; this.b = simpleDraweeView; - this.f159c = imageView; + this.f158c = imageView; this.d = simpleDraweeView2; this.e = statusView; } diff --git a/app/src/main/java/c/a/i/s2.java b/app/src/main/java/c/a/i/s2.java index e79fd53682..8d6802a4fa 100644 --- a/app/src/main/java/c/a/i/s2.java +++ b/app/src/main/java/c/a/i/s2.java @@ -14,14 +14,14 @@ public final class s2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextInputEditText f160c; + public final TextInputEditText f159c; @NonNull public final TextInputLayout d; public s2(@NonNull View view, @NonNull TextInputLayout textInputLayout, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout2) { this.a = view; this.b = textInputLayout; - this.f160c = textInputEditText; + this.f159c = textInputEditText; this.d = textInputLayout2; } diff --git a/app/src/main/java/c/a/i/s3.java b/app/src/main/java/c/a/i/s3.java index f82553f0ff..f68f704c3f 100644 --- a/app/src/main/java/c/a/i/s3.java +++ b/app/src/main/java/c/a/i/s3.java @@ -1,25 +1,29 @@ package c.a.i; import android.view.View; +import android.widget.ImageView; +import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; +import androidx.appcompat.widget.LinearLayoutCompat; import androidx.viewbinding.ViewBinding; -import com.google.android.material.switchmaterial.SwitchMaterial; -/* compiled from: ViewSettingSwitchBinding */ +/* compiled from: ViewSettingsPremiumGuildNoGuildsBinding */ public final class s3 implements ViewBinding { @NonNull - public final View a; + public final LinearLayoutCompat a; @NonNull - public final SwitchMaterial b; + public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final ConstraintLayout f161c; + public final TextView f160c; + @NonNull + public final TextView d; - public s3(@NonNull View view, @NonNull SwitchMaterial switchMaterial, @NonNull ConstraintLayout constraintLayout) { - this.a = view; - this.b = switchMaterial; - this.f161c = constraintLayout; + public s3(@NonNull LinearLayoutCompat linearLayoutCompat, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2) { + this.a = linearLayoutCompat; + this.b = imageView; + this.f160c = textView; + this.d = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/s4.java b/app/src/main/java/c/a/i/s4.java index edc4bb05c9..6c3184d739 100644 --- a/app/src/main/java/c/a/i/s4.java +++ b/app/src/main/java/c/a/i/s4.java @@ -1,27 +1,21 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; -import android.widget.RelativeLayout; +import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.cardview.widget.CardView; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetChatInputMemberVerificationGuardBinding */ +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetChatInputPermReqFilesBinding */ public final class s4 implements ViewBinding { @NonNull - public final RelativeLayout a; - @NonNull - public final ImageView b; + public final LinearLayout a; @NonNull + public final TextView b; - /* renamed from: c reason: collision with root package name */ - public final TextView f162c; - - public s4(@NonNull RelativeLayout relativeLayout, @NonNull CardView cardView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull TextView textView) { - this.a = relativeLayout; - this.b = imageView2; - this.f162c = textView; + public s4(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView) { + this.a = linearLayout; + this.b = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/s5.java b/app/src/main/java/c/a/i/s5.java index fc85e3d890..21262c74bd 100644 --- a/app/src/main/java/c/a/i/s5.java +++ b/app/src/main/java/c/a/i/s5.java @@ -5,16 +5,25 @@ import android.widget.LinearLayout; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetRemoteAuthNotFoundBinding */ +import com.google.android.material.switchmaterial.SwitchMaterial; +/* compiled from: WidgetRemoteAuthPendingLoginBinding */ public final class s5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull public final MaterialButton b; + @NonNull - public s5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton) { + /* renamed from: c reason: collision with root package name */ + public final MaterialButton f161c; + @NonNull + public final SwitchMaterial d; + + public s5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull SwitchMaterial switchMaterial) { this.a = linearLayout; this.b = materialButton; + this.f161c = materialButton2; + this.d = switchMaterial; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/t.java b/app/src/main/java/c/a/i/t.java index 597e83e480..b97ba8d8cb 100644 --- a/app/src/main/java/c/a/i/t.java +++ b/app/src/main/java/c/a/i/t.java @@ -14,12 +14,12 @@ public final class t implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f163c; + public final TextView f162c; public t(@NonNull View view, @NonNull View view2, @NonNull ImageView imageView, @NonNull TextView textView) { this.a = view; this.b = imageView; - this.f163c = textView; + this.f162c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/t0.java b/app/src/main/java/c/a/i/t0.java index 34e99d368e..73d72a1dd0 100644 --- a/app/src/main/java/c/a/i/t0.java +++ b/app/src/main/java/c/a/i/t0.java @@ -21,7 +21,7 @@ public final class t0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final CardView f164c; + public final CardView f163c; @NonNull public final TextView d; @NonNull @@ -32,7 +32,7 @@ public final class t0 implements ViewBinding { public t0(@NonNull CardView cardView, @NonNull ImageView imageView, @NonNull CardView cardView2, @NonNull TextView textView, @NonNull TextInputLayout textInputLayout, @NonNull RecyclerView recyclerView, @NonNull TextView textView2) { this.a = cardView; this.b = imageView; - this.f164c = cardView2; + this.f163c = cardView2; this.d = textView; this.e = textInputLayout; this.f = recyclerView; diff --git a/app/src/main/java/c/a/i/t2.java b/app/src/main/java/c/a/i/t2.java index 6a537a6eac..a0de1a79da 100644 --- a/app/src/main/java/c/a/i/t2.java +++ b/app/src/main/java/c/a/i/t2.java @@ -15,14 +15,14 @@ public final class t2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final SimpleDraweeView f165c; + public final SimpleDraweeView f164c; @NonNull public final TextView d; public t2(@NonNull CutoutView cutoutView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull TextView textView) { this.a = cutoutView; this.b = simpleDraweeView; - this.f165c = simpleDraweeView2; + this.f164c = simpleDraweeView2; this.d = textView; } diff --git a/app/src/main/java/c/a/i/t3.java b/app/src/main/java/c/a/i/t3.java index 0eb6053782..68aa0a1a53 100644 --- a/app/src/main/java/c/a/i/t3.java +++ b/app/src/main/java/c/a/i/t3.java @@ -1,29 +1,16 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.appcompat.widget.LinearLayoutCompat; import androidx.viewbinding.ViewBinding; -/* compiled from: ViewSettingsPremiumGuildNoGuildsBinding */ +/* compiled from: ViewSimpleSpinnerDropdownItemBinding */ public final class t3 implements ViewBinding { @NonNull - public final LinearLayoutCompat a; - @NonNull - public final ImageView b; - @NonNull + public final TextView a; - /* renamed from: c reason: collision with root package name */ - public final TextView f166c; - @NonNull - public final TextView d; - - public t3(@NonNull LinearLayoutCompat linearLayoutCompat, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = linearLayoutCompat; - this.b = imageView; - this.f166c = textView; - this.d = textView2; + public t3(@NonNull TextView textView) { + this.a = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/t4.java b/app/src/main/java/c/a/i/t4.java index c95c2bf223..f10e52c0e6 100644 --- a/app/src/main/java/c/a/i/t4.java +++ b/app/src/main/java/c/a/i/t4.java @@ -1,21 +1,35 @@ 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; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetChatInputPermReqFilesBinding */ +import com.discord.views.sticker.StickerView; +/* compiled from: WidgetChatInputStickerSuggestionsBinding */ public final class t4 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final TextView b; + public final StickerView b; + @NonNull - public t4(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView) { + /* renamed from: c reason: collision with root package name */ + public final StickerView f165c; + @NonNull + public final StickerView d; + @NonNull + public final StickerView e; + @NonNull + public final ImageView f; + + public t4(@NonNull LinearLayout linearLayout, @NonNull StickerView stickerView, @NonNull StickerView stickerView2, @NonNull StickerView stickerView3, @NonNull StickerView stickerView4, @NonNull ImageView imageView) { this.a = linearLayout; - this.b = textView; + this.b = stickerView; + this.f165c = stickerView2; + this.d = stickerView3; + this.e = stickerView4; + this.f = imageView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/t5.java b/app/src/main/java/c/a/i/t5.java index 573468cd54..c798e0a389 100644 --- a/app/src/main/java/c/a/i/t5.java +++ b/app/src/main/java/c/a/i/t5.java @@ -5,25 +5,16 @@ import android.widget.LinearLayout; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.google.android.material.button.MaterialButton; -import com.google.android.material.switchmaterial.SwitchMaterial; -/* compiled from: WidgetRemoteAuthPendingLoginBinding */ +/* compiled from: WidgetRemoteAuthSuccessBinding */ public final class t5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull public final MaterialButton b; - @NonNull - /* renamed from: c reason: collision with root package name */ - public final MaterialButton f167c; - @NonNull - public final SwitchMaterial d; - - public t5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull SwitchMaterial switchMaterial) { + public t5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton) { this.a = linearLayout; this.b = materialButton; - this.f167c = materialButton2; - this.d = switchMaterial; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/u.java b/app/src/main/java/c/a/i/u.java index 9f3e5c736c..e31baaded3 100644 --- a/app/src/main/java/c/a/i/u.java +++ b/app/src/main/java/c/a/i/u.java @@ -16,7 +16,7 @@ public final class u implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f168c; + public final TextView f166c; @NonNull public final SimpleDraweeView d; @NonNull @@ -25,7 +25,7 @@ public final class u implements ViewBinding { public u(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialButton materialButton2) { this.a = linearLayout; this.b = materialButton; - this.f168c = textView; + this.f166c = textView; this.d = simpleDraweeView; this.e = materialButton2; } diff --git a/app/src/main/java/c/a/i/u1.java b/app/src/main/java/c/a/i/u1.java index 0b1be4b97e..68d1d00a7a 100644 --- a/app/src/main/java/c/a/i/u1.java +++ b/app/src/main/java/c/a/i/u1.java @@ -16,7 +16,7 @@ public final class u1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f169c; + public final ImageView f167c; @NonNull public final TextView d; @NonNull @@ -25,7 +25,7 @@ public final class u1 implements ViewBinding { public u1(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout, @NonNull TextView textView3) { this.a = constraintLayout; this.b = textView; - this.f169c = imageView; + this.f167c = imageView; this.d = textView2; this.e = textView3; } diff --git a/app/src/main/java/c/a/i/u2.java b/app/src/main/java/c/a/i/u2.java index 95d6ee173c..81fac9141a 100644 --- a/app/src/main/java/c/a/i/u2.java +++ b/app/src/main/java/c/a/i/u2.java @@ -16,7 +16,7 @@ public final class u2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f170c; + public final TextView f168c; @NonNull public final Chip d; @NonNull @@ -27,7 +27,7 @@ public final class u2 implements ViewBinding { public u2(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull Chip chip, @NonNull Chip chip2, @NonNull ImageView imageView) { this.a = view; this.b = simpleDraweeView; - this.f170c = textView; + this.f168c = textView; this.d = chip; this.e = chip2; this.f = imageView; diff --git a/app/src/main/java/c/a/i/u3.java b/app/src/main/java/c/a/i/u3.java index ab97d80477..3eee4e8261 100644 --- a/app/src/main/java/c/a/i/u3.java +++ b/app/src/main/java/c/a/i/u3.java @@ -1,16 +1,42 @@ package c.a.i; import android.view.View; +import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -/* compiled from: ViewSimpleSpinnerDropdownItemBinding */ +import com.discord.views.VoiceUserView; +import com.discord.views.calls.SpeakerPulseView; +/* compiled from: ViewStageChannelSpeakerBinding */ public final class u3 implements ViewBinding { @NonNull - public final TextView a; + public final View a; + @NonNull + public final VoiceUserView b; + @NonNull - public u3(@NonNull TextView textView) { - this.a = textView; + /* renamed from: c reason: collision with root package name */ + public final ImageView f169c; + @NonNull + public final ImageView d; + @NonNull + public final ImageView e; + @NonNull + public final ImageView f; + @NonNull + public final TextView g; + @NonNull + public final SpeakerPulseView h; + + public u3(@NonNull View view, @NonNull VoiceUserView voiceUserView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull ImageView imageView3, @NonNull ImageView imageView4, @NonNull TextView textView, @NonNull SpeakerPulseView speakerPulseView) { + this.a = view; + this.b = voiceUserView; + this.f169c = imageView; + this.d = imageView2; + this.e = imageView3; + this.f = imageView4; + this.g = textView; + this.h = speakerPulseView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/u4.java b/app/src/main/java/c/a/i/u4.java index 6213c43d7d..eef392ec1e 100644 --- a/app/src/main/java/c/a/i/u4.java +++ b/app/src/main/java/c/a/i/u4.java @@ -1,35 +1,17 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; import android.widget.LinearLayout; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.views.sticker.StickerView; -/* compiled from: WidgetChatInputStickerSuggestionsBinding */ +import com.discord.utilities.view.text.LinkifiedTextView; +/* compiled from: WidgetChatListAdapterItemEmbedFieldBinding */ public final class u4 implements ViewBinding { @NonNull public final LinearLayout a; - @NonNull - public final StickerView b; - @NonNull - /* renamed from: c reason: collision with root package name */ - public final StickerView f171c; - @NonNull - public final StickerView d; - @NonNull - public final StickerView e; - @NonNull - public final ImageView f; - - public u4(@NonNull LinearLayout linearLayout, @NonNull StickerView stickerView, @NonNull StickerView stickerView2, @NonNull StickerView stickerView3, @NonNull StickerView stickerView4, @NonNull ImageView imageView) { + public u4(@NonNull LinearLayout linearLayout, @NonNull LinkifiedTextView linkifiedTextView, @NonNull LinkifiedTextView linkifiedTextView2) { this.a = linearLayout; - this.b = stickerView; - this.f171c = stickerView2; - this.d = stickerView3; - this.e = stickerView4; - this.f = imageView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/u5.java b/app/src/main/java/c/a/i/u5.java index b7e4990475..e85937bf0a 100644 --- a/app/src/main/java/c/a/i/u5.java +++ b/app/src/main/java/c/a/i/u5.java @@ -2,19 +2,28 @@ package c.a.i; import android.view.View; import android.widget.LinearLayout; +import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetRemoteAuthSuccessBinding */ +/* compiled from: WidgetServerSettingsConfirmDisableIntegrationBinding */ public final class u5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final MaterialButton b; + public final TextView b; + @NonNull - public u5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton) { + /* renamed from: c reason: collision with root package name */ + public final MaterialButton f170c; + @NonNull + public final MaterialButton d; + + public u5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2) { this.a = linearLayout; - this.b = materialButton; + this.b = textView; + this.f170c = materialButton; + this.d = materialButton2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/v.java b/app/src/main/java/c/a/i/v.java index 595cd53107..3388316ba6 100644 --- a/app/src/main/java/c/a/i/v.java +++ b/app/src/main/java/c/a/i/v.java @@ -17,7 +17,7 @@ public final class v implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final SwitchMaterial f172c; + public final SwitchMaterial f171c; @NonNull public final RelativeLayout d; @NonNull @@ -36,7 +36,7 @@ public final class v implements ViewBinding { public v(@NonNull RelativeLayout relativeLayout, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull SwitchMaterial switchMaterial, @NonNull RelativeLayout relativeLayout2, @NonNull View view, @NonNull MaterialButton materialButton2, @NonNull RelativeLayout relativeLayout3, @NonNull MaterialButton materialButton3, @NonNull MaterialButton materialButton4, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = relativeLayout; this.b = materialButton; - this.f172c = switchMaterial; + this.f171c = switchMaterial; this.d = relativeLayout2; this.e = view; this.f = materialButton2; diff --git a/app/src/main/java/c/a/i/v0.java b/app/src/main/java/c/a/i/v0.java index 115fad241e..ae6ccff457 100644 --- a/app/src/main/java/c/a/i/v0.java +++ b/app/src/main/java/c/a/i/v0.java @@ -16,7 +16,7 @@ public final class v0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f173c; + public final TextView f172c; @NonNull public final ImageView d; @NonNull @@ -29,7 +29,7 @@ public final class v0 implements ViewBinding { public v0(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull ImageView imageView3, @NonNull ImageView imageView4) { this.a = linearLayout; this.b = materialButton; - this.f173c = textView; + this.f172c = textView; this.d = imageView; this.e = imageView2; this.f = imageView3; diff --git a/app/src/main/java/c/a/i/v1.java b/app/src/main/java/c/a/i/v1.java index a67e67ef25..819ccbfa5d 100644 --- a/app/src/main/java/c/a/i/v1.java +++ b/app/src/main/java/c/a/i/v1.java @@ -17,7 +17,7 @@ public final class v1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f174c; + public final ImageView f173c; @NonNull public final ImageView d; @NonNull @@ -34,7 +34,7 @@ public final class v1 implements ViewBinding { public v1(@NonNull FrameLayout frameLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull ImageView imageView3, @NonNull TextView textView2, @NonNull MaterialButton materialButton, @NonNull ProgressBar progressBar, @NonNull MaterialButton materialButton2) { this.a = frameLayout; this.b = textView; - this.f174c = imageView; + this.f173c = imageView; this.d = imageView2; this.e = imageView3; this.f = textView2; diff --git a/app/src/main/java/c/a/i/v2.java b/app/src/main/java/c/a/i/v2.java index 17ef3880fb..a98e9c3d90 100644 --- a/app/src/main/java/c/a/i/v2.java +++ b/app/src/main/java/c/a/i/v2.java @@ -18,7 +18,7 @@ public final class v2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f175c; + public final ImageView f174c; @NonNull public final ImageView d; @NonNull @@ -35,7 +35,7 @@ public final class v2 implements ViewBinding { public v2(@NonNull ConstraintLayout constraintLayout, @NonNull ProgressBar progressBar, @NonNull FrameLayout frameLayout, @NonNull ImageView imageView, @NonNull LinearLayout linearLayout, @NonNull ImageView imageView2, @NonNull TextView textView, @NonNull LinearLayout linearLayout2, @NonNull ImageView imageView3, @NonNull TextView textView2, @NonNull LinearLayout linearLayout3, @NonNull ImageView imageView4, @NonNull TextView textView3) { this.a = constraintLayout; this.b = progressBar; - this.f175c = imageView; + this.f174c = imageView; this.d = imageView2; this.e = textView; this.f = imageView3; diff --git a/app/src/main/java/c/a/i/v3.java b/app/src/main/java/c/a/i/v3.java index 23b33b5a6b..1ec37ea641 100644 --- a/app/src/main/java/c/a/i/v3.java +++ b/app/src/main/java/c/a/i/v3.java @@ -1,42 +1,26 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.discord.views.VoiceUserView; -import com.discord.views.calls.SpeakerPulseView; -/* compiled from: ViewStageChannelSpeakerBinding */ +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: ViewStageChannelVisitCommunityBinding */ public final class v3 implements ViewBinding { @NonNull - public final View a; + public final ConstraintLayout a; @NonNull - public final VoiceUserView b; + public final SimpleDraweeView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f176c; - @NonNull - public final ImageView d; - @NonNull - public final ImageView e; - @NonNull - public final ImageView f; - @NonNull - public final TextView g; - @NonNull - public final SpeakerPulseView h; + public final TextView f175c; - public v3(@NonNull View view, @NonNull VoiceUserView voiceUserView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull ImageView imageView3, @NonNull ImageView imageView4, @NonNull TextView textView, @NonNull SpeakerPulseView speakerPulseView) { - this.a = view; - this.b = voiceUserView; - this.f176c = imageView; - this.d = imageView2; - this.e = imageView3; - this.f = imageView4; - this.g = textView; - this.h = speakerPulseView; + public v3(@NonNull ConstraintLayout constraintLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2) { + this.a = constraintLayout; + this.b = simpleDraweeView; + this.f175c = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/v4.java b/app/src/main/java/c/a/i/v4.java index 77940c7faf..0e90c4cfcd 100644 --- a/app/src/main/java/c/a/i/v4.java +++ b/app/src/main/java/c/a/i/v4.java @@ -1,17 +1,35 @@ package c.a.i; import android.view.View; -import android.widget.LinearLayout; +import android.widget.ImageView; +import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; +import androidx.constraintlayout.widget.Guideline; import androidx.viewbinding.ViewBinding; import com.discord.utilities.view.text.LinkifiedTextView; -/* compiled from: WidgetChatListAdapterItemEmbedFieldBinding */ +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: WidgetChatListAdapterItemSingleLineMessagePreviewBinding */ public final class v4 implements ViewBinding { @NonNull - public final LinearLayout a; + public final ConstraintLayout a; + @NonNull + public final ImageView b; + @NonNull - public v4(@NonNull LinearLayout linearLayout, @NonNull LinkifiedTextView linkifiedTextView, @NonNull LinkifiedTextView linkifiedTextView2) { - this.a = linearLayout; + /* renamed from: c reason: collision with root package name */ + public final LinkifiedTextView f176c; + @NonNull + public final SimpleDraweeView d; + @NonNull + public final TextView e; + + public v4(@NonNull ConstraintLayout constraintLayout, @NonNull ImageView imageView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull Guideline guideline, @NonNull Guideline guideline2, @NonNull Guideline guideline3) { + this.a = constraintLayout; + this.b = imageView; + this.f176c = linkifiedTextView; + this.d = simpleDraweeView; + this.e = textView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/v5.java b/app/src/main/java/c/a/i/v5.java index 6a0cd278a3..f49f06dedd 100644 --- a/app/src/main/java/c/a/i/v5.java +++ b/app/src/main/java/c/a/i/v5.java @@ -5,8 +5,7 @@ import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetServerSettingsConfirmDisableIntegrationBinding */ +/* compiled from: WidgetServerSettingsOverviewSectionAfkChannelBinding */ public final class v5 implements ViewBinding { @NonNull public final LinearLayout a; @@ -15,15 +14,18 @@ public final class v5 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f177c; + public final LinearLayout f177c; @NonNull - public final MaterialButton d; + public final TextView d; + @NonNull + public final LinearLayout e; - public v5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2) { + public v5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinearLayout linearLayout2, @NonNull TextView textView2, @NonNull LinearLayout linearLayout3) { this.a = linearLayout; this.b = textView; - this.f177c = materialButton; - this.d = materialButton2; + this.f177c = linearLayout2; + this.d = textView2; + this.e = linearLayout3; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/w3.java b/app/src/main/java/c/a/i/w3.java index 3dc0812c8d..cf180e39bc 100644 --- a/app/src/main/java/c/a/i/w3.java +++ b/app/src/main/java/c/a/i/w3.java @@ -1,26 +1,45 @@ package c.a.i; import android.view.View; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.RelativeLayout; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: ViewStageChannelVisitCommunityBinding */ +import androidx.viewpager2.widget.ViewPager2; +import com.discord.views.LoadingButton; +import com.google.android.material.button.MaterialButton; +/* compiled from: ViewStepsBinding */ public final class w3 implements ViewBinding { @NonNull - public final ConstraintLayout a; + public final RelativeLayout a; @NonNull - public final SimpleDraweeView b; + public final LinearLayout b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f181c; + @NonNull + public final ImageView d; + @NonNull + public final LoadingButton e; + @NonNull + public final MaterialButton f; + @NonNull + public final TextView g; + @NonNull + public final ViewPager2 h; - public w3(@NonNull ConstraintLayout constraintLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = constraintLayout; - this.b = simpleDraweeView; + public w3(@NonNull RelativeLayout relativeLayout, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull LoadingButton loadingButton, @NonNull MaterialButton materialButton, @NonNull TextView textView2, @NonNull ViewPager2 viewPager2) { + this.a = relativeLayout; + this.b = linearLayout; this.f181c = textView; + this.d = imageView; + this.e = loadingButton; + this.f = materialButton; + this.g = textView2; + this.h = viewPager2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/w4.java b/app/src/main/java/c/a/i/w4.java index ba436210ac..cde71bd3ae 100644 --- a/app/src/main/java/c/a/i/w4.java +++ b/app/src/main/java/c/a/i/w4.java @@ -5,31 +5,48 @@ import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.constraintlayout.widget.ConstraintLayout; -import androidx.constraintlayout.widget.Guideline; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: WidgetChatListAdapterItemSingleLineMessagePreviewBinding */ +import com.discord.R; +import com.discord.widgets.botuikit.views.ActionRowComponentView; +import com.google.android.flexbox.FlexboxLayout; +/* compiled from: WidgetChatListBotUiActionRowComponentBinding */ public final class w4 implements ViewBinding { @NonNull - public final ConstraintLayout a; + public final ActionRowComponentView a; @NonNull - public final ImageView b; + public final FlexboxLayout b; @NonNull /* renamed from: c reason: collision with root package name */ - public final LinkifiedTextView f182c; - @NonNull - public final SimpleDraweeView d; - @NonNull - public final TextView e; + public final k2 f182c; - public w4(@NonNull ConstraintLayout constraintLayout, @NonNull ImageView imageView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull Guideline guideline, @NonNull Guideline guideline2, @NonNull Guideline guideline3) { - this.a = constraintLayout; - this.b = imageView; - this.f182c = linkifiedTextView; - this.d = simpleDraweeView; - this.e = textView; + public w4(@NonNull ActionRowComponentView actionRowComponentView, @NonNull FlexboxLayout flexboxLayout, @NonNull k2 k2Var) { + this.a = actionRowComponentView; + this.b = flexboxLayout; + this.f182c = k2Var; + } + + @NonNull + public static w4 a(@NonNull View view) { + int i = R.id.action_row_component_view_group; + FlexboxLayout flexboxLayout = (FlexboxLayout) view.findViewById(R.id.action_row_component_view_group); + if (flexboxLayout != null) { + i = R.id.action_row_component_view_group_error_row; + View findViewById = view.findViewById(R.id.action_row_component_view_group_error_row); + if (findViewById != null) { + int i2 = R.id.view_interaction_failed_label_icon; + ImageView imageView = (ImageView) findViewById.findViewById(R.id.view_interaction_failed_label_icon); + if (imageView != null) { + i2 = R.id.view_interaction_failed_label_message; + TextView textView = (TextView) findViewById.findViewById(R.id.view_interaction_failed_label_message); + if (textView != null) { + return new w4((ActionRowComponentView) view, flexboxLayout, new k2((ConstraintLayout) findViewById, imageView, textView)); + } + } + throw new NullPointerException("Missing required view with ID: ".concat(findViewById.getResources().getResourceName(i2))); + } + } + throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/w5.java b/app/src/main/java/c/a/i/w5.java index 9fabc23520..25734d5ad1 100644 --- a/app/src/main/java/c/a/i/w5.java +++ b/app/src/main/java/c/a/i/w5.java @@ -2,30 +2,24 @@ package c.a.i; import android.view.View; import android.widget.LinearLayout; -import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -/* compiled from: WidgetServerSettingsOverviewSectionAfkChannelBinding */ +import com.google.android.material.button.MaterialButton; +/* compiled from: WidgetSettingsPrivacyDefaultsBinding */ public final class w5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final TextView b; + public final MaterialButton b; @NonNull /* renamed from: c reason: collision with root package name */ - public final LinearLayout f183c; - @NonNull - public final TextView d; - @NonNull - public final LinearLayout e; + public final MaterialButton f183c; - public w5(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinearLayout linearLayout2, @NonNull TextView textView2, @NonNull LinearLayout linearLayout3) { + public w5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2) { this.a = linearLayout; - this.b = textView; - this.f183c = linearLayout2; - this.d = textView2; - this.e = linearLayout3; + this.b = materialButton; + this.f183c = materialButton2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/x3.java b/app/src/main/java/c/a/i/x3.java index 4499ef9fa7..3d0271db41 100644 --- a/app/src/main/java/c/a/i/x3.java +++ b/app/src/main/java/c/a/i/x3.java @@ -1,45 +1,29 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; -import android.widget.LinearLayout; -import android.widget.RelativeLayout; import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import androidx.viewpager2.widget.ViewPager2; -import com.discord.views.LoadingButton; -import com.google.android.material.button.MaterialButton; -/* compiled from: ViewStepsBinding */ +import com.facebook.drawee.view.SimpleDraweeView; +/* compiled from: ViewStreamPreviewBinding */ public final class x3 implements ViewBinding { @NonNull - public final RelativeLayout a; + public final ConstraintLayout a; @NonNull - public final LinearLayout b; + public final SimpleDraweeView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f187c; @NonNull - public final ImageView d; - @NonNull - public final LoadingButton e; - @NonNull - public final MaterialButton f; - @NonNull - public final TextView g; - @NonNull - public final ViewPager2 h; + public final TextView d; - public x3(@NonNull RelativeLayout relativeLayout, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull LoadingButton loadingButton, @NonNull MaterialButton materialButton, @NonNull TextView textView2, @NonNull ViewPager2 viewPager2) { - this.a = relativeLayout; - this.b = linearLayout; + public x3(@NonNull ConstraintLayout constraintLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2) { + this.a = constraintLayout; + this.b = simpleDraweeView; this.f187c = textView; - this.d = imageView; - this.e = loadingButton; - this.f = materialButton; - this.g = textView2; - this.h = viewPager2; + this.d = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/x4.java b/app/src/main/java/c/a/i/x4.java index a7b199a40d..2ade604a0e 100644 --- a/app/src/main/java/c/a/i/x4.java +++ b/app/src/main/java/c/a/i/x4.java @@ -2,48 +2,61 @@ package c.a.i; import android.view.View; import android.widget.ImageView; -import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; import com.discord.R; -import com.discord.widgets.botuikit.views.ActionRowComponentView; +import com.discord.views.typing.TypingDots; +import com.discord.widgets.botuikit.views.select.SelectComponentView; +import com.facebook.drawee.view.SimpleDraweeView; import com.google.android.flexbox.FlexboxLayout; -/* compiled from: WidgetChatListBotUiActionRowComponentBinding */ +import com.google.android.material.textview.MaterialTextView; +/* compiled from: WidgetChatListBotUiSelectComponentBinding */ public final class x4 implements ViewBinding { @NonNull - public final ActionRowComponentView a; + public final SelectComponentView a; @NonNull - public final FlexboxLayout b; + public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final k2 f188c; + public final TypingDots f188c; + @NonNull + public final SimpleDraweeView d; + @NonNull + public final MaterialTextView e; + @NonNull + public final FlexboxLayout f; - public x4(@NonNull ActionRowComponentView actionRowComponentView, @NonNull FlexboxLayout flexboxLayout, @NonNull k2 k2Var) { - this.a = actionRowComponentView; - this.b = flexboxLayout; - this.f188c = k2Var; + public x4(@NonNull SelectComponentView selectComponentView, @NonNull ImageView imageView, @NonNull TypingDots typingDots, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialTextView materialTextView, @NonNull FlexboxLayout flexboxLayout) { + this.a = selectComponentView; + this.b = imageView; + this.f188c = typingDots; + this.d = simpleDraweeView; + this.e = materialTextView; + this.f = flexboxLayout; } @NonNull public static x4 a(@NonNull View view) { - int i = R.id.action_row_component_view_group; - FlexboxLayout flexboxLayout = (FlexboxLayout) view.findViewById(R.id.action_row_component_view_group); - if (flexboxLayout != null) { - i = R.id.action_row_component_view_group_error_row; - View findViewById = view.findViewById(R.id.action_row_component_view_group_error_row); - if (findViewById != null) { - int i2 = R.id.view_interaction_failed_label_icon; - ImageView imageView = (ImageView) findViewById.findViewById(R.id.view_interaction_failed_label_icon); - if (imageView != null) { - i2 = R.id.view_interaction_failed_label_message; - TextView textView = (TextView) findViewById.findViewById(R.id.view_interaction_failed_label_message); - if (textView != null) { - return new x4((ActionRowComponentView) view, flexboxLayout, new k2((ConstraintLayout) findViewById, imageView, textView)); + int i = R.id.select_component_chevron; + ImageView imageView = (ImageView) view.findViewById(R.id.select_component_chevron); + if (imageView != null) { + i = R.id.select_component_loading; + TypingDots typingDots = (TypingDots) view.findViewById(R.id.select_component_loading); + if (typingDots != null) { + i = R.id.select_component_selection_icon; + SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.select_component_selection_icon); + if (simpleDraweeView != null) { + i = R.id.select_component_selection_text; + MaterialTextView materialTextView = (MaterialTextView) view.findViewById(R.id.select_component_selection_text); + if (materialTextView != null) { + i = R.id.select_component_selections_root; + FlexboxLayout flexboxLayout = (FlexboxLayout) view.findViewById(R.id.select_component_selections_root); + if (flexboxLayout != null) { + return new x4((SelectComponentView) view, imageView, typingDots, simpleDraweeView, materialTextView, flexboxLayout); + } } } - throw new NullPointerException("Missing required view with ID: ".concat(findViewById.getResources().getResourceName(i2))); } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); diff --git a/app/src/main/java/c/a/i/x5.java b/app/src/main/java/c/a/i/x5.java index 3da249fdf0..26036a558a 100644 --- a/app/src/main/java/c/a/i/x5.java +++ b/app/src/main/java/c/a/i/x5.java @@ -1,25 +1,48 @@ package c.a.i; import android.view.View; +import android.widget.FrameLayout; import android.widget.LinearLayout; +import android.widget.Space; +import android.widget.TextView; import androidx.annotation.NonNull; +import androidx.constraintlayout.widget.Barrier; import androidx.viewbinding.ViewBinding; +import com.facebook.drawee.view.SimpleDraweeView; import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetSettingsPrivacyDefaultsBinding */ +/* compiled from: WidgetStageChannelRichPresenceBinding */ public final class x5 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull - public final MaterialButton b; + public final LinearLayout b; @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialButton f189c; + public final TextView f189c; + @NonNull + public final TextView d; + @NonNull + public final SimpleDraweeView e; + @NonNull + public final TextView f; + @NonNull + public final MaterialButton g; + @NonNull + public final TextView h; + @NonNull + public final TextView i; - public x5(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2) { + public x5(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView3, @NonNull FrameLayout frameLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView4, @NonNull TextView textView5) { this.a = linearLayout; - this.b = materialButton; - this.f189c = materialButton2; + this.b = linearLayout2; + this.f189c = textView; + this.d = textView2; + this.e = simpleDraweeView; + this.f = textView3; + this.g = materialButton; + this.h = textView4; + this.i = textView5; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/y3.java b/app/src/main/java/c/a/i/y3.java index 41bbd3c97f..54e372e1fa 100644 --- a/app/src/main/java/c/a/i/y3.java +++ b/app/src/main/java/c/a/i/y3.java @@ -1,29 +1,46 @@ package c.a.i; import android.view.View; +import android.widget.FrameLayout; +import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: ViewStreamPreviewBinding */ +import com.discord.utilities.view.text.LinkifiedTextView; +import com.discord.views.CheckableImageView; +/* compiled from: ViewTernaryCheckboxBinding */ public final class y3 implements ViewBinding { @NonNull - public final ConstraintLayout a; + public final LinearLayout a; @NonNull - public final SimpleDraweeView b; + public final FrameLayout b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f194c; + public final View f194c; @NonNull - public final TextView d; + public final View d; + @NonNull + public final TextView e; + @NonNull + public final LinkifiedTextView f; + @NonNull + public final CheckableImageView g; + @NonNull + public final CheckableImageView h; + @NonNull + public final CheckableImageView i; - public y3(@NonNull ConstraintLayout constraintLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2) { - this.a = constraintLayout; - this.b = simpleDraweeView; - this.f194c = textView; - this.d = textView2; + public y3(@NonNull LinearLayout linearLayout, @NonNull FrameLayout frameLayout, @NonNull LinearLayout linearLayout2, @NonNull View view, @NonNull View view2, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull CheckableImageView checkableImageView, @NonNull CheckableImageView checkableImageView2, @NonNull CheckableImageView checkableImageView3) { + this.a = linearLayout; + this.b = frameLayout; + this.f194c = view; + this.d = view2; + this.e = textView; + this.f = linkifiedTextView; + this.g = checkableImageView; + this.h = checkableImageView2; + this.i = checkableImageView3; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/y4.java b/app/src/main/java/c/a/i/y4.java index 39e070d959..365640e12d 100644 --- a/app/src/main/java/c/a/i/y4.java +++ b/app/src/main/java/c/a/i/y4.java @@ -1,65 +1,16 @@ package c.a.i; import android.view.View; -import android.widget.ImageView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.R; -import com.discord.views.typing.TypingDots; -import com.discord.widgets.botuikit.views.select.SelectComponentView; -import com.facebook.drawee.view.SimpleDraweeView; -import com.google.android.flexbox.FlexboxLayout; import com.google.android.material.textview.MaterialTextView; -/* compiled from: WidgetChatListBotUiSelectComponentBinding */ +/* compiled from: WidgetChatListBotUiSelectComponentPillBinding */ public final class y4 implements ViewBinding { @NonNull - public final SelectComponentView a; - @NonNull - public final ImageView b; - @NonNull + public final MaterialTextView a; - /* renamed from: c reason: collision with root package name */ - public final TypingDots f195c; - @NonNull - public final SimpleDraweeView d; - @NonNull - public final MaterialTextView e; - @NonNull - public final FlexboxLayout f; - - public y4(@NonNull SelectComponentView selectComponentView, @NonNull ImageView imageView, @NonNull TypingDots typingDots, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialTextView materialTextView, @NonNull FlexboxLayout flexboxLayout) { - this.a = selectComponentView; - this.b = imageView; - this.f195c = typingDots; - this.d = simpleDraweeView; - this.e = materialTextView; - this.f = flexboxLayout; - } - - @NonNull - public static y4 a(@NonNull View view) { - int i = R.id.select_component_chevron; - ImageView imageView = (ImageView) view.findViewById(R.id.select_component_chevron); - if (imageView != null) { - i = R.id.select_component_loading; - TypingDots typingDots = (TypingDots) view.findViewById(R.id.select_component_loading); - if (typingDots != null) { - i = R.id.select_component_selection_icon; - SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.select_component_selection_icon); - if (simpleDraweeView != null) { - i = R.id.select_component_selection_text; - MaterialTextView materialTextView = (MaterialTextView) view.findViewById(R.id.select_component_selection_text); - if (materialTextView != null) { - i = R.id.select_component_selections_root; - FlexboxLayout flexboxLayout = (FlexboxLayout) view.findViewById(R.id.select_component_selections_root); - if (flexboxLayout != null) { - return new y4((SelectComponentView) view, imageView, typingDots, simpleDraweeView, materialTextView, flexboxLayout); - } - } - } - } - } - throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); + public y4(@NonNull MaterialTextView materialTextView) { + this.a = materialTextView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/y5.java b/app/src/main/java/c/a/i/y5.java index f944090fa1..54f00b316a 100644 --- a/app/src/main/java/c/a/i/y5.java +++ b/app/src/main/java/c/a/i/y5.java @@ -1,25 +1,23 @@ package c.a.i; import android.view.View; -import android.widget.FrameLayout; import android.widget.LinearLayout; -import android.widget.Space; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.Barrier; +import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; +import com.discord.views.StreamPreviewView; import com.facebook.drawee.view.SimpleDraweeView; -import com.google.android.material.button.MaterialButton; -/* compiled from: WidgetStageChannelRichPresenceBinding */ +/* compiled from: WidgetStreamRichPresenceBinding */ public final class y5 implements ViewBinding { @NonNull - public final LinearLayout a; + public final ConstraintLayout a; @NonNull public final LinearLayout b; @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f196c; + public final TextView f195c; @NonNull public final TextView d; @NonNull @@ -27,22 +25,22 @@ public final class y5 implements ViewBinding { @NonNull public final TextView f; @NonNull - public final MaterialButton g; + public final TextView g; @NonNull public final TextView h; @NonNull - public final TextView i; + public final StreamPreviewView i; - public y5(@NonNull LinearLayout linearLayout, @NonNull Barrier barrier, @NonNull Space space, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView3, @NonNull FrameLayout frameLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView4, @NonNull TextView textView5) { - this.a = linearLayout; - this.b = linearLayout2; - this.f196c = textView; + public y5(@NonNull ConstraintLayout constraintLayout, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull StreamPreviewView streamPreviewView) { + this.a = constraintLayout; + this.b = linearLayout; + this.f195c = textView; this.d = textView2; this.e = simpleDraweeView; this.f = textView3; - this.g = materialButton; - this.h = textView4; - this.i = textView5; + this.g = textView4; + this.h = textView5; + this.i = streamPreviewView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/z.java b/app/src/main/java/c/a/i/z.java index 48b12578db..4368c75050 100644 --- a/app/src/main/java/c/a/i/z.java +++ b/app/src/main/java/c/a/i/z.java @@ -17,14 +17,14 @@ public final class z implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextInputLayout f197c; + public final TextInputLayout f196c; @NonNull public final LoadingButton d; public z(@NonNull ConstraintLayout constraintLayout, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextInputLayout textInputLayout, @NonNull LoadingButton loadingButton, @NonNull TextView textView) { this.a = constraintLayout; this.b = linkifiedTextView; - this.f197c = textInputLayout; + this.f196c = textInputLayout; this.d = loadingButton; } diff --git a/app/src/main/java/c/a/i/z0.java b/app/src/main/java/c/a/i/z0.java index 0c9fda46b3..fc36c51888 100644 --- a/app/src/main/java/c/a/i/z0.java +++ b/app/src/main/java/c/a/i/z0.java @@ -18,7 +18,7 @@ public final class z0 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final LoadingButton f198c; + public final LoadingButton f197c; @NonNull public final TextView d; @NonNull @@ -33,7 +33,7 @@ public final class z0 implements ViewBinding { public z0(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull LoadingButton loadingButton, @NonNull TextView textView2, @NonNull AppViewFlipper appViewFlipper, @NonNull TextView textView3, @NonNull ImageView imageView, @NonNull MaterialButton materialButton) { this.a = linearLayout; this.b = textView; - this.f198c = loadingButton; + this.f197c = loadingButton; this.d = textView2; this.e = appViewFlipper; this.f = textView3; diff --git a/app/src/main/java/c/a/i/z1.java b/app/src/main/java/c/a/i/z1.java index 4c9b343bd6..67f5e94be2 100644 --- a/app/src/main/java/c/a/i/z1.java +++ b/app/src/main/java/c/a/i/z1.java @@ -15,14 +15,14 @@ public final class z1 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final ImageView f199c; + public final ImageView f198c; @NonNull public final TextView d; public z1(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull TextView textView2) { this.a = constraintLayout; this.b = textView; - this.f199c = imageView2; + this.f198c = imageView2; this.d = textView2; } diff --git a/app/src/main/java/c/a/i/z2.java b/app/src/main/java/c/a/i/z2.java index 0d1cc47897..c04ece0a5a 100644 --- a/app/src/main/java/c/a/i/z2.java +++ b/app/src/main/java/c/a/i/z2.java @@ -15,14 +15,14 @@ public final class z2 implements ViewBinding { @NonNull /* renamed from: c reason: collision with root package name */ - public final TextView f200c; + public final TextView f199c; @NonNull public final TextView d; public z2(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull TextView textView2) { this.a = linearLayout; this.b = materialButton; - this.f200c = textView; + this.f199c = textView; this.d = textView2; } diff --git a/app/src/main/java/c/a/i/z3.java b/app/src/main/java/c/a/i/z3.java index c439ea1405..ab34d18d89 100644 --- a/app/src/main/java/c/a/i/z3.java +++ b/app/src/main/java/c/a/i/z3.java @@ -1,46 +1,32 @@ package c.a.i; import android.view.View; -import android.widget.FrameLayout; -import android.widget.LinearLayout; +import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.discord.utilities.view.text.LinkifiedTextView; -import com.discord.views.CheckableImageView; -/* compiled from: ViewTernaryCheckboxBinding */ +import com.discord.views.StatusView; +/* compiled from: ViewToolbarTitleBinding */ public final class z3 implements ViewBinding { @NonNull - public final LinearLayout a; + public final View a; @NonNull - public final FrameLayout b; + public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ - public final View f201c; + public final StatusView f200c; @NonNull - public final View d; + public final TextView d; @NonNull public final TextView e; - @NonNull - public final LinkifiedTextView f; - @NonNull - public final CheckableImageView g; - @NonNull - public final CheckableImageView h; - @NonNull - public final CheckableImageView i; - public z3(@NonNull LinearLayout linearLayout, @NonNull FrameLayout frameLayout, @NonNull LinearLayout linearLayout2, @NonNull View view, @NonNull View view2, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull CheckableImageView checkableImageView, @NonNull CheckableImageView checkableImageView2, @NonNull CheckableImageView checkableImageView3) { - this.a = linearLayout; - this.b = frameLayout; - this.f201c = view; - this.d = view2; - this.e = textView; - this.f = linkifiedTextView; - this.g = checkableImageView; - this.h = checkableImageView2; - this.i = checkableImageView3; + public z3(@NonNull View view, @NonNull ImageView imageView, @NonNull StatusView statusView, @NonNull TextView textView, @NonNull TextView textView2) { + this.a = view; + this.b = imageView; + this.f200c = statusView; + this.d = textView; + this.e = textView2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/z4.java b/app/src/main/java/c/a/i/z4.java index 801755449b..db4d1cfe68 100644 --- a/app/src/main/java/c/a/i/z4.java +++ b/app/src/main/java/c/a/i/z4.java @@ -1,16 +1,30 @@ package c.a.i; import android.view.View; +import android.widget.LinearLayout; +import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; -import com.google.android.material.textview.MaterialTextView; -/* compiled from: WidgetChatListBotUiSelectComponentPillBinding */ +import com.discord.utilities.view.text.LinkifiedTextView; +import com.discord.views.ChatActionItem; +/* compiled from: WidgetDirectoryChannelEmptyBinding */ public final class z4 implements ViewBinding { @NonNull - public final MaterialTextView a; + public final LinearLayout a; + @NonNull + public final TextView b; + @NonNull - public z4(@NonNull MaterialTextView materialTextView) { - this.a = materialTextView; + /* renamed from: c reason: collision with root package name */ + public final ChatActionItem f201c; + @NonNull + public final ChatActionItem d; + + public z4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull ChatActionItem chatActionItem, @NonNull ChatActionItem chatActionItem2) { + this.a = linearLayout; + this.b = textView; + this.f201c = chatActionItem; + this.d = chatActionItem2; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/i/z5.java b/app/src/main/java/c/a/i/z5.java index 7c10fd1d65..fddaf85c67 100644 --- a/app/src/main/java/c/a/i/z5.java +++ b/app/src/main/java/c/a/i/z5.java @@ -4,43 +4,26 @@ import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; -import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; -import com.discord.views.StreamPreviewView; -import com.facebook.drawee.view.SimpleDraweeView; -/* compiled from: WidgetStreamRichPresenceBinding */ +import com.discord.views.LoadingButton; +/* compiled from: WidgetUrgentMessageDialogBinding */ public final class z5 implements ViewBinding { @NonNull - public final ConstraintLayout a; + public final LinearLayout a; @NonNull - public final LinearLayout b; + public final LoadingButton b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f202c; @NonNull public final TextView d; - @NonNull - public final SimpleDraweeView e; - @NonNull - public final TextView f; - @NonNull - public final TextView g; - @NonNull - public final TextView h; - @NonNull - public final StreamPreviewView i; - public z5(@NonNull ConstraintLayout constraintLayout, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull StreamPreviewView streamPreviewView) { - this.a = constraintLayout; - this.b = linearLayout; + public z5(@NonNull LinearLayout linearLayout, @NonNull LoadingButton loadingButton, @NonNull TextView textView, @NonNull TextView textView2) { + this.a = linearLayout; + this.b = loadingButton; this.f202c = textView; this.d = textView2; - this.e = simpleDraweeView; - this.f = textView3; - this.g = textView4; - this.h = textView5; - this.i = streamPreviewView; } @Override // androidx.viewbinding.ViewBinding diff --git a/app/src/main/java/c/a/k/b.java b/app/src/main/java/c/a/k/b.java index d949b0d322..9f70b2f339 100644 --- a/app/src/main/java/c/a/k/b.java +++ b/app/src/main/java/c/a/k/b.java @@ -9,7 +9,6 @@ import android.view.View; import android.widget.TextView; import androidx.annotation.StringRes; import androidx.fragment.app.Fragment; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.i18n.RenderContext; import com.discord.simpleast.core.parser.Parser; import d0.z.d.m; @@ -219,7 +218,7 @@ public final class b { m.checkNotNullParameter(objArr, "formatArgs"); m.checkNotNullParameter(renderContext, "renderContext"); Map map = renderContext.a; - List list = renderContext.f2095c; + List list = renderContext.f2098c; boolean z2 = true; if (!map.isEmpty()) { charSequence = a.replace(charSequence, new f(map)); @@ -230,7 +229,7 @@ public final class b { if (!z2) { String replace = a.replace(charSequence, "%s"); Object[] copyOf = Arrays.copyOf(objArr, objArr.length); - charSequence = c.d.b.a.a.M(copyOf, copyOf.length, replace, "java.lang.String.format(this, *args)"); + charSequence = c.d.b.a.a.L(copyOf, copyOf.length, replace, "java.lang.String.format(this, *args)"); } } a aVar = a.d; @@ -260,7 +259,7 @@ public final class b { m.checkNotNullParameter(charSequence, "$this$i18nFormat"); m.checkNotNullParameter(objArr, "formatArgs"); m.checkNotNullParameter(function1, "initializer"); - return f(charSequence, objArr, AnimatableValueParser.s2(function1, Arrays.copyOf(objArr, objArr.length))); + return f(charSequence, objArr, c.c.a.a0.d.P1(function1, Arrays.copyOf(objArr, objArr.length))); } public static /* synthetic */ CharSequence h(Context context, int i, Object[] objArr, Function1 function1, int i2) { @@ -287,11 +286,11 @@ public final class b { m.checkNotNullParameter(textView, "$this$i18nSetText"); m.checkNotNullParameter(objArr, "formatArgs"); m.checkNotNullParameter(function1, "initializer"); - RenderContext s2 = AnimatableValueParser.s2(function1, Arrays.copyOf(objArr, objArr.length)); - textView.setMovementMethod(s2.g ? LinkMovementMethod.getInstance() : null); + RenderContext P1 = c.c.a.a0.d.P1(function1, Arrays.copyOf(objArr, objArr.length)); + textView.setMovementMethod(P1.g ? LinkMovementMethod.getInstance() : null); String string = textView.getContext().getString(i); m.checkNotNullExpressionValue(string, "context.getString(stringResId)"); - textView.setText(f(string, objArr, s2)); + textView.setText(f(string, objArr, P1)); } public static /* synthetic */ void n(TextView textView, int i, Object[] objArr, Function1 function1, int i2) { @@ -310,11 +309,11 @@ public final class b { textView.setMovementMethod(null); return; } - RenderContext s2 = AnimatableValueParser.s2(hVar, Arrays.copyOf(objArr, objArr.length)); - if (s2.g) { + RenderContext P1 = c.c.a.a0.d.P1(hVar, Arrays.copyOf(objArr, objArr.length)); + if (P1.g) { movementMethod = LinkMovementMethod.getInstance(); } textView.setMovementMethod(movementMethod); - textView.setText(f(charSequence, objArr, s2)); + textView.setText(f(charSequence, objArr, P1)); } } diff --git a/app/src/main/java/c/a/k/f/c.java b/app/src/main/java/c/a/k/f/c.java index 94f5dffd41..b83af5b79a 100644 --- a/app/src/main/java/c/a/k/f/c.java +++ b/app/src/main/java/c/a/k/f/c.java @@ -38,7 +38,7 @@ public final class c extends Node.a { spannableStringBuilder.setSpan(obj2, length, spannableStringBuilder.length(), 33); } } - Hook.a aVar2 = hook != null ? hook.f2094c : null; + Hook.a aVar2 = hook != null ? hook.f2097c : null; if (aVar2 != null) { aVar = aVar2; } else if (URLUtil.isValidUrl(this.a)) { diff --git a/app/src/main/java/c/a/k/g/c.java b/app/src/main/java/c/a/k/g/c.java index e1fd1d64fc..de133975f4 100644 --- a/app/src/main/java/c/a/k/g/c.java +++ b/app/src/main/java/c/a/k/g/c.java @@ -45,9 +45,9 @@ public final class c { } public String toString() { - StringBuilder P = a.P("ParseState(isEscaped="); - P.append(this.a); - P.append(", argumentIndex="); - return a.z(P, this.b, ")"); + StringBuilder O = a.O("ParseState(isEscaped="); + O.append(this.a); + O.append(", argumentIndex="); + return a.z(O, this.b, ")"); } } diff --git a/app/src/main/java/c/a/n/a.java b/app/src/main/java/c/a/n/a.java index c1bb4d33c9..e01fcdfa5b 100644 --- a/app/src/main/java/c/a/n/a.java +++ b/app/src/main/java/c/a/n/a.java @@ -43,10 +43,10 @@ public final class a implements View.OnTouchListener { point2.x = point.x; point2.y = point.y; String simpleName = overlayBubbleWrap.getClass().getSimpleName(); - StringBuilder P = c.d.b.a.a.P("Moved to anchor ["); - P.append(overlayBubbleWrap.u); - P.append(']'); - Log.d(simpleName, P.toString()); + StringBuilder O = c.d.b.a.a.O("Moved to anchor ["); + O.append(overlayBubbleWrap.u); + O.append(']'); + Log.d(simpleName, O.toString()); } overlayManager.c(null); Animator loadAnimator = AnimatorInflater.loadAnimator(overlayBubbleWrap.getContext(), R.a.fade_out); diff --git a/app/src/main/java/c/a/p/e.java b/app/src/main/java/c/a/p/e.java index bdaa5dc51f..2b5434190e 100644 --- a/app/src/main/java/c/a/p/e.java +++ b/app/src/main/java/c/a/p/e.java @@ -31,7 +31,7 @@ public final class e implements Action1 { if (subscription != null) { subscription.unsubscribe(); } - appMediaPlayer.b = Observable.E(500, 500, TimeUnit.MILLISECONDS, appMediaPlayer.i).K().I(a.a()).V(new g(appMediaPlayer), new h(appMediaPlayer)); + appMediaPlayer.b = Observable.E(500, 500, TimeUnit.MILLISECONDS, appMediaPlayer.i).K().I(a.a()).W(new g(appMediaPlayer), new h(appMediaPlayer)); } else if (i == 4) { PublishSubject publishSubject3 = this.i.a; publishSubject3.j.onNext(AppMediaPlayer.Event.e.a); diff --git a/app/src/main/java/c/a/p/i.java b/app/src/main/java/c/a/p/i.java index 1f2e143c94..5176c494de 100644 --- a/app/src/main/java/c/a/p/i.java +++ b/app/src/main/java/c/a/p/i.java @@ -3,11 +3,11 @@ package c.a.p; import android.content.Context; import android.content.pm.PackageManager; import android.os.Build; +import c.c.a.a0.d; import c.i.a.c.h2.p; import c.i.a.c.i2.f0; import c.i.a.c.l0; import c.i.a.c.p1; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.BuildConfig; import com.discord.app.AppLog; import com.discord.player.AppMediaPlayer; @@ -33,19 +33,19 @@ public final class i { } j jVar = new j(new p(context, BuildConfig.APPLICATION_ID + AutocompleteViewModel.COMMAND_DISCOVER_TOKEN + str + " (Linux;Android " + Build.VERSION.RELEASE + ") ExoPlayerLib/2.13.3"), 104857600); k kVar = new k(); - AnimatableValueParser.D(true); + d.D(true); l0.j(GuildConstantsKt.MAX_GUILD_MEMBERS_NOTIFY_ALL_MESSAGES, 0, "bufferForPlaybackMs", "0"); l0.j(5000, 0, "bufferForPlaybackAfterRebufferMs", "0"); l0.j(10000, GuildConstantsKt.MAX_GUILD_MEMBERS_NOTIFY_ALL_MESSAGES, "minBufferMs", "bufferForPlaybackMs"); l0.j(10000, 5000, "minBufferMs", "bufferForPlaybackAfterRebufferMs"); l0.j(30000, 10000, "maxBufferMs", "minBufferMs"); - AnimatableValueParser.D(true); + d.D(true); l0 l0Var = new l0(new c.i.a.c.h2.m(true, 65536), 10000, 30000, GuildConstantsKt.MAX_GUILD_MEMBERS_NOTIFY_ALL_MESSAGES, 5000, -1, false, 0, false); m.checkNotNullExpressionValue(l0Var, "DefaultLoadControl.Build…reateDefaultLoadControl()"); p1.b bVar = new p1.b(context); - AnimatableValueParser.D(!bVar.q); + d.D(!bVar.q); bVar.f = l0Var; - AnimatableValueParser.D(!bVar.q); + d.D(!bVar.q); bVar.q = true; p1 p1Var = new p1(bVar); m.checkNotNullExpressionValue(p1Var, "SimpleExoPlayer\n …ntrol)\n .build()"); diff --git a/app/src/main/java/c/a/p/k.java b/app/src/main/java/c/a/p/k.java index 1e1c9371b7..5e198ffff2 100644 --- a/app/src/main/java/c/a/p/k.java +++ b/app/src/main/java/c/a/p/k.java @@ -12,9 +12,9 @@ import java.util.List; import rx.subjects.PublishSubject; /* compiled from: RxPlayerEventListener.kt */ public final class k implements g1.a { - public final PublishSubject i = PublishSubject.j0(); - public final PublishSubject j = PublishSubject.j0(); - public final PublishSubject k = PublishSubject.j0(); + public final PublishSubject i = PublishSubject.k0(); + public final PublishSubject j = PublishSubject.k0(); + public final PublishSubject k = PublishSubject.k0(); /* compiled from: RxPlayerEventListener.kt */ public static final class a { @@ -40,7 +40,7 @@ public final class k implements g1.a { } public String toString() { - return c.d.b.a.a.L(c.d.b.a.a.P("IsPlayingChange(isPlaying="), this.a, ")"); + return c.d.b.a.a.K(c.d.b.a.a.O("IsPlayingChange(isPlaying="), this.a, ")"); } } @@ -69,10 +69,10 @@ public final class k implements g1.a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("PlayerError(exoPlaybackException="); - P.append(this.a); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("PlayerError(exoPlaybackException="); + O.append(this.a); + O.append(")"); + return O.toString(); } } @@ -109,10 +109,10 @@ public final class k implements g1.a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("PlayerStateChange(playWhenReady="); - P.append(this.a); - P.append(", playbackState="); - return c.d.b.a.a.z(P, this.b, ")"); + StringBuilder O = c.d.b.a.a.O("PlayerStateChange(playWhenReady="); + O.append(this.a); + O.append(", playbackState="); + return c.d.b.a.a.z(O, this.b, ")"); } } diff --git a/app/src/main/java/c/a/q/a.java b/app/src/main/java/c/a/q/a.java index a1affad748..14fca9159c 100644 --- a/app/src/main/java/c/a/q/a.java +++ b/app/src/main/java/c/a/q/a.java @@ -33,11 +33,11 @@ public final class a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Bitrate(min="); - P.append(this.a); - P.append(", max="); - P.append(this.b); - P.append(", target="); - return c.d.b.a.a.E(P, this.f208c, ")"); + StringBuilder O = c.d.b.a.a.O("Bitrate(min="); + O.append(this.a); + O.append(", max="); + O.append(this.b); + O.append(", target="); + return c.d.b.a.a.D(O, this.f208c, ")"); } } diff --git a/app/src/main/java/c/a/q/a0.java b/app/src/main/java/c/a/q/a0.java index bd9ca7ee24..5e5893757f 100644 --- a/app/src/main/java/c/a/q/a0.java +++ b/app/src/main/java/c/a/q/a0.java @@ -24,7 +24,7 @@ public final /* synthetic */ class a0 extends k implements Function1, ? extends RtcConnection.State> pair2 = pair; m.checkNotNullParameter(pair2, "p1"); RtcConnection rtcConnection = (RtcConnection) this.receiver; - if (rtcConnection.f2158a0) { + if (rtcConnection.f2161a0) { Map map = (Map) pair2.component1(); if (m.areEqual((RtcConnection.State) pair2.component2(), RtcConnection.State.f.a)) { rtcConnection.U.i(rtcConnection.k, "local MediaSinkWants: " + map, null); diff --git a/app/src/main/java/c/a/q/b.java b/app/src/main/java/c/a/q/b.java index 5df8e592de..d46b9f1b09 100644 --- a/app/src/main/java/c/a/q/b.java +++ b/app/src/main/java/c/a/q/b.java @@ -36,13 +36,13 @@ public final class b { } public String toString() { - StringBuilder P = a.P("IVideoQuality(width="); - P.append(this.a); - P.append(", height="); - P.append(this.b); - P.append(", framerate="); - P.append(this.f209c); - P.append(", pixelCount="); - return a.E(P, this.d, ")"); + StringBuilder O = a.O("IVideoQuality(width="); + O.append(this.a); + O.append(", height="); + O.append(this.b); + O.append(", framerate="); + O.append(this.f209c); + O.append(", pixelCount="); + return a.D(O, this.d, ")"); } } diff --git a/app/src/main/java/c/a/q/b0.java b/app/src/main/java/c/a/q/b0.java index 97955fb758..4b98bda0ae 100644 --- a/app/src/main/java/c/a/q/b0.java +++ b/app/src/main/java/c/a/q/b0.java @@ -50,15 +50,15 @@ public final class b0 implements MediaEngineConnection.d { if (subscription != null && !subscription.isUnsubscribed()) { dVar.a(); } - dVar.b = Observable.D(0, dVar.f228c, TimeUnit.MILLISECONDS).V(new b(dVar), new c(dVar)); + dVar.b = Observable.D(0, dVar.f228c, TimeUnit.MILLISECONDS).W(new b(dVar), new c(dVar)); rtcConnection.n = dVar; rtcConnection.o = false; } - if (transportInfo.f2178c.ordinal() != 0) { - StringBuilder P = c.d.b.a.a.P("Unsupported protocol: "); - P.append(transportInfo.f2178c); - P.append('.'); - RtcConnection.j(rtcConnection, true, P.toString(), null, false, 12); + if (transportInfo.f2181c.ordinal() != 0) { + StringBuilder O = c.d.b.a.a.O("Unsupported protocol: "); + O.append(transportInfo.f2181c); + O.append('.'); + RtcConnection.j(rtcConnection, true, O.toString(), null, false, 12); } else { rtcConnection.U.recordBreadcrumb("Sending UDP info to RTC server.", rtcConnection.k); c.a.q.n0.a aVar = rtcConnection.v; @@ -142,9 +142,9 @@ public final class b0 implements MediaEngineConnection.d { String str = "connection error: " + failedConnectionException.a(); int ordinal = failedConnectionException.a().ordinal(); if (ordinal == 0 || ordinal == 1 || ordinal == 2) { - StringBuilder U = c.d.b.a.a.U(str, " -- "); - U.append(failedConnectionException.getMessage()); - rtcConnection.r(U.toString()); + StringBuilder S = c.d.b.a.a.S(str, " -- "); + S.append(failedConnectionException.getMessage()); + rtcConnection.r(S.toString()); } else { RtcConnection.AnalyticsEvent analyticsEvent = RtcConnection.AnalyticsEvent.VOICE_CONNECTION_FAILURE; Map mutableMapOf = h0.mutableMapOf(d0.o.to("connect_count", Integer.valueOf(rtcConnection.D))); diff --git a/app/src/main/java/c/a/q/c.java b/app/src/main/java/c/a/q/c.java index 1c81b7f890..df89e3ec89 100644 --- a/app/src/main/java/c/a/q/c.java +++ b/app/src/main/java/c/a/q/c.java @@ -3,7 +3,7 @@ package c.a.q; import android.os.Handler; import android.os.Looper; import android.os.Process; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import d0.z.d.m; import java.util.Collection; import java.util.List; @@ -46,7 +46,7 @@ public final class c implements ExecutorService { public final void a() { if (Process.myTid() != this.j) { IllegalStateException illegalStateException = new IllegalStateException("oops! not called on the MediaEngineExecutor"); - AnimatableValueParser.G1("MediaEngineExecutor", "oops! not called on the MediaEngineExecutor", illegalStateException); + d.d1("MediaEngineExecutor", "oops! not called on the MediaEngineExecutor", illegalStateException); if (this.l) { new Handler(Looper.getMainLooper()).post(new d(illegalStateException)); } diff --git a/app/src/main/java/c/a/q/e.java b/app/src/main/java/c/a/q/e.java index cd3c1ca594..57fc66875c 100644 --- a/app/src/main/java/c/a/q/e.java +++ b/app/src/main/java/c/a/q/e.java @@ -54,14 +54,14 @@ public final class e { } public String toString() { - StringBuilder P = c.d.b.a.a.P("CandidateResolution(width="); - P.append(this.a); - P.append(", height="); - P.append(this.b); - P.append(", budgetPortion="); - P.append(this.f211c); - P.append(", pixelCount="); - return c.d.b.a.a.z(P, this.d, ")"); + StringBuilder O = c.d.b.a.a.O("CandidateResolution(width="); + O.append(this.a); + O.append(", height="); + O.append(this.b); + O.append(", budgetPortion="); + O.append(this.f211c); + O.append(", pixelCount="); + return c.d.b.a.a.z(O, this.d, ")"); } } @@ -110,14 +110,14 @@ public final class e { } public String toString() { - StringBuilder P = c.d.b.a.a.P("OrderedLadder(budget="); - P.append(this.a); - P.append(", pixelCount="); - P.append(this.b); - P.append(", wantValue="); - P.append(this.f212c); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("OrderedLadder(budget="); + O.append(this.a); + O.append(", pixelCount="); + O.append(this.b); + O.append(", wantValue="); + O.append(this.f212c); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/a/q/e0.java b/app/src/main/java/c/a/q/e0.java index ef6532c840..52211c2077 100644 --- a/app/src/main/java/c/a/q/e0.java +++ b/app/src/main/java/c/a/q/e0.java @@ -23,10 +23,10 @@ public final class e0 extends o implements Function1 { Exception exc2 = exc; m.checkNotNullParameter(exc2, "it"); RtcConnection rtcConnection = this.this$0; - StringBuilder P = a.P("Error occurred while connecting to RTC server: "); - P.append(exc2.getMessage()); - P.append('.'); - RtcConnection.j(rtcConnection, true, P.toString(), null, false, 12); + StringBuilder O = a.O("Error occurred while connecting to RTC server: "); + O.append(exc2.getMessage()); + O.append('.'); + RtcConnection.j(rtcConnection, true, O.toString(), null, false, 12); return Unit.a; } } diff --git a/app/src/main/java/c/a/q/h0.java b/app/src/main/java/c/a/q/h0.java index b53c558fd7..4d17667455 100644 --- a/app/src/main/java/c/a/q/h0.java +++ b/app/src/main/java/c/a/q/h0.java @@ -76,7 +76,7 @@ public final class h0 implements a.d { rtcConnection.n = null; rtcConnection.o = false; } - rtcConnection.f2164z = 0; + rtcConnection.f2167z = 0; rtcConnection.C = null; MediaSinkWantsManager mediaSinkWantsManager = rtcConnection.G; if (mediaSinkWantsManager != null) { @@ -261,7 +261,7 @@ public final class h0 implements a.d { r.removeFirst(rtcConnection.u); } if (j > ((long) 500)) { - rtcConnection.f2164z++; + rtcConnection.f2167z++; } double d = (double) j; Objects.requireNonNull(RtcConnection.Quality.Companion); diff --git a/app/src/main/java/c/a/q/i0.java b/app/src/main/java/c/a/q/i0.java index 88bbd2a557..0105bdff96 100644 --- a/app/src/main/java/c/a/q/i0.java +++ b/app/src/main/java/c/a/q/i0.java @@ -6,7 +6,7 @@ import android.os.Looper; import android.os.PowerManager; import androidx.annotation.AnyThread; import androidx.annotation.RequiresApi; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.discord.rtcconnection.enums.ThermalStatus; import com.discord.utilities.debug.DebugPrintBuilder; import com.discord.utilities.debug.DebugPrintable; @@ -60,7 +60,7 @@ public final class i0 implements PowerManager.OnThermalStatusChangedListener, Ru switch (thermalStatus.ordinal()) { case 0: if (k) { - AnimatableValueParser.H1("ThermalDetector", "totally cool: no longer in thermal trouble"); + d.e1("ThermalDetector", "totally cool: no longer in thermal trouble"); k = false; if (l) { ((Handler) i.getValue()).removeCallbacks(this); @@ -69,30 +69,30 @@ public final class i0 implements PowerManager.OnThermalStatusChangedListener, Ru } return; } - AnimatableValueParser.I1("ThermalDetector", "totally cool: thermal status is nominal"); + d.f1("ThermalDetector", "totally cool: thermal status is nominal"); return; case 1: case 2: if (k) { - AnimatableValueParser.H1("ThermalDetector", "cooling down: thermal status = " + thermalStatus); + d.e1("ThermalDetector", "cooling down: thermal status = " + thermalStatus); c(); return; } - AnimatableValueParser.I1("ThermalDetector", "pretty warm: ignoring low priority thermal status = " + thermalStatus); + d.f1("ThermalDetector", "pretty warm: ignoring low priority thermal status = " + thermalStatus); return; case 3: case 4: case 5: case 6: if (!k) { - AnimatableValueParser.J1("ThermalDetector", "we're starting to be in thermal trouble"); + d.g1("ThermalDetector", "we're starting to be in thermal trouble"); k = true; } String str = "very toasty: thermal status = " + thermalStatus; if (thermalStatus.compareTo(ThermalStatus.Emergency) < 0) { - AnimatableValueParser.J1("ThermalDetector", str); + d.g1("ThermalDetector", str); } else { - AnimatableValueParser.G1("ThermalDetector", str, new RuntimeException(str)); + d.d1("ThermalDetector", str, new RuntimeException(str)); } c(); return; @@ -121,7 +121,7 @@ public final class i0 implements PowerManager.OnThermalStatusChangedListener, Ru @Override // android.os.PowerManager.OnThermalStatusChangedListener public synchronized void onThermalStatusChanged(int i2) { ThermalStatus a2 = ThermalStatus.Companion.a(i2); - AnimatableValueParser.F1("ThermalDetector", "system update: onThermalStatusChanged( " + a2 + " )"); + d.c1("ThermalDetector", "system update: onThermalStatusChanged( " + a2 + " )"); b(a2); } @@ -129,7 +129,7 @@ public final class i0 implements PowerManager.OnThermalStatusChangedListener, Ru public synchronized void run() { l = false; ThermalStatus a2 = a(); - AnimatableValueParser.F1("ThermalDetector", "scheduled update: current thermal status = " + a2); + d.c1("ThermalDetector", "scheduled update: current thermal status = " + a2); b(a2); } diff --git a/app/src/main/java/c/a/q/j.java b/app/src/main/java/c/a/q/j.java index eb95289679..6de3f83663 100644 --- a/app/src/main/java/c/a/q/j.java +++ b/app/src/main/java/c/a/q/j.java @@ -34,7 +34,7 @@ public final class j extends o implements Function0 { Long l2 = this.$userId; if (l2 == null) { this.this$0.e = null; - } else if (this.this$0.f2156c.contains(l2)) { + } else if (this.this$0.f2159c.contains(l2)) { MediaSinkWantsManager mediaSinkWantsManager2 = this.this$0; Long l3 = this.$userId; mediaSinkWantsManager2.e = l3; @@ -46,9 +46,9 @@ public final class j extends o implements Function0 { this.this$0.e = this.$userId; } else { MediaSinkWantsManager mediaSinkWantsManager3 = this.this$0; - StringBuilder P = a.P("Participant not found: "); - P.append(this.$userId); - mediaSinkWantsManager3.a(P.toString()); + StringBuilder O = a.O("Participant not found: "); + O.append(this.$userId); + mediaSinkWantsManager3.a(O.toString()); return Unit.a; } } diff --git a/app/src/main/java/c/a/q/j0.java b/app/src/main/java/c/a/q/j0.java index cffa541fb1..e17258b305 100644 --- a/app/src/main/java/c/a/q/j0.java +++ b/app/src/main/java/c/a/q/j0.java @@ -51,17 +51,17 @@ public final class j0 { } public String toString() { - StringBuilder P = a.P("VideoQualityManagerOptions(videoBudget="); - P.append(this.a); - P.append(", videoCapture="); - P.append(this.b); - P.append(", videoBitrate="); - P.append(this.f213c); - P.append(", videoBitrateFloor="); - P.append(this.d); - P.append(", desktopBitrate="); - P.append(this.e); - P.append(")"); - return P.toString(); + StringBuilder O = a.O("VideoQualityManagerOptions(videoBudget="); + O.append(this.a); + O.append(", videoCapture="); + O.append(this.b); + O.append(", videoBitrate="); + O.append(this.f213c); + O.append(", videoBitrateFloor="); + O.append(this.d); + O.append(", desktopBitrate="); + O.append(this.e); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/a/q/k0/a.java b/app/src/main/java/c/a/q/k0/a.java index 7de5dde15c..b98129d954 100644 --- a/app/src/main/java/c/a/q/k0/a.java +++ b/app/src/main/java/c/a/q/k0/a.java @@ -7,7 +7,7 @@ import android.media.AudioManager; import androidx.annotation.MainThread; import androidx.core.os.EnvironmentCompat; import c.a.q.l0.a; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.discord.models.domain.ModelAuditLogEntry; import com.discord.rtcconnection.enums.AudioManagerBroadcastAction; import com.discord.rtcconnection.enums.ScoAudioState; @@ -67,12 +67,12 @@ public final class a extends BroadcastReceiver { } } if (audioManagerBroadcastAction == null) { - StringBuilder P = c.d.b.a.a.P("unable to parse AudioManagerBroadcastAction for action: "); - P.append(intent.getAction()); - AnimatableValueParser.J1("AudioManagerBroadcastReceiver", P.toString()); + StringBuilder O = c.d.b.a.a.O("unable to parse AudioManagerBroadcastAction for action: "); + O.append(intent.getAction()); + d.g1("AudioManagerBroadcastReceiver", O.toString()); return; } - AnimatableValueParser.I1("AudioManagerBroadcastReceiver", "onReceive: action = " + audioManagerBroadcastAction); + d.f1("AudioManagerBroadcastReceiver", "onReceive: action = " + audioManagerBroadcastAction); try { h hVar = this.f214c; int ordinal = audioManagerBroadcastAction.ordinal(); @@ -114,7 +114,7 @@ public final class a extends BroadcastReceiver { hVar.d(context, ((AudioManager) systemService2).isSpeakerphoneOn()); } } catch (Throwable th) { - AnimatableValueParser.G1("AudioManagerBroadcastReceiver", "error handling " + audioManagerBroadcastAction, th); + d.d1("AudioManagerBroadcastReceiver", "error handling " + audioManagerBroadcastAction, th); } } } diff --git a/app/src/main/java/c/a/q/k0/b.java b/app/src/main/java/c/a/q/k0/b.java index 4286eb8728..051902da2f 100644 --- a/app/src/main/java/c/a/q/k0/b.java +++ b/app/src/main/java/c/a/q/k0/b.java @@ -2,7 +2,7 @@ package c.a.q.k0; import android.content.Context; import android.os.Process; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import d0.z.d.m; import kotlin.jvm.internal.DefaultConstructorMarker; /* compiled from: AudioPermissions.kt */ @@ -30,13 +30,13 @@ public final class b { this.f215c = z4; this.d = z2; if (!z3) { - AnimatableValueParser.J1("AudioPermissions", "MODIFY_AUDIO_SETTINGS permission is missing"); + d.g1("AudioPermissions", "MODIFY_AUDIO_SETTINGS permission is missing"); } if (!z4) { - AnimatableValueParser.J1("AudioPermissions", "RECORD_AUDIO permission is missing"); + d.g1("AudioPermissions", "RECORD_AUDIO permission is missing"); } if (!z2) { - AnimatableValueParser.J1("AudioPermissions", "BLUETOOTH permission is missing"); + d.g1("AudioPermissions", "BLUETOOTH permission is missing"); } } @@ -77,11 +77,11 @@ public final class b { } public String toString() { - StringBuilder P = c.d.b.a.a.P("AudioPermissions(hasModifyAudioSettingsPermission="); - P.append(this.b); - P.append(", hasRecordAudioPermission="); - P.append(this.f215c); - P.append(", hasBluetoothPermission="); - return c.d.b.a.a.L(P, this.d, ")"); + StringBuilder O = c.d.b.a.a.O("AudioPermissions(hasModifyAudioSettingsPermission="); + O.append(this.b); + O.append(", hasRecordAudioPermission="); + O.append(this.f215c); + O.append(", hasBluetoothPermission="); + return c.d.b.a.a.K(O, this.d, ")"); } } diff --git a/app/src/main/java/c/a/q/k0/c.java b/app/src/main/java/c/a/q/k0/c.java index 538487be43..d767c0017f 100644 --- a/app/src/main/java/c/a/q/k0/c.java +++ b/app/src/main/java/c/a/q/k0/c.java @@ -7,7 +7,7 @@ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import androidx.annotation.MainThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.discord.rtcconnection.enums.BluetoothBroadcastAction; import com.discord.rtcconnection.enums.BluetoothHeadsetAudioState; import com.discord.rtcconnection.enums.BluetoothProfileConnectionState; @@ -66,12 +66,12 @@ public final class c extends BroadcastReceiver implements BluetoothProfile.Servi i2++; } if (bluetoothBroadcastAction == null) { - StringBuilder P = c.d.b.a.a.P("unable to parse BluetoothBroadcastAction for action: "); - P.append(intent.getAction()); - AnimatableValueParser.J1("BluetoothBroadcastReceiver", P.toString()); + StringBuilder O = c.d.b.a.a.O("unable to parse BluetoothBroadcastAction for action: "); + O.append(intent.getAction()); + d.g1("BluetoothBroadcastReceiver", O.toString()); return; } - AnimatableValueParser.I1("BluetoothBroadcastReceiver", "onReceive: action = " + bluetoothBroadcastAction); + d.f1("BluetoothBroadcastReceiver", "onReceive: action = " + bluetoothBroadcastAction); try { i iVar = this.n; int ordinal = bluetoothBroadcastAction.ordinal(); @@ -80,13 +80,13 @@ public final class c extends BroadcastReceiver implements BluetoothProfile.Servi } else if (ordinal == 1) { iVar.a(context, BluetoothHeadsetAudioState.Companion.b(intent)); } else if (ordinal != 4) { - AnimatableValueParser.J1("BluetoothBroadcastReceiver", "unexpected " + bluetoothBroadcastAction); + d.g1("BluetoothBroadcastReceiver", "unexpected " + bluetoothBroadcastAction); } else { m.checkNotNullParameter(intent, "$this$getBluetoothDeviceExtra"); iVar.b((BluetoothDevice) intent.getParcelableExtra("android.bluetooth.device.extra.DEVICE")); } } catch (Throwable th) { - AnimatableValueParser.G1("BluetoothBroadcastReceiver", "error handling " + bluetoothBroadcastAction, th); + d.d1("BluetoothBroadcastReceiver", "error handling " + bluetoothBroadcastAction, th); } } } @@ -95,7 +95,7 @@ public final class c extends BroadcastReceiver implements BluetoothProfile.Servi public void onServiceConnected(int i2, BluetoothProfile bluetoothProfile) { ThreadUtils.checkIsOnMainThread(); if (i2 == 1 && this.k) { - AnimatableValueParser.F1("BluetoothBroadcastReceiver", "BluetoothProfile.ServiceListener.onServiceConnected"); + d.c1("BluetoothBroadcastReceiver", "BluetoothProfile.ServiceListener.onServiceConnected"); if (!(bluetoothProfile instanceof BluetoothHeadset)) { bluetoothProfile = null; } @@ -109,7 +109,7 @@ public final class c extends BroadcastReceiver implements BluetoothProfile.Servi public void onServiceDisconnected(int i2) { ThreadUtils.checkIsOnMainThread(); if (i2 == 1 && this.k) { - AnimatableValueParser.F1("BluetoothBroadcastReceiver", "BluetoothProfile.ServiceListener.onServiceDisconnected"); + d.c1("BluetoothBroadcastReceiver", "BluetoothProfile.ServiceListener.onServiceDisconnected"); this.l = null; this.n.c(null); } diff --git a/app/src/main/java/c/a/q/k0/e.java b/app/src/main/java/c/a/q/k0/e.java index a037f08a2e..c21813e371 100644 --- a/app/src/main/java/c/a/q/k0/e.java +++ b/app/src/main/java/c/a/q/k0/e.java @@ -1,7 +1,7 @@ package c.a.q.k0; import android.media.AudioManager; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.discord.rtcconnection.audio.DiscordAudioManager; /* compiled from: DiscordAudioManager.kt */ public final class e implements AudioManager.OnAudioFocusChangeListener { @@ -13,7 +13,7 @@ public final class e implements AudioManager.OnAudioFocusChangeListener { @Override // android.media.AudioManager.OnAudioFocusChangeListener public final void onAudioFocusChange(int i) { - AnimatableValueParser.F1("DiscordAudioManager", "[AudioFocus] new focus: " + i); + d.c1("DiscordAudioManager", "[AudioFocus] new focus: " + i); if (i == -3 || i == -2) { this.i.i(false); } else if (i == 1) { diff --git a/app/src/main/java/c/a/q/k0/f.java b/app/src/main/java/c/a/q/k0/f.java index 5f14d33d7f..529d8e3428 100644 --- a/app/src/main/java/c/a/q/k0/f.java +++ b/app/src/main/java/c/a/q/k0/f.java @@ -20,7 +20,7 @@ public final class f extends ContentObserver { DiscordAudioManager discordAudioManager = this.a; int streamVolume = discordAudioManager.e.getStreamVolume(3); discordAudioManager.w = streamVolume; - SerializedSubject serializedSubject = discordAudioManager.f2170y; + SerializedSubject serializedSubject = discordAudioManager.f2173y; serializedSubject.j.onNext(Integer.valueOf(streamVolume)); } } diff --git a/app/src/main/java/c/a/q/k0/g.java b/app/src/main/java/c/a/q/k0/g.java index 0670ec8022..7594c3412d 100644 --- a/app/src/main/java/c/a/q/k0/g.java +++ b/app/src/main/java/c/a/q/k0/g.java @@ -62,11 +62,11 @@ public final class g { } public String toString() { - StringBuilder P = c.d.b.a.a.P("EchoCancellation(shouldEarlyEnableHwAec="); - P.append(this.e); - P.append(", alwaysEnableAec="); - P.append(this.f); - P.append(", disableSwAecWhenHwIsEnabled="); - return c.d.b.a.a.L(P, this.g, ")"); + StringBuilder O = c.d.b.a.a.O("EchoCancellation(shouldEarlyEnableHwAec="); + O.append(this.e); + O.append(", alwaysEnableAec="); + O.append(this.f); + O.append(", disableSwAecWhenHwIsEnabled="); + return c.d.b.a.a.K(O, this.g, ")"); } } diff --git a/app/src/main/java/c/a/q/l.java b/app/src/main/java/c/a/q/l.java index 7b53a623d1..28096c673a 100644 --- a/app/src/main/java/c/a/q/l.java +++ b/app/src/main/java/c/a/q/l.java @@ -96,10 +96,10 @@ public final class l extends o implements Function0 { } if (arrayList2.isEmpty()) { this.this$0.b.remove(Long.valueOf(this.$userId)); - this.this$0.f2156c.remove(Long.valueOf(this.$userId)); + this.this$0.f2159c.remove(Long.valueOf(this.$userId)); } else { this.this$0.b.put(Long.valueOf(this.$userId), arrayList2); - this.this$0.f2156c.add(Long.valueOf(this.$userId)); + this.this$0.f2159c.add(Long.valueOf(this.$userId)); } this.this$0.d(arrayList2.isEmpty() ? n.emptyList() : d0.t.m.listOf(String.valueOf(this.$userId))); return Unit.a; diff --git a/app/src/main/java/c/a/q/l0/a.java b/app/src/main/java/c/a/q/l0/a.java index 45dcca911a..715b705a7b 100644 --- a/app/src/main/java/c/a/q/l0/a.java +++ b/app/src/main/java/c/a/q/l0/a.java @@ -45,10 +45,10 @@ public abstract class a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("PluggedIn(name="); - P.append(this.a); - P.append(", hasMic="); - return c.d.b.a.a.L(P, this.b, ")"); + StringBuilder O = c.d.b.a.a.O("PluggedIn(name="); + O.append(this.a); + O.append(", hasMic="); + return c.d.b.a.a.K(O, this.b, ")"); } } diff --git a/app/src/main/java/c/a/q/m0/a.java b/app/src/main/java/c/a/q/m0/a.java index 55a2895afb..4accfd3ef1 100644 --- a/app/src/main/java/c/a/q/m0/a.java +++ b/app/src/main/java/c/a/q/m0/a.java @@ -47,15 +47,15 @@ public final class a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Codec(name="); - P.append(this.a); - P.append(", priority="); - P.append(this.b); - P.append(", type="); - P.append(this.f218c); - P.append(", payloadType="); - P.append(this.d); - P.append(", rtxPayloadType="); - return c.d.b.a.a.E(P, this.e, ")"); + StringBuilder O = c.d.b.a.a.O("Codec(name="); + O.append(this.a); + O.append(", priority="); + O.append(this.b); + O.append(", type="); + O.append(this.f218c); + O.append(", payloadType="); + O.append(this.d); + O.append(", rtxPayloadType="); + return c.d.b.a.a.D(O, this.e, ")"); } } diff --git a/app/src/main/java/c/a/q/m0/b.java b/app/src/main/java/c/a/q/m0/b.java index 6002d8cf06..329b699965 100644 --- a/app/src/main/java/c/a/q/m0/b.java +++ b/app/src/main/java/c/a/q/m0/b.java @@ -170,7 +170,7 @@ public final class b extends ScreenCapturerAndroid { if (subscription != null) { subscription.unsubscribe(); } - Observable c02 = Observable.c0(((long) this.p) / 1000000, TimeUnit.MILLISECONDS); + Observable d02 = Observable.d0(((long) this.p) / 1000000, TimeUnit.MILLISECONDS); SurfaceTextureHelper surfaceTextureHelper = this.l; if (surfaceTextureHelper == null) { m.throwUninitializedPropertyAccessException("surfaceTextureHelper"); @@ -180,7 +180,7 @@ public final class b extends ScreenCapturerAndroid { Looper looper = handler.getLooper(); AtomicReference atomicReference = j0.j.b.a.a; Objects.requireNonNull(looper, "looper == null"); - this.v = c02.W(new j0.j.b.b(looper)).V(new c(this), d.i); + this.v = d02.X(new j0.j.b.b(looper)).W(new c(this), d.i); } } @@ -216,7 +216,7 @@ public final class b extends ScreenCapturerAndroid { if (thumbnailEmitter != null) { synchronized (thumbnailEmitter) { thumbnailEmitter.d.release(); - thumbnailEmitter.f2181c.release(); + thumbnailEmitter.f2184c.release(); JniCommon.nativeFreeByteBuffer(thumbnailEmitter.b); thumbnailEmitter.a = RecyclerView.FOREVER_NS; } diff --git a/app/src/main/java/c/a/q/m0/c/e.java b/app/src/main/java/c/a/q/m0/c/e.java index 7d5b499e27..b6ad222905 100644 --- a/app/src/main/java/c/a/q/m0/c/e.java +++ b/app/src/main/java/c/a/q/m0/c/e.java @@ -288,7 +288,7 @@ public final class e implements MediaEngineConnection { Connection connection2 = connection; d0.z.d.m.checkNotNullParameter(connection2, "$receiver"); connection2.setVADLeadingFramesToBuffer(this.$inputModeOptions.b); - connection2.setVADTrailingFramesToSend(this.$inputModeOptions.f2180c); + connection2.setVADTrailingFramesToSend(this.$inputModeOptions.f2183c); connection2.setVADTriggerThreshold((float) this.$inputModeOptions.a); connection2.setVADAutoThreshold(this.$inputModeOptions.d ? 3 : -1); connection2.setVADUseKrisp(this.$inputModeOptions.e); @@ -473,7 +473,7 @@ public final class e implements MediaEngineConnection { Connection connection2 = connection; d0.z.d.m.checkNotNullParameter(connection2, "$receiver"); MediaEngineConnection.b bVar = this.$quality; - connection2.setEncodingQuality(bVar.a, bVar.b, bVar.f2179c, bVar.d, this.$frameRate); + connection2.setEncodingQuality(bVar.a, bVar.b, bVar.f2182c, bVar.d, this.$frameRate); return Unit.a; } } @@ -610,7 +610,7 @@ public final class e implements MediaEngineConnection { this.d = h0.mutableMapOf(d0.o.to(Long.valueOf(j2), Integer.valueOf(aVar.a))); int i2 = aVar.a; String str = aVar.b; - int i3 = aVar.f2177c; + int i3 = aVar.f2180c; Object[] array = aVar.d.toArray(new StreamParameters[0]); Objects.requireNonNull(array, "null cannot be cast to non-null type kotlin.Array"); Connection connectToServer = discord.connectToServer(i2, j2, str, i3, (StreamParameters[]) array, new d(this)); diff --git a/app/src/main/java/c/a/q/m0/c/k.java b/app/src/main/java/c/a/q/m0/c/k.java index 0d1b806d49..efad90027e 100644 --- a/app/src/main/java/c/a/q/m0/c/k.java +++ b/app/src/main/java/c/a/q/m0/c/k.java @@ -6,7 +6,6 @@ import androidx.annotation.AnyThread; import c.a.q.e0; import co.discord.media_engine.RtcRegion; import co.discord.media_engine.VideoInputDeviceDescription; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.rtcconnection.mediaengine.MediaEngine; import com.discord.rtcconnection.mediaengine.MediaEngineConnection; import com.discord.utilities.logging.Logger; @@ -389,9 +388,9 @@ public final class k implements MediaEngine { /* renamed from: invoke */ public Unit mo1invoke() { boolean z2; - StringBuilder P = c.d.b.a.a.P("updateVoiceConfig: "); - P.append(this.$voiceConfig); - AnimatableValueParser.F1("MediaEngineLegacy", P.toString()); + StringBuilder O = c.d.b.a.a.O("updateVoiceConfig: "); + O.append(this.$voiceConfig); + c.c.a.a0.d.c1("MediaEngineLegacy", O.toString()); MediaEngine.VoiceConfig voiceConfig = this.$voiceConfig; k kVar = this.this$0; float f = voiceConfig.a; @@ -410,14 +409,14 @@ public final class k implements MediaEngine { z2 = gVar2.f && !gVar2.d ? true : z3; } if (z2 != z3) { - AnimatableValueParser.F1("MediaEngineLegacy", "ignoring call to setEchoCancellation(" + z3 + "), config=" + kVar2.o); + c.c.a.a0.d.c1("MediaEngineLegacy", "ignoring call to setEchoCancellation(" + z3 + "), config=" + kVar2.o); } Discord discord2 = kVar2.f; if (discord2 != null) { discord2.setEchoCancellation(z2, false, new m(kVar2)); } k kVar3 = this.this$0; - boolean z4 = voiceConfig.f2176c; + boolean z4 = voiceConfig.f2179c; Discord discord3 = kVar3.f; if (discord3 != null) { discord3.setNoiseSuppression(z4); @@ -647,11 +646,11 @@ public final class k implements MediaEngine { public final void p() { if (this.f == null) { Logger logger = this.n; - StringBuilder P = c.d.b.a.a.P("initializing voice engine. OpenSL ES: "); - P.append(this.m); - P.append(", OpenSL usage mode: "); - P.append(this.h); - Logger.i$default(logger, "MediaEngineLegacy", P.toString(), null, 4, null); + StringBuilder O = c.d.b.a.a.O("initializing voice engine. OpenSL ES: "); + O.append(this.m); + O.append(", OpenSL usage mode: "); + O.append(this.h); + Logger.i$default(logger, "MediaEngineLegacy", O.toString(), null, 4, null); int ordinal = this.m.ordinal(); boolean z2 = false; if (ordinal == 0) { @@ -661,12 +660,12 @@ public final class k implements MediaEngine { z2 = true; } Logger logger2 = this.n; - StringBuilder P2 = c.d.b.a.a.P("OpenSL ES default. mode: "); - P2.append(this.h); - P2.append(", enableOpenSL: "); - P2.append(z2); - P2.append(", model: '"); - Logger.i$default(logger2, "MediaEngineLegacy", c.d.b.a.a.G(P2, Build.MODEL, '\''), null, 4, null); + StringBuilder O2 = c.d.b.a.a.O("OpenSL ES default. mode: "); + O2.append(this.h); + O2.append(", enableOpenSL: "); + O2.append(z2); + O2.append(", model: '"); + Logger.i$default(logger2, "MediaEngineLegacy", c.d.b.a.a.F(O2, Build.MODEL, '\''), null, 4, null); WebRtcAudioManager.setBlacklistDeviceForOpenSLESUsage(!z2); } else if (ordinal == 1) { WebRtcAudioManager.setBlacklistDeviceForOpenSLESUsage(false); diff --git a/app/src/main/java/c/a/q/m0/c/m.java b/app/src/main/java/c/a/q/m0/c/m.java index 4b5a2fa954..aadc8cff90 100644 --- a/app/src/main/java/c/a/q/m0/c/m.java +++ b/app/src/main/java/c/a/q/m0/c/m.java @@ -1,6 +1,6 @@ package c.a.q.m0.c; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.discord.rtcconnection.mediaengine.MediaEngine; import com.hammerandchisel.libdiscord.Discord; import d0.z.d.o; @@ -38,8 +38,8 @@ public final class m implements Discord.AecConfigCallback { MediaEngine.EchoCancellationInfo echoCancellationInfo = kVar.i; kVar.i = null; if (echoCancellationInfo != null) { - MediaEngine.EchoCancellationInfo echoCancellationInfo2 = new MediaEngine.EchoCancellationInfo(echoCancellationInfo.a, echoCancellationInfo.b, echoCancellationInfo.f2175c, echoCancellationInfo.d, this.$requestEnable, this.$enabled, this.$requestMobileMode, this.$previouslyEnabled, this.$previouslyMobileMode); - AnimatableValueParser.H1("MediaEngineLegacy", "onEchoCancellationUpdated: " + echoCancellationInfo2); + MediaEngine.EchoCancellationInfo echoCancellationInfo2 = new MediaEngine.EchoCancellationInfo(echoCancellationInfo.a, echoCancellationInfo.b, echoCancellationInfo.f2178c, echoCancellationInfo.d, this.$requestEnable, this.$enabled, this.$requestMobileMode, this.$previouslyEnabled, this.$previouslyMobileMode); + d.e1("MediaEngineLegacy", "onEchoCancellationUpdated: " + echoCancellationInfo2); this.this$0.a.p.onEchoCancellationUpdated(echoCancellationInfo2); } return Unit.a; diff --git a/app/src/main/java/c/a/q/n.java b/app/src/main/java/c/a/q/n.java index d1c88f8c24..36473d3a20 100644 --- a/app/src/main/java/c/a/q/n.java +++ b/app/src/main/java/c/a/q/n.java @@ -35,15 +35,15 @@ public final class n { } public String toString() { - StringBuilder P = c.d.b.a.a.P("ResolutionBudget(width="); - P.append(this.a); - P.append(", height="); - P.append(this.b); - P.append(", budgetPortion="); - P.append(this.f223c); - P.append(", mutedFramerate="); - P.append(this.d); - P.append(", framerate="); - return c.d.b.a.a.z(P, this.e, ")"); + StringBuilder O = c.d.b.a.a.O("ResolutionBudget(width="); + O.append(this.a); + O.append(", height="); + O.append(this.b); + O.append(", budgetPortion="); + O.append(this.f223c); + O.append(", mutedFramerate="); + O.append(this.d); + O.append(", framerate="); + return c.d.b.a.a.z(O, this.e, ")"); } } diff --git a/app/src/main/java/c/a/q/n0/a.java b/app/src/main/java/c/a/q/n0/a.java index 6118002fda..6e8b5172ad 100644 --- a/app/src/main/java/c/a/q/n0/a.java +++ b/app/src/main/java/c/a/q/n0/a.java @@ -242,9 +242,9 @@ public final class a extends WebSocketListener implements DebugPrintable { public Unit mo1invoke() { if (!(!m.areEqual(this.$webSocket, this.this$0.r))) { a aVar = this.this$0; - StringBuilder P = c.d.b.a.a.P("An error with the websocket occurred: "); - P.append(this.$t.getMessage()); - a.a(aVar, true, null, P.toString()); + StringBuilder O = c.d.b.a.a.O("An error with the websocket occurred: "); + O.append(this.$t.getMessage()); + a.a(aVar, true, null, O.toString()); } return Unit.a; } @@ -346,9 +346,9 @@ public final class a extends WebSocketListener implements DebugPrintable { case 11: default: a aVar6 = this.this$0; - StringBuilder P = c.d.b.a.a.P("unknown opcode: "); - P.append(this.$message.getOpcode()); - aVar6.i(P.toString()); + StringBuilder O = c.d.b.a.a.O("unknown opcode: "); + O.append(this.$message.getOpcode()); + aVar6.i(O.toString()); break; case 8: a aVar7 = this.this$0; @@ -464,11 +464,11 @@ public final class a extends WebSocketListener implements DebugPrintable { z2 = false; } if (str == null || str2 == null || !aVar.B || !z2) { - StringBuilder P = c.d.b.a.a.P("Cannot resume connection. resumable: "); - P.append(aVar.B); - P.append(" -- isHeartbeatRecentEnough: "); - P.append(z2); - aVar.f(false, 4801, P.toString()); + StringBuilder O = c.d.b.a.a.O("Cannot resume connection. resumable: "); + O.append(aVar.B); + O.append(" -- isHeartbeatRecentEnough: "); + O.append(z2); + aVar.f(false, 4801, O.toString()); } else { aVar.i("[RESUME] resuming session. serverId=" + str2 + " sessionId=" + str); aVar.G.a(); @@ -486,9 +486,9 @@ public final class a extends WebSocketListener implements DebugPrintable { Long l2 = this.this$0.f227z; long longValue = currentTimeMillis - (l2 != null ? l2.longValue() : 0); a aVar3 = this.this$0; - StringBuilder P2 = c.d.b.a.a.P("[CONNECTED] to "); - P2.append(this.this$0.C); - aVar3.i(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("[CONNECTED] to "); + O2.append(this.this$0.C); + aVar3.i(O2.toString()); a aVar4 = this.this$0; aVar4.G.a(); for (d dVar3 : aVar4.p) { @@ -533,11 +533,11 @@ public final class a extends WebSocketListener implements DebugPrintable { this.G = cVar; this.H = clock; this.I = str3; - StringBuilder U = c.d.b.a.a.U(str3, "->RtcControlSocket "); + StringBuilder S = c.d.b.a.a.S(str3, "->RtcControlSocket "); int i2 = i + 1; i = i2; - U.append(i2); - String sb = U.toString(); + S.append(i2); + String sb = S.toString(); this.l = sb; this.o = new Backoff(1000, 5000, 3, false, new Backoff.TimerScheduler(sb, cVar), 8, null); this.p = new CopyOnWriteArraySet<>(); @@ -555,8 +555,8 @@ public final class a extends WebSocketListener implements DebugPrintable { aVar.f(z2, num, str); } else { aVar.b(null); - String M = c.d.b.a.a.M(new Object[]{Double.valueOf(((double) aVar.o.fail(new c(aVar, z2, num, str))) / 1000.0d)}, 1, "%.2f", "java.lang.String.format(this, *args)"); - aVar.j("`[WS CLOSED] (" + z2 + ", " + num + ", " + str + ") retrying in " + M + " seconds."); + String L = c.d.b.a.a.L(new Object[]{Double.valueOf(((double) aVar.o.fail(new c(aVar, z2, num, str))) / 1000.0d)}, 1, "%.2f", "java.lang.String.format(this, *args)"); + aVar.j("`[WS CLOSED] (" + z2 + ", " + num + ", " + str + ") retrying in " + L + " seconds."); } } @@ -618,9 +618,9 @@ public final class a extends WebSocketListener implements DebugPrintable { } public final void e() { - StringBuilder P = c.d.b.a.a.P("[CONNECT] "); - P.append(this.C); - i(P.toString()); + StringBuilder O = c.d.b.a.a.O("[CONNECT] "); + O.append(this.C); + i(O.toString()); if (this.r != null) { this.F.e(this.l, "Connect called with already existing websocket", null, null); b(f.i); @@ -638,14 +638,14 @@ public final class a extends WebSocketListener implements DebugPrintable { aVar.a(1, TimeUnit.MINUTES); SSLSocketFactory sSLSocketFactory = this.E; if (sSLSocketFactory != null) { - h.a aVar2 = f0.e0.k.h.f2828c; + h.a aVar2 = f0.e0.k.h.f2831c; aVar.b(sSLSocketFactory, f0.e0.k.h.a.n()); } - String H = c.d.b.a.a.H(new StringBuilder(), this.C, "?v=5"); - i("attempting WSS connection with " + H); + String G = c.d.b.a.a.G(new StringBuilder(), this.C, "?v=5"); + i("attempting WSS connection with " + G); x xVar = new x(aVar); Request.a aVar3 = new Request.a(); - aVar3.f(H); + aVar3.f(G); this.r = xVar.g(aVar3.a(), this); } @@ -708,8 +708,8 @@ public final class a extends WebSocketListener implements DebugPrintable { return; } b(d.i); - String M = c.d.b.a.a.M(new Object[]{Double.valueOf(((double) this.o.fail(new e(this))) / 1000.0d)}, 1, "%.2f", "java.lang.String.format(this, *args)"); - j("[ACK TIMEOUT] reconnecting in " + M + " seconds."); + String L = c.d.b.a.a.L(new Object[]{Double.valueOf(((double) this.o.fail(new e(this))) / 1000.0d)}, 1, "%.2f", "java.lang.String.format(this, *args)"); + j("[ACK TIMEOUT] reconnecting in " + L + " seconds."); } public final void l(boolean z2, Integer num, String str) { @@ -733,9 +733,9 @@ public final class a extends WebSocketListener implements DebugPrintable { public final void n(int i2, Object obj) { WebSocket webSocket = this.r; if (webSocket == null) { - StringBuilder P = c.d.b.a.a.P("opcode() websocket null. opcode: "); - P.append(Opcodes.INSTANCE.getNameOf(i2)); - this.F.e(this.l, P.toString(), null, null); + StringBuilder O = c.d.b.a.a.O("opcode() websocket null. opcode: "); + O.append(Opcodes.INSTANCE.getNameOf(i2)); + this.F.e(this.l, O.toString(), null, null); return; } try { @@ -777,11 +777,11 @@ public final class a extends WebSocketListener implements DebugPrintable { m.checkNotNullParameter(str, NotificationCompat.MessagingStyle.Message.KEY_TEXT); Payloads.Incoming incoming = (Payloads.Incoming) c.i.a.f.e.o.c.r0(Payloads.Incoming.class).cast(this.m.g(str, Payloads.Incoming.class)); super.onMessage(webSocket, str); - StringBuilder P = c.d.b.a.a.P("received ("); - P.append(Opcodes.INSTANCE.getNameOf(incoming.getOpcode())); - P.append("): "); - P.append(incoming); - h(P.toString()); + StringBuilder O = c.d.b.a.a.O("received ("); + O.append(Opcodes.INSTANCE.getNameOf(incoming.getOpcode())); + O.append("): "); + O.append(incoming); + h(O.toString()); m(new j(this, webSocket, incoming)); } diff --git a/app/src/main/java/c/a/q/o0/a.java b/app/src/main/java/c/a/q/o0/a.java index 7b20cdca9b..0f71790fc3 100644 --- a/app/src/main/java/c/a/q/o0/a.java +++ b/app/src/main/java/c/a/q/o0/a.java @@ -98,13 +98,13 @@ public final /* synthetic */ class a extends k implements Function1 if (booleanValue) { krispOveruseDetector.d.f(KrispOveruseDetector.Status.CPU_OVERUSE); } else if (longValue == 0) { - int i = krispOveruseDetector.f2155c + 1; - krispOveruseDetector.f2155c = i; + int i = krispOveruseDetector.f2158c + 1; + krispOveruseDetector.f2158c = i; if (i > 2) { krispOveruseDetector.d.f(KrispOveruseDetector.Status.FAILED); } } else { - krispOveruseDetector.f2155c = 0; + krispOveruseDetector.f2158c = 0; } } krispOveruseDetector.b = stats2.getOutboundRtpAudio(); diff --git a/app/src/main/java/c/a/q/o0/e.java b/app/src/main/java/c/a/q/o0/e.java index f23f7ceb2b..54e4880445 100644 --- a/app/src/main/java/c/a/q/o0/e.java +++ b/app/src/main/java/c/a/q/o0/e.java @@ -105,24 +105,24 @@ public final class e { } public String toString() { - StringBuilder P = c.d.b.a.a.P("AggregatedProperties(framesCodec="); - P.append(this.a); - P.append(", framesNetwork="); - P.append(this.b); - P.append(", packets="); - P.append(this.f230c); - P.append(", packetsLost="); - P.append(this.d); - P.append(", framesDropped="); - P.append(this.e); - P.append(", bytes="); - P.append(this.f); - P.append(", nackCount="); - P.append(this.g); - P.append(", pliCount="); - P.append(this.h); - P.append(", qpSum="); - return c.d.b.a.a.A(P, this.i, ")"); + StringBuilder O = c.d.b.a.a.O("AggregatedProperties(framesCodec="); + O.append(this.a); + O.append(", framesNetwork="); + O.append(this.b); + O.append(", packets="); + O.append(this.f230c); + O.append(", packetsLost="); + O.append(this.d); + O.append(", framesDropped="); + O.append(this.e); + O.append(", bytes="); + O.append(this.f); + O.append(", nackCount="); + O.append(this.g); + O.append(", pliCount="); + O.append(this.h); + O.append(", qpSum="); + return c.d.b.a.a.A(O, this.i, ")"); } } @@ -255,14 +255,14 @@ public final class e { } public String toString() { - StringBuilder P = c.d.b.a.a.P("RawVideoStats(resolution="); - P.append(this.a); - P.append(", timestamp="); - P.append(this.b); - P.append(", aggregatedProperties="); - P.append(this.f232c); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("RawVideoStats(resolution="); + O.append(this.a); + O.append(", timestamp="); + O.append(this.b); + O.append(", aggregatedProperties="); + O.append(this.f232c); + O.append(")"); + return O.toString(); } } @@ -462,7 +462,7 @@ public final class e { Histogram.Report report2 = eVar.f231c.getReport(); b bVar = d; long j = (long) 1024; - Map mapOf = h0.mapOf(d0.o.to("duration", Double.valueOf(Math.floor((double) longValue))), c.d.b.a.a.Y(bVar, eVar.g.get(8000000), "duration_stream_under_8mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(7000000), "duration_stream_under_7mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(6000000), "duration_stream_under_6mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(5000000), "duration_stream_under_5mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(4000000), "duration_stream_under_4mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(3000000), "duration_stream_under_3mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(2000000), "duration_stream_under_2mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(1500000), "duration_stream_under_1_5mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(1000000), "duration_stream_under_1mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(500000), "duration_stream_under_0_5mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(0), "duration_stream_at_0mbps"), c.d.b.a.a.Y(bVar, eVar.h.get(60), "duration_fps_under_60"), c.d.b.a.a.Y(bVar, eVar.h.get(55), "duration_fps_under_55"), c.d.b.a.a.Y(bVar, eVar.h.get(50), "duration_fps_under_50"), c.d.b.a.a.Y(bVar, eVar.h.get(45), "duration_fps_under_45"), c.d.b.a.a.Y(bVar, eVar.h.get(40), "duration_fps_under_40"), c.d.b.a.a.Y(bVar, eVar.h.get(35), "duration_fps_under_35"), c.d.b.a.a.Y(bVar, eVar.h.get(30), "duration_fps_under_30"), c.d.b.a.a.Y(bVar, eVar.h.get(25), "duration_fps_under_25"), c.d.b.a.a.Y(bVar, eVar.h.get(20), "duration_fps_under_20"), c.d.b.a.a.Y(bVar, eVar.h.get(15), "duration_fps_under_15"), c.d.b.a.a.Y(bVar, eVar.h.get(10), "duration_fps_under_10"), c.d.b.a.a.Y(bVar, eVar.h.get(5), "duration_fps_under_5"), c.d.b.a.a.Y(bVar, eVar.h.get(0), "duration_fps_at_0"), d0.o.to("avg_resolution", Long.valueOf(roundToLong)), c.d.b.a.a.Y(bVar, eVar.j.get(720), "duration_resolution_under_720"), c.d.b.a.a.Y(bVar, eVar.j.get(480), "duration_resolution_under_480"), c.d.b.a.a.Y(bVar, eVar.j.get(360), "duration_resolution_under_360"), d0.o.to("num_pauses", 0), d0.o.to("duration_paused", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.i.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("duration_zero_receivers", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.j.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("duration_video_stopped", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.k.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("client_performance_cpu_percentile25", Long.valueOf(report.getPercentile25())), d0.o.to("client_performance_cpu_percentile50", Long.valueOf(report.getPercentile50())), d0.o.to("client_performance_cpu_percentile75", Long.valueOf(report.getPercentile75())), d0.o.to("client_performance_cpu_percentile90", Long.valueOf(report.getPercentile90())), d0.o.to("client_performance_cpu_percentile95", Long.valueOf(report.getPercentile95())), d0.o.to("client_performance_memory_percentile25", Long.valueOf(report2.getPercentile25() / j)), d0.o.to("client_performance_memory_percentile50", Long.valueOf(report2.getPercentile50() / j)), d0.o.to("client_performance_memory_percentile75", Long.valueOf(report2.getPercentile75() / j)), d0.o.to("client_performance_memory_percentile90", Long.valueOf(report2.getPercentile90() / j)), d0.o.to("client_performance_memory_percentile95", Long.valueOf(report2.getPercentile95() / j)), d0.o.to("client_performance_memory_min", Long.valueOf(report2.getMin() / j)), d0.o.to("client_performance_memory_max", Long.valueOf(report2.getMax() / j))); + Map mapOf = h0.mapOf(d0.o.to("duration", Double.valueOf(Math.floor((double) longValue))), c.d.b.a.a.X(bVar, eVar.g.get(8000000), "duration_stream_under_8mbps"), c.d.b.a.a.X(bVar, eVar.g.get(7000000), "duration_stream_under_7mbps"), c.d.b.a.a.X(bVar, eVar.g.get(6000000), "duration_stream_under_6mbps"), c.d.b.a.a.X(bVar, eVar.g.get(5000000), "duration_stream_under_5mbps"), c.d.b.a.a.X(bVar, eVar.g.get(4000000), "duration_stream_under_4mbps"), c.d.b.a.a.X(bVar, eVar.g.get(3000000), "duration_stream_under_3mbps"), c.d.b.a.a.X(bVar, eVar.g.get(2000000), "duration_stream_under_2mbps"), c.d.b.a.a.X(bVar, eVar.g.get(1500000), "duration_stream_under_1_5mbps"), c.d.b.a.a.X(bVar, eVar.g.get(1000000), "duration_stream_under_1mbps"), c.d.b.a.a.X(bVar, eVar.g.get(500000), "duration_stream_under_0_5mbps"), c.d.b.a.a.X(bVar, eVar.g.get(0), "duration_stream_at_0mbps"), c.d.b.a.a.X(bVar, eVar.h.get(60), "duration_fps_under_60"), c.d.b.a.a.X(bVar, eVar.h.get(55), "duration_fps_under_55"), c.d.b.a.a.X(bVar, eVar.h.get(50), "duration_fps_under_50"), c.d.b.a.a.X(bVar, eVar.h.get(45), "duration_fps_under_45"), c.d.b.a.a.X(bVar, eVar.h.get(40), "duration_fps_under_40"), c.d.b.a.a.X(bVar, eVar.h.get(35), "duration_fps_under_35"), c.d.b.a.a.X(bVar, eVar.h.get(30), "duration_fps_under_30"), c.d.b.a.a.X(bVar, eVar.h.get(25), "duration_fps_under_25"), c.d.b.a.a.X(bVar, eVar.h.get(20), "duration_fps_under_20"), c.d.b.a.a.X(bVar, eVar.h.get(15), "duration_fps_under_15"), c.d.b.a.a.X(bVar, eVar.h.get(10), "duration_fps_under_10"), c.d.b.a.a.X(bVar, eVar.h.get(5), "duration_fps_under_5"), c.d.b.a.a.X(bVar, eVar.h.get(0), "duration_fps_at_0"), d0.o.to("avg_resolution", Long.valueOf(roundToLong)), c.d.b.a.a.X(bVar, eVar.j.get(720), "duration_resolution_under_720"), c.d.b.a.a.X(bVar, eVar.j.get(480), "duration_resolution_under_480"), c.d.b.a.a.X(bVar, eVar.j.get(360), "duration_resolution_under_360"), d0.o.to("num_pauses", 0), d0.o.to("duration_paused", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.i.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("duration_zero_receivers", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.j.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("duration_video_stopped", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.k.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("client_performance_cpu_percentile25", Long.valueOf(report.getPercentile25())), d0.o.to("client_performance_cpu_percentile50", Long.valueOf(report.getPercentile50())), d0.o.to("client_performance_cpu_percentile75", Long.valueOf(report.getPercentile75())), d0.o.to("client_performance_cpu_percentile90", Long.valueOf(report.getPercentile90())), d0.o.to("client_performance_cpu_percentile95", Long.valueOf(report.getPercentile95())), d0.o.to("client_performance_memory_percentile25", Long.valueOf(report2.getPercentile25() / j)), d0.o.to("client_performance_memory_percentile50", Long.valueOf(report2.getPercentile50() / j)), d0.o.to("client_performance_memory_percentile75", Long.valueOf(report2.getPercentile75() / j)), d0.o.to("client_performance_memory_percentile90", Long.valueOf(report2.getPercentile90() / j)), d0.o.to("client_performance_memory_percentile95", Long.valueOf(report2.getPercentile95() / j)), d0.o.to("client_performance_memory_min", Long.valueOf(report2.getMin() / j)), d0.o.to("client_performance_memory_max", Long.valueOf(report2.getMax() / j))); a aVar = eVar.e; long a2 = i > 0 ? b.a(bVar, Float.valueOf(((float) (aVar.f * ((long) 8))) / f2)) : 0; long a3 = i > 0 ? b.a(bVar, Float.valueOf(((float) aVar.a) / f2)) : 0; diff --git a/app/src/main/java/c/a/q/q.java b/app/src/main/java/c/a/q/q.java index 85e491d9f8..f02eff88d1 100644 --- a/app/src/main/java/c/a/q/q.java +++ b/app/src/main/java/c/a/q/q.java @@ -15,8 +15,8 @@ public final class q implements Action1 { @Override // rx.functions.Action1 public void call(Throwable th) { RtcConnection rtcConnection = this.i; - StringBuilder P = a.P("failed to handle connectivity change in "); - P.append(this.i.k); - RtcConnection.o(rtcConnection, P.toString(), th, null, 4); + StringBuilder O = a.O("failed to handle connectivity change in "); + O.append(this.i.k); + RtcConnection.o(rtcConnection, O.toString(), th, null, 4); } } diff --git a/app/src/main/java/c/a/q/r.java b/app/src/main/java/c/a/q/r.java index df77de59d0..e9c959f2dc 100644 --- a/app/src/main/java/c/a/q/r.java +++ b/app/src/main/java/c/a/q/r.java @@ -13,6 +13,6 @@ public final class r extends RtcConnection.b { @Override // com.discord.rtcconnection.RtcConnection.b, com.discord.rtcconnection.RtcConnection.c public void onStateChange(RtcConnection.StateChange stateChange) { m.checkNotNullParameter(stateChange, "stateChange"); - this.i.f2161s.onNext(stateChange); + this.i.f2164s.onNext(stateChange); } } diff --git a/app/src/main/java/c/a/q/s.java b/app/src/main/java/c/a/q/s.java index a0c9acbda5..29e0b8250b 100644 --- a/app/src/main/java/c/a/q/s.java +++ b/app/src/main/java/c/a/q/s.java @@ -53,8 +53,8 @@ public final class s extends o implements Function0 { rtcConnection.r("connecting via endpoint: " + replace$default + " token: " + str2); try { URI uri = new URI(v); - rtcConnection.f2162x = uri.getHost(); - rtcConnection.f2163y = Integer.valueOf(uri.getPort()); + rtcConnection.f2165x = uri.getHost(); + rtcConnection.f2166y = Integer.valueOf(uri.getPort()); } catch (Exception e) { rtcConnection.U.e(rtcConnection.k, "Failed to parse RTC endpoint", e, g0.mapOf(d0.o.to("endpoint", replace$default))); } diff --git a/app/src/main/java/c/a/q/w.java b/app/src/main/java/c/a/q/w.java index 571605a4a3..9b6f9e106e 100644 --- a/app/src/main/java/c/a/q/w.java +++ b/app/src/main/java/c/a/q/w.java @@ -30,7 +30,7 @@ public final class w extends o implements Function0 { rtcConnection.B = Long.valueOf(rtcConnection.V.currentTimeMillis()); RtcConnection rtcConnection2 = this.this$0; rtcConnection2.D++; - rtcConnection2.E = rtcConnection2.T.a().b0(2, TimeUnit.SECONDS).V(new t(this), new v(this)); + rtcConnection2.E = rtcConnection2.T.a().c0(2, TimeUnit.SECONDS).W(new t(this), new v(this)); return Unit.a; } } diff --git a/app/src/main/java/c/a/r/b.java b/app/src/main/java/c/a/r/b.java index a6093040bb..6571c29c3c 100644 --- a/app/src/main/java/c/a/r/b.java +++ b/app/src/main/java/c/a/r/b.java @@ -67,17 +67,17 @@ public final class b extends k implements Function2'); - spannableStringBuilder.append((CharSequence) P.toString()); + StringBuilder O = c.d.b.a.a.O("'); + spannableStringBuilder.append((CharSequence) O.toString()); Iterator it4 = aVar.invoke(rc).iterator(); while (it4.hasNext()) { spannableStringBuilder.setSpan(it4.next(), length4 + 1, spannableStringBuilder.length(), 33); diff --git a/app/src/main/java/c/a/y/a0.java b/app/src/main/java/c/a/y/a0.java index 22ea8d5787..10e2471bf8 100644 --- a/app/src/main/java/c/a/y/a0.java +++ b/app/src/main/java/c/a/y/a0.java @@ -53,7 +53,7 @@ public final class a0 extends LinearLayout { TextView textView = this.l.b; m.checkNotNullExpressionValue(textView, "binding.counterText1"); textView.setActivated(z2); - TextView textView2 = this.l.f92c; + TextView textView2 = this.l.f91c; m.checkNotNullExpressionValue(textView2, "binding.counterText2"); textView2.setActivated(z2); } diff --git a/app/src/main/java/c/a/y/b0.java b/app/src/main/java/c/a/y/b0.java index c368534fa6..da4501c27b 100644 --- a/app/src/main/java/c/a/y/b0.java +++ b/app/src/main/java/c/a/y/b0.java @@ -34,7 +34,7 @@ import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.reflect.KProperty; /* compiled from: SelectorBottomSheet.kt */ public final class b0 extends AppBottomSheet implements i { - public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.a0(b0.class, "binding", "getBinding()Lcom/discord/databinding/BottomSheetSimpleSelectorBinding;", 0)}; + public static final /* synthetic */ KProperty[] i = {c.d.b.a.a.Z(b0.class, "binding", "getBinding()Lcom/discord/databinding/BottomSheetSimpleSelectorBinding;", 0)}; public static final a j = new a(null); public Function1 k; public final FragmentViewBindingDelegate l = FragmentViewBindingDelegateKt.viewBinding$default(this, b.i, null, 2, null); @@ -204,7 +204,7 @@ public final class b0 extends AppBottomSheet implements i { } List list = (List) serializable; boolean z2 = getArgumentsOrDefault().getBoolean("simple_bottom_sheet_show_dividers"); - TextView textView = g().f74c; + TextView textView = g().f73c; m.checkNotNullExpressionValue(textView, "binding.widgetSimpleBottomSheetSelectorPlaceholder"); textView.setText(string); ConstraintLayout constraintLayout = g().b; diff --git a/app/src/main/java/c/a/y/c0.java b/app/src/main/java/c/a/y/c0.java index 02269d4f0b..57109d83ad 100644 --- a/app/src/main/java/c/a/y/c0.java +++ b/app/src/main/java/c/a/y/c0.java @@ -98,19 +98,19 @@ public final class c0 implements Serializable { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("SimpleBottomSheetItem(title="); - P.append(this.title); - P.append(", description="); - P.append(this.description); - P.append(", iconRes="); - P.append(this.iconRes); - P.append(", iconUri="); - P.append(this.iconUri); - P.append(", iconTint="); - P.append(this.iconTint); - P.append(", titleTextColor="); - P.append(this.titleTextColor); - P.append(", titleEndIcon="); - return a.E(P, this.titleEndIcon, ")"); + StringBuilder O = a.O("SimpleBottomSheetItem(title="); + O.append(this.title); + O.append(", description="); + O.append(this.description); + O.append(", iconRes="); + O.append(this.iconRes); + O.append(", iconUri="); + O.append(this.iconUri); + O.append(", iconTint="); + O.append(this.iconTint); + O.append(", titleTextColor="); + O.append(this.titleTextColor); + O.append(", titleEndIcon="); + return a.D(O, this.titleEndIcon, ")"); } } diff --git a/app/src/main/java/c/a/y/e0.java b/app/src/main/java/c/a/y/e0.java index 835e3927e1..b91912475e 100644 --- a/app/src/main/java/c/a/y/e0.java +++ b/app/src/main/java/c/a/y/e0.java @@ -49,7 +49,7 @@ public final class e0 extends SimpleRecyclerAdapter.ViewHolder { MaterialTextView materialTextView2 = this.f244c.b; m.checkNotNullExpressionValue(materialTextView2, "itemBinding.selectComponentSheetItemDescription"); ViewExtensions.setTextAndVisibilityBy(materialTextView2, c0Var2.a()); - SimpleDraweeView simpleDraweeView = this.f244c.f79c; + SimpleDraweeView simpleDraweeView = this.f244c.f78c; m.checkNotNullExpressionValue(simpleDraweeView, "itemBinding.selectComponentSheetItemIcon"); int i2 = 0; if (!((c0Var2.d() == null && c0Var2.b() == null) ? false : true)) { @@ -58,18 +58,18 @@ public final class e0 extends SimpleRecyclerAdapter.ViewHolder { simpleDraweeView.setVisibility(i2); String d = c0Var2.d(); if (d != null) { - SimpleDraweeView simpleDraweeView2 = this.f244c.f79c; + SimpleDraweeView simpleDraweeView2 = this.f244c.f78c; m.checkNotNullExpressionValue(simpleDraweeView2, "itemBinding.selectComponentSheetItemIcon"); MGImages.setImage$default(simpleDraweeView2, d, R.dimen.emoji_size, R.dimen.emoji_size, true, null, null, 96, null); } else { Integer b = c0Var2.b(); if (b != null) { - this.f244c.f79c.setImageResource(b.intValue()); + this.f244c.f78c.setImageResource(b.intValue()); } } Integer c2 = c0Var2.c(); if (c2 != null) { - this.f244c.f79c.setColorFilter(c2.intValue()); + this.f244c.f78c.setColorFilter(c2.intValue()); } MaterialTextView materialTextView3 = this.f244c.d; materialTextView3.setText(c0Var2.e()); diff --git a/app/src/main/java/c/a/y/j0/e.java b/app/src/main/java/c/a/y/j0/e.java index 4257ce417e..a572949117 100644 --- a/app/src/main/java/c/a/y/j0/e.java +++ b/app/src/main/java/c/a/y/j0/e.java @@ -4,7 +4,7 @@ import org.webrtc.RendererCommon; import rx.subjects.BehaviorSubject; /* compiled from: RxRendererEvents.kt */ public final class e implements RendererCommon.RendererEvents { - public final BehaviorSubject i = BehaviorSubject.j0(); + public final BehaviorSubject i = BehaviorSubject.k0(); /* compiled from: RxRendererEvents.kt */ public static final class a { @@ -36,12 +36,12 @@ public final class e implements RendererCommon.RendererEvents { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Resolution(width="); - P.append(this.a); - P.append(", height="); - P.append(this.b); - P.append(", rotation="); - return c.d.b.a.a.z(P, this.f246c, ")"); + StringBuilder O = c.d.b.a.a.O("Resolution(width="); + O.append(this.a); + O.append(", height="); + O.append(this.b); + O.append(", rotation="); + return c.d.b.a.a.z(O, this.f246c, ")"); } } diff --git a/app/src/main/java/c/a/y/j0/o.java b/app/src/main/java/c/a/y/j0/o.java index 5c5437df8a..a640f3da0a 100644 --- a/app/src/main/java/c/a/y/j0/o.java +++ b/app/src/main/java/c/a/y/j0/o.java @@ -31,7 +31,7 @@ public final class o extends d0.z.d.o implements Function1 { m.checkNotNullExpressionValue(appVideoStreamRenderer, "binding.participantVideoStreamRenderer"); boolean z2 = false; appVideoStreamRenderer.setVisibility(0); - View view = videoCallParticipantView.i.f101c; + View view = videoCallParticipantView.i.f94c; m.checkNotNullExpressionValue(view, "binding.participantBgLetterbox"); view.setVisibility(0); ProgressBar progressBar = videoCallParticipantView.i.p; diff --git a/app/src/main/java/c/a/y/l.java b/app/src/main/java/c/a/y/l.java index 9d9624bfc5..4463e328cb 100644 --- a/app/src/main/java/c/a/y/l.java +++ b/app/src/main/java/c/a/y/l.java @@ -71,9 +71,9 @@ public abstract class l extends OverlayDialog implements AppComponent { public l(Context context) { super(context); m.checkNotNullParameter(context, "context"); - PublishSubject j02 = PublishSubject.j0(); - m.checkNotNullExpressionValue(j02, "PublishSubject.create()"); - this.w = j02; + PublishSubject k0 = PublishSubject.k0(); + m.checkNotNullExpressionValue(k0, "PublishSubject.create()"); + this.w = k0; setOnClickListener(new k(this)); } diff --git a/app/src/main/java/c/a/y/l0/c/a.java b/app/src/main/java/c/a/y/l0/c/a.java index 877607db3e..3fbf743ec1 100644 --- a/app/src/main/java/c/a/y/l0/c/a.java +++ b/app/src/main/java/c/a/y/l0/c/a.java @@ -3,7 +3,7 @@ package c.a.y.l0.c; import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; -import c.a.i.d5; +import c.a.i.c5; import c.a.y.l0.c.d; import com.discord.R; import com.discord.utilities.extensions.SimpleDraweeViewExtensionsKt; @@ -12,7 +12,7 @@ import com.facebook.drawee.view.SimpleDraweeView; import d0.z.d.m; /* compiled from: SpeakersViewHolder.kt */ public final class a extends MGRecyclerViewHolder { - public final d5 a; + public final c5 a; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public a(c cVar) { @@ -25,9 +25,9 @@ public final class a extends MGRecyclerViewHolder { i = R.id.discovery_stage_card_speaker_name; TextView textView = (TextView) view.findViewById(R.id.discovery_stage_card_speaker_name); if (textView != null) { - d5 d5Var = new d5((LinearLayout) view, simpleDraweeView, textView); - m.checkNotNullExpressionValue(d5Var, "WidgetDiscoveryStageCard…kerBinding.bind(itemView)"); - this.a = d5Var; + c5 c5Var = new c5((LinearLayout) view, simpleDraweeView, textView); + m.checkNotNullExpressionValue(c5Var, "WidgetDiscoveryStageCard…kerBinding.bind(itemView)"); + this.a = c5Var; return; } } @@ -44,7 +44,7 @@ public final class a extends MGRecyclerViewHolder { SimpleDraweeView simpleDraweeView = this.a.b; m.checkNotNullExpressionValue(simpleDraweeView, "binding.discoveryStageCardSpeakerAvatar"); SimpleDraweeViewExtensionsKt.setAvatar$default(simpleDraweeView, aVar.k, false, R.dimen.avatar_size_medium, aVar.l, 2, null); - TextView textView = this.a.f84c; + TextView textView = this.a.f77c; m.checkNotNullExpressionValue(textView, "binding.discoveryStageCardSpeakerName"); textView.setText(aVar.m); } diff --git a/app/src/main/java/c/a/y/l0/c/b.java b/app/src/main/java/c/a/y/l0/c/b.java index 7184b72afd..c72da44b77 100644 --- a/app/src/main/java/c/a/y/l0/c/b.java +++ b/app/src/main/java/c/a/y/l0/c/b.java @@ -3,7 +3,7 @@ package c.a.y.l0.c; import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; -import c.a.i.c5; +import c.a.i.b5; import c.a.y.l0.c.d; import c.d.b.a.a; import com.discord.R; @@ -12,7 +12,7 @@ import com.discord.utilities.resources.StringResourceUtilsKt; import d0.z.d.m; /* compiled from: SpeakersViewHolder.kt */ public final class b extends MGRecyclerViewHolder { - public final c5 a; + public final b5 a; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public b(c cVar) { @@ -21,9 +21,9 @@ public final class b extends MGRecyclerViewHolder { View view = this.itemView; TextView textView = (TextView) view.findViewById(R.id.other_speakers_count_text); if (textView != null) { - c5 c5Var = new c5((LinearLayout) view, textView); - m.checkNotNullExpressionValue(c5Var, "WidgetDiscoveryOtherSpea…untBinding.bind(itemView)"); - this.a = c5Var; + b5 b5Var = new b5((LinearLayout) view, textView); + m.checkNotNullExpressionValue(b5Var, "WidgetDiscoveryOtherSpea…untBinding.bind(itemView)"); + this.a = b5Var; return; } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(R.id.other_speakers_count_text))); diff --git a/app/src/main/java/c/a/y/l0/c/d.java b/app/src/main/java/c/a/y/l0/c/d.java index a1600771cc..8937c6b585 100644 --- a/app/src/main/java/c/a/y/l0/c/d.java +++ b/app/src/main/java/c/a/y/l0/c/d.java @@ -56,14 +56,14 @@ public abstract class d implements MGRecyclerDataPayload { } public String toString() { - StringBuilder P = c.d.b.a.a.P("IndividualSpeakerItem(user="); - P.append(this.k); - P.append(", guildMember="); - P.append(this.l); - P.append(", displayName="); - P.append(this.m); - P.append(", positionKey="); - return c.d.b.a.a.H(P, this.n, ")"); + StringBuilder O = c.d.b.a.a.O("IndividualSpeakerItem(user="); + O.append(this.k); + O.append(", guildMember="); + O.append(this.l); + O.append(", displayName="); + O.append(this.m); + O.append(", positionKey="); + return c.d.b.a.a.G(O, this.n, ")"); } } @@ -98,10 +98,10 @@ public abstract class d implements MGRecyclerDataPayload { } public String toString() { - StringBuilder P = c.d.b.a.a.P("OtherSpeakersCountItem(otherSpeakersCount="); - P.append(this.k); - P.append(", positionKey="); - return c.d.b.a.a.H(P, this.l, ")"); + StringBuilder O = c.d.b.a.a.O("OtherSpeakersCountItem(otherSpeakersCount="); + O.append(this.k); + O.append(", positionKey="); + return c.d.b.a.a.G(O, this.l, ")"); } } diff --git a/app/src/main/java/c/a/y/n0/a.java b/app/src/main/java/c/a/y/n0/a.java index 7c80d7e0c2..1e954d7988 100644 --- a/app/src/main/java/c/a/y/n0/a.java +++ b/app/src/main/java/c/a/y/n0/a.java @@ -21,6 +21,6 @@ public final class a implements View.OnClickListener { if (!(googlePlayInAppSku == null || (function1 = giftSelectView.j) == null)) { function1.invoke(googlePlayInAppSku); } - giftSelectView.i.f1800c.setOnClickListener(null); + giftSelectView.i.f1801c.setOnClickListener(null); } } diff --git a/app/src/main/java/c/a/y/o.java b/app/src/main/java/c/a/y/o.java index aa89af7f9b..2c9eeea9e0 100644 --- a/app/src/main/java/c/a/y/o.java +++ b/app/src/main/java/c/a/y/o.java @@ -1,7 +1,7 @@ package c.a.y; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.api.channel.Channel; +import com.discord.api.channel.ChannelUtils; import com.discord.api.voice.state.VoiceState; import com.discord.stores.StoreVoiceParticipants; import j0.k.b; @@ -20,7 +20,7 @@ public final class o implements b implements b { @Override // kotlin.jvm.functions.Function1 public Unit invoke(View view) { m.checkNotNullParameter(view, "it"); - this.this$0.this$0.i.f138c.setPlaybackMode(RLottieDrawable.PlaybackMode.LOOP); - this.this$0.this$0.i.f138c.b(); + this.this$0.this$0.i.f137c.setPlaybackMode(RLottieDrawable.PlaybackMode.LOOP); + this.this$0.this$0.i.f137c.b(); return Unit.a; } } diff --git a/app/src/main/java/c/a/y/q0/h.java b/app/src/main/java/c/a/y/q0/h.java index 527d9a725c..5c9841c8c3 100644 --- a/app/src/main/java/c/a/y/q0/h.java +++ b/app/src/main/java/c/a/y/q0/h.java @@ -46,11 +46,11 @@ public final class h extends o implements Function1 X = StoreStream.Companion.getVoiceChannelSelected().observeSelectedVoiceChannelId().X(a.i); - m.checkNotNullExpressionValue(X, "StoreStream\n .get…d()\n }\n }"); - ObservableExtensionsKt.appSubscribe$default(ObservableExtensionsKt.ui$default(ObservableExtensionsKt.computationLatest(X), this, null, 2, null), w.class, getContext(), (Function1) null, (Function1) null, (Function0) null, (Function0) null, new b(this), 60, (Object) null); + Observable Y = StoreStream.Companion.getVoiceChannelSelected().observeSelectedVoiceChannelId().Y(a.i); + m.checkNotNullExpressionValue(Y, "StoreStream\n .get…d()\n }\n }"); + ObservableExtensionsKt.appSubscribe$default(ObservableExtensionsKt.ui$default(ObservableExtensionsKt.computationLatest(Y), this, null, 2, null), w.class, getContext(), (Function1) null, (Function1) null, (Function0) null, (Function0) null, new b(this), 60, (Object) null); } @Override // com.discord.overlay.views.OverlayBubbleWrap, android.view.View diff --git a/app/src/main/java/c/a/y/z.java b/app/src/main/java/c/a/y/z.java index b795f19294..04aa93a1ac 100644 --- a/app/src/main/java/c/a/y/z.java +++ b/app/src/main/java/c/a/y/z.java @@ -11,9 +11,9 @@ import android.widget.EditText; import android.widget.TextView; import androidx.recyclerview.widget.RecyclerView; import c.a.i.t0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.R; import com.discord.api.channel.Channel; +import com.discord.api.channel.ChannelUtils; import com.discord.app.AppComponent; import com.discord.utilities.mg_recycler.MGRecyclerAdapter; import com.discord.utilities.rx.ObservableExtensionsKt; @@ -33,7 +33,7 @@ import rx.Observable; import rx.subjects.BehaviorSubject; /* compiled from: OverlayVoiceSelectorBubbleDialog.kt */ public final class z extends l implements AppComponent { - public final BehaviorSubject A = BehaviorSubject.k0(""); + public final BehaviorSubject A = BehaviorSubject.l0(""); public String B; /* renamed from: y reason: collision with root package name */ @@ -122,7 +122,7 @@ public final class z extends l implements AppComponent { ArrayList arrayList = new ArrayList(); for (Object obj : data) { Channel channel = ((WidgetGlobalSearchModel.ItemDataPayload) obj).getChannel(); - if (channel != null && AnimatableValueParser.E1(channel)) { + if (channel != null && ChannelUtils.C(channel)) { arrayList.add(obj); } } @@ -148,7 +148,7 @@ public final class z extends l implements AppComponent { @Override // c.a.y.l public Animator getClosingAnimator() { Animator loadAnimator = AnimatorInflater.loadAnimator(getContext(), R.animator.overlay_slide_down_fade_out); - loadAnimator.setTarget(this.f250y.f164c); + loadAnimator.setTarget(this.f250y.f163c); m.checkNotNullExpressionValue(loadAnimator, "AnimatorInflater.loadAni…binding.dialogCard)\n }"); return loadAnimator; } @@ -180,7 +180,7 @@ public final class z extends l implements AppComponent { super.onAttachedToWindow(); h(); Animator loadAnimator = AnimatorInflater.loadAnimator(getContext(), R.animator.overlay_slide_up_fade_in); - loadAnimator.setTarget(this.f250y.f164c); + loadAnimator.setTarget(this.f250y.f163c); loadAnimator.start(); } diff --git a/app/src/main/java/c/a/z/a/a/e.java b/app/src/main/java/c/a/z/a/a/e.java index cf5cdfac21..f829869882 100644 --- a/app/src/main/java/c/a/z/a/a/e.java +++ b/app/src/main/java/c/a/z/a/a/e.java @@ -29,7 +29,7 @@ public final /* synthetic */ class e implements b { if (channel == null) { return new j(null); } - Observable h = Observable.h(StoreStream.getUsers().observeMe(), StoreStream.getGuilds().observeGuild(j), StoreStream.getPermissions().observePermissionsForChannel(j2), observable.o(300, TimeUnit.MILLISECONDS).X(new g(j, channel)).r(), new j(channel)); + Observable h = Observable.h(StoreStream.getUsers().observeMe(), StoreStream.getGuilds().observeGuild(j), StoreStream.getPermissions().observePermissionsForChannel(j2), observable.o(300, TimeUnit.MILLISECONDS).Y(new g(j, channel)).r(), new j(channel)); m.checkNotNullExpressionValue(h, "observable"); return ObservableExtensionsKt.computationBuffered(h).r(); } diff --git a/app/src/main/java/c/a/z/a/a/h.java b/app/src/main/java/c/a/z/a/a/h.java index c22ab065c0..5e63f857c4 100644 --- a/app/src/main/java/c/a/z/a/a/h.java +++ b/app/src/main/java/c/a/z/a/a/h.java @@ -25,8 +25,8 @@ public final /* synthetic */ class h implements b { public final Object call(Object obj) { List list = this.i; Map map = this.j; - Observable g02 = Observable.g0(new r(Observable.A(((Map) obj).values()).x(new l(list)).x(new m(map)).x(new k(this.k)).i, new o2(new f(map), 10))); + Observable h02 = Observable.h0(new r(Observable.A(((Map) obj).values()).x(new l(list)).x(new m(map)).x(new k(this.k)).i, new o2(new f(map), 10))); l lVar = l.INSTANCE; - return (g02 instanceof j ? Observable.g0(new n.b(((j) g02).k, lVar)) : Observable.g0(new n(g02, lVar, j0.l.e.h.i))).F(new d(map)).e0(); + return (h02 instanceof j ? Observable.h0(new n.b(((j) h02).k, lVar)) : Observable.h0(new n(h02, lVar, j0.l.e.h.i))).F(new d(map)).f0(); } } diff --git a/app/src/main/java/c/a/z/a/a/i.java b/app/src/main/java/c/a/z/a/a/i.java index dd8c738bec..4afbd5c41f 100644 --- a/app/src/main/java/c/a/z/a/a/i.java +++ b/app/src/main/java/c/a/z/a/a/i.java @@ -17,6 +17,6 @@ public final /* synthetic */ class i implements b { @Override // j0.k.b public final Object call(Object obj) { Map map = (Map) obj; - return StoreStream.getUsers().observeUsers(map.keySet()).X(new h(this.i, map, this.j)); + return StoreStream.getUsers().observeUsers(map.keySet()).Y(new h(this.i, map, this.j)); } } diff --git a/app/src/main/java/c/a/z/a/a/q.java b/app/src/main/java/c/a/z/a/a/q.java index 9cd3ca3a47..2d99f855ef 100644 --- a/app/src/main/java/c/a/z/a/a/q.java +++ b/app/src/main/java/c/a/z/a/a/q.java @@ -16,6 +16,6 @@ public final /* synthetic */ class q implements b { @Override // j0.k.b public final Object call(Object obj) { Channel channel = (Channel) obj; - return channel == null ? new j(null) : Observable.h(StoreStream.getGuilds().observeGuild(channel.f()), StoreStream.getUsers().observeMe(), StoreStream.getPermissions().observePermissionsForChannel(this.i), StoreStream.getGuilds().observeSortedRoles(channel.f()).X(new s(channel)), new r(channel)); + return channel == null ? new j(null) : Observable.h(StoreStream.getGuilds().observeGuild(channel.f()), StoreStream.getUsers().observeMe(), StoreStream.getPermissions().observePermissionsForChannel(this.i), StoreStream.getGuilds().observeSortedRoles(channel.f()).Y(new s(channel)), new r(channel)); } } diff --git a/app/src/main/java/c/a/z/a/a/s.java b/app/src/main/java/c/a/z/a/a/s.java index e692ebd840..7df52a3938 100644 --- a/app/src/main/java/c/a/z/a/a/s.java +++ b/app/src/main/java/c/a/z/a/a/s.java @@ -15,6 +15,6 @@ public final /* synthetic */ class s implements b { @Override // j0.k.b public final Object call(Object obj) { - return Observable.g0(new q((List) obj)).x(new t(this.i)).F(v.i).e0(); + return Observable.h0(new q((List) obj)).x(new t(this.i)).F(v.i).f0(); } } diff --git a/app/src/main/java/c/b/a/a/l.java b/app/src/main/java/c/b/a/a/l.java index 159e18af6a..e005c3b926 100644 --- a/app/src/main/java/c/b/a/a/l.java +++ b/app/src/main/java/c/b/a/a/l.java @@ -58,6 +58,6 @@ public final class l extends o implements Function0 { @Override // kotlin.jvm.functions.Function0 /* renamed from: invoke */ public final void mo1invoke() { - this.this$0.u = Observable.c0(300, TimeUnit.MILLISECONDS).I(j0.j.b.a.a()).U(new a(this)); + this.this$0.u = Observable.d0(300, TimeUnit.MILLISECONDS).I(j0.j.b.a.a()).V(new a(this)); } } diff --git a/app/src/main/java/c/b/a/d/m.java b/app/src/main/java/c/b/a/d/m.java index 0473cefe2e..0dcd707406 100644 --- a/app/src/main/java/c/b/a/d/m.java +++ b/app/src/main/java/c/b/a/d/m.java @@ -21,10 +21,10 @@ public final class m implements Runnable { MediaStore.Images.Thumbnails.getThumbnail(this.j, this.i.$id, 1, null); } catch (Exception unused) { String name = Media.class.getName(); - StringBuilder P = a.P("Error generating thumbnail for photo "); - P.append(this.i.$id); - P.append('.'); - Log.v(name, P.toString()); + StringBuilder O = a.O("Error generating thumbnail for photo "); + O.append(this.i.$id); + O.append('.'); + Log.v(name, O.toString()); } } } diff --git a/app/src/main/java/c/b/a/h/a.java b/app/src/main/java/c/b/a/h/a.java index 26eb421892..440dcb2595 100644 --- a/app/src/main/java/c/b/a/h/a.java +++ b/app/src/main/java/c/b/a/h/a.java @@ -62,7 +62,7 @@ public abstract class a { } public String toString() { - return c.d.b.a.a.H(c.d.b.a.a.P("ShowToast(text="), this.a, ")"); + return c.d.b.a.a.G(c.d.b.a.a.O("ShowToast(text="), this.a, ")"); } } @@ -87,7 +87,7 @@ public abstract class a { } public String toString() { - return c.d.b.a.a.z(c.d.b.a.a.P("ShowToastStringRes(textResId="), this.a, ")"); + return c.d.b.a.a.z(c.d.b.a.a.O("ShowToastStringRes(textResId="), this.a, ")"); } } diff --git a/app/src/main/java/c/c/a/a0/a.java b/app/src/main/java/c/c/a/a0/a.java index 079a85fb44..aad6fdcc0f 100644 --- a/app/src/main/java/c/c/a/a0/a.java +++ b/app/src/main/java/c/c/a/a0/a.java @@ -1,7 +1,7 @@ package c.c.a.a0; import android.graphics.PointF; -import c.c.a.a0.h0.c; +import c.c.a.a0.i0.c; import c.c.a.b0.g; import c.c.a.d; import c.c.a.w.c.h; @@ -9,7 +9,6 @@ import c.c.a.y.k.b; import c.c.a.y.k.e; import c.c.a.y.k.i; import c.c.a.y.k.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.util.ArrayList; /* compiled from: AnimatablePathValueParser */ @@ -21,12 +20,12 @@ public class a { if (cVar.w() == c.b.BEGIN_ARRAY) { cVar.a(); while (cVar.e()) { - arrayList.add(new h(dVar, p.a(cVar, dVar, g.c(), u.a, cVar.w() == c.b.BEGIN_OBJECT))); + arrayList.add(new h(dVar, q.a(cVar, dVar, g.c(), v.a, cVar.w() == c.b.BEGIN_OBJECT))); } cVar.c(); - q.b(arrayList); + r.b(arrayList); } else { - arrayList.add(new c.c.a.c0.a(o.b(cVar, g.c()))); + arrayList.add(new c.c.a.c0.a(p.b(cVar, g.c()))); } return new e(arrayList); } @@ -48,12 +47,12 @@ public class a { } else if (cVar.w() == bVar) { cVar.C(); } else { - bVar3 = AnimatableValueParser.T1(cVar, dVar); + bVar3 = d.q1(cVar, dVar); } } else if (cVar.w() == bVar) { cVar.C(); } else { - bVar2 = AnimatableValueParser.T1(cVar, dVar); + bVar2 = d.q1(cVar, dVar); } z2 = true; } else { diff --git a/app/src/main/java/c/c/a/a0/a0.java b/app/src/main/java/c/c/a/a0/a0.java index 9bb6e42e6e..b51b8fbcb0 100644 --- a/app/src/main/java/c/c/a/a0/a0.java +++ b/app/src/main/java/c/c/a/a0/a0.java @@ -1,68 +1,27 @@ package c.c.a.a0; -import android.graphics.PointF; -import c.c.a.a0.h0.c; -import c.c.a.b0.f; -import c.c.a.y.a; -import c.c.a.y.l.k; +import c.c.a.a0.i0.c; +import c.c.a.c0.d; import java.io.IOException; -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; -/* compiled from: ShapeDataParser */ -public class a0 implements g0 { +/* compiled from: ScaleXYParser */ +public class a0 implements h0 { public static final a0 a = new a0(); - public static final c.a b = c.a.a("c", "v", "i", "o"); /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public k a(c cVar, float f) throws IOException { - if (cVar.w() == c.b.BEGIN_ARRAY) { + @Override // c.c.a.a0.h0 + public d a(c cVar, float f) throws IOException { + boolean z2 = cVar.w() == c.b.BEGIN_ARRAY; + if (z2) { cVar.a(); } - cVar.b(); - List list = null; - List list2 = null; - List list3 = null; - boolean z2 = false; + float p = (float) cVar.p(); + float p2 = (float) cVar.p(); while (cVar.e()) { - int z3 = cVar.z(b); - if (z3 == 0) { - z2 = cVar.f(); - } else if (z3 == 1) { - list = o.c(cVar, f); - } else if (z3 == 2) { - list2 = o.c(cVar, f); - } else if (z3 != 3) { - cVar.B(); - cVar.C(); - } else { - list3 = o.c(cVar, f); - } + cVar.C(); } - cVar.d(); - if (cVar.w() == c.b.END_ARRAY) { + if (z2) { cVar.c(); } - if (list == null || list2 == null || list3 == null) { - throw new IllegalArgumentException("Shape data was missing information."); - } else if (list.isEmpty()) { - return new k(new PointF(), false, Collections.emptyList()); - } else { - int size = list.size(); - PointF pointF = list.get(0); - ArrayList arrayList = new ArrayList(size); - for (int i = 1; i < size; i++) { - PointF pointF2 = list.get(i); - int i2 = i - 1; - arrayList.add(new a(f.a(list.get(i2), list3.get(i2)), f.a(pointF2, list2.get(i)), pointF2)); - } - if (z2) { - PointF pointF3 = list.get(0); - int i3 = size - 1; - arrayList.add(new a(f.a(list.get(i3), list3.get(i3)), f.a(pointF3, list2.get(0)), pointF3)); - } - return new k(pointF, z2, arrayList); - } + return new d((p / 100.0f) * f, (p2 / 100.0f) * f); } } diff --git a/app/src/main/java/c/c/a/a0/b.java b/app/src/main/java/c/c/a/a0/b.java index 2386efc7c0..3f75123ad6 100644 --- a/app/src/main/java/c/c/a/a0/b.java +++ b/app/src/main/java/c/c/a/a0/b.java @@ -1,6 +1,6 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; +import c.c.a.a0.i0.c; /* compiled from: AnimatableTextPropertiesParser */ public class b { public static c.a a = c.a.a("a"); diff --git a/app/src/main/java/c/c/a/a0/b0.java b/app/src/main/java/c/c/a/a0/b0.java index 2ade7f55ef..684201ecee 100644 --- a/app/src/main/java/c/c/a/a0/b0.java +++ b/app/src/main/java/c/c/a/a0/b0.java @@ -1,7 +1,68 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: ShapeFillParser */ -public class b0 { - public static final c.a a = c.a.a("nm", "c", "o", "fillEnabled", "r", "hd"); +import android.graphics.PointF; +import c.c.a.a0.i0.c; +import c.c.a.b0.f; +import c.c.a.y.a; +import c.c.a.y.l.k; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +/* compiled from: ShapeDataParser */ +public class b0 implements h0 { + public static final b0 a = new b0(); + public static final c.a b = c.a.a("c", "v", "i", "o"); + + /* Return type fixed from 'java.lang.Object' to match base method */ + @Override // c.c.a.a0.h0 + public k a(c cVar, float f) throws IOException { + if (cVar.w() == c.b.BEGIN_ARRAY) { + cVar.a(); + } + cVar.b(); + List list = null; + List list2 = null; + List list3 = null; + boolean z2 = false; + while (cVar.e()) { + int z3 = cVar.z(b); + if (z3 == 0) { + z2 = cVar.f(); + } else if (z3 == 1) { + list = p.c(cVar, f); + } else if (z3 == 2) { + list2 = p.c(cVar, f); + } else if (z3 != 3) { + cVar.B(); + cVar.C(); + } else { + list3 = p.c(cVar, f); + } + } + cVar.d(); + if (cVar.w() == c.b.END_ARRAY) { + cVar.c(); + } + if (list == null || list2 == null || list3 == null) { + throw new IllegalArgumentException("Shape data was missing information."); + } else if (list.isEmpty()) { + return new k(new PointF(), false, Collections.emptyList()); + } else { + int size = list.size(); + PointF pointF = list.get(0); + ArrayList arrayList = new ArrayList(size); + for (int i = 1; i < size; i++) { + PointF pointF2 = list.get(i); + int i2 = i - 1; + arrayList.add(new a(f.a(list.get(i2), list3.get(i2)), f.a(pointF2, list2.get(i)), pointF2)); + } + if (z2) { + PointF pointF3 = list.get(0); + int i3 = size - 1; + arrayList.add(new a(f.a(list.get(i3), list3.get(i3)), f.a(pointF3, list2.get(0)), pointF3)); + } + return new k(pointF, z2, arrayList); + } + } } diff --git a/app/src/main/java/c/c/a/a0/c.java b/app/src/main/java/c/c/a/a0/c.java index e2b169d874..adeb1bc063 100644 --- a/app/src/main/java/c/c/a/a0/c.java +++ b/app/src/main/java/c/c/a/a0/c.java @@ -1,7 +1,7 @@ package c.c.a.a0; import android.graphics.PointF; -import c.c.a.a0.h0.c; +import c.c.a.a0.i0.c; import c.c.a.c0.a; import c.c.a.d; import c.c.a.y.k.b; @@ -10,7 +10,6 @@ import c.c.a.y.k.g; import c.c.a.y.k.i; import c.c.a.y.k.l; import c.c.a.y.k.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; /* compiled from: AnimatableTransformParser */ public class c { @@ -32,7 +31,7 @@ public class c { /* JADX WARNING: Removed duplicated region for block: B:85:0x01cb */ /* JADX WARNING: Removed duplicated region for block: B:94:0x01f0 */ /* JADX WARNING: Removed duplicated region for block: B:96:0x01f3 */ - public static l a(c.c.a.a0.h0.c cVar, d dVar) throws IOException { + public static l a(c.c.a.a0.i0.c cVar, d dVar) throws IOException { b bVar; g gVar; boolean z2; @@ -41,7 +40,7 @@ public class c { g gVar2; b bVar3; m mVar; - b U1; + b r1; b bVar4; boolean z4 = false; boolean z5 = cVar.w() == c.b.BEGIN_OBJECT; @@ -83,20 +82,20 @@ public class c { case 2: bVar3 = bVar6; mVar = mVar2; - gVar3 = new g(AnimatableValueParser.R1(cVar, dVar, z.a)); + gVar3 = new g(d.o1(cVar, dVar, a0.a)); mVar2 = mVar; break; case 3: dVar.a("Lottie doesn't support 3D layers."); - U1 = AnimatableValueParser.U1(cVar, dVar, z4); - if (!U1.a.isEmpty()) { - bVar4 = U1; + r1 = d.r1(cVar, dVar, z4); + if (!r1.a.isEmpty()) { + bVar4 = r1; gVar2 = gVar3; bVar3 = bVar6; mVar = mVar2; - U1.a.add(new a(dVar, Float.valueOf(0.0f), Float.valueOf(0.0f), null, 0.0f, Float.valueOf(dVar.l))); + r1.a.add(new a(dVar, Float.valueOf(0.0f), Float.valueOf(0.0f), null, 0.0f, Float.valueOf(dVar.l))); } else { - bVar4 = U1; + bVar4 = r1; gVar2 = gVar3; bVar3 = bVar6; mVar = mVar2; @@ -109,27 +108,27 @@ public class c { mVar2 = mVar; break; case 4: - U1 = AnimatableValueParser.U1(cVar, dVar, z4); - if (!U1.a.isEmpty()) { + r1 = d.r1(cVar, dVar, z4); + if (!r1.a.isEmpty()) { } bVar5 = bVar4; gVar3 = gVar2; mVar2 = mVar; break; case 5: - dVar2 = AnimatableValueParser.V1(cVar, dVar); + dVar2 = d.s1(cVar, dVar); continue; case 6: - bVar8 = AnimatableValueParser.U1(cVar, dVar, z4); + bVar8 = d.r1(cVar, dVar, z4); continue; case 7: - bVar9 = AnimatableValueParser.U1(cVar, dVar, z4); + bVar9 = d.r1(cVar, dVar, z4); continue; case 8: - bVar7 = AnimatableValueParser.U1(cVar, dVar, z4); + bVar7 = d.r1(cVar, dVar, z4); continue; case 9: - bVar6 = AnimatableValueParser.U1(cVar, dVar, z4); + bVar6 = d.r1(cVar, dVar, z4); continue; default: bVar3 = bVar6; diff --git a/app/src/main/java/c/c/a/a0/c0.java b/app/src/main/java/c/c/a/a0/c0.java index 09fcd3e530..b2eedd3290 100644 --- a/app/src/main/java/c/c/a/a0/c0.java +++ b/app/src/main/java/c/c/a/a0/c0.java @@ -1,7 +1,7 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: ShapeGroupParser */ +import c.c.a.a0.i0.c; +/* compiled from: ShapeFillParser */ public class c0 { - public static c.a a = c.a.a("nm", "hd", "it"); + public static final c.a a = c.a.a("nm", "c", "o", "fillEnabled", "r", "hd"); } diff --git a/app/src/main/java/c/c/a/a0/d.java b/app/src/main/java/c/c/a/a0/d.java index 635907e569..1ff0bc77ac 100644 --- a/app/src/main/java/c/c/a/a0/d.java +++ b/app/src/main/java/c/c/a/a0/d.java @@ -1,7 +1,3392 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: CircleShapeParser */ +import android.content.ContentValues; +import android.content.Context; +import android.content.Intent; +import android.content.res.TypedArray; +import android.database.Cursor; +import android.database.SQLException; +import android.database.sqlite.SQLiteDatabase; +import android.graphics.Color; +import android.graphics.drawable.Drawable; +import android.graphics.drawable.StateListDrawable; +import android.media.MediaFormat; +import android.net.Uri; +import android.opengl.GLES20; +import android.opengl.GLU; +import android.os.Build; +import android.os.Bundle; +import android.os.Handler; +import android.os.IBinder; +import android.os.Looper; +import android.os.Parcel; +import android.os.Parcelable; +import android.os.PowerManager; +import android.os.Process; +import android.os.Trace; +import android.text.Spannable; +import android.text.TextUtils; +import android.util.AttributeSet; +import android.util.Base64; +import android.util.Log; +import android.util.Pair; +import androidx.annotation.ColorInt; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.annotation.RecentlyNonNull; +import androidx.core.app.NotificationCompat; +import androidx.core.internal.view.SupportMenu; +import androidx.core.text.TextUtilsCompat; +import androidx.core.view.ViewCompat; +import androidx.recyclerview.widget.ItemTouchHelper; +import c.c.a.b0.g; +import c.f.b.a.c; +import c.f.d.d.i; +import c.f.g.e.b0; +import c.f.g.e.d0; +import c.f.g.e.p; +import c.f.g.e.r; +import c.f.g.e.s; +import c.f.g.e.t; +import c.f.g.e.u; +import c.f.g.e.v; +import c.f.g.e.w; +import c.f.g.e.x; +import c.f.g.e.z; +import c.f.j.d.e; +import c.f.m.h; +import c.g.a.a.p; +import c.g.a.c.c0.e0; +import c.g.a.c.h0.m; +import c.g.a.c.j; +import c.i.a.b.i.b; +import c.i.a.b.i.d; +import c.i.a.c.a2.o; +import c.i.a.c.a2.y; +import c.i.a.c.e2.s.f; +import c.i.a.c.i2.f0; +import c.i.a.c.i2.s; +import c.i.a.c.j2.x.d; +import com.adjust.sdk.Constants; +import com.discord.api.stageinstance.StageInstance; +import com.discord.api.stageinstance.StageInstancePrivacyLevel; +import com.discord.api.voice.state.StageRequestToSpeakState; +import com.discord.api.voice.state.VoiceState; +import com.discord.app.AppPermissionsRequests; +import com.discord.i18n.RenderContext; +import com.discord.player.MediaSource; +import com.discord.player.MediaType; +import com.discord.simpleast.core.node.Node; +import com.discord.utilities.logging.Logger; +import com.discord.utilities.logging.LoggingProvider; +import com.facebook.cache.common.CacheKey; +import com.facebook.common.file.FileUtils$CreateDirectoryException; +import com.facebook.common.file.FileUtils$FileDeleteException; +import com.facebook.common.file.FileUtils$ParentDirNotFoundException; +import com.facebook.common.file.FileUtils$RenameException; +import com.facebook.datasource.DataSource; +import com.facebook.drawee.R; +import com.facebook.drawee.drawable.ScalingUtils$ScaleType; +import com.facebook.soloader.SysUtil$LollipopSysdeps; +import com.facebook.soloader.SysUtil$MarshmallowSysdeps; +import com.google.android.exoplayer2.ParserException; +import com.google.android.exoplayer2.database.DatabaseIOException; +import com.google.android.exoplayer2.metadata.Metadata; +import com.google.android.gms.common.api.ApiException; +import com.google.android.gms.common.api.ResolvableApiException; +import com.google.android.gms.common.api.Status; +import com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException; +import com.google.android.gms.tasks.TaskCompletionSource; +import com.google.android.material.shadow.ShadowDrawableWrapper; +import com.google.android.material.snackbar.BaseTransientBottomBar; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonToken; +import d0.t.k; +import java.io.EOFException; +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.InputStream; +import java.io.RandomAccessFile; +import java.io.UnsupportedEncodingException; +import java.lang.reflect.Array; +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; +import java.lang.reflect.TypeVariable; +import java.lang.reflect.WildcardType; +import java.net.URL; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.nio.FloatBuffer; +import java.nio.channels.FileChannel; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Calendar; +import java.util.Collection; +import java.util.Date; +import java.util.GregorianCalendar; +import java.util.List; +import java.util.Locale; +import java.util.Map; +import java.util.Objects; +import java.util.UUID; +import java.util.concurrent.ScheduledExecutorService; +import java.util.zip.Inflater; +import kotlin.Unit; +import kotlin.jvm.functions.Function0; +import kotlin.jvm.functions.Function1; +import org.checkerframework.checker.nullness.qual.EnsuresNonNull; +import org.checkerframework.dataflow.qual.Pure; +import org.xmlpull.v1.XmlPullParser; +import org.xmlpull.v1.XmlPullParserException; +/* compiled from: AnimatableValueParser */ public class d { - public static c.a a = c.a.a("nm", "p", "s", "hd", "d"); + public static boolean a; + public static ScheduledExecutorService b; + + /* compiled from: ArrayBuilders */ + public static class a { + public final /* synthetic */ Class a; + public final /* synthetic */ int b; + + /* renamed from: c reason: collision with root package name */ + public final /* synthetic */ Object f258c; + + public a(Class cls, int i, Object obj) { + this.a = cls; + this.b = i; + this.f258c = obj; + } + + public boolean equals(Object obj) { + if (obj == this) { + return true; + } + if (!(c.g.a.c.i0.d.o(obj, this.a) && Array.getLength(obj) == this.b)) { + return false; + } + for (int i = 0; i < this.b; i++) { + Object obj2 = Array.get(this.f258c, i); + Object obj3 = Array.get(obj, i); + if (!(obj2 == obj3 || obj2 == null || obj2.equals(obj3))) { + return false; + } + } + return true; + } + } + + @NonNull + @EnsuresNonNull({"#1"}) + public static T A(@Nullable T t) { + Objects.requireNonNull(t, "null reference"); + return t; + } + + public static final StageRequestToSpeakState A0(VoiceState voiceState) { + return voiceState == null ? StageRequestToSpeakState.NONE : (!voiceState.l() || voiceState.f() == null) ? (voiceState.l() || voiceState.f() == null) ? !voiceState.l() ? StageRequestToSpeakState.ON_STAGE : StageRequestToSpeakState.NONE : StageRequestToSpeakState.REQUESTED_TO_SPEAK_AND_AWAITING_USER_ACK : StageRequestToSpeakState.REQUESTED_TO_SPEAK; + } + + public static boolean A1(e0 e0Var, j jVar, Type type) { + if (!jVar.B(e0Var.a(type)._class)) { + return false; + } + ParameterizedType h1 = h1(type); + if (h1 == null || !Objects.equals(jVar._class, h1.getRawType())) { + return true; + } + Type[] actualTypeArguments = h1.getActualTypeArguments(); + m j = jVar.j(); + if (j.j() != actualTypeArguments.length) { + return false; + } + for (int i = 0; i < j.j(); i++) { + if (!A1(e0Var, j.f(i), actualTypeArguments[i])) { + return false; + } + } + return true; + } + + public static void A2(Parcel parcel, int i, int i2) { + if (i != i2) { + String hexString = Integer.toHexString(i); + StringBuilder sb = new StringBuilder(String.valueOf(hexString).length() + 46); + sb.append("Expected size "); + sb.append(i2); + sb.append(" got "); + sb.append(i); + sb.append(" (0x"); + sb.append(hexString); + sb.append(")"); + throw new SafeParcelReader$ParseException(sb.toString(), parcel); + } + } + + public static void B(boolean z2) { + if (!z2) { + throw new IllegalStateException(); + } + } + + public static List B0(CacheKey cacheKey) { + try { + if (!(cacheKey instanceof c)) { + ArrayList arrayList = new ArrayList(1); + arrayList.add(cacheKey.a() ? cacheKey.b() : U1(cacheKey)); + return arrayList; + } + Objects.requireNonNull((c) cacheKey); + throw null; + } catch (UnsupportedEncodingException e) { + throw new RuntimeException(e); + } + } + + public static int B1(InputStream inputStream, byte[] bArr, int i, int i2) throws IOException { + if (i2 >= 0) { + int i3 = 0; + while (i3 < i2) { + int read = inputStream.read(bArr, i + i3, i2 - i3); + if (read == -1) { + break; + } + i3 += read; + } + return i3; + } + throw new IndexOutOfBoundsException("len is negative"); + } + + public static void B2(Parcel parcel, int i) { + int dataPosition = parcel.dataPosition(); + parcel.setDataPosition(i - 4); + parcel.writeInt(dataPosition - i); + parcel.setDataPosition(dataPosition); + } + + public static void C(boolean z2, Object obj) { + if (!z2) { + throw new IllegalStateException(String.valueOf(obj)); + } + } + + public static ScalingUtils$ScaleType C0(TypedArray typedArray, int i) { + switch (typedArray.getInt(i, -2)) { + case -1: + return null; + case 0: + ScalingUtils$ScaleType scalingUtils$ScaleType = ScalingUtils$ScaleType.a; + return z.l; + case 1: + ScalingUtils$ScaleType scalingUtils$ScaleType2 = ScalingUtils$ScaleType.a; + return x.l; + case 2: + ScalingUtils$ScaleType scalingUtils$ScaleType3 = ScalingUtils$ScaleType.a; + return v.l; + case 3: + ScalingUtils$ScaleType scalingUtils$ScaleType4 = ScalingUtils$ScaleType.a; + return w.l; + case 4: + ScalingUtils$ScaleType scalingUtils$ScaleType5 = ScalingUtils$ScaleType.a; + return r.l; + case 5: + ScalingUtils$ScaleType scalingUtils$ScaleType6 = ScalingUtils$ScaleType.a; + return t.l; + case 6: + ScalingUtils$ScaleType scalingUtils$ScaleType7 = ScalingUtils$ScaleType.a; + return s.l; + case 7: + ScalingUtils$ScaleType scalingUtils$ScaleType8 = ScalingUtils$ScaleType.a; + return b0.l; + case 8: + ScalingUtils$ScaleType scalingUtils$ScaleType9 = ScalingUtils$ScaleType.a; + return u.l; + default: + throw new RuntimeException("XML attribute not specified!"); + } + } + + public static void C1(FileChannel fileChannel, ByteBuffer byteBuffer, int i, long j) throws IOException { + int read; + byteBuffer.position(0); + byteBuffer.limit(i); + while (byteBuffer.remaining() > 0 && (read = fileChannel.read(byteBuffer, j)) != -1) { + j += (long) read; + } + if (byteBuffer.remaining() <= 0) { + byteBuffer.position(0); + return; + } + throw new h("ELF file truncated"); + } + + @Pure + public static void D(boolean z2) { + if (!z2) { + throw new IllegalStateException(); + } + } + + @NonNull + public static String D0(@RecentlyNonNull int i) { + switch (i) { + case -1: + return "SUCCESS_CACHE"; + case 0: + return "SUCCESS"; + case 1: + case 9: + case 11: + case 12: + default: + return c.d.b.a.a.f(32, "unknown status code: ", i); + case 2: + return "SERVICE_VERSION_UPDATE_REQUIRED"; + case 3: + return "SERVICE_DISABLED"; + case 4: + return "SIGN_IN_REQUIRED"; + case 5: + return "INVALID_ACCOUNT"; + case 6: + return "RESOLUTION_REQUIRED"; + case 7: + return "NETWORK_ERROR"; + case 8: + return "INTERNAL_ERROR"; + case 10: + return "DEVELOPER_ERROR"; + case 13: + return "ERROR"; + case 14: + return "INTERRUPTED"; + case 15: + return "TIMEOUT"; + case 16: + return "CANCELED"; + case 17: + return "API_NOT_CONNECTED"; + case 18: + return "DEAD_CLIENT"; + case 19: + return "REMOTE_EXCEPTION"; + case 20: + return "CONNECTION_SUSPENDED_DURING_CALL"; + case 21: + return "RECONNECTION_TIMED_OUT_DURING_UPDATE"; + case 22: + return "RECONNECTION_TIMED_OUT"; + } + } + + public static int D1(InputStream inputStream) throws IOException { + return ((((byte) (inputStream.read() & 255)) << 16) & ItemTouchHelper.ACTION_MODE_DRAG_MASK) | ((((byte) (inputStream.read() & 255)) << 8) & 65280) | (((byte) (inputStream.read() & 255)) & 255); + } + + @Pure + public static void E(boolean z2, Object obj) { + if (!z2) { + throw new IllegalStateException(String.valueOf(obj)); + } + } + + public static String[] E0() { + return Build.VERSION.SDK_INT >= 23 ? SysUtil$MarshmallowSysdeps.getSupportedAbis() : SysUtil$LollipopSysdeps.getSupportedAbis(); + } + + @RecentlyNonNull + public static boolean E1(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + x2(parcel, i, 4); + return parcel.readInt() != 0; + } + + public static void F(@RecentlyNonNull boolean z2) { + if (!z2) { + throw new IllegalStateException(); + } + } + + public static String F0(String str) { + return c.d.b.a.a.u("TransportRuntime.", str); + } + + @RecentlyNonNull + public static IBinder F1(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + IBinder readStrongBinder = parcel.readStrongBinder(); + parcel.setDataPosition(dataPosition + M1); + return readStrongBinder; + } + + public static void G(@RecentlyNonNull boolean z2, @RecentlyNonNull Object obj) { + if (!z2) { + throw new IllegalStateException(String.valueOf(obj)); + } + } + + public static Pair G0(InputStream inputStream) throws IOException { + inputStream.skip(7); + short read = (short) (inputStream.read() & 255); + short read2 = (short) (inputStream.read() & 255); + short read3 = (short) (inputStream.read() & 255); + if (read == 157 && read2 == 1 && read3 == 42) { + return new Pair<>(Integer.valueOf(p0(inputStream)), Integer.valueOf(p0(inputStream))); + } + return null; + } + + @RecentlyNonNull + public static int G1(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + x2(parcel, i, 4); + return parcel.readInt(); + } + + @EnsuresNonNull({"#1"}) + @Pure + public static T H(@Nullable T t) { + if (t != null) { + return t; + } + throw new IllegalStateException(); + } + + public static Pair H0(InputStream inputStream) throws IOException { + y0(inputStream); + if (((byte) (inputStream.read() & 255)) != 47) { + return null; + } + int read = ((byte) inputStream.read()) & 255; + return new Pair<>(Integer.valueOf(((((byte) inputStream.read()) & 255) | ((read & 63) << 8)) + 1), Integer.valueOf(((((((byte) inputStream.read()) & 255) & 15) << 10) | ((((byte) inputStream.read()) & 255) << 2) | ((read & 192) >> 6)) + 1)); + } + + @RecentlyNonNull + public static long H1(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + x2(parcel, i, 8); + return parcel.readLong(); + } + + @EnsuresNonNull({"#1"}) + @Pure + public static T I(@Nullable T t, Object obj) { + if (t != null) { + return t; + } + throw new IllegalStateException(String.valueOf(obj)); + } + + /* JADX WARNING: Code restructure failed: missing block: B:16:0x0041, code lost: + r12 = move-exception; + */ + /* JADX WARNING: Code restructure failed: missing block: B:17:0x0042, code lost: + if (r10 != null) goto L_0x0044; + */ + /* JADX WARNING: Code restructure failed: missing block: B:19:?, code lost: + r10.close(); + */ + /* JADX WARNING: Code restructure failed: missing block: B:20:0x0048, code lost: + r10 = move-exception; + */ + /* JADX WARNING: Code restructure failed: missing block: B:21:0x0049, code lost: + r11.addSuppressed(r10); + */ + /* JADX WARNING: Code restructure failed: missing block: B:22:0x004c, code lost: + throw r12; + */ + public static int I0(SQLiteDatabase sQLiteDatabase, int i, String str) throws DatabaseIOException { + try { + if (!f0.I(sQLiteDatabase, "ExoPlayerVersions")) { + return -1; + } + Cursor query = sQLiteDatabase.query("ExoPlayerVersions", new String[]{"version"}, "feature = ? AND instance_uid = ?", new String[]{Integer.toString(i), str}, null, null, null); + if (query.getCount() == 0) { + query.close(); + return -1; + } + query.moveToNext(); + int i2 = query.getInt(0); + query.close(); + return i2; + } catch (SQLException e) { + throw new DatabaseIOException(e); + } + } + + public static int I1(c.i.a.c.i2.w wVar) { + int i = 0; + while (wVar.a() != 0) { + int s2 = wVar.s(); + i += s2; + if (s2 != 255) { + return i; + } + } + return -1; + } + + public static boolean J(byte[] bArr, String str) { + if (bArr.length != str.length()) { + return false; + } + for (int i = 0; i < bArr.length; i++) { + if (str.charAt(i) != bArr[i]) { + return false; + } + } + return true; + } + + public static long J0(FileChannel fileChannel, ByteBuffer byteBuffer, long j) throws IOException { + C1(fileChannel, byteBuffer, 4, j); + return ((long) byteBuffer.getInt()) & 4294967295L; + } + + public static int J1(InputStream inputStream, int i, boolean z2) throws IOException { + int i2; + int i3 = 0; + for (int i4 = 0; i4 < i; i4++) { + int read = inputStream.read(); + if (read != -1) { + if (z2) { + i2 = (read & 255) << (i4 * 8); + } else { + i3 <<= 8; + i2 = read & 255; + } + i3 |= i2; + } else { + throw new IOException("no more bytes"); + } + } + return i3; + } + + public static int K(String str, String str2) { + int glCreateProgram = GLES20.glCreateProgram(); + r(); + d(35633, str, glCreateProgram); + d(35632, str2, glCreateProgram); + GLES20.glLinkProgram(glCreateProgram); + int[] iArr = {0}; + GLES20.glGetProgramiv(glCreateProgram, 35714, iArr, 0); + if (iArr[0] != 1) { + StringBuilder O = c.d.b.a.a.O("Unable to link shader program: \n"); + O.append(GLES20.glGetProgramInfoLog(glCreateProgram)); + Log.e("GlUtil", O.toString()); + } + r(); + return glCreateProgram; + } + + public static final boolean K0(Long l, long j) { + return l != null && (l.longValue() & j) == j; + } + + public static long K1(c.i.a.c.i2.w wVar, int i, int i2) { + wVar.D(i); + if (wVar.a() < 5) { + return -9223372036854775807L; + } + int f = wVar.f(); + if ((8388608 & f) != 0 || ((2096896 & f) >> 8) != i2) { + return -9223372036854775807L; + } + if (((f & 32) != 0) && wVar.s() >= 7 && wVar.a() >= 7) { + if ((wVar.s() & 16) == 16) { + byte[] bArr = new byte[6]; + System.arraycopy(wVar.a, wVar.b, bArr, 0, 6); + wVar.b += 6; + return ((((long) bArr[0]) & 255) << 25) | ((((long) bArr[1]) & 255) << 17) | ((((long) bArr[2]) & 255) << 9) | ((((long) bArr[3]) & 255) << 1) | ((((long) bArr[4]) & 255) >> 7); + } + } + return -9223372036854775807L; + } + + public static void L(long j, c.i.a.c.i2.w wVar, c.i.a.c.a2.w[] wVarArr) { + while (true) { + boolean z2 = true; + if (wVar.a() > 1) { + int I1 = I1(wVar); + int I12 = I1(wVar); + int i = wVar.b + I12; + if (I12 == -1 || I12 > wVar.a()) { + Log.w("CeaUtil", "Skipping remainder of malformed SEI NAL unit."); + i = wVar.f921c; + } else if (I1 == 4 && I12 >= 8) { + int s2 = wVar.s(); + int x2 = wVar.x(); + int f = x2 == 49 ? wVar.f() : 0; + int s3 = wVar.s(); + if (x2 == 47) { + wVar.E(1); + } + boolean z3 = s2 == 181 && (x2 == 49 || x2 == 47) && s3 == 3; + if (x2 == 49) { + if (f != 1195456820) { + z2 = false; + } + z3 &= z2; + } + if (z3) { + M(j, wVar, wVarArr); + } + } + wVar.D(i); + } else { + return; + } + } + } + + public static boolean L0(byte[] bArr, byte[] bArr2, int i) { + Objects.requireNonNull(bArr); + Objects.requireNonNull(bArr2); + if (bArr2.length + i > bArr.length) { + return false; + } + for (int i2 = 0; i2 < bArr2.length; i2++) { + if (bArr[i + i2] != bArr2[i2]) { + return false; + } + } + return true; + } + + public static o.a L1(c.i.a.c.i2.w wVar) { + wVar.E(1); + int u = wVar.u(); + long j = ((long) wVar.b) + ((long) u); + int i = u / 18; + long[] jArr = new long[i]; + long[] jArr2 = new long[i]; + int i2 = 0; + while (true) { + if (i2 >= i) { + break; + } + long m = wVar.m(); + if (m == -1) { + jArr = Arrays.copyOf(jArr, i2); + jArr2 = Arrays.copyOf(jArr2, i2); + break; + } + jArr[i2] = m; + jArr2[i2] = wVar.m(); + wVar.E(2); + i2++; + } + wVar.E((int) (j - ((long) wVar.b))); + return new o.a(jArr, jArr2); + } + + public static void M(long j, c.i.a.c.i2.w wVar, c.i.a.c.a2.w[] wVarArr) { + int s2 = wVar.s(); + if ((s2 & 64) != 0) { + wVar.E(1); + int i = (s2 & 31) * 3; + int i2 = wVar.b; + for (c.i.a.c.a2.w wVar2 : wVarArr) { + wVar.D(i2); + wVar2.c(wVar, i); + wVar2.d(j, 1, i, 0, null); + } + } + } + + public static int M0(int i, int i2) { + return ((i + 31) * 31) + i2; + } + + @RecentlyNonNull + public static int M1(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + return (i & SupportMenu.CATEGORY_MASK) != -65536 ? (i >> 16) & 65535 : parcel.readInt(); + } + + public static void N(Drawable drawable, Drawable drawable2) { + if (drawable != null && drawable != drawable2) { + drawable.setBounds(drawable2.getBounds()); + drawable.setChangingConfigurations(drawable2.getChangingConfigurations()); + drawable.setLevel(drawable2.getLevel()); + drawable.setVisible(drawable2.isVisible(), false); + drawable.setState(drawable2.getState()); + } + } + + public static int N0(Object obj, Object obj2) { + int i = 0; + int hashCode = obj == null ? 0 : obj.hashCode(); + if (obj2 != null) { + i = obj2.hashCode(); + } + return M0(hashCode, i); + } + + public static y N1(c.i.a.c.i2.w wVar, boolean z2, boolean z3) throws ParserException { + if (z2) { + m2(3, wVar, false); + } + String p = wVar.p((int) wVar.j()); + long j = wVar.j(); + String[] strArr = new String[((int) j)]; + int length = p.length() + 11 + 4; + for (int i = 0; ((long) i) < j; i++) { + strArr[i] = wVar.p((int) wVar.j()); + length = length + 4 + strArr[i].length(); + } + if (!z3 || (wVar.s() & 1) != 0) { + return new y(p, strArr, length + 1); + } + throw new ParserException("framing bit expected to be set"); + } + + public static FloatBuffer O(float[] fArr) { + return (FloatBuffer) ByteBuffer.allocateDirect(fArr.length * 4).order(ByteOrder.nativeOrder()).asFloatBuffer().put(fArr).flip(); + } + + public static void O0(String str, String str2) { + Log.i(F0(str), str2); + } + + public static void O1(File file, File file2) throws FileUtils$RenameException { + Objects.requireNonNull(file); + file2.delete(); + if (!file.renameTo(file2)) { + Throwable th = null; + if (file2.exists()) { + th = new FileUtils$FileDeleteException(file2.getAbsolutePath()); + } else if (!file.getParentFile().exists()) { + th = new FileUtils$ParentDirNotFoundException(file.getAbsolutePath()); + } else if (!file.exists()) { + th = new FileNotFoundException(file.getAbsolutePath()); + } + StringBuilder O = c.d.b.a.a.O("Unknown error renaming "); + O.append(file.getAbsolutePath()); + O.append(" to "); + O.append(file2.getAbsolutePath()); + throw new FileUtils$RenameException(O.toString(), th); + } + } + + @RecentlyNonNull + public static Bundle P(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + Bundle readBundle = parcel.readBundle(); + parcel.setDataPosition(dataPosition + M1); + return readBundle; + } + + public static int P0(int i) { + int i2 = 0; + while (i > 0) { + i2++; + i >>>= 1; + } + return i2; + } + + public static final RenderContext P1(Function1 function1, Object... objArr) { + d0.z.d.m.checkNotNullParameter(function1, "init"); + d0.z.d.m.checkNotNullParameter(objArr, "orderedArguments"); + RenderContext renderContext = new RenderContext(); + function1.invoke(renderContext); + if (!(objArr.length == 0)) { + if (!(!renderContext.a.isEmpty())) { + renderContext.f2098c = k.toList(objArr); + } else { + throw new IllegalArgumentException("must provide named arguments OR formatArgs, not both."); + } + } + return renderContext; + } + + @RecentlyNonNull + public static byte[] Q(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + byte[] createByteArray = parcel.createByteArray(); + parcel.setDataPosition(dataPosition + M1); + return createByteArray; + } + + public static DataSource Q0(Throwable th) { + c.f.e.h hVar = new c.f.e.h(); + Objects.requireNonNull(th); + hVar.k(th, null); + return hVar; + } + + public static /* synthetic */ void Q1(AppPermissionsRequests appPermissionsRequests, Function0 function0, Function0 function02, int i, Object obj) { + int i2 = i & 1; + appPermissionsRequests.requestMicrophone(null, function02); + } + + public static final MediaSource R(MediaType mediaType, String str, String str2) { + d0.z.d.m.checkNotNullParameter(mediaType, "mediaType"); + d0.z.d.m.checkNotNullParameter(str, "progressiveMediaUri"); + d0.z.d.m.checkNotNullParameter(str2, "featureTag"); + Uri parse = Uri.parse(str); + d0.z.d.m.checkNotNullExpressionValue(parse, "Uri.parse(progressiveMediaUri)"); + return new MediaSource(parse, str2, mediaType); + } + + /* JADX INFO: Can't fix incorrect switch cases order, some code will duplicate */ + /* JADX WARNING: Code restructure failed: missing block: B:98:0x01a2, code lost: + if (r0.equals("video/mp2t") == false) goto L_0x01bc; + */ + /* JADX WARNING: Removed duplicated region for block: B:102:0x01b1 */ + /* JADX WARNING: Removed duplicated region for block: B:105:0x01bc */ + /* JADX WARNING: Removed duplicated region for block: B:107:0x01c2 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:108:0x01c4 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:109:0x01c6 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:110:0x01c9 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:111:0x01cc A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:112:0x01ce A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:113:0x01d0 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:114:0x01d3 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:115:0x01d6 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:116:0x01d9 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:117:0x01db A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:118:0x01dd A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:119:0x01e0 A[RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:120:0x01e3 A[ORIG_RETURN, RETURN, SYNTHETIC] */ + /* JADX WARNING: Removed duplicated region for block: B:27:0x0072 */ + /* JADX WARNING: Removed duplicated region for block: B:31:0x007b */ + /* JADX WARNING: Removed duplicated region for block: B:34:0x0085 */ + /* JADX WARNING: Removed duplicated region for block: B:37:0x0094 */ + /* JADX WARNING: Removed duplicated region for block: B:40:0x00a2 */ + /* JADX WARNING: Removed duplicated region for block: B:43:0x00ae */ + /* JADX WARNING: Removed duplicated region for block: B:46:0x00ba */ + /* JADX WARNING: Removed duplicated region for block: B:49:0x00c8 */ + /* JADX WARNING: Removed duplicated region for block: B:52:0x00d6 */ + /* JADX WARNING: Removed duplicated region for block: B:55:0x00e5 */ + /* JADX WARNING: Removed duplicated region for block: B:58:0x00f1 */ + /* JADX WARNING: Removed duplicated region for block: B:61:0x00ff */ + /* JADX WARNING: Removed duplicated region for block: B:64:0x010d */ + /* JADX WARNING: Removed duplicated region for block: B:67:0x011b */ + /* JADX WARNING: Removed duplicated region for block: B:70:0x0129 */ + /* JADX WARNING: Removed duplicated region for block: B:73:0x0137 */ + /* JADX WARNING: Removed duplicated region for block: B:76:0x0146 */ + /* JADX WARNING: Removed duplicated region for block: B:79:0x0154 */ + /* JADX WARNING: Removed duplicated region for block: B:82:0x0162 */ + /* JADX WARNING: Removed duplicated region for block: B:85:0x016e */ + /* JADX WARNING: Removed duplicated region for block: B:88:0x0179 */ + /* JADX WARNING: Removed duplicated region for block: B:91:0x0184 */ + /* JADX WARNING: Removed duplicated region for block: B:94:0x018f */ + /* JADX WARNING: Removed duplicated region for block: B:97:0x019b */ + /* JADX WARNING: Removed duplicated region for block: B:99:0x01a5 */ + public static int R0(Map> map) { + char c2; + List list = map.get("Content-Type"); + String str = (list == null || list.isEmpty()) ? null : list.get(0); + if (str != null) { + ArrayList arrayList = c.i.a.c.i2.s.a; + int hashCode = str.hashCode(); + char c3 = 2; + if (hashCode != -1007807498) { + if (hashCode != -586683234) { + if (hashCode == 187090231 && str.equals("audio/mp3")) { + c2 = 2; + if (c2 != 0) { + str = "audio/flac"; + } else if (c2 == 1) { + str = "audio/wav"; + } else if (c2 == 2) { + str = "audio/mpeg"; + } + switch (str.hashCode()) { + case -2123537834: + if (str.equals("audio/eac3-joc")) { + c3 = 0; + break; + } + c3 = 65535; + break; + case -1662384011: + if (str.equals("video/mp2p")) { + c3 = 1; + break; + } + c3 = 65535; + break; + case -1662384007: + break; + case -1662095187: + if (str.equals("video/webm")) { + c3 = 3; + break; + } + c3 = 65535; + break; + case -1606874997: + if (str.equals("audio/amr-wb")) { + c3 = 4; + break; + } + c3 = 65535; + break; + case -1487394660: + if (str.equals("image/jpeg")) { + c3 = 5; + break; + } + c3 = 65535; + break; + case -1248337486: + if (str.equals("application/mp4")) { + c3 = 6; + break; + } + c3 = 65535; + break; + case -1004728940: + if (str.equals("text/vtt")) { + c3 = 7; + break; + } + c3 = 65535; + break; + case -387023398: + if (str.equals("audio/x-matroska")) { + c3 = '\b'; + break; + } + c3 = 65535; + break; + case -43467528: + if (str.equals("application/webm")) { + c3 = '\t'; + break; + } + c3 = 65535; + break; + case 13915911: + if (str.equals("video/x-flv")) { + c3 = '\n'; + break; + } + c3 = 65535; + break; + case 187078296: + if (str.equals("audio/ac3")) { + c3 = 11; + break; + } + c3 = 65535; + break; + case 187078297: + if (str.equals("audio/ac4")) { + c3 = '\f'; + break; + } + c3 = 65535; + break; + case 187078669: + if (str.equals("audio/amr")) { + c3 = '\r'; + break; + } + c3 = 65535; + break; + case 187090232: + if (str.equals("audio/mp4")) { + c3 = 14; + break; + } + c3 = 65535; + break; + case 187091926: + if (str.equals("audio/ogg")) { + c3 = 15; + break; + } + c3 = 65535; + break; + case 187099443: + if (str.equals("audio/wav")) { + c3 = 16; + break; + } + c3 = 65535; + break; + case 1331848029: + if (str.equals("video/mp4")) { + c3 = 17; + break; + } + c3 = 65535; + break; + case 1503095341: + if (str.equals("audio/3gpp")) { + c3 = 18; + break; + } + c3 = 65535; + break; + case 1504578661: + if (str.equals("audio/eac3")) { + c3 = 19; + break; + } + c3 = 65535; + break; + case 1504619009: + if (str.equals("audio/flac")) { + c3 = 20; + break; + } + c3 = 65535; + break; + case 1504831518: + if (str.equals("audio/mpeg")) { + c3 = 21; + break; + } + c3 = 65535; + break; + case 1505118770: + if (str.equals("audio/webm")) { + c3 = 22; + break; + } + c3 = 65535; + break; + case 2039520277: + if (str.equals("video/x-matroska")) { + c3 = 23; + break; + } + c3 = 65535; + break; + default: + c3 = 65535; + break; + } + switch (c3) { + case 0: + case 11: + case 19: + return 0; + case 1: + return 10; + case 2: + return 11; + case 3: + case '\b': + case '\t': + case 22: + case 23: + return 6; + case 4: + case '\r': + case 18: + return 3; + case 5: + return 14; + case 6: + case 14: + case 17: + return 8; + case 7: + return 13; + case '\n': + return 5; + case '\f': + return 1; + case 15: + return 9; + case 16: + return 12; + case 20: + return 4; + case 21: + return 7; + } + } + } else if (str.equals("audio/x-wav")) { + c2 = 1; + if (c2 != 0) { + } + switch (str.hashCode()) { + case -2123537834: + break; + case -1662384011: + break; + case -1662384007: + break; + case -1662095187: + break; + case -1606874997: + break; + case -1487394660: + break; + case -1248337486: + break; + case -1004728940: + break; + case -387023398: + break; + case -43467528: + break; + case 13915911: + break; + case 187078296: + break; + case 187078297: + break; + case 187078669: + break; + case 187090232: + break; + case 187091926: + break; + case 187099443: + break; + case 1331848029: + break; + case 1503095341: + break; + case 1504578661: + break; + case 1504619009: + break; + case 1504831518: + break; + case 1505118770: + break; + case 2039520277: + break; + } + switch (c3) { + } + } + } else if (str.equals("audio/x-flac")) { + c2 = 0; + if (c2 != 0) { + } + switch (str.hashCode()) { + case -2123537834: + break; + case -1662384011: + break; + case -1662384007: + break; + case -1662095187: + break; + case -1606874997: + break; + case -1487394660: + break; + case -1248337486: + break; + case -1004728940: + break; + case -387023398: + break; + case -43467528: + break; + case 13915911: + break; + case 187078296: + break; + case 187078297: + break; + case 187078669: + break; + case 187090232: + break; + case 187091926: + break; + case 187099443: + break; + case 1331848029: + break; + case 1503095341: + break; + case 1504578661: + break; + case 1504619009: + break; + case 1504831518: + break; + case 1505118770: + break; + case 2039520277: + break; + } + switch (c3) { + } + } + c2 = 65535; + if (c2 != 0) { + } + switch (str.hashCode()) { + case -2123537834: + break; + case -1662384011: + break; + case -1662384007: + break; + case -1662095187: + break; + case -1606874997: + break; + case -1487394660: + break; + case -1248337486: + break; + case -1004728940: + break; + case -387023398: + break; + case -43467528: + break; + case 13915911: + break; + case 187078296: + break; + case 187078297: + break; + case 187078669: + break; + case 187090232: + break; + case 187091926: + break; + case 187099443: + break; + case 1331848029: + break; + case 1503095341: + break; + case 1504578661: + break; + case 1504619009: + break; + case 1504831518: + break; + case 1505118770: + break; + case 2039520277: + break; + } + switch (c3) { + } + } + return -1; + } + + @Nullable + public static f R1(@Nullable f fVar, @Nullable String[] strArr, Map map) { + int i = 0; + if (fVar == null) { + if (strArr == null) { + return null; + } + if (strArr.length == 1) { + return map.get(strArr[0]); + } + if (strArr.length > 1) { + f fVar2 = new f(); + int length = strArr.length; + while (i < length) { + fVar2.a(map.get(strArr[i])); + i++; + } + return fVar2; + } + } else if (strArr != null && strArr.length == 1) { + fVar.a(map.get(strArr[0])); + return fVar; + } else if (strArr != null && strArr.length > 1) { + int length2 = strArr.length; + while (i < length2) { + fVar.a(map.get(strArr[i])); + i++; + } + } + return fVar; + } + + @RecentlyNonNull + public static T S(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull Parcelable.Creator creator) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + T createFromParcel = creator.createFromParcel(parcel); + parcel.setDataPosition(dataPosition + M1); + return createFromParcel; + } + + public static int S0(Uri uri) { + String lastPathSegment = uri.getLastPathSegment(); + if (lastPathSegment == null) { + return -1; + } + if (lastPathSegment.endsWith(".ac3") || lastPathSegment.endsWith(".ec3")) { + return 0; + } + if (lastPathSegment.endsWith(".ac4")) { + return 1; + } + if (lastPathSegment.endsWith(".adts") || lastPathSegment.endsWith(".aac")) { + return 2; + } + if (lastPathSegment.endsWith(".amr")) { + return 3; + } + if (lastPathSegment.endsWith(".flac")) { + return 4; + } + if (lastPathSegment.endsWith(".flv")) { + return 5; + } + if (lastPathSegment.startsWith(".mk", lastPathSegment.length() - 4) || lastPathSegment.endsWith(".webm")) { + return 6; + } + if (lastPathSegment.endsWith(".mp3")) { + return 7; + } + if (lastPathSegment.endsWith(".mp4") || lastPathSegment.startsWith(".m4", lastPathSegment.length() - 4) || lastPathSegment.startsWith(".mp4", lastPathSegment.length() - 5) || lastPathSegment.startsWith(".cmf", lastPathSegment.length() - 5)) { + return 8; + } + if (lastPathSegment.startsWith(".og", lastPathSegment.length() - 4) || lastPathSegment.endsWith(".opus")) { + return 9; + } + if (lastPathSegment.endsWith(".ps") || lastPathSegment.endsWith(".mpeg") || lastPathSegment.endsWith(".mpg") || lastPathSegment.endsWith(".m2p")) { + return 10; + } + if (lastPathSegment.endsWith(".ts") || lastPathSegment.startsWith(".ts", lastPathSegment.length() - 4)) { + return 11; + } + if (lastPathSegment.endsWith(".wav") || lastPathSegment.endsWith(".wave")) { + return 12; + } + if (lastPathSegment.endsWith(".vtt") || lastPathSegment.endsWith(".webvtt")) { + return 13; + } + return (lastPathSegment.endsWith(".jpg") || lastPathSegment.endsWith(".jpeg")) ? 14 : -1; + } + + public static float S1(int i, float f, int i2, int i3) { + float f2; + if (f == -3.4028235E38f) { + return -3.4028235E38f; + } + if (i == 0) { + f2 = (float) i3; + } else if (i == 1) { + f2 = (float) i2; + } else if (i != 2) { + return -3.4028235E38f; + } else { + return f; + } + return f * f2; + } + + @RecentlyNonNull + public static String T(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + String readString = parcel.readString(); + parcel.setDataPosition(dataPosition + M1); + return readString; + } + + public static void T0(String str) { + throw new IllegalArgumentException(c.d.b.a.a.u("Unknown library: ", str)); + } + + /* JADX WARN: Multi-variable type inference failed */ + /* JADX WARNING: Unknown variable types count: 1 */ + public static TResult T1(int i, TInput tinput, b bVar, c.i.a.b.j.s.a aVar) throws Throwable { + TResult tresult; + if (i < 1) { + return (TResult) bVar.a(tinput); + } + do { + tresult = (TResult) bVar.a(tinput); + TInput tinput2 = tinput; + TResult tresult2 = tresult; + URL url = tresult2.b; + if (url != null) { + Z("CctTransportBackend", "Following redirect to: %s", url); + tinput = new d.a(tresult2.b, tinput2.b, tinput2.f602c); + } else { + tinput = null; + } + if (tinput == null) { + break; + } + i--; + } while (i >= 1); + return tresult; + } + + @RecentlyNonNull + public static String[] U(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + String[] createStringArray = parcel.createStringArray(); + parcel.setDataPosition(dataPosition + M1); + return createStringArray; + } + + public static boolean U0(XmlPullParser xmlPullParser, String str) throws XmlPullParserException { + return (xmlPullParser.getEventType() == 3) && xmlPullParser.getName().equals(str); + } + + public static String U1(CacheKey cacheKey) throws UnsupportedEncodingException { + byte[] bytes = cacheKey.b().getBytes(Constants.ENCODING); + try { + MessageDigest instance = MessageDigest.getInstance(Constants.SHA1); + instance.update(bytes, 0, bytes.length); + return Base64.encodeToString(instance.digest(), 11); + } catch (NoSuchAlgorithmException e) { + throw new RuntimeException(e); + } + } + + @RecentlyNonNull + public static ArrayList V(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + ArrayList createStringArrayList = parcel.createStringArrayList(); + parcel.setDataPosition(dataPosition + M1); + return createStringArrayList; + } + + public static boolean V0(int i, int i2, e eVar) { + return eVar == null ? ((float) q0(i)) >= 2048.0f && q0(i2) >= 2048 : q0(i) >= eVar.a && q0(i2) >= eVar.b; + } + + public static void V1(Drawable drawable, Drawable.Callback callback, c.f.g.e.e0 e0Var) { + if (drawable != null) { + drawable.setCallback(callback); + if (drawable instanceof d0) { + ((d0) drawable).b(e0Var); + } + } + } + + @RecentlyNonNull + public static T[] W(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull Parcelable.Creator creator) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + T[] tArr = (T[]) parcel.createTypedArray(creator); + parcel.setDataPosition(dataPosition + M1); + return tArr; + } + + public static boolean W0(c.f.j.j.e eVar, e eVar2) { + if (eVar == null) { + return false; + } + eVar.w(); + int i = eVar.l; + if (i == 90 || i == 270) { + eVar.w(); + int i2 = eVar.o; + eVar.w(); + return V0(i2, eVar.n, eVar2); + } + eVar.w(); + int i3 = eVar.n; + eVar.w(); + return V0(i3, eVar.o, eVar2); + } + + public static void W1(MediaFormat mediaFormat, List list) { + for (int i = 0; i < list.size(); i++) { + mediaFormat.setByteBuffer(c.d.b.a.a.l("csd-", i), ByteBuffer.wrap(list.get(i))); + } + } + + @RecentlyNonNull + public static ArrayList X(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull Parcelable.Creator creator) { + int M1 = M1(parcel, i); + int dataPosition = parcel.dataPosition(); + if (M1 == 0) { + return null; + } + ArrayList createTypedArrayList = parcel.createTypedArrayList(creator); + parcel.setDataPosition(dataPosition + M1); + return createTypedArrayList; + } + + public static final boolean X0(Context context) { + d0.z.d.m.checkNotNullParameter(context, "$this$isLtr"); + return TextUtilsCompat.getLayoutDirectionFromLocale(Locale.getDefault()) == 0; + } + + public static void X1(Drawable drawable, c.f.g.e.e eVar) { + if (drawable != null && eVar != null) { + int i = eVar.a; + if (i != -1) { + drawable.setAlpha(i); + } + if (eVar.b) { + drawable.setColorFilter(eVar.f394c); + } + int i2 = eVar.d; + boolean z2 = false; + if (i2 != -1) { + drawable.setDither(i2 != 0); + } + int i3 = eVar.e; + if (i3 != -1) { + if (i3 != 0) { + z2 = true; + } + drawable.setFilterBitmap(z2); + } + } + } + + public static String Y(String str) { + return "." + str + ",." + str + " *"; + } + + public static final boolean Y0(VoiceState voiceState) { + d0.z.d.m.checkNotNullParameter(voiceState, "$this$isMutedByAnySource"); + return voiceState.h() || voiceState.e() || voiceState.l(); + } + + public static void Y1(Status status, @Nullable TResult tresult, TaskCompletionSource taskCompletionSource) { + if (status.v0()) { + taskCompletionSource.a.t(tresult); + return; + } + taskCompletionSource.a.s(new ApiException(status)); + } + + public static void Z(String str, String str2, Object obj) { + Log.d(F0(str), String.format(str2, obj)); + } + + public static final boolean Z0(StageInstance stageInstance) { + d0.z.d.m.checkNotNullParameter(stageInstance, "$this$isPublic"); + return stageInstance.e() == StageInstancePrivacyLevel.PUBLIC; + } + + public static void Z1(SQLiteDatabase sQLiteDatabase, int i, String str, int i2) throws DatabaseIOException { + try { + sQLiteDatabase.execSQL("CREATE TABLE IF NOT EXISTS ExoPlayerVersions (feature INTEGER NOT NULL,instance_uid TEXT NOT NULL,version INTEGER NOT NULL,PRIMARY KEY (feature, instance_uid))"); + ContentValues contentValues = new ContentValues(); + contentValues.put("feature", Integer.valueOf(i)); + contentValues.put("instance_uid", str); + contentValues.put("version", Integer.valueOf(i2)); + sQLiteDatabase.replaceOrThrow("ExoPlayerVersions", null, contentValues); + } catch (SQLException e) { + throw new DatabaseIOException(e); + } + } + + public static float a(float f) { + return f <= 0.04045f ? f / 12.92f : (float) Math.pow((double) ((f + 0.055f) / 1.055f), 2.4000000953674316d); + } + + public static void a0(String str, String str2, Object... objArr) { + Log.d(F0(str), String.format(str2, objArr)); + } + + public static final boolean a1(VoiceState voiceState) { + d0.z.d.m.checkNotNullParameter(voiceState, "$this$isRemoveSignal"); + return voiceState.a() == null; + } + + public static boolean a2(Object obj, Collection collection, Collection collection2) { + if (collection == null && collection2 == null) { + return false; + } + return collection2 == null ? collection.contains(obj) : collection == null ? !collection2.contains(obj) : !collection2.contains(obj) || collection.contains(obj); + } + + public static float b(float f) { + return f <= 0.0031308f ? f * 12.92f : (float) ((Math.pow((double) f, 0.4166666567325592d) * 1.0549999475479126d) - 0.054999999701976776d); + } + + public static boolean b0(File file) { + File[] listFiles; + if (file.isDirectory() && (listFiles = file.listFiles()) != null) { + for (File file2 : listFiles) { + b0(file2); + } + } + return file.delete(); + } + + public static boolean b1(XmlPullParser xmlPullParser, String str) throws XmlPullParserException { + return (xmlPullParser.getEventType() == 2) && xmlPullParser.getName().equals(str); + } + + public static long b2(InputStream inputStream, long j) throws IOException { + j(Boolean.valueOf(j >= 0)); + long j2 = j; + while (j2 > 0) { + long skip = inputStream.skip(j2); + if (skip <= 0) { + if (inputStream.read() == -1) { + return j - j2; + } + skip = 1; + } + j2 -= skip; + } + return j; + } + + public static void c(Spannable spannable, Object obj, int i, int i2, int i3) { + Object[] spans = spannable.getSpans(i, i2, obj.getClass()); + for (Object obj2 : spans) { + if (spannable.getSpanStart(obj2) == i && spannable.getSpanEnd(obj2) == i2 && spannable.getSpanFlags(obj2) == i3) { + spannable.removeSpan(obj2); + } + } + spannable.setSpan(obj, i, i2, i3); + } + + /* JADX WARNING: Removed duplicated region for block: B:38:0x009c */ + /* JADX WARNING: Removed duplicated region for block: B:44:0x00b2 */ + /* JADX WARNING: Removed duplicated region for block: B:51:0x00dd */ + /* JADX WARNING: Removed duplicated region for block: B:52:0x00e0 */ + /* JADX WARNING: Removed duplicated region for block: B:55:0x00ea */ + public static int c0(c.f.j.d.f fVar, e eVar, c.f.j.j.e eVar2, int i) { + float f; + int max; + float f2; + int i2; + int i3; + int i4; + int i5 = 1; + if (!c.f.j.j.e.r(eVar2)) { + return 1; + } + j(Boolean.valueOf(c.f.j.j.e.r(eVar2))); + if (eVar != null && eVar.b > 0 && eVar.a > 0) { + eVar2.w(); + if (eVar2.n != 0) { + eVar2.w(); + if (eVar2.o != 0) { + boolean z2 = false; + if (!fVar.c()) { + i2 = 0; + } else { + eVar2.w(); + i2 = eVar2.l; + j(Boolean.valueOf(i2 == 0 || i2 == 90 || i2 == 180 || i2 == 270)); + } + if (i2 == 90 || i2 == 270) { + z2 = true; + } + if (z2) { + eVar2.w(); + i3 = eVar2.o; + } else { + eVar2.w(); + i3 = eVar2.n; + } + if (z2) { + eVar2.w(); + i4 = eVar2.n; + } else { + eVar2.w(); + i4 = eVar2.o; + } + f = Math.max(((float) eVar.a) / ((float) i3), ((float) eVar.b) / ((float) i4)); + int i6 = c.f.d.e.a.a; + eVar2.w(); + int i7 = 2; + if (eVar2.k != c.f.i.b.a) { + if (f <= 0.6666667f) { + i5 = 2; + while (true) { + int i8 = i5 * 2; + double d = 1.0d / ((double) i8); + if ((d * 0.3333333432674408d) + d <= ((double) f)) { + break; + } + i5 = i8; + } + } + } else if (f <= 0.6666667f) { + while (true) { + double d2 = (double) i7; + if (((1.0d / (Math.pow(d2, 2.0d) - d2)) * 0.3333333432674408d) + (1.0d / d2) <= ((double) f)) { + break; + } + i7++; + } + i5 = i7 - 1; + } + eVar2.w(); + int i9 = eVar2.o; + eVar2.w(); + max = Math.max(i9, eVar2.n); + f2 = eVar == null ? eVar.f438c : (float) i; + while (((float) (max / i5)) > f2) { + eVar2.w(); + i5 = eVar2.k == c.f.i.b.a ? i5 * 2 : i5 + 1; + } + return i5; + } + } + } + f = 1.0f; + eVar2.w(); + int i7 = 2; + if (eVar2.k != c.f.i.b.a) { + } + eVar2.w(); + int i9 = eVar2.o; + eVar2.w(); + max = Math.max(i9, eVar2.n); + if (eVar == null) { + } + while (((float) (max / i5)) > f2) { + } + return i5; + } + + public static final void c1(String str, String str2) { + d0.z.d.m.checkNotNullParameter(str, "tag"); + d0.z.d.m.checkNotNullParameter(str2, NotificationCompat.CATEGORY_MESSAGE); + Logger.d$default(LoggingProvider.INSTANCE.get(), str, str2, null, 4, null); + } + + public static void c2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + parcel.setDataPosition(parcel.dataPosition() + M1(parcel, i)); + } + + public static void d(int i, String str, int i2) { + int glCreateShader = GLES20.glCreateShader(i); + GLES20.glShaderSource(glCreateShader, str); + GLES20.glCompileShader(glCreateShader); + int[] iArr = {0}; + GLES20.glGetShaderiv(glCreateShader, 35713, iArr, 0); + if (iArr[0] != 1) { + Log.e("GlUtil", GLES20.glGetShaderInfoLog(glCreateShader) + ", source: " + str); + } + GLES20.glAttachShader(i2, glCreateShader); + GLES20.glDeleteShader(glCreateShader); + r(); + } + + public static void d0(File file) throws IOException { + if (file.isDirectory()) { + File[] listFiles = file.listFiles(); + if (listFiles != null) { + for (File file2 : listFiles) { + d0(file2); + } + } else { + return; + } + } + if (!file.delete() && file.exists()) { + throw new IOException("could not delete: " + file); + } + } + + public static final void d1(String str, String str2, Throwable th) { + d0.z.d.m.checkNotNullParameter(str, "tag"); + d0.z.d.m.checkNotNullParameter(str2, NotificationCompat.CATEGORY_MESSAGE); + Logger.e$default(LoggingProvider.INSTANCE.get(), str, str2, th, null, 8, null); + } + + public static final

Bundle d2(P p) { + d0.z.d.m.checkNotNullParameter(p, "$this$toBundle"); + Bundle bundle = new Bundle(); + bundle.putParcelable("intent_args_key", p); + return bundle; + } + + public static int e(int i, int i2, int i3) { + return Math.min(Math.max(0, i3 - i), i2); + } + + public static void e0(String str, String str2, Throwable th) { + Log.e(F0(str), str2, th); + } + + public static final void e1(String str, String str2) { + d0.z.d.m.checkNotNullParameter(str, "tag"); + d0.z.d.m.checkNotNullParameter(str2, NotificationCompat.CATEGORY_MESSAGE); + Logger.i$default(LoggingProvider.INSTANCE.get(), str, str2, null, 4, null); + } + + public static String e2(@ColorInt int i) { + return f0.k("rgba(%d,%d,%d,%.3f)", Integer.valueOf(Color.red(i)), Integer.valueOf(Color.green(i)), Integer.valueOf(Color.blue(i)), Double.valueOf(((double) Color.alpha(i)) / 255.0d)); + } + + public static byte[] f(String str) { + try { + return str.getBytes("ASCII"); + } catch (UnsupportedEncodingException e) { + throw new RuntimeException("ASCII not found!", e); + } + } + + public static void f0() { + if (f0.a >= 18) { + Trace.endSection(); + } + } + + public static final void f1(String str, String str2) { + d0.z.d.m.checkNotNullParameter(str, "tag"); + d0.z.d.m.checkNotNullParameter(str2, NotificationCompat.CATEGORY_MESSAGE); + Logger.v$default(LoggingProvider.INSTANCE.get(), str, str2, null, 4, null); + } + + public static final

Intent f2(P p) { + d0.z.d.m.checkNotNullParameter(p, "$this$toIntent"); + Intent putExtra = new Intent().putExtra("intent_args_key", p); + d0.z.d.m.checkNotNullExpressionValue(putExtra, "Intent().putExtra(INTENT_ARGS, this)"); + return putExtra; + } + + public static void g(String str) { + if (f0.a >= 18) { + Trace.beginSection(str); + } + } + + public static synchronized void g0() { + synchronized (d.class) { + if (!a) { + c.f.m.n.a.c("native-imagetranscoder"); + a = true; + } + } + } + + public static final void g1(String str, String str2) { + d0.z.d.m.checkNotNullParameter(str, "tag"); + d0.z.d.m.checkNotNullParameter(str2, NotificationCompat.CATEGORY_MESSAGE); + Logger.w$default(LoggingProvider.INSTANCE.get(), str, str2, null, 4, null); + } + + public static i g2(Object obj) { + return new i(obj.getClass().getSimpleName(), null); + } + + public static List h(byte[] bArr) { + ArrayList arrayList = new ArrayList(3); + arrayList.add(bArr); + arrayList.add(i((((long) (((bArr[11] & 255) << 8) | (bArr[10] & 255))) * 1000000000) / 48000)); + arrayList.add(i(80000000)); + return arrayList; + } + + public static void h0(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i) { + if (parcel.dataPosition() != i) { + throw new SafeParcelReader$ParseException(c.d.b.a.a.f(37, "Overread allowed size end=", i), parcel); + } + } + + public static ParameterizedType h1(Type type) { + if (type instanceof ParameterizedType) { + return (ParameterizedType) type; + } + if (type instanceof WildcardType) { + WildcardType wildcardType = (WildcardType) type; + if (wildcardType.getLowerBounds().length != 0) { + return null; + } + Type[] upperBounds = wildcardType.getUpperBounds(); + if (upperBounds.length == 1) { + return h1(upperBounds[0]); + } + } + return null; + } + + public static void h2(Collection collection, c.a.t.b.c.a aVar) { + for (Node node : collection) { + i2(node, aVar); + } + } + + public static byte[] i(long j) { + return ByteBuffer.allocate(8).order(ByteOrder.nativeOrder()).putLong(j).array(); + } + + public static boolean i0(Object obj, Object obj2) { + return obj == obj2 || (obj != null && obj.equals(obj2)); + } + + public static TypeVariable i1(Type type) { + if (type instanceof TypeVariable) { + return (TypeVariable) type; + } + if (type instanceof WildcardType) { + WildcardType wildcardType = (WildcardType) type; + if (wildcardType.getLowerBounds().length != 0) { + return null; + } + Type[] upperBounds = wildcardType.getUpperBounds(); + if (upperBounds.length == 1) { + return i1(upperBounds[0]); + } + } + return null; + } + + public static void i2(Node node, c.a.t.b.c.a aVar) { + if (node.hasChildren()) { + for (Node node2 : node.getChildren()) { + i2(node2, aVar); + } + } + aVar.processNode(node); + } + + public static void j(Boolean bool) { + if (bool != null && !bool.booleanValue()) { + throw new IllegalArgumentException(); + } + } + + @RecentlyNonNull + public static boolean j0(@Nullable Object obj, @Nullable Object obj2) { + if (obj != obj2) { + return obj != null && obj.equals(obj2); + } + return true; + } + + public static void j1(MediaFormat mediaFormat, String str, int i) { + if (i != -1) { + mediaFormat.setInteger(str, i); + } + } + + public static void j2(Node node, c.a.t.b.c.a aVar) { + aVar.processNode(node); + if (node.hasChildren()) { + for (Node node2 : node.getChildren()) { + j2(node2, aVar); + } + } + } + + @Pure + public static void k(boolean z2) { + if (!z2) { + throw new IllegalArgumentException(); + } + } + + public static int k0(float f, int i, int i2) { + if (i == i2) { + return i; + } + float f2 = ((float) ((i >> 24) & 255)) / 255.0f; + float a2 = a(((float) ((i >> 16) & 255)) / 255.0f); + float a3 = a(((float) ((i >> 8) & 255)) / 255.0f); + float a4 = a(((float) (i & 255)) / 255.0f); + float a5 = a(((float) ((i2 >> 16) & 255)) / 255.0f); + float a6 = a(((float) ((i2 >> 8) & 255)) / 255.0f); + float a7 = a(((float) (i2 & 255)) / 255.0f); + float a8 = c.d.b.a.a.a(((float) ((i2 >> 24) & 255)) / 255.0f, f2, f, f2); + float a9 = c.d.b.a.a.a(a5, a2, f, a2); + float a10 = c.d.b.a.a.a(a6, a3, f, a3); + float a11 = c.d.b.a.a.a(a7, a4, f, a4); + int round = Math.round(b(a9) * 255.0f) << 16; + return Math.round(b(a11) * 255.0f) | round | (Math.round(a8 * 255.0f) << 24) | (Math.round(b(a10) * 255.0f) << 8); + } + + public static String k1(String str, String str2) { + int length = str.length() - str2.length(); + if (length < 0 || length > 1) { + throw new IllegalArgumentException("Invalid input received"); + } + StringBuilder sb = new StringBuilder(str2.length() + str.length()); + for (int i = 0; i < str.length(); i++) { + sb.append(str.charAt(i)); + if (str2.length() > i) { + sb.append(str2.charAt(i)); + } + } + return sb.toString(); + } + + /* JADX INFO: finally extract failed */ + /* JADX WARNING: Code restructure failed: missing block: B:142:0x024a, code lost: + if (r15 != false) goto L_0x0266; + */ + /* JADX WARNING: Code restructure failed: missing block: B:156:0x0264, code lost: + if (r16 != false) goto L_0x0266; + */ + public static c.f.g.f.a k2(c.f.g.f.a aVar, Context context, AttributeSet attributeSet) { + int i; + int i2; + boolean z2; + boolean z3; + boolean z4; + boolean z5; + boolean z6; + boolean z7; + int i3; + boolean z8; + int i4; + boolean z9; + boolean z10; + Context context2 = context; + int i5 = 1; + if (attributeSet != null) { + TypedArray obtainStyledAttributes = context2.obtainStyledAttributes(attributeSet, R.a.GenericDraweeHierarchy); + try { + int indexCount = obtainStyledAttributes.getIndexCount(); + int i6 = 0; + int i7 = 0; + i = 0; + boolean z11 = true; + boolean z12 = true; + boolean z13 = true; + boolean z14 = true; + boolean z15 = true; + boolean z16 = true; + boolean z17 = true; + boolean z18 = true; + while (i6 < indexCount) { + int index = obtainStyledAttributes.getIndex(i6); + if (index == R.a.GenericDraweeHierarchy_actualImageScaleType) { + aVar.n = C0(obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_placeholderImage) { + aVar.f = w0(context2, obtainStyledAttributes, index); + } else { + if (index == R.a.GenericDraweeHierarchy_pressedStateOverlayImage) { + Drawable w0 = w0(context2, obtainStyledAttributes, index); + if (w0 == null) { + aVar.q = null; + } else { + StateListDrawable stateListDrawable = new StateListDrawable(); + i3 = indexCount; + int[] iArr = new int[i5]; + iArr[0] = 16842919; + stateListDrawable.addState(iArr, w0); + aVar.q = stateListDrawable; + } + } else { + i3 = indexCount; + if (index == R.a.GenericDraweeHierarchy_progressBarImage) { + aVar.l = w0(context2, obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_fadeDuration) { + aVar.d = obtainStyledAttributes.getInt(index, 0); + } else if (index == R.a.GenericDraweeHierarchy_viewAspectRatio) { + aVar.e = obtainStyledAttributes.getFloat(index, 0.0f); + } else if (index == R.a.GenericDraweeHierarchy_placeholderImageScaleType) { + aVar.g = C0(obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_retryImage) { + aVar.h = w0(context2, obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_retryImageScaleType) { + aVar.i = C0(obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_failureImage) { + aVar.j = w0(context2, obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_failureImageScaleType) { + aVar.k = C0(obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_progressBarImageScaleType) { + aVar.m = C0(obtainStyledAttributes, index); + } else { + if (index == R.a.GenericDraweeHierarchy_progressBarAutoRotateInterval) { + i = obtainStyledAttributes.getInteger(index, i); + } else if (index == R.a.GenericDraweeHierarchy_backgroundImage) { + aVar.o = w0(context2, obtainStyledAttributes, index); + } else if (index == R.a.GenericDraweeHierarchy_overlayImage) { + aVar.b(w0(context2, obtainStyledAttributes, index)); + } else if (index == R.a.GenericDraweeHierarchy_roundAsCircle) { + if (aVar.r == null) { + aVar.r = new c.f.g.f.c(); + } + aVar.r.b = obtainStyledAttributes.getBoolean(index, false); + } else if (index == R.a.GenericDraweeHierarchy_roundedCornerRadius) { + i7 = obtainStyledAttributes.getDimensionPixelSize(index, i7); + } else if (index == R.a.GenericDraweeHierarchy_roundTopLeft) { + z11 = obtainStyledAttributes.getBoolean(index, z11); + } else if (index == R.a.GenericDraweeHierarchy_roundTopRight) { + z14 = obtainStyledAttributes.getBoolean(index, z14); + } else { + if (index == R.a.GenericDraweeHierarchy_roundBottomLeft) { + z9 = obtainStyledAttributes.getBoolean(index, z18); + } else { + z9 = z18; + if (index == R.a.GenericDraweeHierarchy_roundBottomRight) { + z15 = obtainStyledAttributes.getBoolean(index, z15); + } else if (index == R.a.GenericDraweeHierarchy_roundTopStart) { + z12 = obtainStyledAttributes.getBoolean(index, z12); + } else if (index == R.a.GenericDraweeHierarchy_roundTopEnd) { + z13 = obtainStyledAttributes.getBoolean(index, z13); + } else { + if (index == R.a.GenericDraweeHierarchy_roundBottomStart) { + z8 = obtainStyledAttributes.getBoolean(index, z17); + } else { + z8 = z17; + if (index == R.a.GenericDraweeHierarchy_roundBottomEnd) { + z16 = obtainStyledAttributes.getBoolean(index, z16); + } else if (index == R.a.GenericDraweeHierarchy_roundWithOverlayColor) { + if (aVar.r == null) { + aVar.r = new c.f.g.f.c(); + } + aVar.r.b(obtainStyledAttributes.getColor(index, 0)); + } else { + if (index == R.a.GenericDraweeHierarchy_roundingBorderWidth) { + if (aVar.r == null) { + aVar.r = new c.f.g.f.c(); + } + c.f.g.f.c cVar = aVar.r; + float dimensionPixelSize = (float) obtainStyledAttributes.getDimensionPixelSize(index, 0); + Objects.requireNonNull(cVar); + if (dimensionPixelSize >= 0.0f) { + i4 = i7; + z10 = true; + } else { + i4 = i7; + z10 = false; + } + l(z10, "the border width cannot be < 0"); + cVar.e = dimensionPixelSize; + } else { + i4 = i7; + if (index == R.a.GenericDraweeHierarchy_roundingBorderColor) { + if (aVar.r == null) { + aVar.r = new c.f.g.f.c(); + } + aVar.r.f = obtainStyledAttributes.getColor(index, 0); + } else if (index == R.a.GenericDraweeHierarchy_roundingBorderPadding) { + if (aVar.r == null) { + aVar.r = new c.f.g.f.c(); + } + c.f.g.f.c cVar2 = aVar.r; + float dimensionPixelSize2 = (float) obtainStyledAttributes.getDimensionPixelSize(index, 0); + Objects.requireNonNull(cVar2); + l(dimensionPixelSize2 >= 0.0f, "the padding cannot be < 0"); + cVar2.g = dimensionPixelSize2; + } + } + i7 = i4; + z18 = z9; + i6++; + context2 = context; + z17 = z8; + i5 = 1; + indexCount = i3; + } + } + i4 = i7; + i7 = i4; + z18 = z9; + i6++; + context2 = context; + z17 = z8; + i5 = 1; + indexCount = i3; + } + } + i4 = i7; + z8 = z17; + i7 = i4; + z18 = z9; + i6++; + context2 = context; + z17 = z8; + i5 = 1; + indexCount = i3; + } + z8 = z17; + i6++; + context2 = context; + z17 = z8; + i5 = 1; + indexCount = i3; + } + } + z8 = z17; + z9 = z18; + i4 = i7; + i7 = i4; + z18 = z9; + i6++; + context2 = context; + z17 = z8; + i5 = 1; + indexCount = i3; + } + i3 = indexCount; + z8 = z17; + z9 = z18; + i4 = i7; + i7 = i4; + z18 = z9; + i6++; + context2 = context; + z17 = z8; + i5 = 1; + indexCount = i3; + } + obtainStyledAttributes.recycle(); + if (context.getResources().getConfiguration().getLayoutDirection() == 1) { + z7 = z11 && z13; + z6 = z14 && z12; + z3 = z15 && z17; + if (z18) { + } + z2 = false; + i2 = i7; + z4 = z7; + z5 = z6; + } else { + z7 = z11 && z12; + z6 = z14 && z13; + z3 = z15 && z16; + if (z18) { + } + z2 = false; + i2 = i7; + z4 = z7; + z5 = z6; + } + z2 = true; + i2 = i7; + z4 = z7; + z5 = z6; + } catch (Throwable th) { + obtainStyledAttributes.recycle(); + context.getResources().getConfiguration().getLayoutDirection(); + throw th; + } + } else { + z5 = true; + z4 = true; + z3 = true; + z2 = true; + i2 = 0; + i = 0; + } + if (aVar.l != null && i > 0) { + aVar.l = new c.f.g.e.c(aVar.l, i); + } + if (i2 > 0) { + if (aVar.r == null) { + aVar.r = new c.f.g.f.c(); + } + c.f.g.f.c cVar3 = aVar.r; + float f = z4 ? (float) i2 : 0.0f; + float f2 = z5 ? (float) i2 : 0.0f; + float f3 = z3 ? (float) i2 : 0.0f; + float f4 = z2 ? (float) i2 : 0.0f; + if (cVar3.f410c == null) { + cVar3.f410c = new float[8]; + } + float[] fArr = cVar3.f410c; + fArr[1] = f; + fArr[0] = f; + fArr[3] = f2; + fArr[2] = f2; + fArr[5] = f3; + fArr[4] = f3; + fArr[7] = f4; + fArr[6] = f4; + } + return aVar; + } + + public static void l(boolean z2, Object obj) { + if (!z2) { + throw new IllegalArgumentException(String.valueOf(obj)); + } + } + + public static String[] l0(FileChannel fileChannel) throws IOException { + long j; + long j2; + long j3; + long j4; + long j5; + long j6; + long j7; + long j8; + long j9; + long j10; + long j11; + long j12; + long j13; + long j14; + int i = 8; + ByteBuffer allocate = ByteBuffer.allocate(8); + allocate.order(ByteOrder.LITTLE_ENDIAN); + if (J0(fileChannel, allocate, 0) == 1179403647) { + C1(fileChannel, allocate, 1, 4); + boolean z2 = ((short) (allocate.get() & 255)) == 1; + C1(fileChannel, allocate, 1, 5); + if (((short) (allocate.get() & 255)) == 2) { + allocate.order(ByteOrder.BIG_ENDIAN); + } + if (z2) { + j = J0(fileChannel, allocate, 28); + } else { + C1(fileChannel, allocate, 8, 32); + j = allocate.getLong(); + } + if (z2) { + C1(fileChannel, allocate, 2, 44); + j2 = (long) (allocate.getShort() & 65535); + } else { + C1(fileChannel, allocate, 2, 56); + j2 = (long) (allocate.getShort() & 65535); + } + C1(fileChannel, allocate, 2, z2 ? 42 : 54); + int i2 = allocate.getShort() & 65535; + if (j2 == 65535) { + if (z2) { + j14 = J0(fileChannel, allocate, 32); + } else { + C1(fileChannel, allocate, 8, 40); + j14 = allocate.getLong(); + } + j2 = z2 ? J0(fileChannel, allocate, j14 + 28) : J0(fileChannel, allocate, j14 + 44); + } + long j15 = j; + long j16 = 0; + while (true) { + if (j16 >= j2) { + j3 = 0; + break; + } + if ((z2 ? J0(fileChannel, allocate, j15 + 0) : J0(fileChannel, allocate, j15 + 0)) != 2) { + j15 += (long) i2; + j16++; + } else if (z2) { + j3 = J0(fileChannel, allocate, j15 + 4); + } else { + C1(fileChannel, allocate, 8, j15 + 8); + j3 = allocate.getLong(); + } + } + long j17 = 0; + if (j3 != 0) { + long j18 = j3; + long j19 = 0; + int i3 = 0; + while (true) { + long j20 = j18 + j17; + if (z2) { + j4 = J0(fileChannel, allocate, j20); + } else { + C1(fileChannel, allocate, i, j20); + j4 = allocate.getLong(); + } + if (j4 == 1) { + j5 = j3; + if (i3 != Integer.MAX_VALUE) { + i3++; + } else { + throw new h("malformed DT_NEEDED section"); + } + } else { + j5 = j3; + if (j4 == 5) { + if (z2) { + j13 = J0(fileChannel, allocate, j18 + 4); + } else { + C1(fileChannel, allocate, 8, j18 + 8); + j13 = allocate.getLong(); + } + j19 = j13; + } + } + long j21 = 16; + j18 += z2 ? 8 : 16; + long j22 = 0; + if (j4 != 0) { + j17 = 0; + j3 = j5; + i = 8; + } else if (j19 != 0) { + int i4 = 0; + while (true) { + if (((long) i4) >= j2) { + j6 = 0; + break; + } + if ((z2 ? J0(fileChannel, allocate, j + j22) : J0(fileChannel, allocate, j + j22)) == 1) { + if (z2) { + j10 = J0(fileChannel, allocate, j + 8); + } else { + C1(fileChannel, allocate, 8, j + j21); + j10 = allocate.getLong(); + } + if (z2) { + j9 = j2; + j11 = J0(fileChannel, allocate, j + 20); + } else { + j9 = j2; + C1(fileChannel, allocate, 8, j + 40); + j11 = allocate.getLong(); + } + if (j10 <= j19 && j19 < j11 + j10) { + if (z2) { + j12 = J0(fileChannel, allocate, j + 4); + } else { + C1(fileChannel, allocate, 8, j + 8); + j12 = allocate.getLong(); + } + j6 = j12 + (j19 - j10); + } + } else { + j9 = j2; + } + j += (long) i2; + i4++; + j2 = j9; + j21 = 16; + j22 = 0; + } + long j23 = 0; + if (j6 != 0) { + String[] strArr = new String[i3]; + int i5 = 0; + while (true) { + long j24 = j5 + j23; + if (z2) { + j7 = J0(fileChannel, allocate, j24); + } else { + C1(fileChannel, allocate, 8, j24); + j7 = allocate.getLong(); + } + if (j7 == 1) { + if (z2) { + j8 = J0(fileChannel, allocate, j5 + 4); + } else { + C1(fileChannel, allocate, 8, j5 + 8); + j8 = allocate.getLong(); + } + long j25 = j8 + j6; + StringBuilder sb = new StringBuilder(); + while (true) { + long j26 = j25 + 1; + C1(fileChannel, allocate, 1, j25); + short s2 = (short) (allocate.get() & 255); + if (s2 == 0) { + break; + } + sb.append((char) s2); + j25 = j26; + } + strArr[i5] = sb.toString(); + if (i5 != Integer.MAX_VALUE) { + i5++; + } else { + throw new h("malformed DT_NEEDED section"); + } + } + j5 += z2 ? 8 : 16; + if (j7 != 0) { + j23 = 0; + } else if (i5 == i3) { + return strArr; + } else { + throw new h("malformed DT_NEEDED section"); + } + } + } else { + throw new h("did not find file offset of DT_STRTAB table"); + } + } else { + throw new h("Dynamic section string-table not found"); + } + } + } else { + throw new h("ELF file does not contain dynamic linking information"); + } + } else { + throw new h("file is not ELF"); + } + } + + public static void l1(File file) throws FileUtils$CreateDirectoryException { + if (file.exists()) { + if (!file.isDirectory()) { + if (!file.delete()) { + throw new FileUtils$CreateDirectoryException(file.getAbsolutePath(), new FileUtils$FileDeleteException(file.getAbsolutePath())); + } + } else { + return; + } + } + if (!file.mkdirs() && !file.isDirectory()) { + throw new FileUtils$CreateDirectoryException(file.getAbsolutePath()); + } + } + + @RecentlyNonNull + public static int l2(@RecentlyNonNull Parcel parcel) { + int readInt = parcel.readInt(); + int M1 = M1(parcel, readInt); + int dataPosition = parcel.dataPosition(); + if ((65535 & readInt) != 20293) { + String valueOf = String.valueOf(Integer.toHexString(readInt)); + throw new SafeParcelReader$ParseException(valueOf.length() != 0 ? "Expected object header. Got 0x".concat(valueOf) : new String("Expected object header. Got 0x"), parcel); + } + int i = M1 + dataPosition; + if (i >= dataPosition && i <= parcel.dataSize()) { + return i; + } + StringBuilder sb = new StringBuilder(54); + sb.append("Size read is invalid start="); + sb.append(dataPosition); + sb.append(" end="); + sb.append(i); + throw new SafeParcelReader$ParseException(sb.toString(), parcel); + } + + public static void m(@RecentlyNonNull boolean z2) { + if (!z2) { + throw new IllegalArgumentException(); + } + } + + public static String m0(String str, Object... objArr) { + int indexOf; + String valueOf = String.valueOf(str); + StringBuilder sb = new StringBuilder((objArr.length * 16) + valueOf.length()); + int i = 0; + int i2 = 0; + while (i < objArr.length && (indexOf = valueOf.indexOf("%s", i2)) != -1) { + sb.append(valueOf.substring(i2, indexOf)); + sb.append(objArr[i]); + i2 = indexOf + 2; + i++; + } + sb.append(valueOf.substring(i2)); + if (i < objArr.length) { + sb.append(" ["); + sb.append(objArr[i]); + for (int i3 = i + 1; i3 < objArr.length; i3++) { + sb.append(", "); + sb.append(objArr[i3]); + } + sb.append(']'); + } + return sb.toString(); + } + + public static int m1(int i, int i2) { + if (i2 == 255) { + return i; + } + if (i2 == 0) { + return i & ViewCompat.MEASURED_SIZE_MASK; + } + int i3 = i2 + (i2 >> 7); + return (i & ViewCompat.MEASURED_SIZE_MASK) | ((((i >>> 24) * i3) >> 8) << 24); + } + + public static boolean m2(int i, c.i.a.c.i2.w wVar, boolean z2) throws ParserException { + if (wVar.a() < 7) { + if (z2) { + return false; + } + StringBuilder O = c.d.b.a.a.O("too short header: "); + O.append(wVar.a()); + throw new ParserException(O.toString()); + } else if (wVar.s() != i) { + if (z2) { + return false; + } + StringBuilder O2 = c.d.b.a.a.O("expected header type "); + O2.append(Integer.toHexString(i)); + throw new ParserException(O2.toString()); + } else if (wVar.s() == 118 && wVar.s() == 111 && wVar.s() == 114 && wVar.s() == 98 && wVar.s() == 105 && wVar.s() == 115) { + return true; + } else { + if (z2) { + return false; + } + throw new ParserException("expected characters 'vorbis'"); + } + } + + @Pure + public static void n(boolean z2, Object obj) { + if (!z2) { + throw new IllegalArgumentException(String.valueOf(obj)); + } + } + + @NonNull + public static ApiException n0(@NonNull Status status) { + return status.q != null ? new ResolvableApiException(status) : new ApiException(status); + } + + public static final Integer n1(JsonReader jsonReader) { + d0.z.d.m.checkNotNullParameter(jsonReader, "$this$nextIntOrNull"); + if (jsonReader.N() != JsonToken.NULL) { + return Integer.valueOf(jsonReader.z()); + } + jsonReader.H(); + return null; + } + + public static void n2(File file, c.f.d.c.a aVar) { + aVar.b(file); + File[] listFiles = file.listFiles(); + if (listFiles != null) { + for (File file2 : listFiles) { + if (file2.isDirectory()) { + n2(file2, aVar); + } else { + aVar.a(file2); + } + } + } + aVar.c(file); + } + + public static void o(@RecentlyNonNull boolean z2, @RecentlyNonNull String str, @RecentlyNonNull Object... objArr) { + if (!z2) { + throw new IllegalArgumentException(String.format(str, objArr)); + } + } + + /* JADX WARNING: Code restructure failed: missing block: B:19:0x0051, code lost: + r1 = move-exception; + */ + /* JADX WARNING: Code restructure failed: missing block: B:21:?, code lost: + r0.close(); + */ + /* JADX WARNING: Code restructure failed: missing block: B:22:0x0056, code lost: + r0 = move-exception; + */ + /* JADX WARNING: Code restructure failed: missing block: B:23:0x0057, code lost: + r3.addSuppressed(r0); + */ + /* JADX WARNING: Code restructure failed: missing block: B:24:0x005a, code lost: + throw r1; + */ + public static void o0(File file) throws IOException { + if (file.isDirectory()) { + File[] listFiles = file.listFiles(); + if (listFiles != null) { + for (File file2 : listFiles) { + o0(file2); + } + return; + } + throw new IOException("cannot list directory " + file); + } else if (!file.getPath().endsWith("_lock")) { + RandomAccessFile randomAccessFile = new RandomAccessFile(file, "r"); + randomAccessFile.getFD().sync(); + randomAccessFile.close(); + } + } + + @Nullable + public static List> o1(c.c.a.a0.i0.c cVar, c.c.a.d dVar, h0 h0Var) throws IOException { + return r.a(cVar, dVar, 1.0f, h0Var); + } + + public static void o2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull Bundle bundle, @RecentlyNonNull boolean z2) { + if (bundle != null) { + int w2 = w2(parcel, i); + parcel.writeBundle(bundle); + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + public static void p(@RecentlyNonNull boolean z2, @RecentlyNonNull Object obj) { + if (!z2) { + throw new IllegalArgumentException(String.valueOf(obj)); + } + } + + public static int p0(InputStream inputStream) throws IOException { + return ((((byte) inputStream.read()) << 8) & 65280) | (((byte) inputStream.read()) & 255); + } + + public static c.c.a.y.k.a p1(c.c.a.a0.i0.c cVar, c.c.a.d dVar) throws IOException { + return new c.c.a.y.k.a(o1(cVar, dVar, f.a)); + } + + public static void p2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull byte[] bArr, @RecentlyNonNull boolean z2) { + if (bArr != null) { + int w2 = w2(parcel, i); + parcel.writeByteArray(bArr); + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + public static void q(int i, int i2, int i3, int i4, int i5) { + boolean z2 = true; + j(Boolean.valueOf(i4 >= 0)); + j(Boolean.valueOf(i >= 0)); + j(Boolean.valueOf(i3 >= 0)); + j(Boolean.valueOf(i + i4 <= i5)); + if (i3 + i4 > i2) { + z2 = false; + } + j(Boolean.valueOf(z2)); + } + + public static int q0(int i) { + return (int) (((float) i) * 1.3333334f); + } + + public static c.c.a.y.k.b q1(c.c.a.a0.i0.c cVar, c.c.a.d dVar) throws IOException { + return r1(cVar, dVar, true); + } + + public static void q2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull IBinder iBinder, @RecentlyNonNull boolean z2) { + if (iBinder != null) { + int w2 = w2(parcel, i); + parcel.writeStrongBinder(iBinder); + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + public static void r() { + while (true) { + int glGetError = GLES20.glGetError(); + if (glGetError != 0) { + StringBuilder O = c.d.b.a.a.O("glError "); + O.append(GLU.gluErrorString(glGetError)); + Log.e("GlUtil", O.toString()); + } else { + return; + } + } + } + + public static p r0(Drawable drawable) { + if (drawable == null) { + return null; + } + if (drawable instanceof p) { + return (p) drawable; + } + if (drawable instanceof c.f.g.e.d) { + return r0(((c.f.g.e.d) drawable).l()); + } + if (drawable instanceof c.f.g.e.b) { + c.f.g.e.b bVar = (c.f.g.e.b) drawable; + int length = bVar.k.length; + for (int i = 0; i < length; i++) { + p r0 = r0(bVar.a(i)); + if (r0 != null) { + return r0; + } + } + } + return null; + } + + public static c.c.a.y.k.b r1(c.c.a.a0.i0.c cVar, c.c.a.d dVar, boolean z2) throws IOException { + return new c.c.a.y.k.b(r.a(cVar, dVar, z2 ? g.c() : 1.0f, i.a)); + } + + public static void r2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull Parcelable parcelable, @RecentlyNonNull int i2, @RecentlyNonNull boolean z2) { + if (parcelable != null) { + int w2 = w2(parcel, i); + parcelable.writeToParcel(parcel, i2); + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + public static void s(@RecentlyNonNull Handler handler) { + Looper myLooper = Looper.myLooper(); + if (myLooper != handler.getLooper()) { + String name = myLooper != null ? myLooper.getThread().getName() : "null current looper"; + String name2 = handler.getLooper().getThread().getName(); + StringBuilder N = c.d.b.a.a.N(c.d.b.a.a.b(name, c.d.b.a.a.b(name2, 36)), "Must be called on ", name2, " thread, but got ", name); + N.append("."); + throw new IllegalStateException(N.toString()); + } + } + + public static Object s0(Object obj) { + return new a(obj.getClass(), Array.getLength(obj), obj); + } + + public static c.c.a.y.k.d s1(c.c.a.a0.i0.c cVar, c.c.a.d dVar) throws IOException { + return new c.c.a.y.k.d(o1(cVar, dVar, o.a)); + } + + public static void s2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull String str, @RecentlyNonNull boolean z2) { + if (str != null) { + int w2 = w2(parcel, i); + parcel.writeString(str); + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + @Pure + public static int t(int i, int i2, int i3) { + if (i >= i2 && i < i3) { + return i; + } + throw new IndexOutOfBoundsException(); + } + + @Nullable + public static String t0(XmlPullParser xmlPullParser, String str) { + int attributeCount = xmlPullParser.getAttributeCount(); + for (int i = 0; i < attributeCount; i++) { + if (xmlPullParser.getAttributeName(i).equals(str)) { + return xmlPullParser.getAttributeValue(i); + } + } + return null; + } + + /* JADX WARNING: Removed duplicated region for block: B:58:0x01a5 */ + /* JADX WARNING: Removed duplicated region for block: B:66:0x01bc A[SYNTHETIC] */ + @Nullable + public static ArrayList t1(c.i.a.c.i2.w wVar) { + int i; + ArrayList arrayList; + ArrayList arrayList2; + d.a aVar; + c.i.a.c.i2.w wVar2 = wVar; + if (wVar.s() != 0) { + return null; + } + wVar2.E(7); + int f = wVar.f(); + if (f == 1684433976) { + c.i.a.c.i2.w wVar3 = new c.i.a.c.i2.w(); + Inflater inflater = new Inflater(true); + try { + if (!f0.x(wVar2, wVar3, inflater)) { + return null; + } + inflater.end(); + wVar2 = wVar3; + } finally { + inflater.end(); + } + } else if (f != 1918990112) { + return null; + } + ArrayList arrayList3 = new ArrayList<>(); + int i2 = wVar2.b; + int i3 = wVar2.f921c; + while (i2 < i3) { + int f2 = wVar2.f() + i2; + if (f2 > i2 && f2 <= i3) { + if (wVar2.f() == 1835365224) { + int f3 = wVar2.f(); + if (f3 <= 10000) { + float[] fArr = new float[f3]; + for (int i4 = 0; i4 < f3; i4++) { + fArr[i4] = Float.intBitsToFloat(wVar2.f()); + } + int f4 = wVar2.f(); + if (f4 <= 32000) { + double log = Math.log(2.0d); + arrayList2 = arrayList3; + int ceil = (int) Math.ceil(Math.log(((double) f3) * 2.0d) / log); + c.i.a.c.i2.v vVar = new c.i.a.c.i2.v(wVar2.a); + vVar.k(wVar2.b * 8); + float[] fArr2 = new float[(f4 * 5)]; + int i5 = 5; + int[] iArr = new int[5]; + int i6 = 0; + int i7 = 0; + while (true) { + if (i6 >= f4) { + vVar.k((vVar.e() + 7) & -8); + int i8 = 32; + int g = vVar.g(32); + d.b[] bVarArr = new d.b[g]; + int i9 = 0; + while (true) { + if (i9 >= g) { + i = i3; + aVar = new d.a(bVarArr); + break; + } + int g2 = vVar.g(8); + int g3 = vVar.g(8); + int g4 = vVar.g(i8); + if (g4 > 128000) { + break; + } + i = i3; + int ceil2 = (int) Math.ceil(Math.log(((double) f4) * 2.0d) / log); + float[] fArr3 = new float[(g4 * 3)]; + float[] fArr4 = new float[(g4 * 2)]; + int i10 = 0; + int i11 = 0; + while (i10 < g4) { + int g5 = vVar.g(ceil2); + int i12 = i11 + ((-(g5 & 1)) ^ (g5 >> 1)); + if (i12 < 0 || i12 >= f4) { + break; + } + int i13 = i10 * 3; + int i14 = i12 * 5; + fArr3[i13] = fArr2[i14]; + fArr3[i13 + 1] = fArr2[i14 + 1]; + fArr3[i13 + 2] = fArr2[i14 + 2]; + int i15 = i10 * 2; + fArr4[i15] = fArr2[i14 + 3]; + fArr4[i15 + 1] = fArr2[i14 + 4]; + i10++; + i11 = i12; + fArr4 = fArr4; + g = g; + vVar = vVar; + } + bVarArr[i9] = new d.b(g2, fArr3, fArr4, g3); + i9++; + i3 = i; + g = g; + i8 = 32; + } + } else { + int i16 = 0; + while (i16 < i5) { + int i17 = iArr[i16]; + int g6 = vVar.g(ceil); + int i18 = i17 + ((-(g6 & 1)) ^ (g6 >> 1)); + if (i18 >= f3 || i18 < 0) { + break; + } + fArr2[i7] = fArr[i18]; + iArr[i16] = i18; + i16++; + i7++; + i5 = 5; + } + i6++; + i5 = 5; + } + } + i = i3; + aVar = null; + if (aVar == null) { + arrayList = arrayList2; + arrayList.add(aVar); + } + } + } + arrayList2 = arrayList3; + i = i3; + aVar = null; + if (aVar == null) { + } + } else { + arrayList = arrayList3; + i = i3; + } + wVar2.D(f2); + arrayList3 = arrayList; + i2 = f2; + i3 = i; + } + return null; + } + return arrayList3; + } + + public static void t2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull String[] strArr, @RecentlyNonNull boolean z2) { + if (strArr != null) { + int w2 = w2(parcel, i); + parcel.writeStringArray(strArr); + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + public static void u(@RecentlyNonNull String str) { + if (!(Looper.getMainLooper() == Looper.myLooper())) { + throw new IllegalStateException(str); + } + } + + public static int u0(int i) { + if (i == 3) { + return BaseTransientBottomBar.ANIMATION_FADE_DURATION; + } + if (i != 6) { + return i != 8 ? 0 : 270; + } + return 90; + } + + public static c.c.a.y.k.f u1(c.c.a.a0.i0.c cVar, c.c.a.d dVar) throws IOException { + return new c.c.a.y.k.f(r.a(cVar, dVar, g.c(), w.a)); + } + + public static void u2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull T[] tArr, @RecentlyNonNull int i2, @RecentlyNonNull boolean z2) { + if (tArr != null) { + int w2 = w2(parcel, i); + int length = tArr.length; + parcel.writeInt(length); + for (T t : tArr) { + if (t == null) { + parcel.writeInt(0); + } else { + y2(parcel, t, i2); + } + } + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + @RecentlyNonNull + public static String v(@RecentlyNonNull String str, @RecentlyNonNull Object obj) { + if (!TextUtils.isEmpty(str)) { + return str; + } + throw new IllegalArgumentException(String.valueOf(obj)); + } + + public static Object v0(j jVar) { + Class cls = jVar._class; + Class v = c.g.a.c.i0.d.v(cls); + if (v != null) { + if (v == Integer.TYPE) { + return 0; + } + if (v == Long.TYPE) { + return 0L; + } + if (v == Boolean.TYPE) { + return Boolean.FALSE; + } + if (v == Double.TYPE) { + return Double.valueOf((double) ShadowDrawableWrapper.COS_45); + } + if (v == Float.TYPE) { + return Float.valueOf(0.0f); + } + if (v == Byte.TYPE) { + return (byte) 0; + } + if (v == Short.TYPE) { + return (short) 0; + } + if (v == Character.TYPE) { + return (char) 0; + } + throw new IllegalArgumentException(c.d.b.a.a.j(v, c.d.b.a.a.O("Class "), " is not a primitive type")); + } else if (jVar.v() || jVar.b()) { + return p.a.NON_EMPTY; + } else { + if (cls == String.class) { + return ""; + } + if (jVar.B(Date.class)) { + return new Date(0); + } + if (!jVar.B(Calendar.class)) { + return null; + } + GregorianCalendar gregorianCalendar = new GregorianCalendar(); + gregorianCalendar.setTimeInMillis(0); + return gregorianCalendar; + } + } + + @Nullable + public static c.i.a.c.a2.h0.j v1(byte[] bArr) { + c.i.a.c.i2.w wVar = new c.i.a.c.i2.w(bArr); + if (wVar.f921c < 32) { + return null; + } + wVar.D(0); + if (wVar.f() != wVar.a() + 4 || wVar.f() != 1886614376) { + return null; + } + int f = (wVar.f() >> 24) & 255; + if (f > 1) { + c.d.b.a.a.i0("Unsupported pssh version: ", f, "PsshAtomUtil"); + return null; + } + UUID uuid = new UUID(wVar.m(), wVar.m()); + if (f == 1) { + wVar.E(wVar.v() * 16); + } + int v = wVar.v(); + if (v != wVar.a()) { + return null; + } + byte[] bArr2 = new byte[v]; + System.arraycopy(wVar.a, wVar.b, bArr2, 0, v); + wVar.b += v; + return new c.i.a.c.a2.h0.j(uuid, f, bArr2); + } + + public static void v2(@RecentlyNonNull Parcel parcel, @RecentlyNonNull int i, @RecentlyNonNull List list, @RecentlyNonNull boolean z2) { + if (list != null) { + int w2 = w2(parcel, i); + int size = list.size(); + parcel.writeInt(size); + for (int i2 = 0; i2 < size; i2++) { + T t = list.get(i2); + if (t == null) { + parcel.writeInt(0); + } else { + y2(parcel, t, 0); + } + } + B2(parcel, w2); + } else if (z2) { + z2(parcel, i, 0); + } + } + + @RecentlyNonNull + public static String w(@RecentlyNonNull String str) { + if (!TextUtils.isEmpty(str)) { + return str; + } + throw new IllegalArgumentException("Given String is empty or null"); + } + + public static Drawable w0(Context context, TypedArray typedArray, int i) { + int resourceId = typedArray.getResourceId(i, 0); + if (resourceId == 0) { + return null; + } + return context.getResources().getDrawable(resourceId); + } + + @Nullable + public static byte[] w1(byte[] bArr, UUID uuid) { + c.i.a.c.a2.h0.j v1 = v1(bArr); + if (v1 == null) { + return null; + } + if (uuid.equals(v1.a)) { + return v1.f708c; + } + Log.w("PsshAtomUtil", "UUID mismatch. Expected: " + uuid + ", got: " + v1.a + "."); + return null; + } + + public static int w2(Parcel parcel, int i) { + parcel.writeInt(i | SupportMenu.CATEGORY_MASK); + parcel.writeInt(0); + return parcel.dataPosition(); + } + + public static void x(@RecentlyNonNull String str) { + if (Looper.getMainLooper() == Looper.myLooper()) { + throw new IllegalStateException(str); + } + } + + @RecentlyNonNull + public static String x0(@RecentlyNonNull PowerManager.WakeLock wakeLock, @RecentlyNonNull String str) { + String valueOf = String.valueOf(String.valueOf(((long) System.identityHashCode(wakeLock)) | (((long) Process.myPid()) << 32))); + String str2 = null; + if (TextUtils.isEmpty(null)) { + str2 = ""; + } + String valueOf2 = String.valueOf(str2); + return valueOf2.length() != 0 ? valueOf.concat(valueOf2) : new String(valueOf); + } + + @Nullable + public static c.i.a.c.a2.k0.c x1(c.i.a.c.a2.i iVar) throws IOException { + byte[] bArr; + Objects.requireNonNull(iVar); + c.i.a.c.i2.w wVar = new c.i.a.c.i2.w(16); + if (c.i.a.c.a2.k0.d.a(iVar, wVar).a != 1380533830) { + return null; + } + iVar.n(wVar.a, 0, 4); + wVar.D(0); + int f = wVar.f(); + if (f != 1463899717) { + Log.e("WavHeaderReader", "Unsupported RIFF format: " + f); + return null; + } + c.i.a.c.a2.k0.d a2 = c.i.a.c.a2.k0.d.a(iVar, wVar); + while (a2.a != 1718449184) { + iVar.g((int) a2.b); + a2 = c.i.a.c.a2.k0.d.a(iVar, wVar); + } + D(a2.b >= 16); + iVar.n(wVar.a, 0, 16); + wVar.D(0); + int l = wVar.l(); + int l2 = wVar.l(); + int k = wVar.k(); + int k2 = wVar.k(); + int l3 = wVar.l(); + int l4 = wVar.l(); + int i = ((int) a2.b) - 16; + if (i > 0) { + byte[] bArr2 = new byte[i]; + iVar.n(bArr2, 0, i); + bArr = bArr2; + } else { + bArr = f0.f; + } + return new c.i.a.c.a2.k0.c(l, l2, k, k2, l3, l4, bArr); + } + + public static void x2(Parcel parcel, int i, int i2) { + int M1 = M1(parcel, i); + if (M1 != i2) { + String hexString = Integer.toHexString(M1); + StringBuilder sb = new StringBuilder(String.valueOf(hexString).length() + 46); + sb.append("Expected size "); + sb.append(i2); + sb.append(" got "); + sb.append(M1); + sb.append(" (0x"); + sb.append(hexString); + sb.append(")"); + throw new SafeParcelReader$ParseException(sb.toString(), parcel); + } + } + + public static T y(T t, Object obj) { + if (t != null) { + return t; + } + throw new NullPointerException(String.valueOf(obj)); + } + + public static int y0(InputStream inputStream) throws IOException { + return ((((byte) inputStream.read()) << 24) & ViewCompat.MEASURED_STATE_MASK) | ((((byte) inputStream.read()) << 16) & ItemTouchHelper.ACTION_MODE_DRAG_MASK) | ((((byte) inputStream.read()) << 8) & 65280) | (((byte) inputStream.read()) & 255); + } + + @Nullable + public static Metadata y1(c.i.a.c.a2.i iVar, boolean z2) throws IOException { + c.i.a.c.c2.k.a aVar; + if (z2) { + aVar = null; + } else { + int i = c.i.a.c.c2.k.b.a; + aVar = c.i.a.c.c2.k.a.a; + } + c.i.a.c.i2.w wVar = new c.i.a.c.i2.w(10); + Metadata metadata = null; + int i2 = 0; + while (true) { + try { + iVar.n(wVar.a, 0, 10); + wVar.D(0); + if (wVar.u() != 4801587) { + break; + } + wVar.E(3); + int r = wVar.r(); + int i3 = r + 10; + if (metadata == null) { + byte[] bArr = new byte[i3]; + System.arraycopy(wVar.a, 0, bArr, 0, 10); + iVar.n(bArr, 10, r); + metadata = new c.i.a.c.c2.k.b(aVar).d(bArr, i3); + } else { + iVar.g(r); + } + i2 += i3; + } catch (EOFException unused) { + } + } + iVar.k(); + iVar.g(i2); + if (metadata == null || metadata.i.length == 0) { + return null; + } + return metadata; + } + + public static void y2(Parcel parcel, T t, int i) { + int dataPosition = parcel.dataPosition(); + parcel.writeInt(1); + int dataPosition2 = parcel.dataPosition(); + t.writeToParcel(parcel, i); + int dataPosition3 = parcel.dataPosition(); + parcel.setDataPosition(dataPosition); + parcel.writeInt(dataPosition3 - dataPosition2); + parcel.setDataPosition(dataPosition3); + } + + @NonNull + @EnsuresNonNull({"#1"}) + public static T z(@RecentlyNonNull T t, @RecentlyNonNull Object obj) { + if (t != null) { + return t; + } + throw new NullPointerException(String.valueOf(obj)); + } + + public static final Integer z0(Intent intent, String str) { + d0.z.d.m.checkNotNullParameter(intent, "$this$getIntExtraOrNull"); + d0.z.d.m.checkNotNullParameter(str, "key"); + Integer valueOf = Integer.valueOf(intent.getIntExtra(str, Integer.MIN_VALUE)); + if (!(valueOf.intValue() == Integer.MIN_VALUE)) { + return valueOf; + } + return null; + } + + public static int z1(c.i.a.c.a2.i iVar, byte[] bArr, int i, int i2) throws IOException { + int i3 = 0; + while (i3 < i2) { + int i4 = iVar.i(bArr, i + i3, i2 - i3); + if (i4 == -1) { + break; + } + i3 += i4; + } + return i3; + } + + public static void z2(Parcel parcel, int i, int i2) { + if (i2 >= 65535) { + parcel.writeInt(i | SupportMenu.CATEGORY_MASK); + parcel.writeInt(i2); + return; + } + parcel.writeInt(i | (i2 << 16)); + } } diff --git a/app/src/main/java/c/c/a/a0/d0.java b/app/src/main/java/c/c/a/a0/d0.java index 1fba02b367..78b5927a76 100644 --- a/app/src/main/java/c/c/a/a0/d0.java +++ b/app/src/main/java/c/c/a/a0/d0.java @@ -1,7 +1,7 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: ShapePathParser */ +import c.c.a.a0.i0.c; +/* compiled from: ShapeGroupParser */ public class d0 { - public static c.a a = c.a.a("nm", "ind", "ks", "hd"); + public static c.a a = c.a.a("nm", "hd", "it"); } diff --git a/app/src/main/java/c/c/a/a0/e.java b/app/src/main/java/c/c/a/a0/e.java index 68d6dff77c..ee5541cf27 100644 --- a/app/src/main/java/c/c/a/a0/e.java +++ b/app/src/main/java/c/c/a/a0/e.java @@ -1,34 +1,7 @@ package c.c.a.a0; -import android.graphics.Color; -import c.c.a.a0.h0.c; -import java.io.IOException; -/* compiled from: ColorParser */ -public class e implements g0 { - public static final e a = new e(); - - /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public Integer a(c cVar, float f) throws IOException { - boolean z2 = cVar.w() == c.b.BEGIN_ARRAY; - if (z2) { - cVar.a(); - } - double p = cVar.p(); - double p2 = cVar.p(); - double p3 = cVar.p(); - double p4 = cVar.p(); - if (z2) { - cVar.c(); - } - if (p <= 1.0d && p2 <= 1.0d && p3 <= 1.0d) { - p *= 255.0d; - p2 *= 255.0d; - p3 *= 255.0d; - if (p4 <= 1.0d) { - p4 *= 255.0d; - } - } - return Integer.valueOf(Color.argb((int) p4, (int) p, (int) p2, (int) p3)); - } +import c.c.a.a0.i0.c; +/* compiled from: CircleShapeParser */ +public class e { + public static c.a a = c.a.a("nm", "p", "s", "hd", "d"); } diff --git a/app/src/main/java/c/c/a/a0/e0.java b/app/src/main/java/c/c/a/a0/e0.java index 81219dbc0b..429fab0adf 100644 --- a/app/src/main/java/c/c/a/a0/e0.java +++ b/app/src/main/java/c/c/a/a0/e0.java @@ -1,8 +1,7 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: ShapeStrokeParser */ +import c.c.a.a0.i0.c; +/* compiled from: ShapePathParser */ public class e0 { - public static c.a a = c.a.a("nm", "c", "w", "o", "lc", "lj", "ml", "hd", "d"); - public static final c.a b = c.a.a("n", "v"); + public static c.a a = c.a.a("nm", "ind", "ks", "hd"); } diff --git a/app/src/main/java/c/c/a/a0/f.java b/app/src/main/java/c/c/a/a0/f.java index a3bdc9fe31..714117bc10 100644 --- a/app/src/main/java/c/c/a/a0/f.java +++ b/app/src/main/java/c/c/a/a0/f.java @@ -1,20 +1,34 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: ContentModelParser */ -public class f { - public static c.a a = c.a.a("ty", "d"); +import android.graphics.Color; +import c.c.a.a0.i0.c; +import java.io.IOException; +/* compiled from: ColorParser */ +public class f implements h0 { + public static final f a = new f(); - /* JADX ERROR: JadxRuntimeException in pass: BlockProcessor - jadx.core.utils.exceptions.JadxRuntimeException: CFG modification limit reached, blocks count: 649 - at jadx.core.dex.visitors.blocksmaker.BlockProcessor.processBlocksTree(BlockProcessor.java:72) - at jadx.core.dex.visitors.blocksmaker.BlockProcessor.visit(BlockProcessor.java:46) - */ - @androidx.annotation.Nullable - public static c.c.a.y.l.b a(c.c.a.a0.h0.c r29, c.c.a.d r30) throws java.io.IOException { - /* - // Method dump skipped, instructions count: 1882 - */ - throw new UnsupportedOperationException("Method not decompiled: c.c.a.a0.f.a(c.c.a.a0.h0.c, c.c.a.d):c.c.a.y.l.b"); + /* Return type fixed from 'java.lang.Object' to match base method */ + @Override // c.c.a.a0.h0 + public Integer a(c cVar, float f) throws IOException { + boolean z2 = cVar.w() == c.b.BEGIN_ARRAY; + if (z2) { + cVar.a(); + } + double p = cVar.p(); + double p2 = cVar.p(); + double p3 = cVar.p(); + double p4 = cVar.p(); + if (z2) { + cVar.c(); + } + if (p <= 1.0d && p2 <= 1.0d && p3 <= 1.0d) { + p *= 255.0d; + p2 *= 255.0d; + p3 *= 255.0d; + if (p4 <= 1.0d) { + p4 *= 255.0d; + } + } + return Integer.valueOf(Color.argb((int) p4, (int) p, (int) p2, (int) p3)); } } diff --git a/app/src/main/java/c/c/a/a0/f0.java b/app/src/main/java/c/c/a/a0/f0.java index 059c7658ee..faff120695 100644 --- a/app/src/main/java/c/c/a/a0/f0.java +++ b/app/src/main/java/c/c/a/a0/f0.java @@ -1,7 +1,8 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: ShapeTrimPathParser */ +import c.c.a.a0.i0.c; +/* compiled from: ShapeStrokeParser */ public class f0 { - public static c.a a = c.a.a("s", "e", "o", "nm", "m", "hd"); + public static c.a a = c.a.a("nm", "c", "w", "o", "lc", "lj", "ml", "hd", "d"); + public static final c.a b = c.a.a("n", "v"); } diff --git a/app/src/main/java/c/c/a/a0/g.java b/app/src/main/java/c/c/a/a0/g.java index 6b5005e008..bc710bf3f0 100644 --- a/app/src/main/java/c/c/a/a0/g.java +++ b/app/src/main/java/c/c/a/a0/g.java @@ -1,77 +1,20 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -import c.c.a.y.b; -import c.c.a.y.c; -import java.io.IOException; -/* compiled from: DocumentDataParser */ -public class g implements g0 { - public static final g a = new g(); - public static final c.a b = c.a.a("t", "f", "s", "j", "tr", "lh", "ls", "fc", "sc", "sw", "of"); +import c.c.a.a0.i0.c; +/* compiled from: ContentModelParser */ +public class g { + public static c.a a = c.a.a("ty", "d"); - /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public c.c.a.y.c a(c.c.a.a0.h0.c cVar, float f) throws IOException { - cVar.b(); - String str = null; - String str2 = null; - float f2 = 0.0f; - int i = 3; - int i2 = 0; - float f3 = 0.0f; - float f4 = 0.0f; - int i3 = 0; - int i4 = 0; - float f5 = 0.0f; - boolean z2 = true; - while (cVar.e()) { - switch (cVar.z(b)) { - case 0: - str = cVar.t(); - break; - case 1: - str2 = cVar.t(); - break; - case 2: - f2 = (float) cVar.p(); - break; - case 3: - int r = cVar.r(); - if (r <= 2 && r >= 0) { - i = b.com$airbnb$lottie$model$DocumentData$Justification$s$values()[r]; - break; - } else { - i = 3; - break; - } - case 4: - i2 = cVar.r(); - break; - case 5: - f3 = (float) cVar.p(); - break; - case 6: - f4 = (float) cVar.p(); - break; - case 7: - i3 = o.a(cVar); - break; - case 8: - i4 = o.a(cVar); - break; - case 9: - f5 = (float) cVar.p(); - break; - case 10: - z2 = cVar.f(); - break; - default: - cVar.B(); - cVar.C(); - break; - } - } - cVar.d(); - return new c.c.a.y.c(str, str2, f2, i, i2, f3, f4, i3, i4, f5, z2); + /* JADX ERROR: JadxRuntimeException in pass: BlockProcessor + jadx.core.utils.exceptions.JadxRuntimeException: CFG modification limit reached, blocks count: 649 + at jadx.core.dex.visitors.blocksmaker.BlockProcessor.processBlocksTree(BlockProcessor.java:72) + at jadx.core.dex.visitors.blocksmaker.BlockProcessor.visit(BlockProcessor.java:46) + */ + @androidx.annotation.Nullable + public static c.c.a.y.l.b a(c.c.a.a0.i0.c r29, c.c.a.d r30) throws java.io.IOException { + /* + // Method dump skipped, instructions count: 1882 + */ + throw new UnsupportedOperationException("Method not decompiled: c.c.a.a0.g.a(c.c.a.a0.i0.c, c.c.a.d):c.c.a.y.l.b"); } } diff --git a/app/src/main/java/c/c/a/a0/g0.java b/app/src/main/java/c/c/a/a0/g0.java index 7a26bea4f5..8ba1fd5756 100644 --- a/app/src/main/java/c/c/a/a0/g0.java +++ b/app/src/main/java/c/c/a/a0/g0.java @@ -1,8 +1,7 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -import java.io.IOException; -/* compiled from: ValueParser */ -public interface g0 { - V a(c cVar, float f) throws IOException; +import c.c.a.a0.i0.c; +/* compiled from: ShapeTrimPathParser */ +public class g0 { + public static c.a a = c.a.a("s", "e", "o", "nm", "m", "hd"); } diff --git a/app/src/main/java/c/c/a/a0/h.java b/app/src/main/java/c/c/a/a0/h.java index b26c05cc8f..2506bb24e4 100644 --- a/app/src/main/java/c/c/a/a0/h.java +++ b/app/src/main/java/c/c/a/a0/h.java @@ -1,14 +1,77 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; +import c.c.a.a0.i0.c; +import c.c.a.y.b; +import c.c.a.y.c; import java.io.IOException; -/* compiled from: FloatParser */ -public class h implements g0 { +/* compiled from: DocumentDataParser */ +public class h implements h0 { public static final h a = new h(); + public static final c.a b = c.a.a("t", "f", "s", "j", "tr", "lh", "ls", "fc", "sc", "sw", "of"); /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public Float a(c cVar, float f) throws IOException { - return Float.valueOf(o.d(cVar) * f); + @Override // c.c.a.a0.h0 + public c.c.a.y.c a(c.c.a.a0.i0.c cVar, float f) throws IOException { + cVar.b(); + String str = null; + String str2 = null; + float f2 = 0.0f; + int i = 3; + int i2 = 0; + float f3 = 0.0f; + float f4 = 0.0f; + int i3 = 0; + int i4 = 0; + float f5 = 0.0f; + boolean z2 = true; + while (cVar.e()) { + switch (cVar.z(b)) { + case 0: + str = cVar.t(); + break; + case 1: + str2 = cVar.t(); + break; + case 2: + f2 = (float) cVar.p(); + break; + case 3: + int r = cVar.r(); + if (r <= 2 && r >= 0) { + i = b.com$airbnb$lottie$model$DocumentData$Justification$s$values()[r]; + break; + } else { + i = 3; + break; + } + case 4: + i2 = cVar.r(); + break; + case 5: + f3 = (float) cVar.p(); + break; + case 6: + f4 = (float) cVar.p(); + break; + case 7: + i3 = p.a(cVar); + break; + case 8: + i4 = p.a(cVar); + break; + case 9: + f5 = (float) cVar.p(); + break; + case 10: + z2 = cVar.f(); + break; + default: + cVar.B(); + cVar.C(); + break; + } + } + cVar.d(); + return new c.c.a.y.c(str, str2, f2, i, i2, f3, f4, i3, i4, f5, z2); } } diff --git a/app/src/main/java/c/c/a/a0/h0.java b/app/src/main/java/c/c/a/a0/h0.java new file mode 100644 index 0000000000..33785a0066 --- /dev/null +++ b/app/src/main/java/c/c/a/a0/h0.java @@ -0,0 +1,8 @@ +package c.c.a.a0; + +import c.c.a.a0.i0.c; +import java.io.IOException; +/* compiled from: ValueParser */ +public interface h0 { + V a(c cVar, float f) throws IOException; +} diff --git a/app/src/main/java/c/c/a/a0/i.java b/app/src/main/java/c/c/a/a0/i.java index 5c45a8c971..8ac60fd31e 100644 --- a/app/src/main/java/c/c/a/a0/i.java +++ b/app/src/main/java/c/c/a/a0/i.java @@ -1,8 +1,14 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: FontCharacterParser */ -public class i { - public static final c.a a = c.a.a("ch", "size", "w", "style", "fFamily", "data"); - public static final c.a b = c.a.a("shapes"); +import c.c.a.a0.i0.c; +import java.io.IOException; +/* compiled from: FloatParser */ +public class i implements h0 { + public static final i a = new i(); + + /* Return type fixed from 'java.lang.Object' to match base method */ + @Override // c.c.a.a0.h0 + public Float a(c cVar, float f) throws IOException { + return Float.valueOf(p.d(cVar) * f); + } } diff --git a/app/src/main/java/c/c/a/a0/h0/a.java b/app/src/main/java/c/c/a/a0/i0/a.java similarity index 90% rename from app/src/main/java/c/c/a/a0/h0/a.java rename to app/src/main/java/c/c/a/a0/i0/a.java index 0cddd4460b..4b4df7bb9f 100644 --- a/app/src/main/java/c/c/a/a0/h0/a.java +++ b/app/src/main/java/c/c/a/a0/i0/a.java @@ -1,4 +1,4 @@ -package c.c.a.a0.h0; +package c.c.a.a0.i0; import androidx.annotation.Nullable; /* compiled from: JsonDataException */ diff --git a/app/src/main/java/c/c/a/a0/h0/b.java b/app/src/main/java/c/c/a/a0/i0/b.java similarity index 91% rename from app/src/main/java/c/c/a/a0/h0/b.java rename to app/src/main/java/c/c/a/a0/i0/b.java index 7840fcf729..d51bbdc288 100644 --- a/app/src/main/java/c/c/a/a0/h0/b.java +++ b/app/src/main/java/c/c/a/a0/i0/b.java @@ -1,4 +1,4 @@ -package c.c.a.a0.h0; +package c.c.a.a0.i0; import androidx.annotation.Nullable; import java.io.IOException; diff --git a/app/src/main/java/c/c/a/a0/h0/c.java b/app/src/main/java/c/c/a/a0/i0/c.java similarity index 89% rename from app/src/main/java/c/c/a/a0/h0/c.java rename to app/src/main/java/c/c/a/a0/i0/c.java index ed50296051..f733d612e5 100644 --- a/app/src/main/java/c/c/a/a0/h0/c.java +++ b/app/src/main/java/c/c/a/a0/i0/c.java @@ -1,4 +1,4 @@ -package c.c.a.a0.h0; +package c.c.a.a0.i0; import g0.e; import g0.o; @@ -99,9 +99,9 @@ public abstract class c implements Closeable { public abstract void C() throws IOException; public final b G(String str) throws b { - StringBuilder U = c.d.b.a.a.U(str, " at path "); - U.append(getPath()); - throw new b(U.toString()); + StringBuilder S = c.d.b.a.a.S(str, " at path "); + S.append(getPath()); + throw new b(S.toString()); } public abstract void a() throws IOException; @@ -121,21 +121,21 @@ public abstract class c implements Closeable { int[] iArr = this.k; String[] strArr = this.l; int[] iArr2 = this.m; - StringBuilder N = c.d.b.a.a.N('$'); + StringBuilder M = c.d.b.a.a.M('$'); for (int i3 = 0; i3 < i2; i3++) { int i4 = iArr[i3]; if (i4 == 1 || i4 == 2) { - N.append('['); - N.append(iArr2[i3]); - N.append(']'); + M.append('['); + M.append(iArr2[i3]); + M.append(']'); } else if (i4 == 3 || i4 == 4 || i4 == 5) { - N.append('.'); + M.append('.'); if (strArr[i3] != null) { - N.append(strArr[i3]); + M.append(strArr[i3]); } } } - return N.toString(); + return M.toString(); } public abstract double p() throws IOException; @@ -159,9 +159,9 @@ public abstract class c implements Closeable { int[] iArr2 = this.m; this.m = Arrays.copyOf(iArr2, iArr2.length * 2); } else { - StringBuilder P = c.d.b.a.a.P("Nesting too deep at "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = c.d.b.a.a.O("Nesting too deep at "); + O.append(getPath()); + throw new a(O.toString()); } } int[] iArr3 = this.k; diff --git a/app/src/main/java/c/c/a/a0/h0/d.java b/app/src/main/java/c/c/a/a0/i0/d.java similarity index 82% rename from app/src/main/java/c/c/a/a0/h0/d.java rename to app/src/main/java/c/c/a/a0/i0/d.java index 64637b7473..5c2220f2b4 100644 --- a/app/src/main/java/c/c/a/a0/h0/d.java +++ b/app/src/main/java/c/c/a/a0/i0/d.java @@ -1,7 +1,7 @@ -package c.c.a.a0.h0; +package c.c.a.a0.i0; import androidx.annotation.Nullable; -import c.c.a.a0.h0.c; +import c.c.a.a0.i0.c; import c.d.b.a.a; import g0.e; import g0.g; @@ -18,7 +18,7 @@ public final class d extends c { public static final ByteString r = ByteString.h("*/"); /* renamed from: s reason: collision with root package name */ - public final g f259s; + public final g f260s; public final e t; public int u = 0; public long v; @@ -26,16 +26,16 @@ public final class d extends c { @Nullable /* renamed from: x reason: collision with root package name */ - public String f260x; + public String f261x; public d(g gVar) { Objects.requireNonNull(gVar, "source == null"); - this.f259s = gVar; + this.f260s = gVar; this.t = gVar.g(); x(6); } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public void B() throws IOException { int i = this.u; if (i == 0) { @@ -48,17 +48,17 @@ public final class d extends c { } else if (i == 12) { T(n); } else if (i != 15) { - StringBuilder P = a.P("Expected a name but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected a name but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } this.u = 0; this.l[this.j - 1] = "null"; } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public void C() throws IOException { int i = 0; do { @@ -76,22 +76,22 @@ public final class d extends c { if (i >= 0) { this.j--; } else { - StringBuilder P = a.P("Expected a value but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected a value but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } } else if (i2 == 2) { i--; if (i >= 0) { this.j--; } else { - StringBuilder P2 = a.P("Expected a value but was "); - P2.append(w()); - P2.append(" at path "); - P2.append(getPath()); - throw new a(P2.toString()); + StringBuilder O2 = a.O("Expected a value but was "); + O2.append(w()); + O2.append(" at path "); + O2.append(getPath()); + throw new a(O2.toString()); } } else if (i2 == 14 || i2 == 10) { U(); @@ -102,11 +102,11 @@ public final class d extends c { } else if (i2 == 17) { this.t.skip((long) this.w); } else if (i2 == 18) { - StringBuilder P3 = a.P("Expected a value but was "); - P3.append(w()); - P3.append(" at path "); - P3.append(getPath()); - throw new a(P3.toString()); + StringBuilder O3 = a.O("Expected a value but was "); + O3.append(w()); + O3.append(" at path "); + O3.append(getPath()); + throw new a(O3.toString()); } this.u = 0; } @@ -307,7 +307,7 @@ public final class d extends c { boolean z3 = false; while (true) { int i6 = i5 + 1; - if (!this.f259s.j((long) i6)) { + if (!this.f260s.j((long) i6)) { break; } byte r4 = this.t.r((long) i5); @@ -392,11 +392,11 @@ public final class d extends c { while (true) { if (i9 < length) { int i10 = i9 + 1; - if (!this.f259s.j((long) i10) || ((r2 = this.t.r((long) i9)) != str2.charAt(i9) && r2 != str.charAt(i9))) { + if (!this.f260s.j((long) i10) || ((r2 = this.t.r((long) i9)) != str2.charAt(i9) && r2 != str.charAt(i9))) { break; } i9 = i10; - } else if (!this.f259s.j((long) (length + 1)) || !M(this.t.r((long) length))) { + } else if (!this.f260s.j((long) (length + 1)) || !M(this.t.r((long) length))) { this.t.skip((long) length); this.u = i; } @@ -472,14 +472,14 @@ public final class d extends c { int i = 0; while (true) { int i2 = i + 1; - if (this.f259s.j((long) i2)) { + if (this.f260s.j((long) i2)) { byte r2 = this.t.r((long) i); if (r2 == 10 || r2 == 32 || r2 == 13 || r2 == 9) { i = i2; } else { this.t.skip((long) (i2 - 1)); if (r2 == 47) { - if (!this.f259s.j(2)) { + if (!this.f260s.j(2)) { return r2; } H(); @@ -502,7 +502,7 @@ public final class d extends c { public final String Q(ByteString byteString) throws IOException { StringBuilder sb = null; while (true) { - long D = this.f259s.D(byteString); + long D = this.f260s.D(byteString); if (D == -1) { G("Unterminated string"); throw null; @@ -526,14 +526,14 @@ public final class d extends c { } public final String R() throws IOException { - long D = this.f259s.D(p); + long D = this.f260s.D(p); return D != -1 ? this.t.H(D) : this.t.G(); } public final char S() throws IOException { int i; int i2; - if (this.f259s.j(1)) { + if (this.f260s.j(1)) { byte readByte = this.t.readByte(); if (readByte == 10 || readByte == 34 || readByte == 39 || readByte == 47 || readByte == 92) { return (char) readByte; @@ -554,11 +554,11 @@ public final class d extends c { return '\t'; } if (readByte != 117) { - StringBuilder P = a.P("Invalid escape sequence: \\"); - P.append((char) readByte); - G(P.toString()); + StringBuilder O = a.O("Invalid escape sequence: \\"); + O.append((char) readByte); + G(O.toString()); throw null; - } else if (this.f259s.j(4)) { + } else if (this.f260s.j(4)) { char c2 = 0; for (int i3 = 0; i3 < 4; i3++) { byte r2 = this.t.r((long) i3); @@ -567,9 +567,9 @@ public final class d extends c { if (r2 >= 97 && r2 <= 102) { i2 = r2 - 97; } else if (r2 < 65 || r2 > 70) { - StringBuilder P2 = a.P("\\u"); - P2.append(this.t.H(4)); - G(P2.toString()); + StringBuilder O2 = a.O("\\u"); + O2.append(this.t.H(4)); + G(O2.toString()); throw null; } else { i2 = r2 - 65; @@ -583,9 +583,9 @@ public final class d extends c { this.t.skip(4); return c2; } else { - StringBuilder P3 = a.P("Unterminated escape sequence at path "); - P3.append(getPath()); - throw new EOFException(P3.toString()); + StringBuilder O3 = a.O("Unterminated escape sequence at path "); + O3.append(getPath()); + throw new EOFException(O3.toString()); } } else { G("Unterminated escape sequence"); @@ -595,7 +595,7 @@ public final class d extends c { public final void T(ByteString byteString) throws IOException { while (true) { - long D = this.f259s.D(byteString); + long D = this.f260s.D(byteString); if (D == -1) { G("Unterminated string"); throw null; @@ -610,7 +610,7 @@ public final class d extends c { } public final void U() throws IOException { - long D = this.f259s.D(p); + long D = this.f260s.D(p); e eVar = this.t; if (D == -1) { D = eVar.j; @@ -618,7 +618,7 @@ public final class d extends c { eVar.skip(D); } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public void a() throws IOException { int i = this.u; if (i == 0) { @@ -630,14 +630,14 @@ public final class d extends c { this.u = 0; return; } - StringBuilder P = a.P("Expected BEGIN_ARRAY but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected BEGIN_ARRAY but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public void b() throws IOException { int i = this.u; if (i == 0) { @@ -648,14 +648,14 @@ public final class d extends c { this.u = 0; return; } - StringBuilder P = a.P("Expected BEGIN_OBJECT but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected BEGIN_OBJECT but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public void c() throws IOException { int i = this.u; if (i == 0) { @@ -670,11 +670,11 @@ public final class d extends c { this.u = 0; return; } - StringBuilder P = a.P("Expected END_ARRAY but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected END_ARRAY but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } @Override // java.io.Closeable, java.lang.AutoCloseable @@ -684,10 +684,10 @@ public final class d extends c { this.j = 1; e eVar = this.t; eVar.skip(eVar.j); - this.f259s.close(); + this.f260s.close(); } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public void d() throws IOException { int i = this.u; if (i == 0) { @@ -703,14 +703,14 @@ public final class d extends c { this.u = 0; return; } - StringBuilder P = a.P("Expected END_OBJECT but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected END_OBJECT but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public boolean e() throws IOException { int i = this.u; if (i == 0) { @@ -719,7 +719,7 @@ public final class d extends c { return (i == 2 || i == 4 || i == 18) ? false : true; } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public boolean f() throws IOException { int i = this.u; if (i == 0) { @@ -738,15 +738,15 @@ public final class d extends c { iArr2[i3] = iArr2[i3] + 1; return false; } else { - StringBuilder P = a.P("Expected a boolean but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected a boolean but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public double p() throws IOException { int i = this.u; if (i == 0) { @@ -760,42 +760,42 @@ public final class d extends c { return (double) this.v; } if (i == 17) { - this.f260x = this.t.H((long) this.w); + this.f261x = this.t.H((long) this.w); } else if (i == 9) { - this.f260x = Q(o); + this.f261x = Q(o); } else if (i == 8) { - this.f260x = Q(n); + this.f261x = Q(n); } else if (i == 10) { - this.f260x = R(); + this.f261x = R(); } else if (i != 11) { - StringBuilder P = a.P("Expected a double but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected a double but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } this.u = 11; try { - double parseDouble = Double.parseDouble(this.f260x); + double parseDouble = Double.parseDouble(this.f261x); if (Double.isNaN(parseDouble) || Double.isInfinite(parseDouble)) { throw new b("JSON forbids NaN and infinities: " + parseDouble + " at path " + getPath()); } - this.f260x = null; + this.f261x = null; this.u = 0; int[] iArr2 = this.m; int i3 = this.j - 1; iArr2[i3] = iArr2[i3] + 1; return parseDouble; } catch (NumberFormatException unused) { - StringBuilder P2 = a.P("Expected a double but was "); - P2.append(this.f260x); - P2.append(" at path "); - P2.append(getPath()); - throw new a(P2.toString()); + StringBuilder O2 = a.O("Expected a double but was "); + O2.append(this.f261x); + O2.append(" at path "); + O2.append(getPath()); + throw new a(O2.toString()); } } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public int r() throws IOException { int i = this.u; if (i == 0) { @@ -811,17 +811,17 @@ public final class d extends c { iArr[i3] = iArr[i3] + 1; return i2; } - StringBuilder P = a.P("Expected an int but was "); - P.append(this.v); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected an int but was "); + O.append(this.v); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } if (i == 17) { - this.f260x = this.t.H((long) this.w); + this.f261x = this.t.H((long) this.w); } else if (i == 9 || i == 8) { String Q = i == 9 ? Q(o) : Q(n); - this.f260x = Q; + this.f261x = Q; try { int parseInt = Integer.parseInt(Q); this.u = 0; @@ -832,39 +832,39 @@ public final class d extends c { } catch (NumberFormatException unused) { } } else if (i != 11) { - StringBuilder P2 = a.P("Expected an int but was "); - P2.append(w()); - P2.append(" at path "); - P2.append(getPath()); - throw new a(P2.toString()); + StringBuilder O2 = a.O("Expected an int but was "); + O2.append(w()); + O2.append(" at path "); + O2.append(getPath()); + throw new a(O2.toString()); } this.u = 11; try { - double parseDouble = Double.parseDouble(this.f260x); + double parseDouble = Double.parseDouble(this.f261x); int i5 = (int) parseDouble; if (((double) i5) == parseDouble) { - this.f260x = null; + this.f261x = null; this.u = 0; int[] iArr3 = this.m; int i6 = this.j - 1; iArr3[i6] = iArr3[i6] + 1; return i5; } - StringBuilder P3 = a.P("Expected an int but was "); - P3.append(this.f260x); - P3.append(" at path "); - P3.append(getPath()); - throw new a(P3.toString()); + StringBuilder O3 = a.O("Expected an int but was "); + O3.append(this.f261x); + O3.append(" at path "); + O3.append(getPath()); + throw new a(O3.toString()); } catch (NumberFormatException unused2) { - StringBuilder P4 = a.P("Expected an int but was "); - P4.append(this.f260x); - P4.append(" at path "); - P4.append(getPath()); - throw new a(P4.toString()); + StringBuilder O4 = a.O("Expected an int but was "); + O4.append(this.f261x); + O4.append(" at path "); + O4.append(getPath()); + throw new a(O4.toString()); } } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public String s() throws IOException { String str; int i = this.u; @@ -878,20 +878,20 @@ public final class d extends c { } else if (i == 12) { str = Q(n); } else if (i == 15) { - str = this.f260x; + str = this.f261x; } else { - StringBuilder P = a.P("Expected a name but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected a name but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } this.u = 0; this.l[this.j - 1] = str; return str; } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public String t() throws IOException { String str; int i = this.u; @@ -905,18 +905,18 @@ public final class d extends c { } else if (i == 8) { str = Q(n); } else if (i == 11) { - str = this.f260x; - this.f260x = null; + str = this.f261x; + this.f261x = null; } else if (i == 16) { str = Long.toString(this.v); } else if (i == 17) { str = this.t.H((long) this.w); } else { - StringBuilder P = a.P("Expected a string but was "); - P.append(w()); - P.append(" at path "); - P.append(getPath()); - throw new a(P.toString()); + StringBuilder O = a.O("Expected a string but was "); + O.append(w()); + O.append(" at path "); + O.append(getPath()); + throw new a(O.toString()); } this.u = 0; int[] iArr = this.m; @@ -927,13 +927,13 @@ public final class d extends c { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("JsonReader("); - P.append(this.f259s); - P.append(")"); - return P.toString(); + StringBuilder O = a.O("JsonReader("); + O.append(this.f260s); + O.append(")"); + return O.toString(); } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public c.b w() throws IOException { int i = this.u; if (i == 0) { @@ -973,7 +973,7 @@ public final class d extends c { } } - @Override // c.c.a.a0.h0.c + @Override // c.c.a.a0.i0.c public int z(c.a aVar) throws IOException { int i = this.u; if (i == 0) { @@ -983,9 +983,9 @@ public final class d extends c { return -1; } if (i == 15) { - return K(this.f260x, aVar); + return K(this.f261x, aVar); } - int u0 = this.f259s.u0(aVar.b); + int u0 = this.f260s.u0(aVar.b); if (u0 != -1) { this.u = 0; this.l[this.j - 1] = aVar.a[u0]; @@ -996,7 +996,7 @@ public final class d extends c { int K = K(s2, aVar); if (K == -1) { this.u = 15; - this.f260x = s2; + this.f261x = s2; this.l[this.j - 1] = str; } return K; diff --git a/app/src/main/java/c/c/a/a0/j.java b/app/src/main/java/c/c/a/a0/j.java index 609c11d30e..5fdadf7032 100644 --- a/app/src/main/java/c/c/a/a0/j.java +++ b/app/src/main/java/c/c/a/a0/j.java @@ -1,7 +1,8 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: FontParser */ +import c.c.a.a0.i0.c; +/* compiled from: FontCharacterParser */ public class j { - public static final c.a a = c.a.a("fFamily", "fName", "fStyle", "ascent"); + public static final c.a a = c.a.a("ch", "size", "w", "style", "fFamily", "data"); + public static final c.a b = c.a.a("shapes"); } diff --git a/app/src/main/java/c/c/a/a0/k.java b/app/src/main/java/c/c/a/a0/k.java index 2e54caac15..5c50b42292 100644 --- a/app/src/main/java/c/c/a/a0/k.java +++ b/app/src/main/java/c/c/a/a0/k.java @@ -1,109 +1,7 @@ package c.c.a.a0; -import android.graphics.Color; -import android.graphics.PointF; -import c.c.a.a0.h0.c; -import c.c.a.b0.f; -import c.c.a.y.l.c; -import java.io.IOException; -import java.util.ArrayList; -/* compiled from: GradientColorParser */ -public class k implements g0 { - public int a; - - public k(int i) { - this.a = i; - } - - /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public c a(c.c.a.a0.h0.c cVar, float f) throws IOException { - int i; - double d; - ArrayList arrayList = new ArrayList(); - int i2 = 0; - boolean z2 = cVar.w() == c.b.BEGIN_ARRAY; - if (z2) { - cVar.a(); - } - while (cVar.e()) { - arrayList.add(Float.valueOf((float) cVar.p())); - } - if (z2) { - cVar.c(); - } - if (this.a == -1) { - this.a = arrayList.size() / 4; - } - int i3 = this.a; - float[] fArr = new float[i3]; - int[] iArr = new int[i3]; - int i4 = 0; - int i5 = 0; - int i6 = 0; - while (true) { - i = this.a * 4; - if (i4 >= i) { - break; - } - int i7 = i4 / 4; - double floatValue = (double) ((Float) arrayList.get(i4)).floatValue(); - int i8 = i4 % 4; - if (i8 == 0) { - fArr[i7] = (float) floatValue; - } else if (i8 == 1) { - i5 = (int) (floatValue * 255.0d); - } else if (i8 == 2) { - i6 = (int) (floatValue * 255.0d); - } else if (i8 == 3) { - iArr[i7] = Color.argb(255, i5, i6, (int) (floatValue * 255.0d)); - } - i4++; - } - c.c.a.y.l.c cVar2 = new c.c.a.y.l.c(fArr, iArr); - if (arrayList.size() > i) { - int size = (arrayList.size() - i) / 2; - double[] dArr = new double[size]; - double[] dArr2 = new double[size]; - int i9 = 0; - while (i < arrayList.size()) { - if (i % 2 == 0) { - dArr[i9] = (double) ((Float) arrayList.get(i)).floatValue(); - } else { - dArr2[i9] = (double) ((Float) arrayList.get(i)).floatValue(); - i9++; - } - i++; - } - while (true) { - int[] iArr2 = cVar2.b; - if (i2 >= iArr2.length) { - break; - } - int i10 = iArr2[i2]; - double d2 = (double) cVar2.a[i2]; - int i11 = 1; - while (true) { - if (i11 >= size) { - d = dArr2[size - 1]; - break; - } - int i12 = i11 - 1; - double d3 = dArr[i12]; - double d4 = dArr[i11]; - if (dArr[i11] >= d2) { - double d5 = dArr2[i12]; - double d6 = dArr2[i11]; - PointF pointF = f.a; - d = ((d6 - d5) * ((d2 - d3) / (d4 - d3))) + d5; - break; - } - i11++; - } - cVar2.b[i2] = Color.argb((int) (d * 255.0d), Color.red(i10), Color.green(i10), Color.blue(i10)); - i2++; - } - } - return cVar2; - } +import c.c.a.a0.i0.c; +/* compiled from: FontParser */ +public class k { + public static final c.a a = c.a.a("fFamily", "fName", "fStyle", "ascent"); } diff --git a/app/src/main/java/c/c/a/a0/l.java b/app/src/main/java/c/c/a/a0/l.java index 70f2812a97..f4f340eea5 100644 --- a/app/src/main/java/c/c/a/a0/l.java +++ b/app/src/main/java/c/c/a/a0/l.java @@ -1,8 +1,109 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: GradientFillParser */ -public class l { - public static final c.a a = c.a.a("nm", "g", "o", "t", "s", "e", "r", "hd"); - public static final c.a b = c.a.a("p", "k"); +import android.graphics.Color; +import android.graphics.PointF; +import c.c.a.a0.i0.c; +import c.c.a.b0.f; +import c.c.a.y.l.c; +import java.io.IOException; +import java.util.ArrayList; +/* compiled from: GradientColorParser */ +public class l implements h0 { + public int a; + + public l(int i) { + this.a = i; + } + + /* Return type fixed from 'java.lang.Object' to match base method */ + @Override // c.c.a.a0.h0 + public c a(c.c.a.a0.i0.c cVar, float f) throws IOException { + int i; + double d; + ArrayList arrayList = new ArrayList(); + int i2 = 0; + boolean z2 = cVar.w() == c.b.BEGIN_ARRAY; + if (z2) { + cVar.a(); + } + while (cVar.e()) { + arrayList.add(Float.valueOf((float) cVar.p())); + } + if (z2) { + cVar.c(); + } + if (this.a == -1) { + this.a = arrayList.size() / 4; + } + int i3 = this.a; + float[] fArr = new float[i3]; + int[] iArr = new int[i3]; + int i4 = 0; + int i5 = 0; + int i6 = 0; + while (true) { + i = this.a * 4; + if (i4 >= i) { + break; + } + int i7 = i4 / 4; + double floatValue = (double) ((Float) arrayList.get(i4)).floatValue(); + int i8 = i4 % 4; + if (i8 == 0) { + fArr[i7] = (float) floatValue; + } else if (i8 == 1) { + i5 = (int) (floatValue * 255.0d); + } else if (i8 == 2) { + i6 = (int) (floatValue * 255.0d); + } else if (i8 == 3) { + iArr[i7] = Color.argb(255, i5, i6, (int) (floatValue * 255.0d)); + } + i4++; + } + c.c.a.y.l.c cVar2 = new c.c.a.y.l.c(fArr, iArr); + if (arrayList.size() > i) { + int size = (arrayList.size() - i) / 2; + double[] dArr = new double[size]; + double[] dArr2 = new double[size]; + int i9 = 0; + while (i < arrayList.size()) { + if (i % 2 == 0) { + dArr[i9] = (double) ((Float) arrayList.get(i)).floatValue(); + } else { + dArr2[i9] = (double) ((Float) arrayList.get(i)).floatValue(); + i9++; + } + i++; + } + while (true) { + int[] iArr2 = cVar2.b; + if (i2 >= iArr2.length) { + break; + } + int i10 = iArr2[i2]; + double d2 = (double) cVar2.a[i2]; + int i11 = 1; + while (true) { + if (i11 >= size) { + d = dArr2[size - 1]; + break; + } + int i12 = i11 - 1; + double d3 = dArr[i12]; + double d4 = dArr[i11]; + if (dArr[i11] >= d2) { + double d5 = dArr2[i12]; + double d6 = dArr2[i11]; + PointF pointF = f.a; + d = ((d6 - d5) * ((d2 - d3) / (d4 - d3))) + d5; + break; + } + i11++; + } + cVar2.b[i2] = Color.argb((int) (d * 255.0d), Color.red(i10), Color.green(i10), Color.blue(i10)); + i2++; + } + } + return cVar2; + } } diff --git a/app/src/main/java/c/c/a/a0/m.java b/app/src/main/java/c/c/a/a0/m.java index 077c123cdb..38a37f1f71 100644 --- a/app/src/main/java/c/c/a/a0/m.java +++ b/app/src/main/java/c/c/a/a0/m.java @@ -1,11 +1,8 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: GradientStrokeParser */ +import c.c.a.a0.i0.c; +/* compiled from: GradientFillParser */ public class m { - public static c.a a = c.a.a("nm", "g", "o", "t", "s", "e", "w", "lc", "lj", "ml", "hd", "d"); + public static final c.a a = c.a.a("nm", "g", "o", "t", "s", "e", "r", "hd"); public static final c.a b = c.a.a("p", "k"); - - /* renamed from: c reason: collision with root package name */ - public static final c.a f261c = c.a.a("n", "v"); } diff --git a/app/src/main/java/c/c/a/a0/n.java b/app/src/main/java/c/c/a/a0/n.java index 114e575f0a..b61ee3f343 100644 --- a/app/src/main/java/c/c/a/a0/n.java +++ b/app/src/main/java/c/c/a/a0/n.java @@ -1,14 +1,11 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -import java.io.IOException; -/* compiled from: IntegerParser */ -public class n implements g0 { - public static final n a = new n(); +import c.c.a.a0.i0.c; +/* compiled from: GradientStrokeParser */ +public class n { + public static c.a a = c.a.a("nm", "g", "o", "t", "s", "e", "w", "lc", "lj", "ml", "hd", "d"); + public static final c.a b = c.a.a("p", "k"); - /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public Integer a(c cVar, float f) throws IOException { - return Integer.valueOf(Math.round(o.d(cVar) * f)); - } + /* renamed from: c reason: collision with root package name */ + public static final c.a f262c = c.a.a("n", "v"); } diff --git a/app/src/main/java/c/c/a/a0/o.java b/app/src/main/java/c/c/a/a0/o.java index c22e7fa6b4..1973605f92 100644 --- a/app/src/main/java/c/c/a/a0/o.java +++ b/app/src/main/java/c/c/a/a0/o.java @@ -1,99 +1,14 @@ package c.c.a.a0; -import android.graphics.Color; -import android.graphics.PointF; -import androidx.annotation.ColorInt; -import c.c.a.a0.h0.c; -import c.d.b.a.a; +import c.c.a.a0.i0.c; import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -/* compiled from: JsonUtils */ -public class o { - public static final c.a a = c.a.a("x", "y"); +/* compiled from: IntegerParser */ +public class o implements h0 { + public static final o a = new o(); - @ColorInt - public static int a(c cVar) throws IOException { - cVar.a(); - int p = (int) (cVar.p() * 255.0d); - int p2 = (int) (cVar.p() * 255.0d); - int p3 = (int) (cVar.p() * 255.0d); - while (cVar.e()) { - cVar.C(); - } - cVar.c(); - return Color.argb(255, p, p2, p3); - } - - public static PointF b(c cVar, float f) throws IOException { - int ordinal = cVar.w().ordinal(); - if (ordinal == 0) { - cVar.a(); - float p = (float) cVar.p(); - float p2 = (float) cVar.p(); - while (cVar.w() != c.b.END_ARRAY) { - cVar.C(); - } - cVar.c(); - return new PointF(p * f, p2 * f); - } else if (ordinal == 2) { - cVar.b(); - float f2 = 0.0f; - float f3 = 0.0f; - while (cVar.e()) { - int z2 = cVar.z(a); - if (z2 == 0) { - f2 = d(cVar); - } else if (z2 != 1) { - cVar.B(); - cVar.C(); - } else { - f3 = d(cVar); - } - } - cVar.d(); - return new PointF(f2 * f, f3 * f); - } else if (ordinal == 6) { - float p3 = (float) cVar.p(); - float p4 = (float) cVar.p(); - while (cVar.e()) { - cVar.C(); - } - return new PointF(p3 * f, p4 * f); - } else { - StringBuilder P = a.P("Unknown point starts with "); - P.append(cVar.w()); - throw new IllegalArgumentException(P.toString()); - } - } - - public static List c(c cVar, float f) throws IOException { - ArrayList arrayList = new ArrayList(); - cVar.a(); - while (cVar.w() == c.b.BEGIN_ARRAY) { - cVar.a(); - arrayList.add(b(cVar, f)); - cVar.c(); - } - cVar.c(); - return arrayList; - } - - public static float d(c cVar) throws IOException { - c.b w = cVar.w(); - int ordinal = w.ordinal(); - if (ordinal == 0) { - cVar.a(); - float p = (float) cVar.p(); - while (cVar.e()) { - cVar.C(); - } - cVar.c(); - return p; - } else if (ordinal == 6) { - return (float) cVar.p(); - } else { - throw new IllegalArgumentException("Unknown value for token of type " + w); - } + /* Return type fixed from 'java.lang.Object' to match base method */ + @Override // c.c.a.a0.h0 + public Integer a(c cVar, float f) throws IOException { + return Integer.valueOf(Math.round(p.d(cVar) * f)); } } diff --git a/app/src/main/java/c/c/a/a0/p.java b/app/src/main/java/c/c/a/a0/p.java index c02511e9fa..e26be57f33 100644 --- a/app/src/main/java/c/c/a/a0/p.java +++ b/app/src/main/java/c/c/a/a0/p.java @@ -1,144 +1,99 @@ package c.c.a.a0; -import android.graphics.PathMeasure; +import android.graphics.Color; import android.graphics.PointF; -import android.view.animation.Interpolator; -import android.view.animation.LinearInterpolator; -import androidx.collection.SparseArrayCompat; -import androidx.core.view.animation.PathInterpolatorCompat; -import c.c.a.a0.h0.c; -import c.c.a.b0.f; -import c.c.a.b0.g; -import c.c.a.c0.a; -import c.c.a.d; +import androidx.annotation.ColorInt; +import c.c.a.a0.i0.c; +import c.d.b.a.a; import java.io.IOException; -import java.lang.ref.WeakReference; -/* compiled from: KeyframeParser */ +import java.util.ArrayList; +import java.util.List; +/* compiled from: JsonUtils */ public class p { - public static final Interpolator a = new LinearInterpolator(); - public static SparseArrayCompat> b; + public static final c.a a = c.a.a("x", "y"); - /* renamed from: c reason: collision with root package name */ - public static c.a f262c = c.a.a("t", "s", "e", "o", "i", "h", "to", "ti"); - - public static a a(c cVar, d dVar, float f, g0 g0Var, boolean z2) throws IOException { - T t; - WeakReference weakReference; - Interpolator interpolator; - if (!z2) { - return new a<>(g0Var.a(cVar, f)); - } - cVar.b(); - int i = 1; - Interpolator interpolator2 = null; - PointF pointF = null; - PointF pointF2 = null; - T t2 = null; - T t3 = null; - PointF pointF3 = null; - PointF pointF4 = null; - boolean z3 = false; - float f2 = 0.0f; + @ColorInt + public static int a(c cVar) throws IOException { + cVar.a(); + int p = (int) (cVar.p() * 255.0d); + int p2 = (int) (cVar.p() * 255.0d); + int p3 = (int) (cVar.p() * 255.0d); while (cVar.e()) { - switch (cVar.z(f262c)) { - case 0: - f2 = (float) cVar.p(); - break; - case 1: - t3 = g0Var.a(cVar, f); - continue; - case 2: - t2 = g0Var.a(cVar, f); - continue; - case 3: - pointF = o.b(cVar, f); - continue; - case 4: - pointF2 = o.b(cVar, f); - continue; - case 5: - if (cVar.r() == i) { - z3 = true; - continue; - } else { - z3 = false; - } - case 6: - pointF4 = o.b(cVar, f); - continue; - case 7: - pointF3 = o.b(cVar, f); - continue; - default: + cVar.C(); + } + cVar.c(); + return Color.argb(255, p, p2, p3); + } + + public static PointF b(c cVar, float f) throws IOException { + int ordinal = cVar.w().ordinal(); + if (ordinal == 0) { + cVar.a(); + float p = (float) cVar.p(); + float p2 = (float) cVar.p(); + while (cVar.w() != c.b.END_ARRAY) { + cVar.C(); + } + cVar.c(); + return new PointF(p * f, p2 * f); + } else if (ordinal == 2) { + cVar.b(); + float f2 = 0.0f; + float f3 = 0.0f; + while (cVar.e()) { + int z2 = cVar.z(a); + if (z2 == 0) { + f2 = d(cVar); + } else if (z2 != 1) { + cVar.B(); cVar.C(); - break; + } else { + f3 = d(cVar); + } } - i = 1; - } - cVar.d(); - if (z3) { - interpolator2 = a; - t = t3; + cVar.d(); + return new PointF(f2 * f, f3 * f); + } else if (ordinal == 6) { + float p3 = (float) cVar.p(); + float p4 = (float) cVar.p(); + while (cVar.e()) { + cVar.C(); + } + return new PointF(p3 * f, p4 * f); } else { - if (pointF == null || pointF2 == null) { - interpolator2 = a; - } else { - float f3 = -f; - pointF.x = f.b(pointF.x, f3, f); - pointF.y = f.b(pointF.y, -100.0f, 100.0f); - pointF2.x = f.b(pointF2.x, f3, f); - float b2 = f.b(pointF2.y, -100.0f, 100.0f); - pointF2.y = b2; - float f4 = pointF.x; - float f5 = pointF.y; - float f6 = pointF2.x; - PathMeasure pathMeasure = g.a; - int i2 = f4 != 0.0f ? (int) (((float) 527) * f4) : 17; - if (f5 != 0.0f) { - i2 = (int) (((float) (i2 * 31)) * f5); - } - if (f6 != 0.0f) { - i2 = (int) (((float) (i2 * 31)) * f6); - } - if (b2 != 0.0f) { - i2 = (int) (((float) (i2 * 31)) * b2); - } - synchronized (p.class) { - if (b == null) { - b = new SparseArrayCompat<>(); - } - weakReference = b.get(i2); - } - if (weakReference != null) { - interpolator2 = weakReference.get(); - } - if (weakReference == null || interpolator2 == null) { - pointF.x /= f; - pointF.y /= f; - float f7 = pointF2.x / f; - pointF2.x = f7; - float f8 = pointF2.y / f; - pointF2.y = f8; - try { - interpolator = PathInterpolatorCompat.create(pointF.x, pointF.y, f7, f8); - } catch (IllegalArgumentException e) { - interpolator = e.getMessage().equals("The Path cannot loop back on itself.") ? PathInterpolatorCompat.create(Math.min(pointF.x, 1.0f), pointF.y, Math.max(pointF2.x, 0.0f), pointF2.y) : new LinearInterpolator(); - } - interpolator2 = interpolator; - try { - WeakReference weakReference2 = new WeakReference<>(interpolator2); - synchronized (p.class) { - b.put(i2, weakReference2); - } - } catch (ArrayIndexOutOfBoundsException unused) { - } - } - } - t = t2; + StringBuilder O = a.O("Unknown point starts with "); + O.append(cVar.w()); + throw new IllegalArgumentException(O.toString()); + } + } + + public static List c(c cVar, float f) throws IOException { + ArrayList arrayList = new ArrayList(); + cVar.a(); + while (cVar.w() == c.b.BEGIN_ARRAY) { + cVar.a(); + arrayList.add(b(cVar, f)); + cVar.c(); + } + cVar.c(); + return arrayList; + } + + public static float d(c cVar) throws IOException { + c.b w = cVar.w(); + int ordinal = w.ordinal(); + if (ordinal == 0) { + cVar.a(); + float p = (float) cVar.p(); + while (cVar.e()) { + cVar.C(); + } + cVar.c(); + return p; + } else if (ordinal == 6) { + return (float) cVar.p(); + } else { + throw new IllegalArgumentException("Unknown value for token of type " + w); } - a aVar = new a<>(dVar, t3, t, interpolator2, f2, null); - aVar.m = pointF4; - aVar.n = pointF3; - return aVar; } } diff --git a/app/src/main/java/c/c/a/a0/q.java b/app/src/main/java/c/c/a/a0/q.java index c086e44728..d9c174ad81 100644 --- a/app/src/main/java/c/c/a/a0/q.java +++ b/app/src/main/java/c/c/a/a0/q.java @@ -1,69 +1,144 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; +import android.graphics.PathMeasure; +import android.graphics.PointF; +import android.view.animation.Interpolator; +import android.view.animation.LinearInterpolator; +import androidx.collection.SparseArrayCompat; +import androidx.core.view.animation.PathInterpolatorCompat; +import c.c.a.a0.i0.c; +import c.c.a.b0.f; +import c.c.a.b0.g; import c.c.a.c0.a; import c.c.a.d; -import c.c.a.w.c.h; import java.io.IOException; -import java.util.ArrayList; -import java.util.List; -/* compiled from: KeyframesParser */ +import java.lang.ref.WeakReference; +/* compiled from: KeyframeParser */ public class q { - public static c.a a = c.a.a("k"); + public static final Interpolator a = new LinearInterpolator(); + public static SparseArrayCompat> b; - public static List> a(c cVar, d dVar, float f, g0 g0Var) throws IOException { - ArrayList arrayList = new ArrayList(); - if (cVar.w() == c.b.STRING) { - dVar.a("Lottie doesn't support expressions."); - return arrayList; + /* renamed from: c reason: collision with root package name */ + public static c.a f263c = c.a.a("t", "s", "e", "o", "i", "h", "to", "ti"); + + public static a a(c cVar, d dVar, float f, h0 h0Var, boolean z2) throws IOException { + T t; + WeakReference weakReference; + Interpolator interpolator; + if (!z2) { + return new a<>(h0Var.a(cVar, f)); } cVar.b(); + int i = 1; + Interpolator interpolator2 = null; + PointF pointF = null; + PointF pointF2 = null; + T t2 = null; + T t3 = null; + PointF pointF3 = null; + PointF pointF4 = null; + boolean z3 = false; + float f2 = 0.0f; while (cVar.e()) { - if (cVar.z(a) != 0) { - cVar.C(); - } else if (cVar.w() == c.b.BEGIN_ARRAY) { - cVar.a(); - if (cVar.w() == c.b.NUMBER) { - arrayList.add(p.a(cVar, dVar, f, g0Var, false)); - } else { - while (cVar.e()) { - arrayList.add(p.a(cVar, dVar, f, g0Var, true)); + switch (cVar.z(f263c)) { + case 0: + f2 = (float) cVar.p(); + break; + case 1: + t3 = h0Var.a(cVar, f); + continue; + case 2: + t2 = h0Var.a(cVar, f); + continue; + case 3: + pointF = p.b(cVar, f); + continue; + case 4: + pointF2 = p.b(cVar, f); + continue; + case 5: + if (cVar.r() == i) { + z3 = true; + continue; + } else { + z3 = false; } - } - cVar.c(); - } else { - arrayList.add(p.a(cVar, dVar, f, g0Var, false)); + case 6: + pointF4 = p.b(cVar, f); + continue; + case 7: + pointF3 = p.b(cVar, f); + continue; + default: + cVar.C(); + break; } + i = 1; } cVar.d(); - b(arrayList); - return arrayList; - } - - public static void b(List> list) { - int i; - T t; - int size = list.size(); - int i2 = 0; - while (true) { - i = size - 1; - if (i2 >= i) { - break; - } - a aVar = (a) list.get(i2); - i2++; - a aVar2 = (a) list.get(i2); - aVar.f = Float.valueOf(aVar2.e); - if (aVar.f267c == null && (t = aVar2.b) != null) { - aVar.f267c = t; - if (aVar instanceof h) { - ((h) aVar).e(); + if (z3) { + interpolator2 = a; + t = t3; + } else { + if (pointF == null || pointF2 == null) { + interpolator2 = a; + } else { + float f3 = -f; + pointF.x = f.b(pointF.x, f3, f); + pointF.y = f.b(pointF.y, -100.0f, 100.0f); + pointF2.x = f.b(pointF2.x, f3, f); + float b2 = f.b(pointF2.y, -100.0f, 100.0f); + pointF2.y = b2; + float f4 = pointF.x; + float f5 = pointF.y; + float f6 = pointF2.x; + PathMeasure pathMeasure = g.a; + int i2 = f4 != 0.0f ? (int) (((float) 527) * f4) : 17; + if (f5 != 0.0f) { + i2 = (int) (((float) (i2 * 31)) * f5); + } + if (f6 != 0.0f) { + i2 = (int) (((float) (i2 * 31)) * f6); + } + if (b2 != 0.0f) { + i2 = (int) (((float) (i2 * 31)) * b2); + } + synchronized (q.class) { + if (b == null) { + b = new SparseArrayCompat<>(); + } + weakReference = b.get(i2); + } + if (weakReference != null) { + interpolator2 = weakReference.get(); + } + if (weakReference == null || interpolator2 == null) { + pointF.x /= f; + pointF.y /= f; + float f7 = pointF2.x / f; + pointF2.x = f7; + float f8 = pointF2.y / f; + pointF2.y = f8; + try { + interpolator = PathInterpolatorCompat.create(pointF.x, pointF.y, f7, f8); + } catch (IllegalArgumentException e) { + interpolator = e.getMessage().equals("The Path cannot loop back on itself.") ? PathInterpolatorCompat.create(Math.min(pointF.x, 1.0f), pointF.y, Math.max(pointF2.x, 0.0f), pointF2.y) : new LinearInterpolator(); + } + interpolator2 = interpolator; + try { + WeakReference weakReference2 = new WeakReference<>(interpolator2); + synchronized (q.class) { + b.put(i2, weakReference2); + } + } catch (ArrayIndexOutOfBoundsException unused) { + } } } + t = t2; } - a aVar3 = (a) list.get(i); - if ((aVar3.b == null || aVar3.f267c == null) && list.size() > 1) { - list.remove(aVar3); - } + a aVar = new a<>(dVar, t3, t, interpolator2, f2, null); + aVar.m = pointF4; + aVar.n = pointF3; + return aVar; } } diff --git a/app/src/main/java/c/c/a/a0/r.java b/app/src/main/java/c/c/a/a0/r.java index 17afb4c080..1bb0f37180 100644 --- a/app/src/main/java/c/c/a/a0/r.java +++ b/app/src/main/java/c/c/a/a0/r.java @@ -1,444 +1,69 @@ package c.c.a.a0; -import android.graphics.Color; -import c.c.a.a0.h0.c; -import c.c.a.b0.g; +import c.c.a.a0.i0.c; +import c.c.a.c0.a; import c.c.a.d; -import c.c.a.y.k.a; -import c.c.a.y.k.b; -import c.c.a.y.k.h; -import c.c.a.y.k.j; -import c.c.a.y.k.k; -import c.c.a.y.k.l; -import c.c.a.y.l.f; -import c.c.a.y.m.e; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.w.c.h; import java.io.IOException; import java.util.ArrayList; -/* compiled from: LayerParser */ +import java.util.List; +/* compiled from: KeyframesParser */ public class r { - public static final c.a a = c.a.a("nm", "ind", "refId", "ty", "parent", "sw", "sh", "sc", "ks", "tt", "masksProperties", "shapes", "t", "ef", "sr", "st", "w", "h", "ip", "op", "tm", "cl", "hd"); - public static final c.a b = c.a.a("d", "a"); + public static c.a a = c.a.a("k"); - /* renamed from: c reason: collision with root package name */ - public static final c.a f263c = c.a.a("nm"); - - /* JADX DEBUG: Failed to insert an additional move for type inference into block B:226:0x0303 */ - /* JADX DEBUG: Multi-variable search result rejected for r6v10, resolved type: c.c.a.y.k.d */ - /* JADX DEBUG: Multi-variable search result rejected for r6v11, resolved type: c.c.a.y.k.d */ - /* JADX DEBUG: Multi-variable search result rejected for r6v13, resolved type: c.c.a.y.k.d */ - /* JADX DEBUG: Multi-variable search result rejected for r6v23, resolved type: c.c.a.y.k.d */ - /* JADX WARN: Multi-variable type inference failed */ - /* JADX WARNING: Removed duplicated region for block: B:110:0x0259 */ - /* JADX WARNING: Removed duplicated region for block: B:139:0x02b4 */ - /* JADX WARNING: Removed duplicated region for block: B:149:0x02e4 */ - /* JADX WARNING: Removed duplicated region for block: B:153:0x02fe */ - public static e a(c cVar, d dVar) throws IOException { - ArrayList arrayList; - ArrayList arrayList2; - String str; - String str2; - long j; - char c2; - char c3; - String str3; - ArrayList arrayList3 = new ArrayList(); - ArrayList arrayList4 = new ArrayList(); + public static List> a(c cVar, d dVar, float f, h0 h0Var) throws IOException { + ArrayList arrayList = new ArrayList(); + if (cVar.w() == c.b.STRING) { + dVar.a("Lottie doesn't support expressions."); + return arrayList; + } cVar.b(); - Float valueOf = Float.valueOf(1.0f); - Float valueOf2 = Float.valueOf(0.0f); - int i = 1; - boolean z2 = false; - long j2 = -1; - float f = 0.0f; - String str4 = null; - e.a aVar = null; - String str5 = null; - l lVar = null; - int i2 = 0; - int i3 = 0; - int i4 = 0; - float f2 = 1.0f; - float f3 = 0.0f; - int i5 = 0; - int i6 = 0; - j jVar = null; - k kVar = null; - int i7 = 1; - b bVar = null; - boolean z3 = false; - long j3 = 0; - String str6 = "UNSET"; - float f4 = 0.0f; while (cVar.e()) { - switch (cVar.z(a)) { - case 0: - str2 = str4; - str6 = cVar.t(); - str4 = str2; - i = 1; - z2 = false; - case 1: - str2 = str4; - j3 = (long) cVar.r(); - str4 = str2; - i = 1; - z2 = false; - case 2: - str2 = str4; - str5 = cVar.t(); - str4 = str2; - i = 1; - z2 = false; - case 3: - str2 = str4; - j = j3; - int r = cVar.r(); - aVar = r < 6 ? e.a.values()[r] : e.a.UNKNOWN; - j3 = j; - str4 = str2; - i = 1; - z2 = false; - case 4: - str2 = str4; - j = j3; - j2 = (long) cVar.r(); - j3 = j; - str4 = str2; - i = 1; - z2 = false; - case 5: - str2 = str4; - i2 = (int) (g.c() * ((float) cVar.r())); - str4 = str2; - i = 1; - z2 = false; - case 6: - str2 = str4; - i3 = (int) (g.c() * ((float) cVar.r())); - str4 = str2; - i = 1; - z2 = false; - case 7: - str2 = str4; - i4 = Color.parseColor(cVar.t()); - str4 = str2; - i = 1; - z2 = false; - case 8: - str2 = str4; - lVar = c.a(cVar, dVar); - str4 = str2; - i = 1; - z2 = false; - case 9: - str2 = str4; - j = j3; - i7 = c.c.a.y.b.com$airbnb$lottie$model$layer$Layer$MatteType$s$values()[cVar.r()]; - dVar.o++; - j3 = j; - str4 = str2; - i = 1; - z2 = false; - case 10: - str2 = str4; - h hVar = null; - cVar.a(); + if (cVar.z(a) != 0) { + cVar.C(); + } else if (cVar.w() == c.b.BEGIN_ARRAY) { + cVar.a(); + if (cVar.w() == c.b.NUMBER) { + arrayList.add(q.a(cVar, dVar, f, h0Var, false)); + } else { while (cVar.e()) { - cVar.b(); - h hVar2 = hVar; - c.c.a.y.k.d dVar2 = hVar2; - int i8 = 0; - boolean z4 = false; - while (cVar.e()) { - String s2 = cVar.s(); - s2.hashCode(); - int hashCode = s2.hashCode(); - if (hashCode != 111) { - if (hashCode != 3588) { - if (hashCode != 104433) { - if (hashCode == 3357091 && s2.equals("mode")) { - c2 = 3; - if (c2 == 0) { - dVar2 = AnimatableValueParser.V1(cVar, dVar); - } else if (c2 == 1) { - hVar2 = new h(q.a(cVar, dVar, g.c(), a0.a)); - } else if (c2 == 2) { - z4 = cVar.f(); - } else if (c2 != 3) { - cVar.C(); - } else { - String t = cVar.t(); - t.hashCode(); - int hashCode2 = t.hashCode(); - if (hashCode2 != 97) { - if (hashCode2 != 105) { - if (hashCode2 != 110) { - if (hashCode2 == 115 && t.equals("s")) { - c3 = 3; - if (c3 != 0) { - if (c3 == 1) { - dVar.a("Animation contains intersect masks. They are not supported but will be treated like add masks."); - i8 = 3; - } else if (c3 == 2) { - i8 = 4; - } else if (c3 != 3) { - c.c.a.b0.c.b("Unknown mask mode " + s2 + ". Defaulting to Add."); - } else { - i8 = 2; - } - } - i8 = 1; - } - } else if (t.equals("n")) { - c3 = 2; - if (c3 != 0) { - } - i8 = 1; - } - } else if (t.equals("i")) { - c3 = 1; - if (c3 != 0) { - } - i8 = 1; - } - } else if (t.equals("a")) { - c3 = 0; - if (c3 != 0) { - } - i8 = 1; - } - c3 = 65535; - if (c3 != 0) { - } - i8 = 1; - } - j3 = j3; - dVar2 = dVar2; - } - } else if (s2.equals("inv")) { - c2 = 2; - if (c2 == 0) { - } - j3 = j3; - dVar2 = dVar2; - } - } else if (s2.equals("pt")) { - c2 = 1; - if (c2 == 0) { - } - j3 = j3; - dVar2 = dVar2; - } - } else if (s2.equals("o")) { - c2 = 0; - if (c2 == 0) { - } - j3 = j3; - dVar2 = dVar2; - } - c2 = 65535; - if (c2 == 0) { - } - j3 = j3; - dVar2 = dVar2; - } - cVar.d(); - arrayList3.add(new f(i8, hVar2, dVar2, z4)); - j3 = j3; - hVar = null; + arrayList.add(q.a(cVar, dVar, f, h0Var, true)); } - j = j3; - dVar.o += arrayList3.size(); - cVar.c(); - j3 = j; - str4 = str2; - i = 1; - z2 = false; - case 11: - str2 = str4; - cVar.a(); - while (cVar.e()) { - c.c.a.y.l.b a2 = f.a(cVar, dVar); - if (a2 != null) { - arrayList4.add(a2); - } - } - cVar.c(); - j = j3; - j3 = j; - str4 = str2; - i = 1; - z2 = false; - case 12: - cVar.b(); - while (cVar.e()) { - int z5 = cVar.z(b); - if (z5 == 0) { - str3 = str4; - jVar = new j(AnimatableValueParser.R1(cVar, dVar, g.a)); - } else if (z5 != i) { - cVar.B(); - cVar.C(); - } else { - cVar.a(); - if (cVar.e()) { - c.a aVar2 = b.a; - cVar.b(); - k kVar2 = null; - while (cVar.e()) { - if (cVar.z(b.a) != 0) { - cVar.B(); - cVar.C(); - } else { - cVar.b(); - b bVar2 = null; - b bVar3 = null; - a aVar3 = null; - a aVar4 = null; - while (cVar.e()) { - int z6 = cVar.z(b.b); - if (z6 == 0) { - aVar3 = AnimatableValueParser.S1(cVar, dVar); - } else if (z6 == i) { - aVar4 = AnimatableValueParser.S1(cVar, dVar); - } else if (z6 == 2) { - bVar2 = AnimatableValueParser.T1(cVar, dVar); - } else if (z6 != 3) { - cVar.B(); - cVar.C(); - } else { - bVar3 = AnimatableValueParser.T1(cVar, dVar); - } - i = 1; - } - cVar.d(); - kVar2 = new k(aVar3, aVar4, bVar2, bVar3); - str4 = str4; - i = 1; - } - } - str3 = str4; - cVar.d(); - kVar = kVar2 == null ? new k(null, null, null, null) : kVar2; - } else { - str3 = str4; - } - while (cVar.e()) { - cVar.C(); - } - cVar.c(); - } - str4 = str3; - i = 1; - } - str2 = str4; - cVar.d(); - str4 = str2; - i = 1; - z2 = false; - case 13: - cVar.a(); - ArrayList arrayList5 = new ArrayList(); - while (cVar.e()) { - cVar.b(); - while (cVar.e()) { - if (cVar.z(f263c) != 0) { - cVar.B(); - cVar.C(); - } else { - arrayList5.add(cVar.t()); - } - } - cVar.d(); - } - cVar.c(); - dVar.a("Lottie doesn't support layer effects. If you are using them for fills, strokes, trim paths etc. then try adding them directly as contents in your shape. Found: " + arrayList5); - str2 = str4; - j = j3; - j3 = j; - str4 = str2; - i = 1; - z2 = false; - case 14: - f2 = (float) cVar.p(); - str2 = str4; - str4 = str2; - i = 1; - z2 = false; - case 15: - f3 = (float) cVar.p(); - str2 = str4; - str4 = str2; - i = 1; - z2 = false; - case 16: - i5 = (int) (g.c() * ((float) cVar.r())); - str2 = str4; - str4 = str2; - i = 1; - z2 = false; - case 17: - i6 = (int) (g.c() * ((float) cVar.r())); - str2 = str4; - str4 = str2; - i = 1; - z2 = false; - case 18: - f = (float) cVar.p(); - str2 = str4; - str4 = str2; - i = 1; - z2 = false; - case 19: - f4 = (float) cVar.p(); - i = 1; - z2 = false; - case 20: - bVar = AnimatableValueParser.U1(cVar, dVar, z2); - i = 1; - z2 = false; - case 21: - str4 = cVar.t(); - i = 1; - z2 = false; - case 22: - z3 = cVar.f(); - i = 1; - z2 = false; - default: - str2 = str4; - j = j3; - cVar.B(); - cVar.C(); - j3 = j; - str4 = str2; - i = 1; - z2 = false; + } + cVar.c(); + } else { + arrayList.add(q.a(cVar, dVar, f, h0Var, false)); } } cVar.d(); - float f5 = f / f2; - float f6 = f4 / f2; - ArrayList arrayList6 = new ArrayList(); - if (f5 > 0.0f) { - arrayList = arrayList4; - arrayList2 = arrayList3; - str = str4; - arrayList6.add(new c.c.a.c0.a(dVar, valueOf2, valueOf2, null, 0.0f, Float.valueOf(f5))); - } else { - arrayList = arrayList4; - arrayList2 = arrayList3; - str = str4; + b(arrayList); + return arrayList; + } + + public static void b(List> list) { + int i; + T t; + int size = list.size(); + int i2 = 0; + while (true) { + i = size - 1; + if (i2 >= i) { + break; + } + a aVar = (a) list.get(i2); + i2++; + a aVar2 = (a) list.get(i2); + aVar.f = Float.valueOf(aVar2.e); + if (aVar.f268c == null && (t = aVar2.b) != null) { + aVar.f268c = t; + if (aVar instanceof h) { + ((h) aVar).e(); + } + } } - if (f6 <= 0.0f) { - f6 = dVar.l; + a aVar3 = (a) list.get(i); + if ((aVar3.b == null || aVar3.f268c == null) && list.size() > 1) { + list.remove(aVar3); } - arrayList6.add(new c.c.a.c0.a(dVar, valueOf, valueOf, null, f5, Float.valueOf(f6))); - arrayList6.add(new c.c.a.c0.a(dVar, valueOf2, valueOf2, null, f6, Float.valueOf(Float.MAX_VALUE))); - if (str6.endsWith(".ai") || "ai".equals(str)) { - dVar.a("Convert your Illustrator layers to shape layers."); - } - return new e(arrayList, dVar, str6, j3, aVar, j2, str5, arrayList2, lVar, i2, i3, i4, f2, f3, i5, i6, jVar, kVar, arrayList6, i7, bVar, z3); } } diff --git a/app/src/main/java/c/c/a/a0/s.java b/app/src/main/java/c/c/a/a0/s.java index c4528f80d1..51f709916e 100644 --- a/app/src/main/java/c/c/a/a0/s.java +++ b/app/src/main/java/c/c/a/a0/s.java @@ -1,354 +1,443 @@ package c.c.a.a0; -import android.graphics.Rect; -import androidx.collection.LongSparseArray; -import androidx.collection.SparseArrayCompat; -import c.c.a.a0.h0.c; +import android.graphics.Color; +import c.c.a.a0.i0.c; import c.c.a.b0.g; import c.c.a.d; -import c.c.a.k; -import c.c.a.y.e; -import c.c.a.y.i; -import c.c.a.y.l.m; +import c.c.a.y.k.a; +import c.c.a.y.k.b; +import c.c.a.y.k.h; +import c.c.a.y.k.j; +import c.c.a.y.k.k; +import c.c.a.y.k.l; +import c.c.a.y.l.f; import c.c.a.y.m.e; -import com.discord.models.domain.ModelAuditLogEntry; import java.io.IOException; import java.util.ArrayList; -import java.util.HashMap; -/* compiled from: LottieCompositionMoshiParser */ +/* compiled from: LayerParser */ public class s { - public static final c.a a = c.a.a("w", "h", "ip", "op", "fr", "v", "layers", "assets", "fonts", "chars", "markers"); - public static c.a b = c.a.a(ModelAuditLogEntry.CHANGE_KEY_ID, "layers", "w", "h", "p", "u"); + public static final c.a a = c.a.a("nm", "ind", "refId", "ty", "parent", "sw", "sh", "sc", "ks", "tt", "masksProperties", "shapes", "t", "ef", "sr", "st", "w", "h", "ip", "op", "tm", "cl", "hd"); + public static final c.a b = c.a.a("d", "a"); /* renamed from: c reason: collision with root package name */ - public static final c.a f264c = c.a.a("list"); - public static final c.a d = c.a.a("cm", "tm", "dr"); + public static final c.a f264c = c.a.a("nm"); - public static d a(c cVar) throws IOException { + /* JADX DEBUG: Failed to insert an additional move for type inference into block B:226:0x0303 */ + /* JADX DEBUG: Multi-variable search result rejected for r6v10, resolved type: c.c.a.y.k.d */ + /* JADX DEBUG: Multi-variable search result rejected for r6v11, resolved type: c.c.a.y.k.d */ + /* JADX DEBUG: Multi-variable search result rejected for r6v13, resolved type: c.c.a.y.k.d */ + /* JADX DEBUG: Multi-variable search result rejected for r6v23, resolved type: c.c.a.y.k.d */ + /* JADX WARN: Multi-variable type inference failed */ + /* JADX WARNING: Removed duplicated region for block: B:110:0x0259 */ + /* JADX WARNING: Removed duplicated region for block: B:139:0x02b4 */ + /* JADX WARNING: Removed duplicated region for block: B:149:0x02e4 */ + /* JADX WARNING: Removed duplicated region for block: B:153:0x02fe */ + public static e a(c cVar, d dVar) throws IOException { ArrayList arrayList; - SparseArrayCompat sparseArrayCompat; ArrayList arrayList2; - float f; - float f2; - float f3; - float c2 = g.c(); - LongSparseArray longSparseArray = new LongSparseArray<>(); + String str; + String str2; + long j; + char c2; + char c3; + String str3; ArrayList arrayList3 = new ArrayList(); - HashMap hashMap = new HashMap(); - HashMap hashMap2 = new HashMap(); - HashMap hashMap3 = new HashMap(); ArrayList arrayList4 = new ArrayList(); - SparseArrayCompat sparseArrayCompat2 = new SparseArrayCompat<>(); - d dVar = new d(); cVar.b(); - float f4 = 0.0f; - int i = 0; + Float valueOf = Float.valueOf(1.0f); + Float valueOf2 = Float.valueOf(0.0f); + int i = 1; + boolean z2 = false; + long j2 = -1; + float f = 0.0f; + String str4 = null; + e.a aVar = null; + String str5 = null; + l lVar = null; int i2 = 0; - float f5 = 0.0f; - float f6 = 0.0f; + int i3 = 0; + int i4 = 0; + float f2 = 1.0f; + float f3 = 0.0f; + int i5 = 0; + int i6 = 0; + j jVar = null; + k kVar = null; + int i7 = 1; + b bVar = null; + boolean z3 = false; + long j3 = 0; + String str6 = "UNSET"; + float f4 = 0.0f; while (cVar.e()) { switch (cVar.z(a)) { case 0: - i = cVar.r(); - break; + str2 = str4; + str6 = cVar.t(); + str4 = str2; + i = 1; + z2 = false; case 1: - i2 = cVar.r(); - break; + str2 = str4; + j3 = (long) cVar.r(); + str4 = str2; + i = 1; + z2 = false; case 2: - arrayList = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f5 = (float) cVar.p(); - f4 = f4; - arrayList4 = arrayList; - sparseArrayCompat2 = sparseArrayCompat; + str2 = str4; + str5 = cVar.t(); + str4 = str2; + i = 1; + z2 = false; case 3: - arrayList = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f6 = ((float) cVar.p()) - 0.01f; - f4 = f4; - arrayList4 = arrayList; - sparseArrayCompat2 = sparseArrayCompat; + str2 = str4; + j = j3; + int r = cVar.r(); + aVar = r < 6 ? e.a.values()[r] : e.a.UNKNOWN; + j3 = j; + str4 = str2; + i = 1; + z2 = false; case 4: - arrayList = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f4 = (float) cVar.p(); - arrayList4 = arrayList; - sparseArrayCompat2 = sparseArrayCompat; + str2 = str4; + j = j3; + j2 = (long) cVar.r(); + j3 = j; + str4 = str2; + i = 1; + z2 = false; case 5: - arrayList2 = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f = f5; - f2 = f6; - String[] split = cVar.t().split("\\."); - int parseInt = Integer.parseInt(split[0]); - boolean z2 = true; - int parseInt2 = Integer.parseInt(split[1]); - int parseInt3 = Integer.parseInt(split[2]); - if (parseInt < 4 || (parseInt <= 4 && (parseInt2 < 4 || (parseInt2 <= 4 && parseInt3 < 0)))) { - z2 = false; - } - if (!z2) { - dVar.a("Lottie only supports bodymovin >= 4.4.0"); - } - f4 = f4; - f5 = f; - arrayList4 = arrayList2; - f6 = f2; - sparseArrayCompat2 = sparseArrayCompat; + str2 = str4; + i2 = (int) (g.c() * ((float) cVar.r())); + str4 = str2; + i = 1; + z2 = false; case 6: - arrayList2 = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f = f5; - f2 = f6; - cVar.a(); - int i3 = 0; - while (cVar.e()) { - c.c.a.y.m.e a2 = r.a(cVar, dVar); - if (a2.e == e.a.IMAGE) { - i3++; - } - arrayList3.add(a2); - longSparseArray.put(a2.d, a2); - if (i3 > 4) { - c.c.a.b0.c.b("You have " + i3 + " images. Lottie should primarily be used with shapes. If you are using Adobe Illustrator, convert the Illustrator layers to shape layers."); - } - } - cVar.c(); - f4 = f4; - f5 = f; - arrayList4 = arrayList2; - f6 = f2; - sparseArrayCompat2 = sparseArrayCompat; + str2 = str4; + i3 = (int) (g.c() * ((float) cVar.r())); + str4 = str2; + i = 1; + z2 = false; case 7: - arrayList2 = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f = f5; - f2 = f6; + str2 = str4; + i4 = Color.parseColor(cVar.t()); + str4 = str2; + i = 1; + z2 = false; + case 8: + str2 = str4; + lVar = c.a(cVar, dVar); + str4 = str2; + i = 1; + z2 = false; + case 9: + str2 = str4; + j = j3; + i7 = c.c.a.y.b.com$airbnb$lottie$model$layer$Layer$MatteType$s$values()[cVar.r()]; + dVar.o++; + j3 = j; + str4 = str2; + i = 1; + z2 = false; + case 10: + str2 = str4; + h hVar = null; cVar.a(); while (cVar.e()) { - ArrayList arrayList5 = new ArrayList(); - LongSparseArray longSparseArray2 = new LongSparseArray(); cVar.b(); - String str = null; - String str2 = null; - String str3 = null; - int i4 = 0; - int i5 = 0; + h hVar2 = hVar; + c.c.a.y.k.d dVar2 = hVar2; + int i8 = 0; + boolean z4 = false; while (cVar.e()) { - int z3 = cVar.z(b); - if (z3 == 0) { - str = cVar.t(); - } else if (z3 == 1) { - cVar.a(); - while (cVar.e()) { - c.c.a.y.m.e a3 = r.a(cVar, dVar); - longSparseArray2.put(a3.d, a3); - arrayList5.add(a3); + String s2 = cVar.s(); + s2.hashCode(); + int hashCode = s2.hashCode(); + if (hashCode != 111) { + if (hashCode != 3588) { + if (hashCode != 104433) { + if (hashCode == 3357091 && s2.equals("mode")) { + c2 = 3; + if (c2 == 0) { + dVar2 = d.s1(cVar, dVar); + } else if (c2 == 1) { + hVar2 = new h(r.a(cVar, dVar, g.c(), b0.a)); + } else if (c2 == 2) { + z4 = cVar.f(); + } else if (c2 != 3) { + cVar.C(); + } else { + String t = cVar.t(); + t.hashCode(); + int hashCode2 = t.hashCode(); + if (hashCode2 != 97) { + if (hashCode2 != 105) { + if (hashCode2 != 110) { + if (hashCode2 == 115 && t.equals("s")) { + c3 = 3; + if (c3 != 0) { + if (c3 == 1) { + dVar.a("Animation contains intersect masks. They are not supported but will be treated like add masks."); + i8 = 3; + } else if (c3 == 2) { + i8 = 4; + } else if (c3 != 3) { + c.c.a.b0.c.b("Unknown mask mode " + s2 + ". Defaulting to Add."); + } else { + i8 = 2; + } + } + i8 = 1; + } + } else if (t.equals("n")) { + c3 = 2; + if (c3 != 0) { + } + i8 = 1; + } + } else if (t.equals("i")) { + c3 = 1; + if (c3 != 0) { + } + i8 = 1; + } + } else if (t.equals("a")) { + c3 = 0; + if (c3 != 0) { + } + i8 = 1; + } + c3 = 65535; + if (c3 != 0) { + } + i8 = 1; + } + j3 = j3; + dVar2 = dVar2; + } + } else if (s2.equals("inv")) { + c2 = 2; + if (c2 == 0) { + } + j3 = j3; + dVar2 = dVar2; + } + } else if (s2.equals("pt")) { + c2 = 1; + if (c2 == 0) { + } + j3 = j3; + dVar2 = dVar2; } - cVar.c(); - } else if (z3 == 2) { - i4 = cVar.r(); - } else if (z3 == 3) { - i5 = cVar.r(); - } else if (z3 == 4) { - str2 = cVar.t(); - } else if (z3 != 5) { - cVar.B(); - cVar.C(); - } else { - str3 = cVar.t(); + } else if (s2.equals("o")) { + c2 = 0; + if (c2 == 0) { + } + j3 = j3; + dVar2 = dVar2; } + c2 = 65535; + if (c2 == 0) { + } + j3 = j3; + dVar2 = dVar2; } cVar.d(); - if (str2 != null) { - hashMap2.put(str, new k(i4, i5, str, str2, str3)); - } else { - hashMap.put(str, arrayList5); + arrayList3.add(new f(i8, hVar2, dVar2, z4)); + j3 = j3; + hVar = null; + } + j = j3; + dVar.o += arrayList3.size(); + cVar.c(); + j3 = j; + str4 = str2; + i = 1; + z2 = false; + case 11: + str2 = str4; + cVar.a(); + while (cVar.e()) { + c.c.a.y.l.b a2 = g.a(cVar, dVar); + if (a2 != null) { + arrayList4.add(a2); } } cVar.c(); - f4 = f4; - f5 = f; - arrayList4 = arrayList2; - f6 = f2; - sparseArrayCompat2 = sparseArrayCompat; - case 8: - f = f5; - f2 = f6; + j = j3; + j3 = j; + str4 = str2; + i = 1; + z2 = false; + case 12: cVar.b(); while (cVar.e()) { - if (cVar.z(f264c) != 0) { + int z5 = cVar.z(b); + if (z5 == 0) { + str3 = str4; + jVar = new j(d.o1(cVar, dVar, h.a)); + } else if (z5 != i) { cVar.B(); cVar.C(); } else { cVar.a(); - while (cVar.e()) { - c.a aVar = j.a; + if (cVar.e()) { + c.a aVar2 = b.a; cVar.b(); - String str4 = null; - String str5 = null; - String str6 = null; - float f7 = 0.0f; + k kVar2 = null; while (cVar.e()) { - int z4 = cVar.z(j.a); - if (z4 != 0) { - if (z4 == 1) { - str5 = cVar.t(); - } else if (z4 == 2) { - str6 = cVar.t(); - } else if (z4 != 3) { - cVar.B(); - cVar.C(); - } else { - f7 = (float) cVar.p(); - } - arrayList4 = arrayList4; - sparseArrayCompat2 = sparseArrayCompat2; - } else { - str4 = cVar.t(); - arrayList4 = arrayList4; - } - } - cVar.d(); - hashMap3.put(str5, new c.c.a.y.d(str4, str5, str6, f7)); - arrayList4 = arrayList4; - } - cVar.c(); - } - } - arrayList2 = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - cVar.d(); - f4 = f4; - f5 = f; - arrayList4 = arrayList2; - f6 = f2; - sparseArrayCompat2 = sparseArrayCompat; - case 9: - f = f5; - f2 = f6; - cVar.a(); - while (cVar.e()) { - c.a aVar2 = i.a; - ArrayList arrayList6 = new ArrayList(); - cVar.b(); - double d2 = 0.0d; - double d3 = 0.0d; - String str7 = null; - String str8 = null; - char c3 = 0; - while (cVar.e()) { - int z5 = cVar.z(i.a); - if (z5 == 0) { - c3 = cVar.t().charAt(0); - } else if (z5 == 1) { - d2 = cVar.p(); - } else if (z5 == 2) { - d3 = cVar.p(); - } else if (z5 == 3) { - str7 = cVar.t(); - } else if (z5 == 4) { - str8 = cVar.t(); - } else if (z5 != 5) { - cVar.B(); - cVar.C(); - } else { - cVar.b(); - while (cVar.e()) { - if (cVar.z(i.b) != 0) { + if (cVar.z(b.a) != 0) { cVar.B(); cVar.C(); } else { - cVar.a(); + cVar.b(); + b bVar2 = null; + b bVar3 = null; + a aVar3 = null; + a aVar4 = null; while (cVar.e()) { - arrayList6.add((m) f.a(cVar, dVar)); + int z6 = cVar.z(b.b); + if (z6 == 0) { + aVar3 = d.p1(cVar, dVar); + } else if (z6 == i) { + aVar4 = d.p1(cVar, dVar); + } else if (z6 == 2) { + bVar2 = d.q1(cVar, dVar); + } else if (z6 != 3) { + cVar.B(); + cVar.C(); + } else { + bVar3 = d.q1(cVar, dVar); + } + i = 1; } - cVar.c(); + cVar.d(); + kVar2 = new k(aVar3, aVar4, bVar2, bVar3); + str4 = str4; + i = 1; } } + str3 = str4; cVar.d(); + kVar = kVar2 == null ? new k(null, null, null, null) : kVar2; + } else { + str3 = str4; } + while (cVar.e()) { + cVar.C(); + } + cVar.c(); } - cVar.d(); - c.c.a.y.e eVar = new c.c.a.y.e(arrayList6, c3, d2, d3, str7, str8); - sparseArrayCompat2.put(eVar.hashCode(), eVar); + str4 = str3; + i = 1; } - cVar.c(); - arrayList2 = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f4 = f4; - f5 = f; - arrayList4 = arrayList2; - f6 = f2; - sparseArrayCompat2 = sparseArrayCompat; - case 10: + str2 = str4; + cVar.d(); + str4 = str2; + i = 1; + z2 = false; + case 13: cVar.a(); + ArrayList arrayList5 = new ArrayList(); while (cVar.e()) { cVar.b(); - String str9 = null; - float f8 = 0.0f; - float f9 = 0.0f; while (cVar.e()) { - int z6 = cVar.z(d); - if (z6 != 0) { - if (z6 == 1) { - f3 = f5; - f8 = (float) cVar.p(); - } else if (z6 != 2) { - cVar.B(); - cVar.C(); - f6 = f6; - } else { - f3 = f5; - f9 = (float) cVar.p(); - } - f6 = f6; - f5 = f3; + if (cVar.z(f264c) != 0) { + cVar.B(); + cVar.C(); } else { - str9 = cVar.t(); + arrayList5.add(cVar.t()); } } cVar.d(); - arrayList4.add(new i(str9, f8, f9)); - f5 = f5; - f6 = f6; } - f = f5; - f2 = f6; cVar.c(); - arrayList2 = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f4 = f4; - f5 = f; - arrayList4 = arrayList2; - f6 = f2; - sparseArrayCompat2 = sparseArrayCompat; + dVar.a("Lottie doesn't support layer effects. If you are using them for fills, strokes, trim paths etc. then try adding them directly as contents in your shape. Found: " + arrayList5); + str2 = str4; + j = j3; + j3 = j; + str4 = str2; + i = 1; + z2 = false; + case 14: + f2 = (float) cVar.p(); + str2 = str4; + str4 = str2; + i = 1; + z2 = false; + case 15: + f3 = (float) cVar.p(); + str2 = str4; + str4 = str2; + i = 1; + z2 = false; + case 16: + i5 = (int) (g.c() * ((float) cVar.r())); + str2 = str4; + str4 = str2; + i = 1; + z2 = false; + case 17: + i6 = (int) (g.c() * ((float) cVar.r())); + str2 = str4; + str4 = str2; + i = 1; + z2 = false; + case 18: + f = (float) cVar.p(); + str2 = str4; + str4 = str2; + i = 1; + z2 = false; + case 19: + f4 = (float) cVar.p(); + i = 1; + z2 = false; + case 20: + bVar = d.r1(cVar, dVar, z2); + i = 1; + z2 = false; + case 21: + str4 = cVar.t(); + i = 1; + z2 = false; + case 22: + z3 = cVar.f(); + i = 1; + z2 = false; default: - arrayList2 = arrayList4; - sparseArrayCompat = sparseArrayCompat2; - f = f5; - f2 = f6; + str2 = str4; + j = j3; cVar.B(); cVar.C(); - f4 = f4; - f5 = f; - arrayList4 = arrayList2; - f6 = f2; - sparseArrayCompat2 = sparseArrayCompat; + j3 = j; + str4 = str2; + i = 1; + z2 = false; } - f4 = f4; } - dVar.j = new Rect(0, 0, (int) (((float) i) * c2), (int) (((float) i2) * c2)); - dVar.k = f5; - dVar.l = f6; - dVar.m = f4; - dVar.i = arrayList3; - dVar.h = longSparseArray; - dVar.f268c = hashMap; - dVar.d = hashMap2; - dVar.g = sparseArrayCompat2; - dVar.e = hashMap3; - dVar.f = arrayList4; - return dVar; + cVar.d(); + float f5 = f / f2; + float f6 = f4 / f2; + ArrayList arrayList6 = new ArrayList(); + if (f5 > 0.0f) { + arrayList = arrayList4; + arrayList2 = arrayList3; + str = str4; + arrayList6.add(new c.c.a.c0.a(dVar, valueOf2, valueOf2, null, 0.0f, Float.valueOf(f5))); + } else { + arrayList = arrayList4; + arrayList2 = arrayList3; + str = str4; + } + if (f6 <= 0.0f) { + f6 = dVar.l; + } + arrayList6.add(new c.c.a.c0.a(dVar, valueOf, valueOf, null, f5, Float.valueOf(f6))); + arrayList6.add(new c.c.a.c0.a(dVar, valueOf2, valueOf2, null, f6, Float.valueOf(Float.MAX_VALUE))); + if (str6.endsWith(".ai") || "ai".equals(str)) { + dVar.a("Convert your Illustrator layers to shape layers."); + } + return new e(arrayList, dVar, str6, j3, aVar, j2, str5, arrayList2, lVar, i2, i3, i4, f2, f3, i5, i6, jVar, kVar, arrayList6, i7, bVar, z3); } } diff --git a/app/src/main/java/c/c/a/a0/t.java b/app/src/main/java/c/c/a/a0/t.java index dc41a03445..cd5ba3e86d 100644 --- a/app/src/main/java/c/c/a/a0/t.java +++ b/app/src/main/java/c/c/a/a0/t.java @@ -1,7 +1,354 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: MergePathsParser */ +import android.graphics.Rect; +import androidx.collection.LongSparseArray; +import androidx.collection.SparseArrayCompat; +import c.c.a.a0.i0.c; +import c.c.a.b0.g; +import c.c.a.d; +import c.c.a.k; +import c.c.a.y.e; +import c.c.a.y.i; +import c.c.a.y.l.m; +import c.c.a.y.m.e; +import com.discord.models.domain.ModelAuditLogEntry; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +/* compiled from: LottieCompositionMoshiParser */ public class t { - public static final c.a a = c.a.a("nm", "mm", "hd"); + public static final c.a a = c.a.a("w", "h", "ip", "op", "fr", "v", "layers", "assets", "fonts", "chars", "markers"); + public static c.a b = c.a.a(ModelAuditLogEntry.CHANGE_KEY_ID, "layers", "w", "h", "p", "u"); + + /* renamed from: c reason: collision with root package name */ + public static final c.a f265c = c.a.a("list"); + public static final c.a d = c.a.a("cm", "tm", "dr"); + + public static d a(c cVar) throws IOException { + ArrayList arrayList; + SparseArrayCompat sparseArrayCompat; + ArrayList arrayList2; + float f; + float f2; + float f3; + float c2 = g.c(); + LongSparseArray longSparseArray = new LongSparseArray<>(); + ArrayList arrayList3 = new ArrayList(); + HashMap hashMap = new HashMap(); + HashMap hashMap2 = new HashMap(); + HashMap hashMap3 = new HashMap(); + ArrayList arrayList4 = new ArrayList(); + SparseArrayCompat sparseArrayCompat2 = new SparseArrayCompat<>(); + d dVar = new d(); + cVar.b(); + float f4 = 0.0f; + int i = 0; + int i2 = 0; + float f5 = 0.0f; + float f6 = 0.0f; + while (cVar.e()) { + switch (cVar.z(a)) { + case 0: + i = cVar.r(); + break; + case 1: + i2 = cVar.r(); + break; + case 2: + arrayList = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f5 = (float) cVar.p(); + f4 = f4; + arrayList4 = arrayList; + sparseArrayCompat2 = sparseArrayCompat; + case 3: + arrayList = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f6 = ((float) cVar.p()) - 0.01f; + f4 = f4; + arrayList4 = arrayList; + sparseArrayCompat2 = sparseArrayCompat; + case 4: + arrayList = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f4 = (float) cVar.p(); + arrayList4 = arrayList; + sparseArrayCompat2 = sparseArrayCompat; + case 5: + arrayList2 = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f = f5; + f2 = f6; + String[] split = cVar.t().split("\\."); + int parseInt = Integer.parseInt(split[0]); + boolean z2 = true; + int parseInt2 = Integer.parseInt(split[1]); + int parseInt3 = Integer.parseInt(split[2]); + if (parseInt < 4 || (parseInt <= 4 && (parseInt2 < 4 || (parseInt2 <= 4 && parseInt3 < 0)))) { + z2 = false; + } + if (!z2) { + dVar.a("Lottie only supports bodymovin >= 4.4.0"); + } + f4 = f4; + f5 = f; + arrayList4 = arrayList2; + f6 = f2; + sparseArrayCompat2 = sparseArrayCompat; + case 6: + arrayList2 = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f = f5; + f2 = f6; + cVar.a(); + int i3 = 0; + while (cVar.e()) { + c.c.a.y.m.e a2 = s.a(cVar, dVar); + if (a2.e == e.a.IMAGE) { + i3++; + } + arrayList3.add(a2); + longSparseArray.put(a2.d, a2); + if (i3 > 4) { + c.c.a.b0.c.b("You have " + i3 + " images. Lottie should primarily be used with shapes. If you are using Adobe Illustrator, convert the Illustrator layers to shape layers."); + } + } + cVar.c(); + f4 = f4; + f5 = f; + arrayList4 = arrayList2; + f6 = f2; + sparseArrayCompat2 = sparseArrayCompat; + case 7: + arrayList2 = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f = f5; + f2 = f6; + cVar.a(); + while (cVar.e()) { + ArrayList arrayList5 = new ArrayList(); + LongSparseArray longSparseArray2 = new LongSparseArray(); + cVar.b(); + String str = null; + String str2 = null; + String str3 = null; + int i4 = 0; + int i5 = 0; + while (cVar.e()) { + int z3 = cVar.z(b); + if (z3 == 0) { + str = cVar.t(); + } else if (z3 == 1) { + cVar.a(); + while (cVar.e()) { + c.c.a.y.m.e a3 = s.a(cVar, dVar); + longSparseArray2.put(a3.d, a3); + arrayList5.add(a3); + } + cVar.c(); + } else if (z3 == 2) { + i4 = cVar.r(); + } else if (z3 == 3) { + i5 = cVar.r(); + } else if (z3 == 4) { + str2 = cVar.t(); + } else if (z3 != 5) { + cVar.B(); + cVar.C(); + } else { + str3 = cVar.t(); + } + } + cVar.d(); + if (str2 != null) { + hashMap2.put(str, new k(i4, i5, str, str2, str3)); + } else { + hashMap.put(str, arrayList5); + } + } + cVar.c(); + f4 = f4; + f5 = f; + arrayList4 = arrayList2; + f6 = f2; + sparseArrayCompat2 = sparseArrayCompat; + case 8: + f = f5; + f2 = f6; + cVar.b(); + while (cVar.e()) { + if (cVar.z(f265c) != 0) { + cVar.B(); + cVar.C(); + } else { + cVar.a(); + while (cVar.e()) { + c.a aVar = k.a; + cVar.b(); + String str4 = null; + String str5 = null; + String str6 = null; + float f7 = 0.0f; + while (cVar.e()) { + int z4 = cVar.z(k.a); + if (z4 != 0) { + if (z4 == 1) { + str5 = cVar.t(); + } else if (z4 == 2) { + str6 = cVar.t(); + } else if (z4 != 3) { + cVar.B(); + cVar.C(); + } else { + f7 = (float) cVar.p(); + } + arrayList4 = arrayList4; + sparseArrayCompat2 = sparseArrayCompat2; + } else { + str4 = cVar.t(); + arrayList4 = arrayList4; + } + } + cVar.d(); + hashMap3.put(str5, new c.c.a.y.d(str4, str5, str6, f7)); + arrayList4 = arrayList4; + } + cVar.c(); + } + } + arrayList2 = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + cVar.d(); + f4 = f4; + f5 = f; + arrayList4 = arrayList2; + f6 = f2; + sparseArrayCompat2 = sparseArrayCompat; + case 9: + f = f5; + f2 = f6; + cVar.a(); + while (cVar.e()) { + c.a aVar2 = j.a; + ArrayList arrayList6 = new ArrayList(); + cVar.b(); + double d2 = 0.0d; + double d3 = 0.0d; + String str7 = null; + String str8 = null; + char c3 = 0; + while (cVar.e()) { + int z5 = cVar.z(j.a); + if (z5 == 0) { + c3 = cVar.t().charAt(0); + } else if (z5 == 1) { + d2 = cVar.p(); + } else if (z5 == 2) { + d3 = cVar.p(); + } else if (z5 == 3) { + str7 = cVar.t(); + } else if (z5 == 4) { + str8 = cVar.t(); + } else if (z5 != 5) { + cVar.B(); + cVar.C(); + } else { + cVar.b(); + while (cVar.e()) { + if (cVar.z(j.b) != 0) { + cVar.B(); + cVar.C(); + } else { + cVar.a(); + while (cVar.e()) { + arrayList6.add((m) g.a(cVar, dVar)); + } + cVar.c(); + } + } + cVar.d(); + } + } + cVar.d(); + c.c.a.y.e eVar = new c.c.a.y.e(arrayList6, c3, d2, d3, str7, str8); + sparseArrayCompat2.put(eVar.hashCode(), eVar); + } + cVar.c(); + arrayList2 = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f4 = f4; + f5 = f; + arrayList4 = arrayList2; + f6 = f2; + sparseArrayCompat2 = sparseArrayCompat; + case 10: + cVar.a(); + while (cVar.e()) { + cVar.b(); + String str9 = null; + float f8 = 0.0f; + float f9 = 0.0f; + while (cVar.e()) { + int z6 = cVar.z(d); + if (z6 != 0) { + if (z6 == 1) { + f3 = f5; + f8 = (float) cVar.p(); + } else if (z6 != 2) { + cVar.B(); + cVar.C(); + f6 = f6; + } else { + f3 = f5; + f9 = (float) cVar.p(); + } + f6 = f6; + f5 = f3; + } else { + str9 = cVar.t(); + } + } + cVar.d(); + arrayList4.add(new i(str9, f8, f9)); + f5 = f5; + f6 = f6; + } + f = f5; + f2 = f6; + cVar.c(); + arrayList2 = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f4 = f4; + f5 = f; + arrayList4 = arrayList2; + f6 = f2; + sparseArrayCompat2 = sparseArrayCompat; + default: + arrayList2 = arrayList4; + sparseArrayCompat = sparseArrayCompat2; + f = f5; + f2 = f6; + cVar.B(); + cVar.C(); + f4 = f4; + f5 = f; + arrayList4 = arrayList2; + f6 = f2; + sparseArrayCompat2 = sparseArrayCompat; + } + f4 = f4; + } + dVar.j = new Rect(0, 0, (int) (((float) i) * c2), (int) (((float) i2) * c2)); + dVar.k = f5; + dVar.l = f6; + dVar.m = f4; + dVar.i = arrayList3; + dVar.h = longSparseArray; + dVar.f269c = hashMap; + dVar.d = hashMap2; + dVar.g = sparseArrayCompat2; + dVar.e = hashMap3; + dVar.f = arrayList4; + return dVar; + } } diff --git a/app/src/main/java/c/c/a/a0/u.java b/app/src/main/java/c/c/a/a0/u.java index f8b359b857..84506018b4 100644 --- a/app/src/main/java/c/c/a/a0/u.java +++ b/app/src/main/java/c/c/a/a0/u.java @@ -1,15 +1,7 @@ package c.c.a.a0; -import android.graphics.PointF; -import c.c.a.a0.h0.c; -import java.io.IOException; -/* compiled from: PathParser */ -public class u implements g0 { - public static final u a = new u(); - - /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public PointF a(c cVar, float f) throws IOException { - return o.b(cVar, f); - } +import c.c.a.a0.i0.c; +/* compiled from: MergePathsParser */ +public class u { + public static final c.a a = c.a.a("nm", "mm", "hd"); } diff --git a/app/src/main/java/c/c/a/a0/v.java b/app/src/main/java/c/c/a/a0/v.java index 5a3328ca85..77dd38bceb 100644 --- a/app/src/main/java/c/c/a/a0/v.java +++ b/app/src/main/java/c/c/a/a0/v.java @@ -1,29 +1,15 @@ package c.c.a.a0; import android.graphics.PointF; -import c.c.a.a0.h0.c; +import c.c.a.a0.i0.c; import java.io.IOException; -/* compiled from: PointFParser */ -public class v implements g0 { +/* compiled from: PathParser */ +public class v implements h0 { public static final v a = new v(); /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 + @Override // c.c.a.a0.h0 public PointF a(c cVar, float f) throws IOException { - c.b w = cVar.w(); - if (w == c.b.BEGIN_ARRAY) { - return o.b(cVar, f); - } - if (w == c.b.BEGIN_OBJECT) { - return o.b(cVar, f); - } - if (w == c.b.NUMBER) { - PointF pointF = new PointF(((float) cVar.p()) * f, ((float) cVar.p()) * f); - while (cVar.e()) { - cVar.C(); - } - return pointF; - } - throw new IllegalArgumentException("Cannot convert json to point. Next token is " + w); + return p.b(cVar, f); } } diff --git a/app/src/main/java/c/c/a/a0/w.java b/app/src/main/java/c/c/a/a0/w.java index ed161be3e3..f2c330d191 100644 --- a/app/src/main/java/c/c/a/a0/w.java +++ b/app/src/main/java/c/c/a/a0/w.java @@ -1,7 +1,29 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: PolystarShapeParser */ -public class w { - public static final c.a a = c.a.a("nm", "sy", "pt", "p", "r", "or", "os", "ir", "is", "hd"); +import android.graphics.PointF; +import c.c.a.a0.i0.c; +import java.io.IOException; +/* compiled from: PointFParser */ +public class w implements h0 { + public static final w a = new w(); + + /* Return type fixed from 'java.lang.Object' to match base method */ + @Override // c.c.a.a0.h0 + public PointF a(c cVar, float f) throws IOException { + c.b w = cVar.w(); + if (w == c.b.BEGIN_ARRAY) { + return p.b(cVar, f); + } + if (w == c.b.BEGIN_OBJECT) { + return p.b(cVar, f); + } + if (w == c.b.NUMBER) { + PointF pointF = new PointF(((float) cVar.p()) * f, ((float) cVar.p()) * f); + while (cVar.e()) { + cVar.C(); + } + return pointF; + } + throw new IllegalArgumentException("Cannot convert json to point. Next token is " + w); + } } diff --git a/app/src/main/java/c/c/a/a0/x.java b/app/src/main/java/c/c/a/a0/x.java index d22ebfefb3..a732eb328f 100644 --- a/app/src/main/java/c/c/a/a0/x.java +++ b/app/src/main/java/c/c/a/a0/x.java @@ -1,7 +1,7 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: RectangleShapeParser */ +import c.c.a.a0.i0.c; +/* compiled from: PolystarShapeParser */ public class x { - public static c.a a = c.a.a("nm", "p", "s", "r", "hd"); + public static final c.a a = c.a.a("nm", "sy", "pt", "p", "r", "or", "os", "ir", "is", "hd"); } diff --git a/app/src/main/java/c/c/a/a0/y.java b/app/src/main/java/c/c/a/a0/y.java index 31e7ca8c8f..0c123ae41d 100644 --- a/app/src/main/java/c/c/a/a0/y.java +++ b/app/src/main/java/c/c/a/a0/y.java @@ -1,7 +1,7 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -/* compiled from: RepeaterParser */ +import c.c.a.a0.i0.c; +/* compiled from: RectangleShapeParser */ public class y { - public static c.a a = c.a.a("nm", "c", "o", "tr", "hd"); + public static c.a a = c.a.a("nm", "p", "s", "r", "hd"); } diff --git a/app/src/main/java/c/c/a/a0/z.java b/app/src/main/java/c/c/a/a0/z.java index b08491908a..2844e43146 100644 --- a/app/src/main/java/c/c/a/a0/z.java +++ b/app/src/main/java/c/c/a/a0/z.java @@ -1,27 +1,7 @@ package c.c.a.a0; -import c.c.a.a0.h0.c; -import c.c.a.c0.d; -import java.io.IOException; -/* compiled from: ScaleXYParser */ -public class z implements g0 { - public static final z a = new z(); - - /* Return type fixed from 'java.lang.Object' to match base method */ - @Override // c.c.a.a0.g0 - public d a(c cVar, float f) throws IOException { - boolean z2 = cVar.w() == c.b.BEGIN_ARRAY; - if (z2) { - cVar.a(); - } - float p = (float) cVar.p(); - float p2 = (float) cVar.p(); - while (cVar.e()) { - cVar.C(); - } - if (z2) { - cVar.c(); - } - return new d((p / 100.0f) * f, (p2 / 100.0f) * f); - } +import c.c.a.a0.i0.c; +/* compiled from: RepeaterParser */ +public class z { + public static c.a a = c.a.a("nm", "c", "o", "tr", "hd"); } diff --git a/app/src/main/java/c/c/a/b0/d.java b/app/src/main/java/c/c/a/b0/d.java index 71ded2675c..9c3ec2688c 100644 --- a/app/src/main/java/c/c/a/b0/d.java +++ b/app/src/main/java/c/c/a/b0/d.java @@ -23,7 +23,7 @@ public class d extends a implements Choreographer.FrameCallback { @VisibleForTesting /* renamed from: s reason: collision with root package name */ - public boolean f265s = false; + public boolean f266s = false; @Override // android.animation.ValueAnimator, android.animation.Animator @MainThread @@ -38,7 +38,7 @@ public class d extends a implements Choreographer.FrameCallback { public void doFrame(long j) { l(); c.c.a.d dVar = this.r; - if (dVar != null && this.f265s) { + if (dVar != null && this.f266s) { long j2 = this.m; long j3 = 0; if (j2 != 0) { @@ -150,7 +150,7 @@ public class d extends a implements Choreographer.FrameCallback { @Override // android.animation.ValueAnimator, android.animation.Animator public boolean isRunning() { - return this.f265s; + return this.f266s; } public float j() { @@ -167,7 +167,7 @@ public class d extends a implements Choreographer.FrameCallback { } public void l() { - if (this.f265s) { + if (this.f266s) { Choreographer.getInstance().removeFrameCallback(this); Choreographer.getInstance().postFrameCallback(this); } @@ -176,7 +176,7 @@ public class d extends a implements Choreographer.FrameCallback { @MainThread public void m() { Choreographer.getInstance().removeFrameCallback(this); - this.f265s = false; + this.f266s = false; } public void n(float f) { diff --git a/app/src/main/java/c/c/a/b0/g.java b/app/src/main/java/c/c/a/b0/g.java index 04fa3a86b6..83262029dc 100644 --- a/app/src/main/java/c/c/a/b0/g.java +++ b/app/src/main/java/c/c/a/b0/g.java @@ -17,7 +17,7 @@ public final class g { public static final Path b = new Path(); /* renamed from: c reason: collision with root package name */ - public static final Path f266c = new Path(); + public static final Path f267c = new Path(); public static final float[] d = new float[4]; public static final float e = ((float) (Math.sqrt(2.0d) / 2.0d)); public static float f = -1.0f; @@ -59,12 +59,12 @@ public final class g { path2.reset(); pathMeasure.getSegment(min, max, path2, true); if (max > length) { - Path path3 = f266c; + Path path3 = f267c; path3.reset(); pathMeasure.getSegment(0.0f, max % length, path3, true); path2.addPath(path3); } else if (min < 0.0f) { - Path path4 = f266c; + Path path4 = f267c; path4.reset(); pathMeasure.getSegment(min + length, length, path4, true); path2.addPath(path4); diff --git a/app/src/main/java/c/c/a/c0/a.java b/app/src/main/java/c/c/a/c0/a.java index a59902c1eb..aeea3a287e 100644 --- a/app/src/main/java/c/c/a/c0/a.java +++ b/app/src/main/java/c/c/a/c0/a.java @@ -14,7 +14,7 @@ public class a { @Nullable /* renamed from: c reason: collision with root package name */ - public T f267c; + public T f268c; @Nullable public final Interpolator d; public final float e; @@ -40,7 +40,7 @@ public class a { this.n = null; this.a = dVar; this.b = t; - this.f267c = t2; + this.f268c = t2; this.d = interpolator; this.e = f; this.f = f2; @@ -57,7 +57,7 @@ public class a { this.n = null; this.a = null; this.b = t; - this.f267c = t; + this.f268c = t; this.d = null; this.e = Float.MIN_VALUE; this.f = Float.valueOf(Float.MAX_VALUE); @@ -97,17 +97,17 @@ public class a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Keyframe{startValue="); - P.append((Object) this.b); - P.append(", endValue="); - P.append((Object) this.f267c); - P.append(", startFrame="); - P.append(this.e); - P.append(", endFrame="); - P.append(this.f); - P.append(", interpolator="); - P.append(this.d); - P.append('}'); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("Keyframe{startValue="); + O.append((Object) this.b); + O.append(", endValue="); + O.append((Object) this.f268c); + O.append(", startFrame="); + O.append(this.e); + O.append(", endFrame="); + O.append(this.f); + O.append(", interpolator="); + O.append(this.d); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/d.java b/app/src/main/java/c/c/a/d.java index b3d636bf6d..d0ace0c2c1 100644 --- a/app/src/main/java/c/c/a/d.java +++ b/app/src/main/java/c/c/a/d.java @@ -17,7 +17,7 @@ public class d { public final HashSet b = new HashSet<>(); /* renamed from: c reason: collision with root package name */ - public Map> f268c; + public Map> f269c; public Map d; public Map e; public List f; diff --git a/app/src/main/java/c/c/a/e.java b/app/src/main/java/c/c/a/e.java index c10ba5e841..33113e55e6 100644 --- a/app/src/main/java/c/c/a/e.java +++ b/app/src/main/java/c/c/a/e.java @@ -6,8 +6,8 @@ import android.graphics.BitmapFactory; import androidx.annotation.Nullable; import androidx.annotation.RawRes; import androidx.annotation.WorkerThread; -import c.c.a.a0.h0.d; -import c.c.a.a0.s; +import c.c.a.a0.i0.d; +import c.c.a.a0.t; import c.c.a.b0.g; import c.c.a.y.h; import com.discord.widgets.chat.input.autocomplete.AutocompleteViewModel; @@ -107,16 +107,16 @@ public class e { n nVar = new n(inputStream, new y()); m.checkParameterIsNotNull(nVar, "$this$buffer"); r rVar = new r(nVar); - String[] strArr = c.c.a.a0.h0.c.i; + String[] strArr = c.c.a.a0.i0.c.i; return c(new d(rVar), str, true); } finally { g.b(inputStream); } } - public static p c(c.c.a.a0.h0.c cVar, @Nullable String str, boolean z2) { + public static p c(c.c.a.a0.i0.c cVar, @Nullable String str, boolean z2) { try { - d a2 = s.a(cVar); + d a2 = t.a(cVar); if (str != null) { h hVar = h.a; Objects.requireNonNull(hVar); @@ -166,7 +166,7 @@ public class e { n nVar = new n(zipInputStream, new y()); m.checkParameterIsNotNull(nVar, "$this$buffer"); r rVar = new r(nVar); - String[] strArr = c.c.a.a0.h0.c.i; + String[] strArr = c.c.a.a0.i0.c.i; dVar = c(new d(rVar), null, false).a; } else { if (!name.contains(".png")) { @@ -201,9 +201,9 @@ public class e { } for (Map.Entry entry2 : dVar.d.entrySet()) { if (entry2.getValue().e == null) { - StringBuilder P = c.d.b.a.a.P("There is no image for "); - P.append(entry2.getValue().d); - return new p<>(new IllegalStateException(P.toString())); + StringBuilder O = c.d.b.a.a.O("There is no image for "); + O.append(entry2.getValue().d); + return new p<>(new IllegalStateException(O.toString())); } } if (str != null) { @@ -218,9 +218,9 @@ public class e { } public static String f(Context context, @RawRes int i) { - StringBuilder P = c.d.b.a.a.P("rawRes"); - P.append((context.getResources().getConfiguration().uiMode & 48) == 32 ? "_night_" : "_day_"); - P.append(i); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("rawRes"); + O.append((context.getResources().getConfiguration().uiMode & 48) == 32 ? "_night_" : "_day_"); + O.append(i); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/f.java b/app/src/main/java/c/c/a/f.java index 637e3739a8..cdc97af467 100644 --- a/app/src/main/java/c/c/a/f.java +++ b/app/src/main/java/c/c/a/f.java @@ -31,7 +31,7 @@ public class f implements Callable> { Pair pair; c cVar = new c(this.i, this.j, this.k); a aVar = a.ZIP; - b bVar = cVar.f348c; + b bVar = cVar.f349c; d dVar = null; if (bVar != null) { String str = cVar.b; @@ -60,9 +60,9 @@ public class f implements Callable> { if (file.getAbsolutePath().endsWith(".zip")) { aVar2 = aVar; } - StringBuilder V = c.d.b.a.a.V("Cache hit for ", str, " at "); - V.append(file.getAbsolutePath()); - c.c.a.b0.c.a(V.toString()); + StringBuilder U = c.d.b.a.a.U("Cache hit for ", str, " at "); + U.append(file.getAbsolutePath()); + c.c.a.b0.c.a(U.toString()); pair = new Pair(aVar2, fileInputStream); if (pair != null) { } @@ -73,10 +73,10 @@ public class f implements Callable> { if (dVar != null) { return new p<>(dVar); } - StringBuilder P = c.d.b.a.a.P("Animation for "); - P.append(cVar.b); - P.append(" not found in cache. Fetching from network."); - c.c.a.b0.c.a(P.toString()); + StringBuilder O = c.d.b.a.a.O("Animation for "); + O.append(cVar.b); + O.append(" not found in cache. Fetching from network."); + c.c.a.b0.c.a(O.toString()); try { return cVar.a(); } catch (IOException e) { diff --git a/app/src/main/java/c/c/a/j.java b/app/src/main/java/c/c/a/j.java index 6cee0897ff..a86c3472dc 100644 --- a/app/src/main/java/c/c/a/j.java +++ b/app/src/main/java/c/c/a/j.java @@ -15,8 +15,8 @@ import androidx.annotation.IntRange; import androidx.annotation.MainThread; import androidx.annotation.NonNull; import androidx.annotation.Nullable; -import c.c.a.a0.h0.c; -import c.c.a.a0.r; +import c.c.a.a0.i0.c; +import c.c.a.a0.s; import c.c.a.y.m.e; import com.google.android.material.shadow.ShadowDrawableWrapper; import java.util.ArrayList; @@ -43,7 +43,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { @Nullable /* renamed from: s reason: collision with root package name */ - public String f269s; + public String f270s; @Nullable public b t; @Nullable @@ -53,13 +53,13 @@ public class j extends Drawable implements Drawable.Callback, Animatable { public c.c.a.y.m.c w; /* renamed from: x reason: collision with root package name */ - public int f270x; + public int f271x; /* renamed from: y reason: collision with root package name */ - public boolean f271y; + public boolean f272y; /* renamed from: z reason: collision with root package name */ - public boolean f272z; + public boolean f273z; /* compiled from: LottieDrawable */ public class a implements o { @@ -125,17 +125,17 @@ public class j extends Drawable implements Drawable.Callback, Animatable { public final /* synthetic */ Object b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ c.c.a.c0.c f274c; + public final /* synthetic */ c.c.a.c0.c f275c; public e(c.c.a.y.f fVar, Object obj, c.c.a.c0.c cVar) { this.a = fVar; this.b = obj; - this.f274c = cVar; + this.f275c = cVar; } @Override // c.c.a.j.o public void a(d dVar) { - j.this.a(this.a, this.b, this.f274c); + j.this.a(this.a, this.b, this.f275c); } } @@ -276,7 +276,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { this.o = new ArrayList<>(); f fVar = new f(); this.p = fVar; - this.f270x = 255; + this.f271x = 255; this.A = true; this.B = false; dVar.i.add(fVar); @@ -293,7 +293,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { if (fVar == c.c.a.y.f.a) { cVar2.g(t, cVar); } else { - c.c.a.y.g gVar = fVar.f313c; + c.c.a.y.g gVar = fVar.f314c; if (gVar != null) { gVar.g(t, cVar); } else { @@ -306,7 +306,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { list = arrayList; } for (int i2 = 0; i2 < list.size(); i2++) { - ((c.c.a.y.f) list.get(i2)).f313c.g(t, cVar); + ((c.c.a.y.f) list.get(i2)).f314c.g(t, cVar); } z2 = true ^ list.isEmpty(); } @@ -321,7 +321,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { public final void b() { d dVar = this.j; - c.a aVar = r.a; + c.a aVar = s.a; Rect rect = dVar.j; c.c.a.y.m.e eVar = new c.c.a.y.m.e(Collections.emptyList(), dVar, "__container", -1, e.a.PRE_COMP, -1, null, Collections.emptyList(), new c.c.a.y.k.l(null, null, null, null, null, null, null, null, null), 0, 0, 0, 0.0f, 0.0f, rect.width(), rect.height(), null, null, Collections.emptyList(), 1, null, false); d dVar2 = this.j; @@ -330,7 +330,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { public void c() { c.c.a.b0.d dVar = this.k; - if (dVar.f265s) { + if (dVar.f266s) { dVar.cancel(); } this.j = null; @@ -373,7 +373,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { } this.i.reset(); this.i.preScale(width, height); - this.w.f(canvas, this.i, this.f270x); + this.w.f(canvas, this.i, this.f271x); if (i2 > 0) { canvas.restoreToCount(i2); } @@ -399,7 +399,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { } this.i.reset(); this.i.preScale(min2, min2); - this.w.f(canvas, this.i, this.f270x); + this.w.f(canvas, this.i, this.f271x); if (i2 > 0) { canvas.restoreToCount(i2); } @@ -436,7 +436,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { @Override // android.graphics.drawable.Drawable public int getAlpha() { - return this.f270x; + return this.f271x; } @Override // android.graphics.drawable.Drawable @@ -471,7 +471,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { if (dVar == null) { return false; } - return dVar.f265s; + return dVar.f266s; } @Override // android.graphics.drawable.Drawable.Callback @@ -506,7 +506,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { } if (this.m || h() == 0) { c.c.a.b0.d dVar = this.k; - dVar.f265s = true; + dVar.f266s = true; boolean k2 = dVar.k(); for (Animator.AnimatorListener animatorListener : dVar.j) { if (Build.VERSION.SDK_INT >= 26) { @@ -534,7 +534,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { } if (this.m || h() == 0) { c.c.a.b0.d dVar = this.k; - dVar.f265s = true; + dVar.f266s = true; dVar.l(); dVar.m = 0; if (dVar.k() && dVar.n == dVar.j()) { @@ -574,7 +574,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { } c.c.a.y.i d2 = dVar.d(str); if (d2 != null) { - m((int) (d2.b + d2.f314c)); + m((int) (d2.b + d2.f315c)); return; } throw new IllegalArgumentException(c.d.b.a.a.v("Cannot find marker with name ", str, ".")); @@ -606,7 +606,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { c.c.a.y.i d2 = dVar.d(str); if (d2 != null) { int i2 = (int) d2.b; - p(i2, ((int) d2.f314c) + i2); + p(i2, ((int) d2.f315c) + i2); return; } throw new IllegalArgumentException(c.d.b.a.a.v("Cannot find marker with name ", str, ".")); @@ -645,7 +645,7 @@ public class j extends Drawable implements Drawable.Callback, Animatable { @Override // android.graphics.drawable.Drawable public void setAlpha(@IntRange(from = 0, to = 255) int i2) { - this.f270x = i2; + this.f271x = i2; invalidateSelf(); } diff --git a/app/src/main/java/c/c/a/k.java b/app/src/main/java/c/c/a/k.java index ce8d78b745..2a44309a85 100644 --- a/app/src/main/java/c/c/a/k.java +++ b/app/src/main/java/c/c/a/k.java @@ -9,7 +9,7 @@ public class k { public final int b; /* renamed from: c reason: collision with root package name */ - public final String f275c; + public final String f276c; public final String d; @Nullable public Bitmap e; @@ -18,7 +18,7 @@ public class k { public k(int i, int i2, String str, String str2, String str3) { this.a = i; this.b = i2; - this.f275c = str; + this.f276c = str; this.d = str2; } } diff --git a/app/src/main/java/c/c/a/o.java b/app/src/main/java/c/c/a/o.java index c5af4cd64f..a65ca21f96 100644 --- a/app/src/main/java/c/c/a/o.java +++ b/app/src/main/java/c/c/a/o.java @@ -13,7 +13,7 @@ public interface o { public static final Integer b = 2; /* renamed from: c reason: collision with root package name */ - public static final Integer f276c = 3; + public static final Integer f277c = 3; public static final Integer d = 4; public static final PointF e = new PointF(); public static final PointF f = new PointF(); @@ -31,20 +31,20 @@ public interface o { public static final Float r = Float.valueOf(5.0f); /* renamed from: s reason: collision with root package name */ - public static final Float f277s = Float.valueOf(6.0f); + public static final Float f278s = Float.valueOf(6.0f); public static final Float t = Float.valueOf(7.0f); public static final Float u = Float.valueOf(8.0f); public static final Float v = Float.valueOf(9.0f); public static final Float w = Float.valueOf(10.0f); /* renamed from: x reason: collision with root package name */ - public static final Float f278x = Float.valueOf(11.0f); + public static final Float f279x = Float.valueOf(11.0f); /* renamed from: y reason: collision with root package name */ - public static final Float f279y = Float.valueOf(12.0f); + public static final Float f280y = Float.valueOf(12.0f); /* renamed from: z reason: collision with root package name */ - public static final Float f280z = Float.valueOf(12.1f); + public static final Float f281z = Float.valueOf(12.1f); static { Float valueOf = Float.valueOf(0.0f); diff --git a/app/src/main/java/c/c/a/q.java b/app/src/main/java/c/c/a/q.java index b7d27d36d2..473f37e5c7 100644 --- a/app/src/main/java/c/c/a/q.java +++ b/app/src/main/java/c/c/a/q.java @@ -31,7 +31,7 @@ public class q implements Runnable { r rVar2 = this.i; Throwable th = pVar.b; synchronized (rVar2) { - ArrayList arrayList = new ArrayList(rVar2.f281c); + ArrayList arrayList = new ArrayList(rVar2.f282c); if (arrayList.isEmpty()) { c.c("Lottie encountered an error but no failure listener was added:", th); return; diff --git a/app/src/main/java/c/c/a/r.java b/app/src/main/java/c/c/a/r.java index c155437304..ad1d401149 100644 --- a/app/src/main/java/c/c/a/r.java +++ b/app/src/main/java/c/c/a/r.java @@ -17,7 +17,7 @@ public class r { public final Set> b = new LinkedHashSet(1); /* renamed from: c reason: collision with root package name */ - public final Set> f281c = new LinkedHashSet(1); + public final Set> f282c = new LinkedHashSet(1); public final Handler d = new Handler(Looper.getMainLooper()); @Nullable public volatile p e = null; @@ -49,7 +49,7 @@ public class r { if (!(this.e == null || this.e.b == null)) { lVar.a(this.e.b); } - this.f281c.add(lVar); + this.f282c.add(lVar); return this; } diff --git a/app/src/main/java/c/c/a/s.java b/app/src/main/java/c/c/a/s.java index 43c128f5f1..98cf7befa9 100644 --- a/app/src/main/java/c/c/a/s.java +++ b/app/src/main/java/c/c/a/s.java @@ -11,7 +11,7 @@ public class s { public final Set b = new ArraySet(); /* renamed from: c reason: collision with root package name */ - public final Map f282c = new HashMap(); + public final Map f283c = new HashMap(); /* compiled from: PerformanceTracker */ public interface a { diff --git a/app/src/main/java/c/c/a/w/b/a.java b/app/src/main/java/c/c/a/w/b/a.java index c7c721dbc5..f398a0a211 100644 --- a/app/src/main/java/c/c/a/w/b/a.java +++ b/app/src/main/java/c/c/a/w/b/a.java @@ -27,7 +27,7 @@ public abstract class a implements a.b, k, e { public final Path b = new Path(); /* renamed from: c reason: collision with root package name */ - public final Path f283c = new Path(); + public final Path f284c = new Path(); public final RectF d = new RectF(); public final j e; public final c.c.a.y.m.b f; @@ -106,7 +106,7 @@ public abstract class a implements a.b, k, e { c cVar = list.get(size); if (cVar instanceof s) { s sVar2 = (s) cVar; - if (sVar2.f297c == 2) { + if (sVar2.f298c == 2) { sVar = sVar2; } } @@ -119,7 +119,7 @@ public abstract class a implements a.b, k, e { c cVar2 = list2.get(size2); if (cVar2 instanceof s) { s sVar3 = (s) cVar2; - if (sVar3.f297c == 2) { + if (sVar3.f298c == 2) { if (bVar != null) { this.g.add(bVar); } @@ -249,15 +249,15 @@ public abstract class a implements a.b, k, e { int size3 = bVar.a.size() - 1; float f3 = 0.0f; while (size3 >= 0) { - this.f283c.set(bVar.a.get(size3).getPath()); - this.f283c.transform(matrix); - this.a.setPath(this.f283c, z2); + this.f284c.set(bVar.a.get(size3).getPath()); + this.f284c.transform(matrix); + this.a.setPath(this.f284c, z2); float length2 = this.a.getLength(); if (floatValue3 > length) { float f4 = floatValue3 - length; if (f4 < f3 + length2 && f3 < f4) { - g.a(this.f283c, floatValue2 > length ? (floatValue2 - length) / length2 : 0.0f, Math.min(f4 / length2, f2), 0.0f); - canvas.drawPath(this.f283c, this.i); + g.a(this.f284c, floatValue2 > length ? (floatValue2 - length) / length2 : 0.0f, Math.min(f4 / length2, f2), 0.0f); + canvas.drawPath(this.f284c, this.i); f3 += length2; size3--; z2 = false; @@ -267,10 +267,10 @@ public abstract class a implements a.b, k, e { float f5 = f3 + length2; if (f5 >= floatValue2 && f3 <= floatValue3) { if (f5 > floatValue3 || floatValue2 >= f3) { - g.a(this.f283c, floatValue2 < f3 ? 0.0f : (floatValue2 - f3) / length2, floatValue3 > f5 ? 1.0f : (floatValue3 - f3) / length2, 0.0f); - canvas.drawPath(this.f283c, this.i); + g.a(this.f284c, floatValue2 < f3 ? 0.0f : (floatValue2 - f3) / length2, floatValue3 > f5 ? 1.0f : (floatValue3 - f3) / length2, 0.0f); + canvas.drawPath(this.f284c, this.i); } else { - canvas.drawPath(this.f283c, this.i); + canvas.drawPath(this.f284c, this.i); } } f3 += length2; diff --git a/app/src/main/java/c/c/a/w/b/d.java b/app/src/main/java/c/c/a/w/b/d.java index ccc67c3511..895decd24d 100644 --- a/app/src/main/java/c/c/a/w/b/d.java +++ b/app/src/main/java/c/c/a/w/b/d.java @@ -23,7 +23,7 @@ public class d implements e, m, a.b, g { public RectF b; /* renamed from: c reason: collision with root package name */ - public final Matrix f284c; + public final Matrix f285c; public final Path d; public final RectF e; public final String f; @@ -40,7 +40,7 @@ public class d implements e, m, a.b, g { this(jVar, bVar, r3, r4, r5, r6); l lVar; String str = mVar.a; - boolean z2 = mVar.f327c; + boolean z2 = mVar.f328c; List list = mVar.b; ArrayList arrayList = new ArrayList(list.size()); int i = 0; @@ -68,7 +68,7 @@ public class d implements e, m, a.b, g { public d(j jVar, b bVar, String str, boolean z2, List list, @Nullable l lVar) { this.a = new c.c.a.w.a(); this.b = new RectF(); - this.f284c = new Matrix(); + this.f285c = new Matrix(); this.d = new Path(); this.e = new RectF(); this.f = str; @@ -143,16 +143,16 @@ public class d implements e, m, a.b, g { @Override // c.c.a.w.b.e public void d(RectF rectF, Matrix matrix, boolean z2) { - this.f284c.set(matrix); + this.f285c.set(matrix); o oVar = this.k; if (oVar != null) { - this.f284c.preConcat(oVar.e()); + this.f285c.preConcat(oVar.e()); } this.e.set(0.0f, 0.0f, 0.0f, 0.0f); for (int size = this.h.size() - 1; size >= 0; size--) { c cVar = this.h.get(size); if (cVar instanceof e) { - ((e) cVar).d(this.e, this.f284c, z2); + ((e) cVar).d(this.e, this.f285c, z2); rectF.union(this.e); } } @@ -175,15 +175,15 @@ public class d implements e, m, a.b, g { public void f(Canvas canvas, Matrix matrix, int i) { boolean z2; if (!this.g) { - this.f284c.set(matrix); + this.f285c.set(matrix); o oVar = this.k; if (oVar != null) { - this.f284c.preConcat(oVar.e()); + this.f285c.preConcat(oVar.e()); a aVar = this.k.j; i = (int) ((((((float) (aVar == null ? 100 : aVar.e().intValue())) / 100.0f) * ((float) i)) / 255.0f) * 255.0f); } boolean z3 = false; - if (this.i.f272z) { + if (this.i.f273z) { int i2 = 0; int i3 = 0; while (true) { @@ -203,7 +203,7 @@ public class d implements e, m, a.b, g { } if (z3) { this.b.set(0.0f, 0.0f, 0.0f, 0.0f); - d(this.b, this.f284c, true); + d(this.b, this.f285c, true); this.a.setAlpha(i); c.c.a.b0.g.f(canvas, this.b, this.a, 31); } @@ -213,7 +213,7 @@ public class d implements e, m, a.b, g { for (int size = this.h.size() - 1; size >= 0; size--) { c cVar = this.h.get(size); if (cVar instanceof e) { - ((e) cVar).f(canvas, this.f284c, i); + ((e) cVar).f(canvas, this.f285c, i); } } if (z3) { @@ -237,10 +237,10 @@ public class d implements e, m, a.b, g { @Override // c.c.a.w.b.m public Path getPath() { - this.f284c.reset(); + this.f285c.reset(); o oVar = this.k; if (oVar != null) { - this.f284c.set(oVar.e()); + this.f285c.set(oVar.e()); } this.d.reset(); if (this.g) { @@ -249,7 +249,7 @@ public class d implements e, m, a.b, g { for (int size = this.h.size() - 1; size >= 0; size--) { c cVar = this.h.get(size); if (cVar instanceof m) { - this.d.addPath(((m) cVar).getPath(), this.f284c); + this.d.addPath(((m) cVar).getPath(), this.f285c); } } return this.d; diff --git a/app/src/main/java/c/c/a/w/b/f.java b/app/src/main/java/c/c/a/w/b/f.java index 5cc21c6631..cee10ba63d 100644 --- a/app/src/main/java/c/c/a/w/b/f.java +++ b/app/src/main/java/c/c/a/w/b/f.java @@ -15,7 +15,7 @@ public class f implements m, a.b, k { public final String b; /* renamed from: c reason: collision with root package name */ - public final j f285c; + public final j f286c; public final a d; public final a e; public final c.c.a.y.l.a f; @@ -24,8 +24,8 @@ public class f implements m, a.b, k { public f(j jVar, b bVar, c.c.a.y.l.a aVar) { this.b = aVar.a; - this.f285c = jVar; - a a = aVar.f317c.a(); + this.f286c = jVar; + a a = aVar.f318c.a(); this.d = a; a a2 = aVar.b.a(); this.e = a2; @@ -39,7 +39,7 @@ public class f implements m, a.b, k { @Override // c.c.a.w.c.a.b public void a() { this.h = false; - this.f285c.invalidateSelf(); + this.f286c.invalidateSelf(); } @Override // c.c.a.w.b.c @@ -48,7 +48,7 @@ public class f implements m, a.b, k { c cVar = list.get(i); if (cVar instanceof s) { s sVar = (s) cVar; - if (sVar.f297c == 1) { + if (sVar.f298c == 1) { this.g.a.add(sVar); sVar.b.add(this); } diff --git a/app/src/main/java/c/c/a/w/b/g.java b/app/src/main/java/c/c/a/w/b/g.java index cde63d58a3..11febde339 100644 --- a/app/src/main/java/c/c/a/w/b/g.java +++ b/app/src/main/java/c/c/a/w/b/g.java @@ -23,7 +23,7 @@ public class g implements e, a.b, k { public final Paint b = new c.c.a.w.a(1); /* renamed from: c reason: collision with root package name */ - public final b f286c; + public final b f287c; public final String d; public final boolean e; public final List f = new ArrayList(); @@ -36,8 +36,8 @@ public class g implements e, a.b, k { public g(j jVar, b bVar, l lVar) { Path path = new Path(); this.a = path; - this.f286c = bVar; - this.d = lVar.f326c; + this.f287c = bVar; + this.d = lVar.f327c; this.e = lVar.f; this.j = jVar; if (lVar.d == null || lVar.e == null) { @@ -121,7 +121,7 @@ public class g implements e, a.b, k { } else if (t == o.C) { a aVar3 = this.i; if (aVar3 != null) { - this.f286c.u.remove(aVar3); + this.f287c.u.remove(aVar3); } if (cVar == 0) { this.i = null; @@ -130,7 +130,7 @@ public class g implements e, a.b, k { p pVar = new p(cVar, null); this.i = pVar; pVar.a.add(this); - this.f286c.e(this.i); + this.f287c.e(this.i); } } diff --git a/app/src/main/java/c/c/a/w/b/h.java b/app/src/main/java/c/c/a/w/b/h.java index 5aa0508035..d70176d74c 100644 --- a/app/src/main/java/c/c/a/w/b/h.java +++ b/app/src/main/java/c/c/a/w/b/h.java @@ -30,7 +30,7 @@ public class h implements e, a.b, k { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final b f287c; + public final b f288c; public final LongSparseArray d = new LongSparseArray<>(); public final LongSparseArray e = new LongSparseArray<>(); public final Path f; @@ -55,14 +55,14 @@ public class h implements e, a.b, k { this.g = new c.c.a.w.a(1); this.h = new RectF(); this.i = new ArrayList(); - this.f287c = bVar; + this.f288c = bVar; this.a = dVar.g; this.b = dVar.h; this.q = jVar; this.j = dVar.a; path.setFillType(dVar.b); this.r = (int) (jVar.j.b() / 32.0f); - a a = dVar.f318c.a(); + a a = dVar.f319c.a(); this.k = a; a.a.add(this); bVar.e(a); @@ -193,7 +193,7 @@ public class h implements e, a.b, k { } else if (t == o.C) { a aVar2 = this.o; if (aVar2 != null) { - this.f287c.u.remove(aVar2); + this.f288c.u.remove(aVar2); } if (cVar == 0) { this.o = null; @@ -202,11 +202,11 @@ public class h implements e, a.b, k { p pVar = new p(cVar, null); this.o = pVar; pVar.a.add(this); - this.f287c.e(this.o); + this.f288c.e(this.o); } else if (t == o.D) { p pVar2 = this.p; if (pVar2 != null) { - this.f287c.u.remove(pVar2); + this.f288c.u.remove(pVar2); } if (cVar == 0) { this.p = null; @@ -215,7 +215,7 @@ public class h implements e, a.b, k { p pVar3 = new p(cVar, null); this.p = pVar3; pVar3.a.add(this); - this.f287c.e(this.p); + this.f288c.e(this.p); } } diff --git a/app/src/main/java/c/c/a/w/b/i.java b/app/src/main/java/c/c/a/w/b/i.java index d82d6bf043..b4447a3b14 100644 --- a/app/src/main/java/c/c/a/w/b/i.java +++ b/app/src/main/java/c/c/a/w/b/i.java @@ -24,18 +24,18 @@ public class i extends a { public final LongSparseArray r = new LongSparseArray<>(); /* renamed from: s reason: collision with root package name */ - public final RectF f288s = new RectF(); + public final RectF f289s = new RectF(); public final int t; public final int u; public final a v; public final a w; /* renamed from: x reason: collision with root package name */ - public final a f289x; + public final a f290x; @Nullable /* renamed from: y reason: collision with root package name */ - public p f290y; + public p f291y; public i(j jVar, b bVar, e eVar) { super(jVar, bVar, c.c.a.y.b.k(eVar.h), c.c.a.y.b.l(eVar.i), eVar.j, eVar.d, eVar.g, eVar.k, eVar.l); @@ -43,7 +43,7 @@ public class i extends a { this.t = eVar.b; this.p = eVar.m; this.u = (int) (jVar.j.b() / 32.0f); - a a = eVar.f319c.a(); + a a = eVar.f320c.a(); this.v = a; a.a.add(this); bVar.e(a); @@ -52,13 +52,13 @@ public class i extends a { a2.a.add(this); bVar.e(a2); a a3 = eVar.f.a(); - this.f289x = a3; + this.f290x = a3; a3.a.add(this); bVar.e(a3); } public final int[] e(int[] iArr) { - p pVar = this.f290y; + p pVar = this.f291y; if (pVar != null) { Integer[] numArr = (Integer[]) pVar.e(); int i = 0; @@ -85,13 +85,13 @@ public class i extends a { public void f(Canvas canvas, Matrix matrix, int i) { RadialGradient radialGradient; if (!this.p) { - d(this.f288s, matrix, false); + d(this.f289s, matrix, false); if (this.t == 1) { long h = (long) h(); radialGradient = this.q.get(h); if (radialGradient == null) { PointF e = this.w.e(); - PointF e2 = this.f289x.e(); + PointF e2 = this.f290x.e(); c e3 = this.v.e(); radialGradient = new LinearGradient(e.x, e.y, e2.x, e2.y, e(e3.b), e3.a, Shader.TileMode.CLAMP); this.q.put(h, radialGradient); @@ -101,7 +101,7 @@ public class i extends a { radialGradient = this.r.get(h2); if (radialGradient == null) { PointF e4 = this.w.e(); - PointF e5 = this.f289x.e(); + PointF e5 = this.f290x.e(); c e6 = this.v.e(); int[] e7 = e(e6.b); float[] fArr = e6.a; @@ -123,18 +123,18 @@ public class i extends a { public void g(T t, @Nullable c.c.a.c0.c cVar) { super.g(t, cVar); if (t == o.D) { - p pVar = this.f290y; + p pVar = this.f291y; if (pVar != null) { this.f.u.remove(pVar); } if (cVar == null) { - this.f290y = null; + this.f291y = null; return; } p pVar2 = new p(cVar, null); - this.f290y = pVar2; + this.f291y = pVar2; pVar2.a.add(this); - this.f.e(this.f290y); + this.f.e(this.f291y); } } @@ -145,7 +145,7 @@ public class i extends a { public final int h() { int round = Math.round(this.w.d * ((float) this.u)); - int round2 = Math.round(this.f289x.d * ((float) this.u)); + int round2 = Math.round(this.f290x.d * ((float) this.u)); int round3 = Math.round(this.v.d * ((float) this.u)); int i = 17; if (round != 0) { diff --git a/app/src/main/java/c/c/a/w/b/l.java b/app/src/main/java/c/c/a/w/b/l.java index 192f76af5d..67315e1d02 100644 --- a/app/src/main/java/c/c/a/w/b/l.java +++ b/app/src/main/java/c/c/a/w/b/l.java @@ -15,7 +15,7 @@ public class l implements m, j { public final Path b = new Path(); /* renamed from: c reason: collision with root package name */ - public final Path f291c = new Path(); + public final Path f292c = new Path(); public final List d = new ArrayList(); public final g e; @@ -40,8 +40,8 @@ public class l implements m, j { if (oVar != null) { matrix2 = oVar.e(); } else { - dVar.f284c.reset(); - matrix2 = dVar.f284c; + dVar.f285c.reset(); + matrix2 = dVar.f285c; } path.transform(matrix2); this.b.addPath(path); @@ -60,8 +60,8 @@ public class l implements m, j { if (oVar2 != null) { matrix = oVar2.e(); } else { - dVar2.f284c.reset(); - matrix = dVar2.f284c; + dVar2.f285c.reset(); + matrix = dVar2.f285c; } path2.transform(matrix); this.a.addPath(path2); @@ -69,7 +69,7 @@ public class l implements m, j { } else { this.a.set(mVar2.getPath()); } - this.f291c.op(this.a, this.b, op); + this.f292c.op(this.a, this.b, op); } @Override // c.c.a.w.b.c @@ -94,15 +94,15 @@ public class l implements m, j { @Override // c.c.a.w.b.m public Path getPath() { - this.f291c.reset(); + this.f292c.reset(); g gVar = this.e; - if (gVar.f321c) { - return this.f291c; + if (gVar.f322c) { + return this.f292c; } int ordinal = gVar.b.ordinal(); if (ordinal == 0) { for (int i = 0; i < this.d.size(); i++) { - this.f291c.addPath(this.d.get(i).getPath()); + this.f292c.addPath(this.d.get(i).getPath()); } } else if (ordinal == 1) { a(Path.Op.UNION); @@ -113,6 +113,6 @@ public class l implements m, j { } else if (ordinal == 4) { a(Path.Op.XOR); } - return this.f291c; + return this.f292c; } } diff --git a/app/src/main/java/c/c/a/w/b/n.java b/app/src/main/java/c/c/a/w/b/n.java index fb6cbf1fa5..e10c7a8a85 100644 --- a/app/src/main/java/c/c/a/w/b/n.java +++ b/app/src/main/java/c/c/a/w/b/n.java @@ -18,7 +18,7 @@ public class n implements m, a.b, k { public final String b; /* renamed from: c reason: collision with root package name */ - public final j f292c; + public final j f293c; public final h.a d; public final boolean e; public final a f; @@ -34,12 +34,12 @@ public class n implements m, a.b, k { public boolean n; public n(j jVar, b bVar, h hVar) { - this.f292c = jVar; + this.f293c = jVar; this.b = hVar.a; h.a aVar = hVar.b; this.d = aVar; this.e = hVar.j; - a a = hVar.f322c.a(); + a a = hVar.f323c.a(); this.f = a; a a2 = hVar.d.a(); this.g = a2; @@ -80,7 +80,7 @@ public class n implements m, a.b, k { @Override // c.c.a.w.c.a.b public void a() { this.n = false; - this.f292c.invalidateSelf(); + this.f293c.invalidateSelf(); } @Override // c.c.a.w.b.c @@ -89,7 +89,7 @@ public class n implements m, a.b, k { c cVar = list.get(i); if (cVar instanceof s) { s sVar = (s) cVar; - if (sVar.f297c == 1) { + if (sVar.f298c == 1) { this.m.a.add(sVar); sVar.b.add(this); } @@ -108,7 +108,7 @@ public class n implements m, a.b, k { public void g(T t, @Nullable c cVar) { a aVar; a aVar2; - if (t == o.f277s) { + if (t == o.f278s) { a aVar3 = this.f; c cVar2 = aVar3.e; aVar3.e = cVar; @@ -130,7 +130,7 @@ public class n implements m, a.b, k { } else if (t == o.w && (aVar = this.k) != null) { c cVar7 = aVar.e; aVar.e = cVar; - } else if (t == o.f278x) { + } else if (t == o.f279x) { a aVar7 = this.l; c cVar8 = aVar7.e; aVar7.e = cVar; diff --git a/app/src/main/java/c/c/a/w/b/o.java b/app/src/main/java/c/c/a/w/b/o.java index a9b4f31c41..528c28461a 100644 --- a/app/src/main/java/c/c/a/w/b/o.java +++ b/app/src/main/java/c/c/a/w/b/o.java @@ -17,7 +17,7 @@ public class o implements a.b, k, m { public final RectF b = new RectF(); /* renamed from: c reason: collision with root package name */ - public final String f293c; + public final String f294c; public final boolean d; public final j e; public final a f; @@ -27,12 +27,12 @@ public class o implements a.b, k, m { public boolean j; public o(j jVar, b bVar, i iVar) { - this.f293c = iVar.a; + this.f294c = iVar.a; this.d = iVar.e; this.e = jVar; a a = iVar.b.a(); this.f = a; - a a2 = iVar.f323c.a(); + a a2 = iVar.f324c.a(); this.g = a2; a a3 = iVar.d.a(); this.h = a3; @@ -56,7 +56,7 @@ public class o implements a.b, k, m { c cVar = list.get(i); if (cVar instanceof s) { s sVar = (s) cVar; - if (sVar.f297c == 1) { + if (sVar.f298c == 1) { this.i.a.add(sVar); sVar.b.add(this); } @@ -90,7 +90,7 @@ public class o implements a.b, k, m { @Override // c.c.a.w.b.c public String getName() { - return this.f293c; + return this.f294c; } @Override // c.c.a.w.b.m diff --git a/app/src/main/java/c/c/a/w/b/p.java b/app/src/main/java/c/c/a/w/b/p.java index 6bdac65c75..eb2b9e2122 100644 --- a/app/src/main/java/c/c/a/w/b/p.java +++ b/app/src/main/java/c/c/a/w/b/p.java @@ -23,7 +23,7 @@ public class p implements e, m, j, a.b, k { public final Path b = new Path(); /* renamed from: c reason: collision with root package name */ - public final j f294c; + public final j f295c; public final b d; public final String e; public final boolean f; @@ -33,7 +33,7 @@ public class p implements e, m, j, a.b, k { public d j; public p(j jVar, b bVar, c.c.a.y.l.j jVar2) { - this.f294c = jVar; + this.f295c = jVar; this.d = bVar; this.e = jVar2.a; this.f = jVar2.e; @@ -41,7 +41,7 @@ public class p implements e, m, j, a.b, k { this.g = a; bVar.e(a); a.a.add(this); - a a2 = jVar2.f324c.a(); + a a2 = jVar2.f325c.a(); this.h = a2; bVar.e(a2); a2.a.add(this); @@ -55,7 +55,7 @@ public class p implements e, m, j, a.b, k { @Override // c.c.a.w.c.a.b public void a() { - this.f294c.invalidateSelf(); + this.f295c.invalidateSelf(); } @Override // c.c.a.w.b.c @@ -84,7 +84,7 @@ public class p implements e, m, j, a.b, k { listIterator.remove(); } Collections.reverse(arrayList); - this.j = new d(this.f294c, this.d, "Repeater", this.f, arrayList, null); + this.j = new d(this.f295c, this.d, "Repeater", this.f, arrayList, null); } } diff --git a/app/src/main/java/c/c/a/w/b/q.java b/app/src/main/java/c/c/a/w/b/q.java index 4d46b9a0bf..cc5559078a 100644 --- a/app/src/main/java/c/c/a/w/b/q.java +++ b/app/src/main/java/c/c/a/w/b/q.java @@ -13,15 +13,15 @@ public class q implements m, a.b { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final j f295c; + public final j f296c; public final a d; public boolean e; public b f = new b(); public q(j jVar, b bVar, n nVar) { this.b = nVar.d; - this.f295c = jVar; - a a = nVar.f328c.a(); + this.f296c = jVar; + a a = nVar.f329c.a(); this.d = a; bVar.e(a); a.a.add(this); @@ -30,7 +30,7 @@ public class q implements m, a.b { @Override // c.c.a.w.c.a.b public void a() { this.e = false; - this.f295c.invalidateSelf(); + this.f296c.invalidateSelf(); } @Override // c.c.a.w.b.c @@ -39,7 +39,7 @@ public class q implements m, a.b { c cVar = list.get(i); if (cVar instanceof s) { s sVar = (s) cVar; - if (sVar.f297c == 1) { + if (sVar.f298c == 1) { this.f.a.add(sVar); sVar.b.add(this); } diff --git a/app/src/main/java/c/c/a/w/b/r.java b/app/src/main/java/c/c/a/w/b/r.java index 50f874fd3a..db3ca9ef0e 100644 --- a/app/src/main/java/c/c/a/w/b/r.java +++ b/app/src/main/java/c/c/a/w/b/r.java @@ -20,10 +20,10 @@ public class r extends a { @Nullable /* renamed from: s reason: collision with root package name */ - public a f296s; + public a f297s; public r(j jVar, b bVar, o oVar) { - super(jVar, bVar, c.c.a.y.b.k(oVar.g), c.c.a.y.b.l(oVar.h), oVar.i, oVar.e, oVar.f, oVar.f329c, oVar.b); + super(jVar, bVar, c.c.a.y.b.k(oVar.g), c.c.a.y.b.l(oVar.h), oVar.i, oVar.e, oVar.f, oVar.f330c, oVar.b); this.o = bVar; this.p = oVar.a; this.q = oVar.j; @@ -39,7 +39,7 @@ public class r extends a { Paint paint = this.i; c.c.a.w.c.b bVar = (c.c.a.w.c.b) this.r; paint.setColor(bVar.j(bVar.a(), bVar.c())); - a aVar = this.f296s; + a aVar = this.f297s; if (aVar != null) { this.i.setColorFilter(aVar.e()); } @@ -57,16 +57,16 @@ public class r extends a { c cVar2 = aVar.e; aVar.e = cVar; } else if (t == c.c.a.o.C) { - a aVar2 = this.f296s; + a aVar2 = this.f297s; if (aVar2 != null) { this.o.u.remove(aVar2); } if (cVar == 0) { - this.f296s = null; + this.f297s = null; return; } p pVar = new p(cVar, null); - this.f296s = pVar; + this.f297s = pVar; pVar.a.add(this); this.o.e(this.r); } diff --git a/app/src/main/java/c/c/a/w/b/s.java b/app/src/main/java/c/c/a/w/b/s.java index 13d18733e9..fee8ae3275 100644 --- a/app/src/main/java/c/c/a/w/b/s.java +++ b/app/src/main/java/c/c/a/w/b/s.java @@ -11,15 +11,15 @@ public class s implements c, a.b { public final List b = new ArrayList(); /* renamed from: c reason: collision with root package name */ - public final int f297c; + public final int f298c; public final a d; public final a e; public final a f; public s(b bVar, p pVar) { this.a = pVar.f; - this.f297c = pVar.b; - a a = pVar.f330c.a(); + this.f298c = pVar.b; + a a = pVar.f331c.a(); this.d = a; a a2 = pVar.d.a(); this.e = a2; diff --git a/app/src/main/java/c/c/a/w/c/a.java b/app/src/main/java/c/c/a/w/c/a.java index 57eb77f2f0..5886f70c1e 100644 --- a/app/src/main/java/c/c/a/w/c/a.java +++ b/app/src/main/java/c/c/a/w/c/a.java @@ -12,7 +12,7 @@ public abstract class a { public boolean b = false; /* renamed from: c reason: collision with root package name */ - public final d f298c; + public final d f299c; public float d = 0.0f; @Nullable public c.c.a.c0.c e; @@ -86,7 +86,7 @@ public abstract class a { public c.c.a.c0.a b; /* renamed from: c reason: collision with root package name */ - public c.c.a.c0.a f299c = null; + public c.c.a.c0.a f300c = null; public float d = -1.0f; public e(List> list) { @@ -96,12 +96,12 @@ public abstract class a { @Override // c.c.a.w.c.a.d public boolean a(float f) { - c.c.a.c0.a aVar = this.f299c; + c.c.a.c0.a aVar = this.f300c; c.c.a.c0.a aVar2 = this.b; if (aVar == aVar2 && this.d == f) { return true; } - this.f299c = aVar2; + this.f300c = aVar2; this.d = f; return false; } @@ -205,11 +205,11 @@ public abstract class a { } else { dVar = list.size() == 1 ? new f<>(list) : new e<>(list); } - this.f298c = dVar; + this.f299c = dVar; } public c.c.a.c0.a a() { - c.c.a.c0.a b2 = this.f298c.b(); + c.c.a.c0.a b2 = this.f299c.b(); c.c.a.c.a("BaseKeyframeAnimation#getCurrentKeyframe"); return b2; } @@ -217,7 +217,7 @@ public abstract class a { @FloatRange(from = ShadowDrawableWrapper.COS_45, to = 1.0d) public float b() { if (this.h == -1.0f) { - this.h = this.f298c.d(); + this.h = this.f299c.d(); } return this.h; } @@ -243,7 +243,7 @@ public abstract class a { public A e() { float c2 = c(); - if (this.e == null && this.f298c.a(c2)) { + if (this.e == null && this.f299c.a(c2)) { return this.f; } A f2 = f(a(), c2); @@ -260,14 +260,14 @@ public abstract class a { } public void h(@FloatRange(from = 0.0d, to = 1.0d) float f2) { - if (!this.f298c.isEmpty()) { + if (!this.f299c.isEmpty()) { if (this.g == -1.0f) { - this.g = this.f298c.e(); + this.g = this.f299c.e(); } float f3 = this.g; if (f2 < f3) { if (f3 == -1.0f) { - this.g = this.f298c.e(); + this.g = this.f299c.e(); } f2 = this.g; } else if (f2 > b()) { @@ -275,7 +275,7 @@ public abstract class a { } if (f2 != this.d) { this.d = f2; - if (this.f298c.c(f2)) { + if (this.f299c.c(f2)) { g(); } } diff --git a/app/src/main/java/c/c/a/w/c/b.java b/app/src/main/java/c/c/a/w/c/b.java index b72127d8a9..930a6b0a7c 100644 --- a/app/src/main/java/c/c/a/w/c/b.java +++ b/app/src/main/java/c/c/a/w/c/b.java @@ -1,9 +1,9 @@ package c.c.a.w.c; +import c.c.a.a0.d; import c.c.a.b0.f; import c.c.a.c0.a; import c.c.a.c0.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.List; /* compiled from: ColorKeyframeAnimation */ public class b extends f { @@ -19,12 +19,12 @@ public class b extends f { public int j(a aVar, float f) { Integer num; Integer num2 = aVar.b; - if (num2 == null || aVar.f267c == null) { + if (num2 == null || aVar.f268c == null) { throw new IllegalStateException("Missing values for keyframe."); } int intValue = num2.intValue(); - int intValue2 = aVar.f267c.intValue(); + int intValue2 = aVar.f268c.intValue(); c cVar = this.e; - return (cVar == 0 || (num = (Integer) cVar.a(aVar.e, aVar.f.floatValue(), Integer.valueOf(intValue), Integer.valueOf(intValue2), f, d(), this.d)) == null) ? AnimatableValueParser.k0(f.b(f, 0.0f, 1.0f), intValue, intValue2) : num.intValue(); + return (cVar == 0 || (num = (Integer) cVar.a(aVar.e, aVar.f.floatValue(), Integer.valueOf(intValue), Integer.valueOf(intValue2), f, d(), this.d)) == null) ? d.k0(f.b(f, 0.0f, 1.0f), intValue, intValue2) : num.intValue(); } } diff --git a/app/src/main/java/c/c/a/w/c/c.java b/app/src/main/java/c/c/a/w/c/c.java index c87322cac1..4034c82989 100644 --- a/app/src/main/java/c/c/a/w/c/c.java +++ b/app/src/main/java/c/c/a/w/c/c.java @@ -20,11 +20,11 @@ public class c extends f { public float k(a aVar, float f) { Float f2; - if (aVar.b == null || aVar.f267c == null) { + if (aVar.b == null || aVar.f268c == null) { throw new IllegalStateException("Missing values for keyframe."); } c.c.a.c0.c cVar = this.e; - if (cVar != 0 && (f2 = (Float) cVar.a(aVar.e, aVar.f.floatValue(), aVar.b, aVar.f267c, f, d(), this.d)) != null) { + if (cVar != 0 && (f2 = (Float) cVar.a(aVar.e, aVar.f.floatValue(), aVar.b, aVar.f268c, f, d(), this.d)) != null) { return f2.floatValue(); } if (aVar.g == -3987645.8f) { @@ -32,7 +32,7 @@ public class c extends f { } float f3 = aVar.g; if (aVar.h == -3987645.8f) { - aVar.h = aVar.f267c.floatValue(); + aVar.h = aVar.f268c.floatValue(); } return f.e(f3, aVar.h, f); } diff --git a/app/src/main/java/c/c/a/w/c/d.java b/app/src/main/java/c/c/a/w/c/d.java index 68acfdd4e2..aa900b9c02 100644 --- a/app/src/main/java/c/c/a/w/c/d.java +++ b/app/src/main/java/c/c/a/w/c/d.java @@ -3,7 +3,6 @@ package c.c.a.w.c; import c.c.a.b0.f; import c.c.a.c0.a; import c.c.a.y.l.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.List; import java.util.Objects; /* compiled from: GradientColorKeyframeAnimation */ @@ -22,18 +21,18 @@ public class d extends f { public Object f(a aVar, float f) { c cVar = this.i; c cVar2 = aVar.b; - c cVar3 = aVar.f267c; + c cVar3 = aVar.f268c; Objects.requireNonNull(cVar); if (cVar2.b.length == cVar3.b.length) { for (int i = 0; i < cVar2.b.length; i++) { cVar.a[i] = f.e(cVar2.a[i], cVar3.a[i], f); - cVar.b[i] = AnimatableValueParser.k0(f, cVar2.b[i], cVar3.b[i]); + cVar.b[i] = c.c.a.a0.d.k0(f, cVar2.b[i], cVar3.b[i]); } return this.i; } - StringBuilder P = c.d.b.a.a.P("Cannot interpolate between gradients. Lengths vary ("); - P.append(cVar2.b.length); - P.append(" vs "); - throw new IllegalArgumentException(c.d.b.a.a.z(P, cVar3.b.length, ")")); + StringBuilder O = c.d.b.a.a.O("Cannot interpolate between gradients. Lengths vary ("); + O.append(cVar2.b.length); + O.append(" vs "); + throw new IllegalArgumentException(c.d.b.a.a.z(O, cVar3.b.length, ")")); } } diff --git a/app/src/main/java/c/c/a/w/c/e.java b/app/src/main/java/c/c/a/w/c/e.java index 6ad8c5edde..c502e2a964 100644 --- a/app/src/main/java/c/c/a/w/c/e.java +++ b/app/src/main/java/c/c/a/w/c/e.java @@ -18,11 +18,11 @@ public class e extends f { public int j(a aVar, float f) { Integer num; - if (aVar.b == null || aVar.f267c == null) { + if (aVar.b == null || aVar.f268c == null) { throw new IllegalStateException("Missing values for keyframe."); } c cVar = this.e; - if (cVar != 0 && (num = (Integer) cVar.a(aVar.e, aVar.f.floatValue(), aVar.b, aVar.f267c, f, d(), this.d)) != null) { + if (cVar != 0 && (num = (Integer) cVar.a(aVar.e, aVar.f.floatValue(), aVar.b, aVar.f268c, f, d(), this.d)) != null) { return num.intValue(); } if (aVar.i == 784923401) { @@ -30,7 +30,7 @@ public class e extends f { } int i = aVar.i; if (aVar.j == 784923401) { - aVar.j = aVar.f267c.intValue(); + aVar.j = aVar.f268c.intValue(); } int i2 = aVar.j; PointF pointF = f.a; diff --git a/app/src/main/java/c/c/a/w/c/g.java b/app/src/main/java/c/c/a/w/c/g.java index f74c5c5962..cca1ce67f2 100644 --- a/app/src/main/java/c/c/a/w/c/g.java +++ b/app/src/main/java/c/c/a/w/c/g.java @@ -11,15 +11,15 @@ public class g { public final List> b; /* renamed from: c reason: collision with root package name */ - public final List f300c; + public final List f301c; public g(List list) { - this.f300c = list; + this.f301c = list; this.a = new ArrayList(list.size()); this.b = new ArrayList(list.size()); for (int i = 0; i < list.size(); i++) { this.a.add(list.get(i).b.a()); - this.b.add(list.get(i).f320c.a()); + this.b.add(list.get(i).f321c.a()); } } } diff --git a/app/src/main/java/c/c/a/w/c/h.java b/app/src/main/java/c/c/a/w/c/h.java index 7490144544..ec5e7ba883 100644 --- a/app/src/main/java/c/c/a/w/c/h.java +++ b/app/src/main/java/c/c/a/w/c/h.java @@ -14,16 +14,16 @@ public class h extends a { public final a p; public h(d dVar, a aVar) { - super(dVar, aVar.b, aVar.f267c, aVar.d, aVar.e, aVar.f); + super(dVar, aVar.b, aVar.f268c, aVar.d, aVar.e, aVar.f); this.p = aVar; e(); } public void e() { PointF pointF; - PointF pointF2 = this.f267c; + PointF pointF2 = this.f268c; boolean z2 = (pointF2 == null || (pointF = this.b) == null || !pointF.equals(pointF2.x, pointF2.y)) ? false : true; - PointF pointF3 = this.f267c; + PointF pointF3 = this.f268c; if (pointF3 != null && !z2) { PointF pointF4 = this.b; PointF pointF5 = pointF3; diff --git a/app/src/main/java/c/c/a/w/c/i.java b/app/src/main/java/c/c/a/w/c/i.java index 498cf58f6b..44a630b921 100644 --- a/app/src/main/java/c/c/a/w/c/i.java +++ b/app/src/main/java/c/c/a/w/c/i.java @@ -29,7 +29,7 @@ public class i extends f { return aVar.b; } c cVar = this.e; - if (cVar != 0 && (pointF = (PointF) cVar.a(hVar.e, hVar.f.floatValue(), hVar.b, hVar.f267c, d(), f, this.d)) != null) { + if (cVar != 0 && (pointF = (PointF) cVar.a(hVar.e, hVar.f.floatValue(), hVar.b, hVar.f268c, d(), f, this.d)) != null) { return pointF; } if (this.k != hVar) { diff --git a/app/src/main/java/c/c/a/w/c/j.java b/app/src/main/java/c/c/a/w/c/j.java index 3dfa23db78..93e5ab975f 100644 --- a/app/src/main/java/c/c/a/w/c/j.java +++ b/app/src/main/java/c/c/a/w/c/j.java @@ -17,7 +17,7 @@ public class j extends f { PointF pointF; PointF pointF2; PointF pointF3 = aVar.b; - if (pointF3 == null || (pointF = aVar.f267c) == null) { + if (pointF3 == null || (pointF = aVar.f268c) == null) { throw new IllegalStateException("Missing values for keyframe."); } PointF pointF4 = pointF3; diff --git a/app/src/main/java/c/c/a/w/c/k.java b/app/src/main/java/c/c/a/w/c/k.java index 474ead1a6c..26012ae836 100644 --- a/app/src/main/java/c/c/a/w/c/k.java +++ b/app/src/main/java/c/c/a/w/c/k.java @@ -18,7 +18,7 @@ public class k extends f { d dVar; d dVar2; d dVar3 = aVar.b; - if (dVar3 == null || (dVar = aVar.f267c) == null) { + if (dVar3 == null || (dVar = aVar.f268c) == null) { throw new IllegalStateException("Missing values for keyframe."); } d dVar4 = dVar3; diff --git a/app/src/main/java/c/c/a/w/c/l.java b/app/src/main/java/c/c/a/w/c/l.java index 72312d2e62..07708c2a3e 100644 --- a/app/src/main/java/c/c/a/w/c/l.java +++ b/app/src/main/java/c/c/a/w/c/l.java @@ -21,18 +21,18 @@ public class l extends a { @Override // c.c.a.w.c.a public Path f(a aVar, float f) { k kVar = aVar.b; - k kVar2 = aVar.f267c; + k kVar2 = aVar.f268c; k kVar3 = this.i; if (kVar3.b == null) { kVar3.b = new PointF(); } - kVar3.f325c = kVar.f325c || kVar2.f325c; + kVar3.f326c = kVar.f326c || kVar2.f326c; if (kVar.a.size() != kVar2.a.size()) { - StringBuilder P = c.d.b.a.a.P("Curves must have the same number of control points. Shape 1: "); - P.append(kVar.a.size()); - P.append("\tShape 2: "); - P.append(kVar2.a.size()); - c.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Curves must have the same number of control points. Shape 1: "); + O.append(kVar.a.size()); + O.append("\tShape 2: "); + O.append(kVar2.a.size()); + c.b(O.toString()); } int min = Math.min(kVar.a.size(), kVar2.a.size()); if (kVar3.a.size() < min) { @@ -58,13 +58,13 @@ public class l extends a { c.c.a.y.a aVar3 = kVar2.a.get(size3); PointF pointF3 = aVar2.a; PointF pointF4 = aVar2.b; - PointF pointF5 = aVar2.f304c; + PointF pointF5 = aVar2.f305c; PointF pointF6 = aVar3.a; PointF pointF7 = aVar3.b; - PointF pointF8 = aVar3.f304c; + PointF pointF8 = aVar3.f305c; kVar3.a.get(size3).a.set(f.e(pointF3.x, pointF6.x, f), f.e(pointF3.y, pointF6.y, f)); kVar3.a.get(size3).b.set(f.e(pointF4.x, pointF7.x, f), f.e(pointF4.y, pointF7.y, f)); - kVar3.a.get(size3).f304c.set(f.e(pointF5.x, pointF8.x, f), f.e(pointF5.y, pointF8.y, f)); + kVar3.a.get(size3).f305c.set(f.e(pointF5.x, pointF8.x, f), f.e(pointF5.y, pointF8.y, f)); } k kVar4 = this.i; Path path = this.j; @@ -76,7 +76,7 @@ public class l extends a { c.c.a.y.a aVar4 = kVar4.a.get(i); PointF pointF10 = aVar4.a; PointF pointF11 = aVar4.b; - PointF pointF12 = aVar4.f304c; + PointF pointF12 = aVar4.f305c; if (!pointF10.equals(f.a) || !pointF11.equals(pointF12)) { path.cubicTo(pointF10.x, pointF10.y, pointF11.x, pointF11.y, pointF12.x, pointF12.y); } else { @@ -84,7 +84,7 @@ public class l extends a { } f.a.set(pointF12.x, pointF12.y); } - if (kVar4.f325c) { + if (kVar4.f326c) { path.close(); } return this.j; diff --git a/app/src/main/java/c/c/a/w/c/o.java b/app/src/main/java/c/c/a/w/c/o.java index fe3c85128c..1ceb460e45 100644 --- a/app/src/main/java/c/c/a/w/c/o.java +++ b/app/src/main/java/c/c/a/w/c/o.java @@ -19,7 +19,7 @@ public class o { public final Matrix b; /* renamed from: c reason: collision with root package name */ - public final Matrix f301c; + public final Matrix f302c; public final Matrix d; public final float[] e; @NonNull @@ -46,7 +46,7 @@ public class o { this.f = eVar == null ? null : eVar.a(); m mVar = lVar.b; this.g = mVar == null ? null : mVar.a(); - g gVar = lVar.f316c; + g gVar = lVar.f317c; this.h = gVar == null ? null : gVar.a(); b bVar = lVar.d; this.i = bVar == null ? null : bVar.a(); @@ -55,12 +55,12 @@ public class o { this.k = cVar; if (cVar != null) { this.b = new Matrix(); - this.f301c = new Matrix(); + this.f302c = new Matrix(); this.d = new Matrix(); this.e = new float[9]; } else { this.b = null; - this.f301c = null; + this.f302c = null; this.d = null; this.e = null; } @@ -178,7 +178,7 @@ public class o { c cVar7 = aVar6.e; aVar6.e = cVar; return true; - } else if (t == c.c.a.o.f276c) { + } else if (t == c.c.a.o.f277c) { a aVar7 = this.j; if (aVar7 == null) { this.j = new p(cVar, 100); @@ -187,8 +187,8 @@ public class o { c cVar8 = aVar7.e; aVar7.e = cVar; return true; - } else if (t != c.c.a.o.f279y || (aVar2 = this.m) == null) { - if (t != c.c.a.o.f280z || (aVar = this.n) == null) { + } else if (t != c.c.a.o.f280y || (aVar2 = this.m) == null) { + if (t != c.c.a.o.f281z || (aVar = this.n) == null) { if (t == c.c.a.o.m && (cVar3 = this.k) != null) { if (cVar3 == null) { this.k = new c(Collections.singletonList(new c.c.a.c0.a(Float.valueOf(0.0f)))); @@ -269,7 +269,7 @@ public class o { fArr2[3] = (float) Math.tan(Math.toRadians((double) this.k.j())); fArr2[4] = 1.0f; fArr2[8] = 1.0f; - this.f301c.setValues(fArr2); + this.f302c.setValues(fArr2); d(); float[] fArr3 = this.e; fArr3[0] = cos; @@ -278,8 +278,8 @@ public class o { fArr3[4] = cos; fArr3[8] = 1.0f; this.d.setValues(fArr3); - this.f301c.preConcat(this.b); - this.d.preConcat(this.f301c); + this.f302c.preConcat(this.b); + this.d.preConcat(this.f302c); this.a.preConcat(this.d); } a aVar3 = this.h; diff --git a/app/src/main/java/c/c/a/x/a.java b/app/src/main/java/c/c/a/x/a.java index e39bfb75b9..eaf5a565b0 100644 --- a/app/src/main/java/c/c/a/x/a.java +++ b/app/src/main/java/c/c/a/x/a.java @@ -14,7 +14,7 @@ public class a { public final Map, Typeface> b = new HashMap(); /* renamed from: c reason: collision with root package name */ - public final Map f302c = new HashMap(); + public final Map f303c = new HashMap(); public final AssetManager d; public String e = ".ttf"; diff --git a/app/src/main/java/c/c/a/x/b.java b/app/src/main/java/c/c/a/x/b.java index b56f54278e..f3714826fb 100644 --- a/app/src/main/java/c/c/a/x/b.java +++ b/app/src/main/java/c/c/a/x/b.java @@ -18,17 +18,17 @@ public class b { public final Context b; /* renamed from: c reason: collision with root package name */ - public String f303c; + public String f304c; @Nullable public c.c.a.b d; public final Map e; public b(Drawable.Callback callback, String str, c.c.a.b bVar, Map map) { - this.f303c = str; + this.f304c = str; if (!TextUtils.isEmpty(str)) { - String str2 = this.f303c; + String str2 = this.f304c; if (str2.charAt(str2.length() - 1) != '/') { - this.f303c = a.G(new StringBuilder(), this.f303c, MentionUtilsKt.SLASH_CHAR); + this.f304c = a.F(new StringBuilder(), this.f304c, MentionUtilsKt.SLASH_CHAR); } } if (!(callback instanceof View)) { diff --git a/app/src/main/java/c/c/a/y/a.java b/app/src/main/java/c/c/a/y/a.java index 40f55162ae..4f0961a37a 100644 --- a/app/src/main/java/c/c/a/y/a.java +++ b/app/src/main/java/c/c/a/y/a.java @@ -9,17 +9,17 @@ public class a { public final PointF b; /* renamed from: c reason: collision with root package name */ - public final PointF f304c; + public final PointF f305c; public a() { this.a = new PointF(); this.b = new PointF(); - this.f304c = new PointF(); + this.f305c = new PointF(); } public a(PointF pointF, PointF pointF2, PointF pointF3) { this.a = pointF; this.b = pointF2; - this.f304c = pointF3; + this.f305c = pointF3; } } diff --git a/app/src/main/java/c/c/a/y/b.java b/app/src/main/java/c/c/a/y/b.java index dd0282cdab..fc61cbd848 100644 --- a/app/src/main/java/c/c/a/y/b.java +++ b/app/src/main/java/c/c/a/y/b.java @@ -21,7 +21,7 @@ public /* synthetic */ class b { public static /* synthetic */ int[] b; /* renamed from: c reason: collision with root package name */ - public static /* synthetic */ int[] f305c; + public static /* synthetic */ int[] f306c; public static /* synthetic */ int[] d; public static /* synthetic */ int[] e; public static /* synthetic */ int[] f; @@ -39,20 +39,20 @@ public /* synthetic */ class b { public static /* synthetic */ int[] r; /* renamed from: s reason: collision with root package name */ - public static /* synthetic */ int[] f306s; + public static /* synthetic */ int[] f307s; public static /* synthetic */ int[] t; public static /* synthetic */ int[] u; public static /* synthetic */ int[] v; public static /* synthetic */ int[] w; /* renamed from: x reason: collision with root package name */ - public static /* synthetic */ int[] f307x; + public static /* synthetic */ int[] f308x; /* renamed from: y reason: collision with root package name */ - public static /* synthetic */ int[] f308y; + public static /* synthetic */ int[] f309y; /* renamed from: z reason: collision with root package name */ - public static /* synthetic */ int[] f309z; + public static /* synthetic */ int[] f310z; public static synchronized /* synthetic */ int[] a() { int[] iArr; diff --git a/app/src/main/java/c/c/a/y/c.java b/app/src/main/java/c/c/a/y/c.java index 04afab1e95..71cd02044a 100644 --- a/app/src/main/java/c/c/a/y/c.java +++ b/app/src/main/java/c/c/a/y/c.java @@ -10,7 +10,7 @@ public class c { public final String b; /* renamed from: c reason: collision with root package name */ - public final float f310c; + public final float f311c; public final int d; public final int e; public final float f; @@ -25,7 +25,7 @@ public class c { public c(String str, String str2, float f, int i, int i2, float f2, float f3, @ColorInt int i3, @ColorInt int i4, float f4, boolean z2) { this.a = str; this.b = str2; - this.f310c = f; + this.f311c = f; this.d = i; this.e = i2; this.f = f2; @@ -38,7 +38,7 @@ public class c { public int hashCode() { String str = this.b; - int h = ((b.h(this.d) + (((int) (((float) a.m(str, this.a.hashCode() * 31, 31)) + this.f310c)) * 31)) * 31) + this.e; + int h = ((b.h(this.d) + (((int) (((float) a.m(str, this.a.hashCode() * 31, 31)) + this.f311c)) * 31)) * 31) + this.e; long floatToRawIntBits = (long) Float.floatToRawIntBits(this.f); return (((h * 31) + ((int) (floatToRawIntBits ^ (floatToRawIntBits >>> 32)))) * 31) + this.h; } diff --git a/app/src/main/java/c/c/a/y/d.java b/app/src/main/java/c/c/a/y/d.java index 7ddc748397..55ad533968 100644 --- a/app/src/main/java/c/c/a/y/d.java +++ b/app/src/main/java/c/c/a/y/d.java @@ -8,11 +8,11 @@ public class d { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f311c; + public final String f312c; public d(String str, String str2, String str3, float f) { this.a = str; this.b = str2; - this.f311c = str3; + this.f312c = str3; } } diff --git a/app/src/main/java/c/c/a/y/e.java b/app/src/main/java/c/c/a/y/e.java index 82a1001fb8..e9ffde9a37 100644 --- a/app/src/main/java/c/c/a/y/e.java +++ b/app/src/main/java/c/c/a/y/e.java @@ -11,14 +11,14 @@ public class e { public final char b; /* renamed from: c reason: collision with root package name */ - public final double f312c; + public final double f313c; public final String d; public final String e; public e(List list, char c2, double d, double d2, String str, String str2) { this.a = list; this.b = c2; - this.f312c = d2; + this.f313c = d2; this.d = str; this.e = str2; } diff --git a/app/src/main/java/c/c/a/y/f.java b/app/src/main/java/c/c/a/y/f.java index aab65634b3..6f824860d1 100644 --- a/app/src/main/java/c/c/a/y/f.java +++ b/app/src/main/java/c/c/a/y/f.java @@ -14,11 +14,11 @@ public class f { @Nullable /* renamed from: c reason: collision with root package name */ - public g f313c; + public g f314c; public f(f fVar) { this.b = new ArrayList(fVar.b); - this.f313c = fVar.f313c; + this.f314c = fVar.f314c; } public f(String... strArr) { @@ -91,16 +91,16 @@ public class f { @RestrictTo({RestrictTo.Scope.LIBRARY}) public f g(g gVar) { f fVar = new f(this); - fVar.f313c = gVar; + fVar.f314c = gVar; return fVar; } public String toString() { - StringBuilder P = a.P("KeyPath{keys="); - P.append(this.b); - P.append(",resolved="); - P.append(this.f313c != null); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("KeyPath{keys="); + O.append(this.b); + O.append(",resolved="); + O.append(this.f314c != null); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/i.java b/app/src/main/java/c/c/a/y/i.java index 3ebc2ed530..d97775ae78 100644 --- a/app/src/main/java/c/c/a/y/i.java +++ b/app/src/main/java/c/c/a/y/i.java @@ -5,11 +5,11 @@ public class i { public final float b; /* renamed from: c reason: collision with root package name */ - public final float f314c; + public final float f315c; public i(String str, float f, float f2) { this.a = str; - this.f314c = f2; + this.f315c = f2; this.b = f; } } diff --git a/app/src/main/java/c/c/a/y/j.java b/app/src/main/java/c/c/a/y/j.java index 1161cfdeaa..b3e03c7488 100644 --- a/app/src/main/java/c/c/a/y/j.java +++ b/app/src/main/java/c/c/a/y/j.java @@ -39,11 +39,11 @@ public class j { } public String toString() { - StringBuilder P = a.P("Pair{"); - P.append(String.valueOf(this.a)); - P.append(" "); - P.append(String.valueOf(this.b)); - P.append("}"); - return P.toString(); + StringBuilder O = a.O("Pair{"); + O.append(String.valueOf(this.a)); + O.append(" "); + O.append(String.valueOf(this.b)); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/k/k.java b/app/src/main/java/c/c/a/y/k/k.java index 8a089d116e..d9daa73b2e 100644 --- a/app/src/main/java/c/c/a/y/k/k.java +++ b/app/src/main/java/c/c/a/y/k/k.java @@ -10,14 +10,14 @@ public class k { @Nullable /* renamed from: c reason: collision with root package name */ - public final b f315c; + public final b f316c; @Nullable public final b d; public k(@Nullable a aVar, @Nullable a aVar2, @Nullable b bVar, @Nullable b bVar2) { this.a = aVar; this.b = aVar2; - this.f315c = bVar; + this.f316c = bVar; this.d = bVar2; } } diff --git a/app/src/main/java/c/c/a/y/k/l.java b/app/src/main/java/c/c/a/y/k/l.java index afcd3082f7..f3a3490d7c 100644 --- a/app/src/main/java/c/c/a/y/k/l.java +++ b/app/src/main/java/c/c/a/y/k/l.java @@ -14,7 +14,7 @@ public class l implements b { @Nullable /* renamed from: c reason: collision with root package name */ - public final g f316c; + public final g f317c; @Nullable public final b d; @Nullable @@ -35,7 +35,7 @@ public class l implements b { public l(@Nullable e eVar, @Nullable m mVar, @Nullable g gVar, @Nullable b bVar, @Nullable d dVar, @Nullable b bVar2, @Nullable b bVar3, @Nullable b bVar4, @Nullable b bVar5) { this.a = eVar; this.b = mVar; - this.f316c = gVar; + this.f317c = gVar; this.d = bVar; this.e = dVar; this.h = bVar2; diff --git a/app/src/main/java/c/c/a/y/l/a.java b/app/src/main/java/c/c/a/y/l/a.java index 3bd717b7c9..36dfedfed5 100644 --- a/app/src/main/java/c/c/a/y/l/a.java +++ b/app/src/main/java/c/c/a/y/l/a.java @@ -12,14 +12,14 @@ public class a implements b { public final m b; /* renamed from: c reason: collision with root package name */ - public final f f317c; + public final f f318c; public final boolean d; public final boolean e; public a(String str, m mVar, f fVar, boolean z2, boolean z3) { this.a = str; this.b = mVar; - this.f317c = fVar; + this.f318c = fVar; this.d = z2; this.e = z3; } diff --git a/app/src/main/java/c/c/a/y/l/d.java b/app/src/main/java/c/c/a/y/l/d.java index 8cf1283e6e..fe2dc0e60e 100644 --- a/app/src/main/java/c/c/a/y/l/d.java +++ b/app/src/main/java/c/c/a/y/l/d.java @@ -12,7 +12,7 @@ public class d implements b { public final Path.FillType b; /* renamed from: c reason: collision with root package name */ - public final c f318c; + public final c f319c; public final c.c.a.y.k.d d; public final f e; public final f f; @@ -22,7 +22,7 @@ public class d implements b { public d(String str, int i, Path.FillType fillType, c cVar, c.c.a.y.k.d dVar, f fVar, f fVar2, b bVar, b bVar2, boolean z2) { this.a = i; this.b = fillType; - this.f318c = cVar; + this.f319c = cVar; this.d = dVar; this.e = fVar; this.f = fVar2; diff --git a/app/src/main/java/c/c/a/y/l/e.java b/app/src/main/java/c/c/a/y/l/e.java index 729e623cc7..78a548e867 100644 --- a/app/src/main/java/c/c/a/y/l/e.java +++ b/app/src/main/java/c/c/a/y/l/e.java @@ -14,7 +14,7 @@ public class e implements b { public final int b; /* renamed from: c reason: collision with root package name */ - public final c f319c; + public final c f320c; public final d d; public final f e; public final f f; @@ -31,7 +31,7 @@ public class e implements b { public e(String str, int i, c cVar, d dVar, f fVar, f fVar2, b bVar, int i2, int i3, float f, List list, @Nullable b bVar2, boolean z2) { this.a = str; this.b = i; - this.f319c = cVar; + this.f320c = cVar; this.d = dVar; this.e = fVar; this.f = fVar2; diff --git a/app/src/main/java/c/c/a/y/l/f.java b/app/src/main/java/c/c/a/y/l/f.java index 48830e2a3d..4a9366a59a 100644 --- a/app/src/main/java/c/c/a/y/l/f.java +++ b/app/src/main/java/c/c/a/y/l/f.java @@ -8,13 +8,13 @@ public class f { public final h b; /* renamed from: c reason: collision with root package name */ - public final d f320c; + public final d f321c; public final boolean d; public f(int i, h hVar, d dVar, boolean z2) { this.a = i; this.b = hVar; - this.f320c = dVar; + this.f321c = dVar; this.d = z2; } } diff --git a/app/src/main/java/c/c/a/y/l/g.java b/app/src/main/java/c/c/a/y/l/g.java index 9de77405e7..bbf430a294 100644 --- a/app/src/main/java/c/c/a/y/l/g.java +++ b/app/src/main/java/c/c/a/y/l/g.java @@ -11,7 +11,7 @@ public class g implements b { public final a b; /* renamed from: c reason: collision with root package name */ - public final boolean f321c; + public final boolean f322c; /* compiled from: MergePaths */ public enum a { @@ -25,7 +25,7 @@ public class g implements b { public g(String str, a aVar, boolean z2) { this.a = str; this.b = aVar; - this.f321c = z2; + this.f322c = z2; } @Override // c.c.a.y.l.b @@ -39,9 +39,9 @@ public class g implements b { } public String toString() { - StringBuilder P = c.d.b.a.a.P("MergePaths{mode="); - P.append(this.b); - P.append('}'); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("MergePaths{mode="); + O.append(this.b); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/l/h.java b/app/src/main/java/c/c/a/y/l/h.java index 6534c81600..eea11685d0 100644 --- a/app/src/main/java/c/c/a/y/l/h.java +++ b/app/src/main/java/c/c/a/y/l/h.java @@ -12,7 +12,7 @@ public class h implements b { public final a b; /* renamed from: c reason: collision with root package name */ - public final b f322c; + public final b f323c; public final m d; public final b e; public final b f; @@ -47,7 +47,7 @@ public class h implements b { public h(String str, a aVar, b bVar, m mVar, b bVar2, b bVar3, b bVar4, b bVar5, b bVar6, boolean z2) { this.a = str; this.b = aVar; - this.f322c = bVar; + this.f323c = bVar; this.d = mVar; this.e = bVar2; this.f = bVar3; diff --git a/app/src/main/java/c/c/a/y/l/i.java b/app/src/main/java/c/c/a/y/l/i.java index bf1544683f..2ec5113038 100644 --- a/app/src/main/java/c/c/a/y/l/i.java +++ b/app/src/main/java/c/c/a/y/l/i.java @@ -14,14 +14,14 @@ public class i implements b { public final m b; /* renamed from: c reason: collision with root package name */ - public final f f323c; + public final f f324c; public final b d; public final boolean e; public i(String str, m mVar, f fVar, b bVar, boolean z2) { this.a = str; this.b = mVar; - this.f323c = fVar; + this.f324c = fVar; this.d = bVar; this.e = z2; } @@ -32,11 +32,11 @@ public class i implements b { } public String toString() { - StringBuilder P = a.P("RectangleShape{position="); - P.append(this.b); - P.append(", size="); - P.append(this.f323c); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("RectangleShape{position="); + O.append(this.b); + O.append(", size="); + O.append(this.f324c); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/l/j.java b/app/src/main/java/c/c/a/y/l/j.java index 9506c5312b..5d367e3f6f 100644 --- a/app/src/main/java/c/c/a/y/l/j.java +++ b/app/src/main/java/c/c/a/y/l/j.java @@ -11,14 +11,14 @@ public class j implements b { public final b b; /* renamed from: c reason: collision with root package name */ - public final b f324c; + public final b f325c; public final l d; public final boolean e; public j(String str, b bVar, b bVar2, l lVar, boolean z2) { this.a = str; this.b = bVar; - this.f324c = bVar2; + this.f325c = bVar2; this.d = lVar; this.e = z2; } diff --git a/app/src/main/java/c/c/a/y/l/k.java b/app/src/main/java/c/c/a/y/l/k.java index b85463d57c..b6f1ab39d9 100644 --- a/app/src/main/java/c/c/a/y/l/k.java +++ b/app/src/main/java/c/c/a/y/l/k.java @@ -10,7 +10,7 @@ public class k { public PointF b; /* renamed from: c reason: collision with root package name */ - public boolean f325c; + public boolean f326c; public k() { this.a = new ArrayList(); @@ -18,16 +18,16 @@ public class k { public k(PointF pointF, boolean z2, List list) { this.b = pointF; - this.f325c = z2; + this.f326c = z2; this.a = new ArrayList(list); } public String toString() { - StringBuilder P = c.d.b.a.a.P("ShapeData{numCurves="); - P.append(this.a.size()); - P.append("closed="); - P.append(this.f325c); - P.append('}'); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("ShapeData{numCurves="); + O.append(this.a.size()); + O.append("closed="); + O.append(this.f326c); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/l/l.java b/app/src/main/java/c/c/a/y/l/l.java index c26e8593b9..87998f730c 100644 --- a/app/src/main/java/c/c/a/y/l/l.java +++ b/app/src/main/java/c/c/a/y/l/l.java @@ -14,7 +14,7 @@ public class l implements b { public final Path.FillType b; /* renamed from: c reason: collision with root package name */ - public final String f326c; + public final String f327c; @Nullable public final a d; @Nullable @@ -22,7 +22,7 @@ public class l implements b { public final boolean f; public l(String str, boolean z2, Path.FillType fillType, @Nullable a aVar, @Nullable d dVar, boolean z3) { - this.f326c = str; + this.f327c = str; this.a = z2; this.b = fillType; this.d = aVar; @@ -36,9 +36,9 @@ public class l implements b { } public String toString() { - StringBuilder P = c.d.b.a.a.P("ShapeFill{color=, fillEnabled="); - P.append(this.a); - P.append('}'); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("ShapeFill{color=, fillEnabled="); + O.append(this.a); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/l/m.java b/app/src/main/java/c/c/a/y/l/m.java index cedb2c0b19..b36be0cc0b 100644 --- a/app/src/main/java/c/c/a/y/l/m.java +++ b/app/src/main/java/c/c/a/y/l/m.java @@ -13,12 +13,12 @@ public class m implements b { public final List b; /* renamed from: c reason: collision with root package name */ - public final boolean f327c; + public final boolean f328c; public m(String str, List list, boolean z2) { this.a = str; this.b = list; - this.f327c = z2; + this.f328c = z2; } @Override // c.c.a.y.l.b @@ -27,11 +27,11 @@ public class m implements b { } public String toString() { - StringBuilder P = a.P("ShapeGroup{name='"); - P.append(this.a); - P.append("' Shapes: "); - P.append(Arrays.toString(this.b.toArray())); - P.append('}'); - return P.toString(); + StringBuilder O = a.O("ShapeGroup{name='"); + O.append(this.a); + O.append("' Shapes: "); + O.append(Arrays.toString(this.b.toArray())); + O.append('}'); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/l/n.java b/app/src/main/java/c/c/a/y/l/n.java index 79908cef7f..69c008933b 100644 --- a/app/src/main/java/c/c/a/y/l/n.java +++ b/app/src/main/java/c/c/a/y/l/n.java @@ -12,13 +12,13 @@ public class n implements b { public final int b; /* renamed from: c reason: collision with root package name */ - public final h f328c; + public final h f329c; public final boolean d; public n(String str, int i, h hVar, boolean z2) { this.a = str; this.b = i; - this.f328c = hVar; + this.f329c = hVar; this.d = z2; } @@ -28,9 +28,9 @@ public class n implements b { } public String toString() { - StringBuilder P = a.P("ShapePath{name="); - P.append(this.a); - P.append(", index="); - return a.y(P, this.b, '}'); + StringBuilder O = a.O("ShapePath{name="); + O.append(this.a); + O.append(", index="); + return a.y(O, this.b, '}'); } } diff --git a/app/src/main/java/c/c/a/y/l/o.java b/app/src/main/java/c/c/a/y/l/o.java index 6640036ae0..cfe9d73817 100644 --- a/app/src/main/java/c/c/a/y/l/o.java +++ b/app/src/main/java/c/c/a/y/l/o.java @@ -15,7 +15,7 @@ public class o implements b { public final b b; /* renamed from: c reason: collision with root package name */ - public final List f329c; + public final List f330c; public final a d; public final d e; public final b f; @@ -28,7 +28,7 @@ public class o implements b { public o(String str, @Nullable b bVar, List list, a aVar, d dVar, b bVar2, int i, int i2, float f, boolean z2) { this.a = str; this.b = bVar; - this.f329c = list; + this.f330c = list; this.d = aVar; this.e = dVar; this.f = bVar2; diff --git a/app/src/main/java/c/c/a/y/l/p.java b/app/src/main/java/c/c/a/y/l/p.java index d85eb301db..55a2a7c7cc 100644 --- a/app/src/main/java/c/c/a/y/l/p.java +++ b/app/src/main/java/c/c/a/y/l/p.java @@ -11,7 +11,7 @@ public class p implements b { public final int b; /* renamed from: c reason: collision with root package name */ - public final b f330c; + public final b f331c; public final b d; public final b e; public final boolean f; @@ -19,7 +19,7 @@ public class p implements b { public p(String str, int i, b bVar, b bVar2, b bVar3, boolean z2) { this.a = str; this.b = i; - this.f330c = bVar; + this.f331c = bVar; this.d = bVar2; this.e = bVar3; this.f = z2; @@ -31,13 +31,13 @@ public class p implements b { } public String toString() { - StringBuilder P = a.P("Trim Path: {start: "); - P.append(this.f330c); - P.append(", end: "); - P.append(this.d); - P.append(", offset: "); - P.append(this.e); - P.append("}"); - return P.toString(); + StringBuilder O = a.O("Trim Path: {start: "); + O.append(this.f331c); + O.append(", end: "); + O.append(this.d); + O.append(", offset: "); + O.append(this.e); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/c/a/y/m/b.java b/app/src/main/java/c/c/a/y/m/b.java index f081f74ea3..c5f187ac68 100644 --- a/app/src/main/java/c/c/a/y/m/b.java +++ b/app/src/main/java/c/c/a/y/m/b.java @@ -34,7 +34,7 @@ public abstract class b implements e, a.b, g { public final Matrix b = new Matrix(); /* renamed from: c reason: collision with root package name */ - public final Paint f331c; + public final Paint f332c; public final Paint d; public final Paint e; public final Paint f; @@ -56,7 +56,7 @@ public abstract class b implements e, a.b, g { @Nullable /* renamed from: s reason: collision with root package name */ - public b f332s; + public b f333s; public List t; public final List> u; public final o v; @@ -64,7 +64,7 @@ public abstract class b implements e, a.b, g { public b(j jVar, e eVar) { boolean z2 = true; - this.f331c = new c.c.a.w.a(1); + this.f332c = new c.c.a.w.a(1); this.d = new c.c.a.w.a(1, PorterDuff.Mode.DST_IN); this.e = new c.c.a.w.a(1, PorterDuff.Mode.DST_OUT); c.c.a.w.a aVar = new c.c.a.w.a(1); @@ -79,7 +79,7 @@ public abstract class b implements e, a.b, g { this.w = true; this.n = jVar; this.o = eVar; - this.l = c.d.b.a.a.H(new StringBuilder(), eVar.f339c, "#draw"); + this.l = c.d.b.a.a.G(new StringBuilder(), eVar.f340c, "#draw"); if (eVar.u == 3) { aVar.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT)); } else { @@ -125,15 +125,15 @@ public abstract class b implements e, a.b, g { @Override // c.c.a.y.g public void c(c.c.a.y.f fVar, int i, List list, c.c.a.y.f fVar2) { - if (fVar.e(this.o.f339c, i)) { - if (!"__container".equals(this.o.f339c)) { - fVar2 = fVar2.a(this.o.f339c); - if (fVar.c(this.o.f339c, i)) { + if (fVar.e(this.o.f340c, i)) { + if (!"__container".equals(this.o.f340c)) { + fVar2 = fVar2.a(this.o.f340c); + if (fVar.c(this.o.f340c, i)) { list.add(fVar2.g(this)); } } - if (fVar.f(this.o.f339c, i)) { - n(fVar, fVar.d(this.o.f339c, i) + i, list, fVar2); + if (fVar.f(this.o.f340c, i)) { + n(fVar, fVar.d(this.o.f340c, i) + i, list, fVar2); } } } @@ -151,7 +151,7 @@ public abstract class b implements e, a.b, g { this.m.preConcat(this.t.get(size).v.e()); } } else { - b bVar = this.f332s; + b bVar = this.f333s; if (bVar != null) { this.m.preConcat(bVar.v.e()); } @@ -207,11 +207,11 @@ public abstract class b implements e, a.b, g { this.i.set(0.0f, 0.0f, 0.0f, 0.0f); int i4 = 2; if (k()) { - int size2 = this.p.f300c.size(); + int size2 = this.p.f301c.size(); int i5 = 0; while (true) { if (i5 < size2) { - f fVar = this.p.f300c.get(i5); + f fVar = this.p.f301c.get(i5); this.a.set(this.p.a.get(i5).e()); this.a.transform(matrix2); int h = c.c.a.y.b.h(fVar.a); @@ -257,8 +257,8 @@ public abstract class b implements e, a.b, g { } c.c.a.c.a("Layer#computeBounds"); if (!this.h.isEmpty()) { - this.f331c.setAlpha(255); - c.c.a.b0.g.f(canvas, this.h, this.f331c, 31); + this.f332c.setAlpha(255); + c.c.a.b0.g.f(canvas, this.h, this.f332c, 31); c.c.a.c.a("Layer#saveLayer"); i(canvas); j(canvas, this.b, intValue); @@ -271,21 +271,21 @@ public abstract class b implements e, a.b, g { } c.c.a.c.a("Layer#saveLayer"); int i6 = 0; - while (i6 < this.p.f300c.size()) { - f fVar2 = this.p.f300c.get(i6); + while (i6 < this.p.f301c.size()) { + f fVar2 = this.p.f301c.get(i6); a aVar2 = this.p.a.get(i6); a aVar3 = this.p.b.get(i6); int h2 = c.c.a.y.b.h(fVar2.a); if (h2 != 0) { if (h2 == i2) { if (i6 == 0) { - this.f331c.setColor(ViewCompat.MEASURED_STATE_MASK); - this.f331c.setAlpha(255); - canvas.drawRect(this.h, this.f331c); + this.f332c.setColor(ViewCompat.MEASURED_STATE_MASK); + this.f332c.setAlpha(255); + canvas.drawRect(this.h, this.f332c); } if (fVar2.d) { c.c.a.b0.g.f(canvas, this.h, this.e, 31); - canvas.drawRect(this.h, this.f331c); + canvas.drawRect(this.h, this.f332c); this.e.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); this.a.set(aVar2.e()); this.a.transform(matrix3); @@ -301,18 +301,18 @@ public abstract class b implements e, a.b, g { if (!this.p.a.isEmpty()) { int i7 = 0; while (true) { - if (i7 >= this.p.f300c.size()) { + if (i7 >= this.p.f301c.size()) { z2 = true; break; - } else if (this.p.f300c.get(i7).a != 4) { + } else if (this.p.f301c.get(i7).a != 4) { break; } else { i7++; } } if (!z2) { - this.f331c.setAlpha(255); - canvas.drawRect(this.h, this.f331c); + this.f332c.setAlpha(255); + canvas.drawRect(this.h, this.f332c); } } z2 = false; @@ -321,7 +321,7 @@ public abstract class b implements e, a.b, g { } } else if (fVar2.d) { c.c.a.b0.g.f(canvas, this.h, this.d, 31); - canvas.drawRect(this.h, this.f331c); + canvas.drawRect(this.h, this.f332c); this.e.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); this.a.set(aVar2.e()); this.a.transform(matrix3); @@ -331,23 +331,23 @@ public abstract class b implements e, a.b, g { c.c.a.b0.g.f(canvas, this.h, this.d, 31); this.a.set(aVar2.e()); this.a.transform(matrix3); - this.f331c.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); - canvas.drawPath(this.a, this.f331c); + this.f332c.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); + canvas.drawPath(this.a, this.f332c); canvas.restore(); } } else if (fVar2.d) { - c.c.a.b0.g.f(canvas, this.h, this.f331c, 31); - canvas.drawRect(this.h, this.f331c); + c.c.a.b0.g.f(canvas, this.h, this.f332c, 31); + canvas.drawRect(this.h, this.f332c); this.a.set(aVar2.e()); this.a.transform(matrix3); - this.f331c.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); + this.f332c.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); canvas.drawPath(this.a, this.e); canvas.restore(); } else { this.a.set(aVar2.e()); this.a.transform(matrix3); - this.f331c.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); - canvas.drawPath(this.a, this.f331c); + this.f332c.setAlpha((int) (((float) aVar3.e().intValue()) * 2.55f)); + canvas.drawPath(this.a, this.f332c); } i6++; i2 = 1; @@ -386,17 +386,17 @@ public abstract class b implements e, a.b, g { @Override // c.c.a.w.b.c public String getName() { - return this.o.f339c; + return this.o.f340c; } public final void h() { if (this.t == null) { - if (this.f332s == null) { + if (this.f333s == null) { this.t = Collections.emptyList(); return; } this.t = new ArrayList(); - for (b bVar = this.f332s; bVar != null; bVar = bVar.f332s) { + for (b bVar = this.f333s; bVar != null; bVar = bVar.f333s) { this.t.add(bVar); } } @@ -421,12 +421,12 @@ public abstract class b implements e, a.b, g { public final void m(float f) { s sVar = this.n.j.a; - String str = this.o.f339c; + String str = this.o.f340c; if (sVar.a) { - c.c.a.b0.e eVar = sVar.f282c.get(str); + c.c.a.b0.e eVar = sVar.f283c.get(str); if (eVar == null) { eVar = new c.c.a.b0.e(); - sVar.f282c.put(str, eVar); + sVar.f283c.put(str, eVar); } float f2 = eVar.a + f; eVar.a = f2; diff --git a/app/src/main/java/c/c/a/y/m/c.java b/app/src/main/java/c/c/a/y/m/c.java index 78cdc6f166..ac68bc8571 100644 --- a/app/src/main/java/c/c/a/y/m/c.java +++ b/app/src/main/java/c/c/a/y/m/c.java @@ -24,27 +24,27 @@ public class c extends b { @Nullable /* renamed from: x reason: collision with root package name */ - public a f333x; + public a f334x; /* renamed from: y reason: collision with root package name */ - public final List f334y = new ArrayList(); + public final List f335y = new ArrayList(); /* renamed from: z reason: collision with root package name */ - public final RectF f335z = new RectF(); + public final RectF f336z = new RectF(); public c(j jVar, e eVar, List list, d dVar) { super(jVar, eVar); int i; b bVar; b bVar2; - b bVar3 = eVar.f340s; + b bVar3 = eVar.f341s; if (bVar3 != null) { a a = bVar3.a(); - this.f333x = a; + this.f334x = a; e(a); - this.f333x.a.add(this); + this.f334x.a.add(this); } else { - this.f333x = null; + this.f334x = null; } LongSparseArray longSparseArray = new LongSparseArray(dVar.i.size()); int size = list.size() - 1; @@ -56,7 +56,7 @@ public class c extends b { e eVar2 = list.get(size); int ordinal = eVar2.e.ordinal(); if (ordinal == 0) { - bVar2 = new c(jVar, eVar2, dVar.f268c.get(eVar2.g), dVar); + bVar2 = new c(jVar, eVar2, dVar.f269c.get(eVar2.g), dVar); } else if (ordinal == 1) { bVar2 = new h(jVar, eVar2); } else if (ordinal == 2) { @@ -66,9 +66,9 @@ public class c extends b { } else if (ordinal == 4) { bVar2 = new g(jVar, eVar2); } else if (ordinal != 5) { - StringBuilder P = c.d.b.a.a.P("Unknown layer type "); - P.append(eVar2.e); - c.c.a.b0.c.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Unknown layer type "); + O.append(eVar2.e); + c.c.a.b0.c.b(O.toString()); bVar2 = null; } else { bVar2 = new i(jVar, eVar2); @@ -79,7 +79,7 @@ public class c extends b { bVar4.r = bVar2; bVar4 = null; } else { - this.f334y.add(0, bVar2); + this.f335y.add(0, bVar2); int h = c.c.a.y.b.h(eVar2.u); if (h == 1 || h == 2) { bVar4 = bVar2; @@ -91,7 +91,7 @@ public class c extends b { for (i = 0; i < longSparseArray.size(); i++) { b bVar5 = (b) longSparseArray.get(longSparseArray.keyAt(i)); if (!(bVar5 == null || (bVar = (b) longSparseArray.get(bVar5.o.f)) == null)) { - bVar5.f332s = bVar; + bVar5.f333s = bVar; } } } @@ -99,10 +99,10 @@ public class c extends b { @Override // c.c.a.y.m.b, c.c.a.w.b.e public void d(RectF rectF, Matrix matrix, boolean z2) { super.d(rectF, matrix, z2); - for (int size = this.f334y.size() - 1; size >= 0; size--) { - this.f335z.set(0.0f, 0.0f, 0.0f, 0.0f); - this.f334y.get(size).d(this.f335z, this.m, true); - rectF.union(this.f335z); + for (int size = this.f335y.size() - 1; size >= 0; size--) { + this.f336z.set(0.0f, 0.0f, 0.0f, 0.0f); + this.f335y.get(size).d(this.f336z, this.m, true); + rectF.union(this.f336z); } } @@ -113,7 +113,7 @@ public class c extends b { return; } if (cVar == null) { - a aVar = this.f333x; + a aVar = this.f334x; if (aVar != null) { aVar.i(null); return; @@ -121,9 +121,9 @@ public class c extends b { return; } p pVar = new p(cVar, null); - this.f333x = pVar; + this.f334x = pVar; pVar.a.add(this); - e(this.f333x); + e(this.f334x); } @Override // c.c.a.y.m.b @@ -132,7 +132,7 @@ public class c extends b { e eVar = this.o; rectF.set(0.0f, 0.0f, (float) eVar.o, (float) eVar.p); matrix.mapRect(this.A); - boolean z2 = this.n.f272z && this.f334y.size() > 1 && i != 255; + boolean z2 = this.n.f273z && this.f335y.size() > 1 && i != 255; if (z2) { this.B.setAlpha(i); g.f(canvas, this.A, this.B, 31); @@ -142,9 +142,9 @@ public class c extends b { if (z2) { i = 255; } - for (int size = this.f334y.size() - 1; size >= 0; size--) { + for (int size = this.f335y.size() - 1; size >= 0; size--) { if (!this.A.isEmpty() ? canvas.clipRect(this.A) : true) { - this.f334y.get(size).f(canvas, matrix, i); + this.f335y.get(size).f(canvas, matrix, i); } } canvas.restore(); @@ -153,18 +153,18 @@ public class c extends b { @Override // c.c.a.y.m.b public void n(f fVar, int i, List list, f fVar2) { - for (int i2 = 0; i2 < this.f334y.size(); i2++) { - this.f334y.get(i2).c(fVar, i, list, fVar2); + for (int i2 = 0; i2 < this.f335y.size(); i2++) { + this.f335y.get(i2).c(fVar, i, list, fVar2); } } @Override // c.c.a.y.m.b public void o(@FloatRange(from = 0.0d, to = 1.0d) float f) { super.o(f); - if (this.f333x != null) { - f = ((this.f333x.e().floatValue() * this.o.b.m) - this.o.b.k) / (this.n.j.c() + 0.01f); + if (this.f334x != null) { + f = ((this.f334x.e().floatValue() * this.o.b.m) - this.o.b.k) / (this.n.j.c() + 0.01f); } - if (this.f333x == null) { + if (this.f334x == null) { e eVar = this.o; f -= eVar.n / eVar.b.c(); } @@ -172,11 +172,11 @@ public class c extends b { if (f2 != 0.0f) { f /= f2; } - int size = this.f334y.size(); + int size = this.f335y.size(); while (true) { size--; if (size >= 0) { - this.f334y.get(size).o(f); + this.f335y.get(size).o(f); } else { return; } diff --git a/app/src/main/java/c/c/a/y/m/d.java b/app/src/main/java/c/c/a/y/m/d.java index de7899252a..2f0e082edf 100644 --- a/app/src/main/java/c/c/a/y/m/d.java +++ b/app/src/main/java/c/c/a/y/m/d.java @@ -30,13 +30,13 @@ public class d extends b { public a A; /* renamed from: x reason: collision with root package name */ - public final Paint f336x = new c.c.a.w.a(3); + public final Paint f337x = new c.c.a.w.a(3); /* renamed from: y reason: collision with root package name */ - public final Rect f337y = new Rect(); + public final Rect f338y = new Rect(); /* renamed from: z reason: collision with root package name */ - public final Rect f338z = new Rect(); + public final Rect f339z = new Rect(); public d(j jVar, e eVar) { super(jVar, eVar); @@ -70,16 +70,16 @@ public class d extends b { Bitmap q = q(); if (q != null && !q.isRecycled()) { float c2 = g.c(); - this.f336x.setAlpha(i); + this.f337x.setAlpha(i); a aVar = this.A; if (aVar != null) { - this.f336x.setColorFilter(aVar.e()); + this.f337x.setColorFilter(aVar.e()); } canvas.save(); canvas.concat(matrix); - this.f337y.set(0, 0, q.getWidth(), q.getHeight()); - this.f338z.set(0, 0, (int) (((float) q.getWidth()) * c2), (int) (((float) q.getHeight()) * c2)); - canvas.drawBitmap(q, this.f337y, this.f338z, this.f336x); + this.f338y.set(0, 0, q.getWidth(), q.getHeight()); + this.f339z.set(0, 0, (int) (((float) q.getWidth()) * c2), (int) (((float) q.getHeight()) * c2)); + canvas.drawBitmap(q, this.f338y, this.f339z, this.f337x); canvas.restore(); } } @@ -102,7 +102,7 @@ public class d extends b { } } if (jVar.r == null) { - jVar.r = new b(jVar.getCallback(), jVar.f269s, jVar.t, jVar.j.d); + jVar.r = new b(jVar.getCallback(), jVar.f270s, jVar.t, jVar.j.d); } bVar = jVar.r; } @@ -128,8 +128,8 @@ public class d extends b { options.inDensity = 160; if (!str2.startsWith("data:") || str2.indexOf("base64,") <= 0) { try { - if (!TextUtils.isEmpty(bVar.f303c)) { - Bitmap e = g.e(BitmapFactory.decodeStream(bVar.b.getAssets().open(bVar.f303c + str2), null, options), kVar.a, kVar.b); + if (!TextUtils.isEmpty(bVar.f304c)) { + Bitmap e = g.e(BitmapFactory.decodeStream(bVar.b.getAssets().open(bVar.f304c + str2), null, options), kVar.a, kVar.b); bVar.a(str, e); return e; } diff --git a/app/src/main/java/c/c/a/y/m/e.java b/app/src/main/java/c/c/a/y/m/e.java index 967e9d3cf1..8cb0c91854 100644 --- a/app/src/main/java/c/c/a/y/m/e.java +++ b/app/src/main/java/c/c/a/y/m/e.java @@ -15,7 +15,7 @@ public class e { public final d b; /* renamed from: c reason: collision with root package name */ - public final String f339c; + public final String f340c; public final long d; public final a e; public final long f; @@ -37,7 +37,7 @@ public class e { @Nullable /* renamed from: s reason: collision with root package name */ - public final c.c.a.y.k.b f340s; + public final c.c.a.y.k.b f341s; public final List> t; public final int u; public final boolean v; @@ -57,7 +57,7 @@ public class e { public e(List list, d dVar, String str, long j, a aVar, long j2, @Nullable String str2, List list2, l lVar, int i, int i2, int i3, float f, float f2, int i4, int i5, @Nullable j jVar, @Nullable k kVar, List list3, int i6, @Nullable c.c.a.y.k.b bVar, boolean z2) { this.a = list; this.b = dVar; - this.f339c = str; + this.f340c = str; this.d = j; this.e = aVar; this.f = j2; @@ -75,49 +75,49 @@ public class e { this.r = kVar; this.t = list3; this.u = i6; - this.f340s = bVar; + this.f341s = bVar; this.v = z2; } public String a(String str) { - StringBuilder P = c.d.b.a.a.P(str); - P.append(this.f339c); - P.append("\n"); + StringBuilder O = c.d.b.a.a.O(str); + O.append(this.f340c); + O.append("\n"); e e = this.b.e(this.f); if (e != null) { - P.append("\t\tParents: "); - P.append(e.f339c); + O.append("\t\tParents: "); + O.append(e.f340c); e e2 = this.b.e(e.f); while (e2 != null) { - P.append("->"); - P.append(e2.f339c); + O.append("->"); + O.append(e2.f340c); e2 = this.b.e(e2.f); } - P.append(str); - P.append("\n"); + O.append(str); + O.append("\n"); } if (!this.h.isEmpty()) { - P.append(str); - P.append("\tMasks: "); - P.append(this.h.size()); - P.append("\n"); + O.append(str); + O.append("\tMasks: "); + O.append(this.h.size()); + O.append("\n"); } if (!(this.j == 0 || this.k == 0)) { - P.append(str); - P.append("\tBackground: "); - P.append(String.format(Locale.US, "%dx%d %X\n", Integer.valueOf(this.j), Integer.valueOf(this.k), Integer.valueOf(this.l))); + O.append(str); + O.append("\tBackground: "); + O.append(String.format(Locale.US, "%dx%d %X\n", Integer.valueOf(this.j), Integer.valueOf(this.k), Integer.valueOf(this.l))); } if (!this.a.isEmpty()) { - P.append(str); - P.append("\tShapes:\n"); + O.append(str); + O.append("\tShapes:\n"); for (b bVar : this.a) { - P.append(str); - P.append("\t\t"); - P.append(bVar); - P.append("\n"); + O.append(str); + O.append("\t\t"); + O.append(bVar); + O.append("\n"); } } - return P.toString(); + return O.toString(); } public String toString() { diff --git a/app/src/main/java/c/c/a/y/m/g.java b/app/src/main/java/c/c/a/y/m/g.java index 9bebe70bac..f87cb1f55a 100644 --- a/app/src/main/java/c/c/a/y/m/g.java +++ b/app/src/main/java/c/c/a/y/m/g.java @@ -14,28 +14,28 @@ import java.util.List; public class g extends b { /* renamed from: x reason: collision with root package name */ - public final d f341x; + public final d f342x; public g(j jVar, e eVar) { super(jVar, eVar); d dVar = new d(jVar, this, new m("__container", eVar.a, false)); - this.f341x = dVar; + this.f342x = dVar; dVar.b(Collections.emptyList(), Collections.emptyList()); } @Override // c.c.a.y.m.b, c.c.a.w.b.e public void d(RectF rectF, Matrix matrix, boolean z2) { super.d(rectF, matrix, z2); - this.f341x.d(rectF, this.m, z2); + this.f342x.d(rectF, this.m, z2); } @Override // c.c.a.y.m.b public void j(@NonNull Canvas canvas, Matrix matrix, int i) { - this.f341x.f(canvas, matrix, i); + this.f342x.f(canvas, matrix, i); } @Override // c.c.a.y.m.b public void n(f fVar, int i, List list, f fVar2) { - this.f341x.c(fVar, i, list, fVar2); + this.f342x.c(fVar, i, list, fVar2); } } diff --git a/app/src/main/java/c/c/a/y/m/h.java b/app/src/main/java/c/c/a/y/m/h.java index 4a70ac8bcc..4af84267a2 100644 --- a/app/src/main/java/c/c/a/y/m/h.java +++ b/app/src/main/java/c/c/a/y/m/h.java @@ -21,19 +21,19 @@ public class h extends b { public a C; /* renamed from: x reason: collision with root package name */ - public final RectF f342x = new RectF(); + public final RectF f343x = new RectF(); /* renamed from: y reason: collision with root package name */ - public final Paint f343y; + public final Paint f344y; /* renamed from: z reason: collision with root package name */ - public final float[] f344z; + public final float[] f345z; public h(j jVar, e eVar) { super(jVar, eVar); c.c.a.w.a aVar = new c.c.a.w.a(); - this.f343y = aVar; - this.f344z = new float[8]; + this.f344y = aVar; + this.f345z = new float[8]; this.A = new Path(); this.B = eVar; aVar.setAlpha(0); @@ -44,11 +44,11 @@ public class h extends b { @Override // c.c.a.y.m.b, c.c.a.w.b.e public void d(RectF rectF, Matrix matrix, boolean z2) { super.d(rectF, matrix, z2); - RectF rectF2 = this.f342x; + RectF rectF2 = this.f343x; e eVar = this.B; rectF2.set(0.0f, 0.0f, (float) eVar.j, (float) eVar.k); - this.m.mapRect(this.f342x); - rectF.set(this.f342x); + this.m.mapRect(this.f343x); + rectF.set(this.f343x); } @Override // c.c.a.y.m.b, c.c.a.y.g @@ -70,13 +70,13 @@ public class h extends b { if (alpha != 0) { a aVar = this.v.j; int intValue = (int) ((((((float) alpha) / 255.0f) * ((float) (aVar == null ? 100 : aVar.e().intValue()))) / 100.0f) * (((float) i) / 255.0f) * 255.0f); - this.f343y.setAlpha(intValue); + this.f344y.setAlpha(intValue); a aVar2 = this.C; if (aVar2 != null) { - this.f343y.setColorFilter(aVar2.e()); + this.f344y.setColorFilter(aVar2.e()); } if (intValue > 0) { - float[] fArr = this.f344z; + float[] fArr = this.f345z; fArr[0] = 0.0f; fArr[1] = 0.0f; e eVar = this.B; @@ -91,22 +91,22 @@ public class h extends b { matrix.mapPoints(fArr); this.A.reset(); Path path = this.A; - float[] fArr2 = this.f344z; + float[] fArr2 = this.f345z; path.moveTo(fArr2[0], fArr2[1]); Path path2 = this.A; - float[] fArr3 = this.f344z; + float[] fArr3 = this.f345z; path2.lineTo(fArr3[2], fArr3[3]); Path path3 = this.A; - float[] fArr4 = this.f344z; + float[] fArr4 = this.f345z; path3.lineTo(fArr4[4], fArr4[5]); Path path4 = this.A; - float[] fArr5 = this.f344z; + float[] fArr5 = this.f345z; path4.lineTo(fArr5[6], fArr5[7]); Path path5 = this.A; - float[] fArr6 = this.f344z; + float[] fArr6 = this.f345z; path5.lineTo(fArr6[0], fArr6[1]); this.A.close(); - canvas.drawPath(this.A, this.f343y); + canvas.drawPath(this.A, this.f344y); } } } diff --git a/app/src/main/java/c/c/a/y/m/i.java b/app/src/main/java/c/c/a/y/m/i.java index 65c96f6088..f8de6af9a7 100644 --- a/app/src/main/java/c/c/a/y/m/i.java +++ b/app/src/main/java/c/c/a/y/m/i.java @@ -53,13 +53,13 @@ public class i extends b { public c.c.a.w.c.a P; /* renamed from: x reason: collision with root package name */ - public final StringBuilder f345x = new StringBuilder(2); + public final StringBuilder f346x = new StringBuilder(2); /* renamed from: y reason: collision with root package name */ - public final RectF f346y = new RectF(); + public final RectF f347y = new RectF(); /* renamed from: z reason: collision with root package name */ - public final Matrix f347z = new Matrix(); + public final Matrix f348z = new Matrix(); /* compiled from: TextLayer */ public class a extends Paint { @@ -102,7 +102,7 @@ public class i extends b { a3.a.add(this); e(this.J); } - if (!(kVar == null || (bVar2 = kVar.f315c) == null)) { + if (!(kVar == null || (bVar2 = kVar.f316c) == null)) { c.c.a.w.c.a a4 = bVar2.a(); this.L = a4; a4.a.add(this); @@ -258,7 +258,7 @@ public class i extends b { } if (this.F.j.g.size() > 0) { c.c.a.w.c.a aVar9 = this.P; - float floatValue = (aVar9 != null ? aVar9.e().floatValue() : e.f310c) / 100.0f; + float floatValue = (aVar9 != null ? aVar9.e().floatValue() : e.f311c) / 100.0f; float d = g.d(matrix); String str4 = e.a; float c2 = g.c() * e.f; @@ -270,14 +270,14 @@ public class i extends b { float f4 = 0.0f; int i5 = 0; while (i5 < str5.length()) { - e eVar = this.G.g.get(e.a(str5.charAt(i5), dVar.a, dVar.f311c)); + e eVar = this.G.g.get(e.a(str5.charAt(i5), dVar.a, dVar.f312c)); if (eVar == null) { f3 = c2; i3 = i4; str3 = str5; } else { str3 = str5; - double d2 = eVar.f312c; + double d2 = eVar.f313c; f3 = c2; i3 = i4; f4 = (float) ((d2 * ((double) floatValue) * ((double) g.c()) * ((double) d)) + ((double) f4)); @@ -294,7 +294,7 @@ public class i extends b { int i6 = 0; while (i6 < str6.length()) { String str7 = str6; - e eVar2 = this.G.g.get(e.a(str7.charAt(i6), dVar.a, dVar.f311c)); + e eVar2 = this.G.g.get(e.a(str7.charAt(i6), dVar.a, dVar.f312c)); if (eVar2 == null) { list = t; i2 = size; @@ -326,11 +326,11 @@ public class i extends b { int i8 = 0; while (i8 < list2.size()) { Path path = list2.get(i8).getPath(); - path.computeBounds(this.f346y, false); - this.f347z.set(matrix); - this.f347z.preTranslate(0.0f, (-e.g) * g.c()); - this.f347z.preScale(floatValue, floatValue); - path.transform(this.f347z); + path.computeBounds(this.f347y, false); + this.f348z.set(matrix); + this.f348z.preTranslate(0.0f, (-e.g) * g.c()); + this.f348z.preScale(floatValue, floatValue); + path.transform(this.f348z); if (e.k) { s(path, this.A, canvas); s(path, this.B, canvas); @@ -341,7 +341,7 @@ public class i extends b { i8++; list2 = list2; } - float c3 = g.c() * ((float) eVar2.f312c) * floatValue * d; + float c3 = g.c() * ((float) eVar2.f313c) * floatValue * d; float f5 = ((float) e.e) / 10.0f; c.c.a.w.c.a aVar10 = this.O; if (aVar10 != null) { @@ -369,7 +369,7 @@ public class i extends b { float d3 = g.d(matrix); j jVar = this.F; ?? r6 = dVar.a; - ?? r3 = dVar.f311c; + ?? r3 = dVar.f312c; Typeface typeface = null; if (jVar.getCallback() == null) { aVar = null; @@ -385,12 +385,12 @@ public class i extends b { jVar2.b = r3; typeface = aVar.b.get(jVar2); if (typeface == null) { - Typeface typeface2 = aVar.f302c.get(r6); + Typeface typeface2 = aVar.f303c.get(r6); if (typeface2 == null) { - StringBuilder U = c.d.b.a.a.U("fonts/", r6); - U.append(aVar.e); - typeface2 = Typeface.createFromAsset(aVar.d, U.toString()); - aVar.f302c.put(r6, typeface2); + StringBuilder S = c.d.b.a.a.S("fonts/", r6); + S.append(aVar.e); + typeface2 = Typeface.createFromAsset(aVar.d, S.toString()); + aVar.f303c.put(r6, typeface2); } boolean contains = r3.contains("Italic"); boolean contains2 = r3.contains("Bold"); @@ -404,7 +404,7 @@ public class i extends b { Objects.requireNonNull(this.F); this.A.setTypeface(typeface); c.c.a.w.c.a aVar12 = this.P; - this.A.setTextSize(g.c() * (aVar12 != null ? aVar12.e().floatValue() : e.f310c)); + this.A.setTextSize(g.c() * (aVar12 != null ? aVar12.e().floatValue() : e.f311c)); this.B.setTypeface(this.A.getTypeface()); this.B.setTextSize(this.A.getTextSize()); float c4 = g.c() * e.f; @@ -430,14 +430,14 @@ public class i extends b { if (this.D.containsKey(j)) { str = this.D.get(j); } else { - this.f345x.setLength(0); + this.f346x.setLength(0); int i12 = i11; while (i12 < charCount) { int codePointAt3 = str9.codePointAt(i12); - this.f345x.appendCodePoint(codePointAt3); + this.f346x.appendCodePoint(codePointAt3); i12 += Character.charCount(codePointAt3); } - String sb = this.f345x.toString(); + String sb = this.f346x.toString(); this.D.put(j, sb); str = sb; } diff --git a/app/src/main/java/c/c/a/z/b.java b/app/src/main/java/c/c/a/z/b.java index 45aa361cbf..d9c78a9425 100644 --- a/app/src/main/java/c/c/a/z/b.java +++ b/app/src/main/java/c/c/a/z/b.java @@ -17,16 +17,16 @@ public class b { public static String a(String str, a aVar, boolean z2) { String str2; - StringBuilder P = a.P("lottie_cache_"); - P.append(str.replaceAll("\\W+", "")); + StringBuilder O = a.O("lottie_cache_"); + O.append(str.replaceAll("\\W+", "")); if (z2) { Objects.requireNonNull(aVar); str2 = ".temp" + aVar.extension; } else { str2 = aVar.extension; } - P.append(str2); - return P.toString(); + O.append(str2); + return O.toString(); } public final File b() { diff --git a/app/src/main/java/c/c/a/z/c.java b/app/src/main/java/c/c/a/z/c.java index 63ac82d494..5774b2a6e9 100644 --- a/app/src/main/java/c/c/a/z/c.java +++ b/app/src/main/java/c/c/a/z/c.java @@ -24,24 +24,24 @@ public class c { @Nullable /* renamed from: c reason: collision with root package name */ - public final b f348c; + public final b f349c; public c(Context context, String str, @Nullable String str2) { Context applicationContext = context.getApplicationContext(); this.a = applicationContext; this.b = str; if (str2 == null) { - this.f348c = null; + this.f349c = null; } else { - this.f348c = new b(applicationContext); + this.f349c = new b(applicationContext); } } @WorkerThread public final p a() throws IOException { - StringBuilder P = a.P("Fetching "); - P.append(this.b); - c.c.a.b0.c.a(P.toString()); + StringBuilder O = a.O("Fetching "); + O.append(this.b); + c.c.a.b0.c.a(O.toString()); HttpURLConnection httpURLConnection = (HttpURLConnection) new URL(this.b).openConnection(); httpURLConnection.setRequestMethod(ShareTarget.METHOD_GET); try { @@ -107,27 +107,27 @@ public class c { if (contentType.contains("application/zip")) { c.c.a.b0.c.a("Handling zip response."); aVar = a.ZIP; - b bVar = this.f348c; + b bVar = this.f349c; pVar = bVar == null ? e.d(new ZipInputStream(httpURLConnection.getInputStream()), null) : e.d(new ZipInputStream(new FileInputStream(bVar.c(this.b, httpURLConnection.getInputStream(), aVar))), this.b); } else { c.c.a.b0.c.a("Received json response."); aVar = a.JSON; - b bVar2 = this.f348c; + b bVar2 = this.f349c; pVar = bVar2 == null ? e.b(httpURLConnection.getInputStream(), null) : e.b(new FileInputStream(new File(bVar2.c(this.b, httpURLConnection.getInputStream(), aVar).getAbsolutePath())), this.b); } - b bVar3 = this.f348c; + b bVar3 = this.f349c; if (!(bVar3 == null || pVar.a == null)) { File file = new File(bVar3.b(), b.a(this.b, aVar, true)); File file2 = new File(file.getAbsolutePath().replace(".temp", "")); boolean renameTo = file.renameTo(file2); c.c.a.b0.c.a("Copying temp file to real file (" + file2 + ")"); if (!renameTo) { - StringBuilder P = a.P("Unable to rename cache file "); - P.append(file.getAbsolutePath()); - P.append(" to "); - P.append(file2.getAbsolutePath()); - P.append("."); - c.c.a.b0.c.b(P.toString()); + StringBuilder O = a.O("Unable to rename cache file "); + O.append(file.getAbsolutePath()); + O.append(" to "); + O.append(file2.getAbsolutePath()); + O.append("."); + c.c.a.b0.c.b(O.toString()); } } return pVar; diff --git a/app/src/main/java/c/d/a/a/a.java b/app/src/main/java/c/d/a/a/a.java index aec22077e9..65d5352803 100644 --- a/app/src/main/java/c/d/a/a/a.java +++ b/app/src/main/java/c/d/a/a/a.java @@ -41,7 +41,7 @@ public class a extends BillingClient { public final String b; /* renamed from: c reason: collision with root package name */ - public final Handler f349c; + public final Handler f350c; public u d; public Context e; public d f; @@ -67,7 +67,7 @@ public class a extends BillingClient { str2 = "3.0.3"; } this.a = 0; - this.f349c = new Handler(Looper.getMainLooper()); + this.f350c = new Handler(Looper.getMainLooper()); this.j = 0; this.b = str2; Context applicationContext = context.getApplicationContext(); @@ -178,11 +178,11 @@ public class a extends BillingClient { while (i2 < arrayList.size()) { String valueOf = String.valueOf(str14); String valueOf2 = String.valueOf(arrayList.get(i2)); - String H = c.d.b.a.a.H(new StringBuilder(valueOf.length() + valueOf2.length()), valueOf, valueOf2); + String G = c.d.b.a.a.G(new StringBuilder(valueOf.length() + valueOf2.length()), valueOf, valueOf2); if (i2 < arrayList.size() - 1) { - H = String.valueOf(H).concat(", "); + G = String.valueOf(G).concat(", "); } - str14 = H; + str14 = G; i2++; str13 = str13; } @@ -454,7 +454,7 @@ public class a extends BillingClient { int i = this.a; if (i == 1) { c.i.a.f.h.n.a.b("BillingClient", "Client is already in the process of connecting to billing service."); - bVar.onBillingSetupFinished(q.f350c); + bVar.onBillingSetupFinished(q.f351c); } else if (i == 3) { c.i.a.f.h.n.a.b("BillingClient", "Client was already closed and can't be reused. Please create another instance."); bVar.onBillingSetupFinished(q.j); @@ -465,7 +465,7 @@ public class a extends BillingClient { Context context = uVar.a; IntentFilter intentFilter = new IntentFilter("com.android.vending.billing.PURCHASES_UPDATED"); if (!tVar.b) { - context.registerReceiver(tVar.f352c.b, intentFilter); + context.registerReceiver(tVar.f353c.b, intentFilter); tVar.b = true; } c.i.a.f.h.n.a.a("BillingClient", "Starting in-app billing setup."); @@ -498,7 +498,7 @@ public class a extends BillingClient { public final void h(Runnable runnable) { if (!Thread.interrupted()) { - this.f349c.post(runnable); + this.f350c.post(runnable); } } @@ -515,7 +515,7 @@ public class a extends BillingClient { } try { Future submit = this.r.submit(callable); - this.f349c.postDelayed(new z(submit, runnable), j2); + this.f350c.postDelayed(new z(submit, runnable), j2); return submit; } catch (Exception e) { String valueOf = String.valueOf(e); diff --git a/app/src/main/java/c/d/a/a/j.java b/app/src/main/java/c/d/a/a/j.java index f91e762d20..0db9047aa7 100644 --- a/app/src/main/java/c/d/a/a/j.java +++ b/app/src/main/java/c/d/a/a/j.java @@ -16,7 +16,7 @@ public final class j implements Runnable { g gVar = this.j.k; r rVar = this.i; int i = rVar.b; - String str = rVar.f351c; + String str = rVar.f352c; BillingResult billingResult = new BillingResult(); billingResult.a = i; billingResult.b = str; diff --git a/app/src/main/java/c/d/a/a/q.java b/app/src/main/java/c/d/a/a/q.java index f79b8d9493..5cbc620c63 100644 --- a/app/src/main/java/c/d/a/a/q.java +++ b/app/src/main/java/c/d/a/a/q.java @@ -7,7 +7,7 @@ public final class q { public static final BillingResult b; /* renamed from: c reason: collision with root package name */ - public static final BillingResult f350c; + public static final BillingResult f351c; public static final BillingResult d; public static final BillingResult e; public static final BillingResult f; @@ -35,7 +35,7 @@ public final class q { BillingResult billingResult4 = new BillingResult(); billingResult4.a = 5; billingResult4.b = "Client is already in the process of connecting to billing service."; - f350c = billingResult4; + f351c = billingResult4; BillingResult billingResult5 = new BillingResult(); billingResult5.a = 3; billingResult5.b = "Play Store version installed does not support cross selling products."; diff --git a/app/src/main/java/c/d/a/a/r.java b/app/src/main/java/c/d/a/a/r.java index 73bd322082..a9f072b345 100644 --- a/app/src/main/java/c/d/a/a/r.java +++ b/app/src/main/java/c/d/a/a/r.java @@ -10,11 +10,11 @@ public final class r { public final int b; /* renamed from: c reason: collision with root package name */ - public final String f351c; + public final String f352c; public r(int i, String str, @Nullable List list) { this.b = i; - this.f351c = str; + this.f352c = str; this.a = list; } } diff --git a/app/src/main/java/c/d/a/a/t.java b/app/src/main/java/c/d/a/a/t.java index 28a8eb6c0e..f2cb2eb43b 100644 --- a/app/src/main/java/c/d/a/a/t.java +++ b/app/src/main/java/c/d/a/a/t.java @@ -14,10 +14,10 @@ public final class t extends BroadcastReceiver { public boolean b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ u f352c; + public final /* synthetic */ u f353c; public /* synthetic */ t(u uVar, e eVar) { - this.f352c = uVar; + this.f353c = uVar; this.a = eVar; } diff --git a/app/src/main/java/c/d/a/a/u.java b/app/src/main/java/c/d/a/a/u.java index 267c1a9e7b..717889edd8 100644 --- a/app/src/main/java/c/d/a/a/u.java +++ b/app/src/main/java/c/d/a/a/u.java @@ -16,7 +16,7 @@ public final class u { t tVar = this.b; Context context = this.a; if (tVar.b) { - context.unregisterReceiver(tVar.f352c.b); + context.unregisterReceiver(tVar.f353c.b); tVar.b = false; return; } diff --git a/app/src/main/java/c/d/b/a/a.java b/app/src/main/java/c/d/b/a/a.java index b3d506a2f8..8ba4a78f45 100644 --- a/app/src/main/java/c/d/b/a/a.java +++ b/app/src/main/java/c/d/b/a/a.java @@ -11,12 +11,10 @@ import androidx.fragment.app.FragmentActivity; import androidx.lifecycle.ViewModelProvider; import androidx.lifecycle.ViewModelStore; import androidx.recyclerview.widget.RecyclerView; -import c.a.a.z.c; -import c.a.i.l4; +import c.a.i.k4; import c.a.q.o0.e; import c.i.c.m.d.b; import com.discord.api.channel.Channel; -import com.discord.api.utcdatetime.UtcDateTime; import com.discord.models.domain.Model; import com.discord.models.guild.Guild; import com.discord.models.user.User; @@ -30,6 +28,7 @@ import d0.z.d.a0; import d0.z.d.l; import d0.z.d.m; import d0.z.d.y; +import h0.a.a.c; import h0.a.a.v; import java.lang.reflect.Type; import java.util.ArrayList; @@ -47,85 +46,79 @@ public class a { return sb.toString(); } - public static String B(StringBuilder sb, UtcDateTime utcDateTime, String str) { - sb.append(utcDateTime); - sb.append(str); - return sb.toString(); - } - - public static String C(StringBuilder sb, Boolean bool, String str) { + public static String B(StringBuilder sb, Boolean bool, String str) { sb.append(bool); sb.append(str); return sb.toString(); } - public static String D(StringBuilder sb, CharSequence charSequence, String str) { + public static String C(StringBuilder sb, CharSequence charSequence, String str) { sb.append(charSequence); sb.append(str); return sb.toString(); } - public static String E(StringBuilder sb, Integer num, String str) { + public static String D(StringBuilder sb, Integer num, String str) { sb.append(num); sb.append(str); return sb.toString(); } - public static String F(StringBuilder sb, Long l, String str) { + public static String E(StringBuilder sb, Long l, String str) { sb.append(l); sb.append(str); return sb.toString(); } - public static String G(StringBuilder sb, String str, char c2) { + public static String F(StringBuilder sb, String str, char c2) { sb.append(str); sb.append(c2); return sb.toString(); } - public static String H(StringBuilder sb, String str, String str2) { + public static String G(StringBuilder sb, String str, String str2) { sb.append(str); sb.append(str2); return sb.toString(); } + public static String H(StringBuilder sb, List list, String str) { + sb.append(list); + sb.append(str); + return sb.toString(); + } + public static Bundle I(String str, long j) { Bundle bundle = new Bundle(); bundle.putLong(str, j); return bundle; } - public static String J(StringBuilder sb, List list, String str) { - sb.append(list); - sb.append(str); - return sb.toString(); - } - - public static String K(StringBuilder sb, Map map, String str) { + public static String J(StringBuilder sb, Map map, String str) { sb.append(map); sb.append(str); return sb.toString(); } - public static String L(StringBuilder sb, boolean z2, String str) { + public static String K(StringBuilder sb, boolean z2, String str) { sb.append(z2); sb.append(str); return sb.toString(); } - public static String M(Object[] objArr, int i, String str, String str2) { + public static String L(Object[] objArr, int i, String str, String str2) { String format = String.format(str, Arrays.copyOf(objArr, i)); m.checkNotNullExpressionValue(format, str2); return format; } - public static StringBuilder N(char c2) { + public static StringBuilder M(char c2) { StringBuilder sb = new StringBuilder(); sb.append(c2); return sb; } - public static StringBuilder O(int i, String str, String str2, String str3, String str4) { + public static StringBuilder N(int i, String str, String str2, String str3, String str4) { StringBuilder sb = new StringBuilder(i); sb.append(str); sb.append(str2); @@ -134,13 +127,13 @@ public class a { return sb; } - public static StringBuilder P(String str) { + public static StringBuilder O(String str) { StringBuilder sb = new StringBuilder(); sb.append(str); return sb; } - public static StringBuilder Q(String str, int i, String str2) { + public static StringBuilder P(String str, int i, String str2) { StringBuilder sb = new StringBuilder(); sb.append(str); sb.append(i); @@ -148,7 +141,7 @@ public class a { return sb; } - public static StringBuilder R(String str, int i, String str2, int i2, String str3) { + public static StringBuilder Q(String str, int i, String str2, int i2, String str3) { StringBuilder sb = new StringBuilder(); sb.append(str); sb.append(i); @@ -158,7 +151,7 @@ public class a { return sb; } - public static StringBuilder S(String str, long j, String str2) { + public static StringBuilder R(String str, long j, String str2) { StringBuilder sb = new StringBuilder(); sb.append(str); sb.append(j); @@ -166,20 +159,20 @@ public class a { return sb; } + public static StringBuilder S(String str, String str2) { + StringBuilder sb = new StringBuilder(); + sb.append(str); + sb.append(str2); + return sb; + } + public static ViewModelProvider.Factory T(Fragment fragment, String str) { FragmentActivity requireActivity = fragment.requireActivity(); m.checkNotNullExpressionValue(requireActivity, str); return requireActivity.getDefaultViewModelProviderFactory(); } - public static StringBuilder U(String str, String str2) { - StringBuilder sb = new StringBuilder(); - sb.append(str); - sb.append(str2); - return sb; - } - - public static StringBuilder V(String str, String str2, String str3) { + public static StringBuilder U(String str, String str2, String str3) { StringBuilder sb = new StringBuilder(); sb.append(str); sb.append(str2); @@ -187,7 +180,7 @@ public class a { return sb; } - public static StringBuilder W(String str, i iVar, String str2) { + public static StringBuilder V(String str, i iVar, String str2) { StringBuilder sb = new StringBuilder(); sb.append(str); sb.append(iVar); @@ -195,54 +188,50 @@ public class a { return sb; } - public static ArrayList X(List list, String str) { + public static ArrayList W(List list, String str) { m.checkNotNullExpressionValue(list, str); return new ArrayList(); } - public static Pair Y(e.b bVar, Float f, String str) { + public static Pair X(e.b bVar, Float f, String str) { return o.to(str, Long.valueOf(e.b.a(bVar, f))); } - public static Ref$ObjectRef Z(Model.JsonReader jsonReader, String str) { + public static Ref$ObjectRef Y(Model.JsonReader jsonReader, String str) { m.checkNotNullParameter(jsonReader, str); return new Ref$ObjectRef(); } + public static g Z(Class cls, String str, String str2, int i) { + return a0.property1(new y(cls, str, str2, i)); + } + public static float a(float f, float f2, float f3, float f4) { return ((f - f2) * f3) + f4; } - public static g a0(Class cls, String str, String str2, int i) { - return a0.property1(new y(cls, str, str2, i)); + public static void a0(int i, Canvas canvas, int i2, int i3) { + l.finallyStart(i); + canvas.restoreToCount(i2); + l.finallyEnd(i3); } public static int b(String str, int i) { return String.valueOf(str).length() + i; } - public static void b0(int i, Canvas canvas, int i2, int i3) { - l.finallyStart(i); - canvas.restoreToCount(i2); - l.finallyEnd(i3); - } - - public static Object c(Channel channel, Map map) { - return map.get(Long.valueOf(channel.h())); - } - - public static void c0(int i, String str, String str2, String str3) { + public static void b0(int i, String str, String str2, String str3) { StringBuilder sb = new StringBuilder(i); sb.append(str); sb.append(str2); Log.w(str3, sb.toString()); } - public static Object d(Guild guild, Map map) { - return map.get(Long.valueOf(guild.getId())); + public static Object c(Channel channel, Map map) { + return map.get(Long.valueOf(channel.h())); } - public static void d0(int i, String str, String str2, String str3, String str4) { + public static void c0(int i, String str, String str2, String str3, String str4) { StringBuilder sb = new StringBuilder(i); sb.append(str); sb.append(str2); @@ -250,6 +239,17 @@ public class a { Log.w(str4, sb.toString()); } + public static Object d(Guild guild, Map map) { + return map.get(Long.valueOf(guild.getId())); + } + + public static void d0(int i, HashMap hashMap, String str, int i2, String str2, int i3, String str3, int i4, String str4) { + hashMap.put(str, Integer.valueOf(i)); + hashMap.put(str2, Integer.valueOf(i2)); + hashMap.put(str3, Integer.valueOf(i3)); + hashMap.put(str4, Integer.valueOf(i4)); + } + public static Object e(User user, Map map) { return map.get(Long.valueOf(user.getId())); } @@ -269,11 +269,9 @@ public class a { return sb.toString(); } - public static void f0(int i, HashMap hashMap, String str, int i2, String str2, int i3, String str3, int i4, String str4) { - hashMap.put(str, Integer.valueOf(i)); - hashMap.put(str2, Integer.valueOf(i2)); - hashMap.put(str3, Integer.valueOf(i3)); - hashMap.put(str4, Integer.valueOf(i4)); + public static void f0(Class cls, StringBuilder sb, String str) { + sb.append(cls.getName()); + sb.append(str); } public static String g(int i, String str, String str2, String str3) { @@ -284,9 +282,10 @@ public class a { return sb.toString(); } - public static void g0(Class cls, StringBuilder sb, String str) { + public static void g0(Class cls, StringBuilder sb, String str, KryoException kryoException) { sb.append(cls.getName()); sb.append(str); + kryoException.addTrace(sb.toString()); } public static String h(int i, String str, String str2, String str3, String str4) { @@ -298,10 +297,8 @@ public class a { return sb.toString(); } - public static void h0(Class cls, StringBuilder sb, String str, KryoException kryoException) { - sb.append(cls.getName()); - sb.append(str); - kryoException.addTrace(sb.toString()); + public static void h0(String str, int i, String str2) { + Log.d(str2, str + i); } public static String i(RecyclerView recyclerView, StringBuilder sb) { @@ -310,7 +307,7 @@ public class a { } public static void i0(String str, int i, String str2) { - Log.d(str2, str + i); + Log.w(str2, str + i); } public static String j(Class cls, StringBuilder sb, String str) { @@ -319,8 +316,8 @@ public class a { return sb.toString(); } - public static void j0(String str, int i, String str2) { - Log.w(str2, str + i); + public static void j0(String str, String str2, b bVar) { + bVar.b(str + str2); } public static String k(Class cls, StringBuilder sb, String str, String str2) { @@ -331,53 +328,54 @@ public class a { return sb.toString(); } - public static void k0(String str, String str2, b bVar) { - bVar.b(str + str2); + public static void k0(String str, String str2, String str3) { + Log.w(str3, str + str2); } public static String l(String str, int i) { return str + i; } - public static void l0(String str, String str2, String str3) { - Log.w(str3, str + str2); + public static void l0(String str, String str2, String str3, String str4, String str5, String str6) { + m.checkNotNullParameter(str, str2); + m.checkNotNullParameter(str3, str4); + m.checkNotNullParameter(str5, str6); } public static int m(String str, int i, int i2) { return (str.hashCode() + i) * i2; } - public static void m0(String str, String str2, String str3, String str4, String str5, String str6) { - m.checkNotNullParameter(str, str2); - m.checkNotNullParameter(str3, str4); - m.checkNotNullParameter(str5, str6); + public static void m0(StringBuilder sb, String str, String str2) { + sb.append(str); + Log.w(str2, sb.toString()); } public static String n(String str, int i, String str2) { return str + i + str2; } - public static void n0(StringBuilder sb, String str, String str2) { - sb.append(str); - Log.w(str2, sb.toString()); - } - - public static String o(String str, int i, String str2, int i2) { - return str + i + str2 + i2; - } - - public static void o0(StringBuilder sb, String str, String str2, String str3, String str4) { + public static void n0(StringBuilder sb, String str, String str2, String str3, String str4) { sb.append(str); sb.append(str2); sb.append(str3); sb.append(str4); } + public static String o(String str, int i, String str2, int i2) { + return str + i + str2 + i2; + } + + public static void o0(v vVar, String str, c cVar, int i) { + cVar.j(vVar.l(str)); + cVar.i(i); + } + public static String p(String str, int i, String str2, int i2, String str3) { return str + i + str2 + i2 + str3; } - public static l4 p0(TextView textView, String str, CharSequence charSequence, c cVar) { + public static k4 p0(TextView textView, String str, CharSequence charSequence, c.a.a.z.c cVar) { m.checkNotNullExpressionValue(textView, str); textView.setText(charSequence); return cVar.h(); @@ -387,39 +385,34 @@ public class a { return str + j; } - public static void q0(v vVar, String str, h0.a.a.c cVar, int i) { - cVar.j(vVar.l(str)); - cVar.i(i); + public static boolean q0(b.C0258b bVar, int i, String str) { + Boolean bool = bVar.get(i); + m.checkNotNullExpressionValue(bool, str); + return bool.booleanValue(); } public static String r(String str, long j, String str2) { return str + j + str2; } - public static boolean r0(b.C0258b bVar, int i, String str) { - Boolean bool = bVar.get(i); - m.checkNotNullExpressionValue(bool, str); - return bool.booleanValue(); + public static Format.b r0(int i) { + Format.b bVar = new Format.b(); + bVar.b(i); + return bVar; } public static String s(String str, Fragment fragment, String str2) { return str + fragment + str2; } - public static Format.b s0(int i) { - Format.b bVar = new Format.b(); - bVar.b(i); - return bVar; + public static Object s0(Channel channel, Map map) { + return map.get(Long.valueOf(channel.f())); } public static String t(String str, Object obj) { return str + obj; } - public static Object t0(Channel channel, Map map) { - return map.get(Long.valueOf(channel.f())); - } - public static String u(String str, String str2) { return str + str2; } diff --git a/app/src/main/java/c/e/b/a.java b/app/src/main/java/c/e/b/a.java index 3dcebd8bcd..81ed2d047e 100644 --- a/app/src/main/java/c/e/b/a.java +++ b/app/src/main/java/c/e/b/a.java @@ -10,7 +10,7 @@ public class a extends ClassLoader { public static final ClassLoader b; /* renamed from: c reason: collision with root package name */ - public static volatile a f353c; + public static volatile a f354c; public static volatile Method d; static { @@ -19,7 +19,7 @@ public class a extends ClassLoader { classLoader = ClassLoader.getSystemClassLoader(); } b = classLoader; - f353c = new a(classLoader); + f354c = new a(classLoader); } public a(ClassLoader classLoader) { @@ -33,14 +33,14 @@ public class a extends ClassLoader { } ClassLoader classLoader2 = b; if (classLoader2.equals(classLoader)) { - if (f353c == null) { + if (f354c == null) { synchronized (a) { - if (f353c == null) { - f353c = new a(classLoader2); + if (f354c == null) { + f354c = new a(classLoader2); } } } - return f353c; + return f354c; } WeakHashMap> weakHashMap = a; synchronized (weakHashMap) { diff --git a/app/src/main/java/c/e/b/c.java b/app/src/main/java/c/e/b/c.java index 37ea4c1b9a..be72d9f387 100644 --- a/app/src/main/java/c/e/b/c.java +++ b/app/src/main/java/c/e/b/c.java @@ -77,8 +77,8 @@ public abstract class c { q(fVar, replace2, arrayList, w.i); n(fVar, replace2, arrayList, w.g); q(fVar, replace2, arrayList, w.g); - n(fVar, replace2, arrayList, w.f2895c); - q(fVar, replace2, arrayList, w.f2895c); + n(fVar, replace2, arrayList, w.f2898c); + q(fVar, replace2, arrayList, w.f2898c); o(fVar, replace2, arrayList); cls2 = b.a(u, fVar.b()); } diff --git a/app/src/main/java/c/e/b/d.java b/app/src/main/java/c/e/b/d.java index e049677d4f..db847cd708 100644 --- a/app/src/main/java/c/e/b/d.java +++ b/app/src/main/java/c/e/b/d.java @@ -294,9 +294,9 @@ public abstract class d { return i; } } - StringBuilder V = a.V("Unable to find non-private method: ", str, " "); - V.append(Arrays.toString(clsArr)); - throw new IllegalArgumentException(V.toString()); + StringBuilder U = a.U("Unable to find non-private method: ", str, " "); + U.append(Arrays.toString(clsArr)); + throw new IllegalArgumentException(U.toString()); } public abstract Object d(Object obj, int i, Object... objArr); diff --git a/app/src/main/java/c/f/b/b/a.java b/app/src/main/java/c/f/b/b/a.java index 024ecee0d8..18a9e4ff51 100644 --- a/app/src/main/java/c/f/b/b/a.java +++ b/app/src/main/java/c/f/b/b/a.java @@ -4,7 +4,6 @@ import android.os.Environment; import androidx.annotation.VisibleForTesting; import c.f.b.b.c; import c.f.j.c.h; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.file.FileUtils$CreateDirectoryException; import com.facebook.common.file.FileUtils$ParentDirNotFoundException; import com.facebook.common.file.FileUtils$RenameException; @@ -24,7 +23,7 @@ public class a implements c { public static final /* synthetic */ int b = 0; /* renamed from: c reason: collision with root package name */ - public final File f354c; + public final File f355c; public final boolean d; public final File e; public final c.f.b.a.a f; @@ -61,7 +60,7 @@ public class a implements c { public final c.f.a.a b; /* renamed from: c reason: collision with root package name */ - public long f355c = -1; + public long f356c = -1; public long d = -1; public c(String str, File file, C0058a aVar) { @@ -85,10 +84,10 @@ public class a implements c { @Override // c.f.b.b.c.a public long getSize() { - if (this.f355c < 0) { - this.f355c = this.b.a(); + if (this.f356c < 0) { + this.f356c = this.b.a(); } - return this.f355c; + return this.f356c; } } @@ -106,7 +105,7 @@ public class a implements c { StringBuilder sb = new StringBuilder(); sb.append(this.a); sb.append("("); - return c.d.b.a.a.H(sb, this.b, ")"); + return c.d.b.a.a.G(sb, this.b, ")"); } } @@ -118,8 +117,8 @@ public class a implements c { /* JADX WARNING: Illegal instructions before constructor call */ public e(long j, long j2) { super(r0.toString()); - StringBuilder S = c.d.b.a.a.S("File was not written completely. Expected: ", j, ", found: "); - S.append(j2); + StringBuilder R = c.d.b.a.a.R("File was not written completely. Expected: ", j, ", found: "); + R.append(j2); this.expected = j; this.actual = j2; } @@ -146,7 +145,7 @@ public class a implements c { long currentTimeMillis = System.currentTimeMillis(); File j = a.this.j(this.a); try { - AnimatableValueParser.r2(this.b, j); + c.c.a.a0.d.O1(this.b, j); if (j.exists()) { j.setLastModified(currentTimeMillis); } @@ -170,7 +169,7 @@ public class a implements c { try { c.f.d.d.b bVar = new c.f.d.d.b(fileOutputStream); h hVar = (h) gVar; - hVar.b.f432c.a(hVar.a.e(), bVar); + hVar.b.f433c.a(hVar.a.e(), bVar); bVar.flush(); long j = bVar.i; fileOutputStream.close(); @@ -214,7 +213,7 @@ public class a implements c { if (str == ".cnt") { z2 = true; } - AnimatableValueParser.B(z2); + c.c.a.a0.d.B(z2); } z2 = true; } @@ -234,7 +233,7 @@ public class a implements c { @Override // c.f.d.c.a public void c(File file) { - if (!a.this.f354c.equals(file) && !this.a) { + if (!a.this.f355c.equals(file) && !this.a) { file.delete(); } if (this.a && file.equals(a.this.e)) { @@ -247,7 +246,7 @@ public class a implements c { /* JADX WARNING: Removed duplicated region for block: B:19:0x0069 A[SYNTHETIC, Splitter:B:19:0x0069] */ public a(File file, int i, c.f.b.a.a aVar) { boolean z2; - this.f354c = file; + this.f355c = file; boolean z3 = false; try { File externalStorageDirectory = Environment.getExternalStorageDirectory(); @@ -258,21 +257,21 @@ public class a implements c { Objects.requireNonNull((c.f.b.a.d) aVar); } this.d = z2; - File file2 = new File(this.f354c, String.format(null, "%s.ols%d.%d", "v2", 100, Integer.valueOf(i))); + File file2 = new File(this.f355c, String.format(null, "%s.ols%d.%d", "v2", 100, Integer.valueOf(i))); this.e = file2; this.f = aVar; - if (this.f354c.exists()) { + if (this.f355c.exists()) { if (!file2.exists()) { - AnimatableValueParser.b0(this.f354c); + c.c.a.a0.d.b0(this.f355c); } if (z3) { try { - AnimatableValueParser.O1(file2); + c.c.a.a0.d.l1(file2); } catch (FileUtils$CreateDirectoryException unused2) { c.f.b.a.a aVar2 = this.f; - StringBuilder P = c.d.b.a.a.P("version directory could not be created: "); - P.append(this.e); - P.toString(); + StringBuilder O = c.d.b.a.a.O("version directory could not be created: "); + O.append(this.e); + O.toString(); Objects.requireNonNull((c.f.b.a.d) aVar2); } } @@ -288,10 +287,10 @@ public class a implements c { } z2 = false; this.d = z2; - File file2 = new File(this.f354c, String.format(null, "%s.ols%d.%d", "v2", 100, Integer.valueOf(i))); + File file2 = new File(this.f355c, String.format(null, "%s.ols%d.%d", "v2", 100, Integer.valueOf(i))); this.e = file2; this.f = aVar; - if (this.f354c.exists()) { + if (this.f355c.exists()) { } z3 = true; if (z3) { @@ -334,7 +333,7 @@ public class a implements c { @Override // c.f.b.b.c public void a() { - AnimatableValueParser.R2(this.f354c, new g(null)); + c.c.a.a0.d.n2(this.f355c, new g(null)); } @Override // c.f.b.b.c @@ -342,7 +341,7 @@ public class a implements c { File file = new File(k(str)); if (!file.exists()) { try { - AnimatableValueParser.O1(file); + c.c.a.a0.d.l1(file); } catch (FileUtils$CreateDirectoryException e2) { Objects.requireNonNull((c.f.b.a.d) this.f); throw e2; @@ -381,7 +380,7 @@ public class a implements c { @Override // c.f.b.b.c public Collection e() throws IOException { b bVar = new b(null); - AnimatableValueParser.R2(this.e, bVar); + c.c.a.a0.d.n2(this.e, bVar); return Collections.unmodifiableList(bVar.a); } @@ -413,17 +412,17 @@ public class a implements c { @VisibleForTesting public File j(String str) { - StringBuilder P = c.d.b.a.a.P(k(str)); - P.append(File.separator); - P.append(str); - P.append(".cnt"); - return new File(P.toString()); + StringBuilder O = c.d.b.a.a.O(k(str)); + O.append(File.separator); + O.append(str); + O.append(".cnt"); + return new File(O.toString()); } public final String k(String str) { String valueOf = String.valueOf(Math.abs(str.hashCode() % 100)); StringBuilder sb = new StringBuilder(); sb.append(this.e); - return c.d.b.a.a.H(sb, File.separator, valueOf); + return c.d.b.a.a.G(sb, File.separator, valueOf); } } diff --git a/app/src/main/java/c/f/b/b/d.java b/app/src/main/java/c/f/b/b/d.java index 833fb9bab7..81bc397853 100644 --- a/app/src/main/java/c/f/b/b/d.java +++ b/app/src/main/java/c/f/b/b/d.java @@ -7,7 +7,6 @@ import c.f.b.a.e; import c.f.b.a.g; import c.f.b.b.a; import c.f.b.b.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import java.io.IOException; import java.io.UnsupportedEncodingException; @@ -28,7 +27,7 @@ public class d implements h { public static final long b = TimeUnit.MINUTES.toMillis(30); /* renamed from: c reason: collision with root package name */ - public final long f357c; + public final long f358c; public final long d; public final CountDownLatch e; public long f; @@ -67,7 +66,7 @@ public class d implements h { public long b = -1; /* renamed from: c reason: collision with root package name */ - public long f358c = -1; + public long f359c = -1; public synchronized long a() { return this.b; @@ -76,7 +75,7 @@ public class d implements h { public synchronized void b(long j, long j2) { if (this.a) { this.b += j; - this.f358c += j2; + this.f359c += j2; } } } @@ -87,19 +86,19 @@ public class d implements h { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f359c; + public final long f360c; public c(long j, long j2, long j3) { this.a = j; this.b = j2; - this.f359c = j3; + this.f360c = j3; } } public d(c cVar, g gVar, c cVar2, c.f.b.a.b bVar, c.f.b.a.a aVar, c.f.d.a.a aVar2, Executor executor, boolean z2) { c.f.d.i.a aVar3; - this.f357c = cVar2.b; - long j = cVar2.f359c; + this.f358c = cVar2.b; + long j = cVar2.f360c; this.d = j; this.f = j; c.f.d.i.a aVar4 = c.f.d.i.a.a; @@ -166,12 +165,12 @@ public class d implements h { a2.d = cacheKey; try { synchronized (this.q) { - List I0 = AnimatableValueParser.I0(cacheKey); + List B0 = c.c.a.a0.d.B0(cacheKey); int i = 0; String str = null; aVar = null; while (true) { - ArrayList arrayList = (ArrayList) I0; + ArrayList arrayList = (ArrayList) B0; if (i >= arrayList.size()) { break; } @@ -219,7 +218,7 @@ public class d implements h { } public c.f.a.a d(CacheKey cacheKey, g gVar) throws IOException { - String x2; + String U1; c.f.a.a b2; i a2 = i.a(); a2.d = cacheKey; @@ -227,7 +226,7 @@ public class d implements h { synchronized (this.q) { try { if (!(cacheKey instanceof c.f.b.a.c)) { - x2 = AnimatableValueParser.x2(cacheKey); + U1 = c.c.a.a0.d.U1(cacheKey); } else { c.f.b.a.c cVar = (c.f.b.a.c) cacheKey; throw null; @@ -237,13 +236,13 @@ public class d implements h { } } try { - c.b g = g(x2, cacheKey); + c.b g = g(U1, cacheKey); try { a.f fVar = (a.f) g; fVar.c(gVar, cacheKey); synchronized (this.q) { b2 = fVar.b(cacheKey); - this.h.add(x2); + this.h.add(U1); this.o.b(b2.a(), 1); } b2.a(); @@ -317,7 +316,7 @@ public class d implements h { } b bVar2 = this.o; synchronized (bVar2) { - j = bVar2.f358c; + j = bVar2.f359c; } long j7 = (long) i; if (!(j == j7 && this.o.a() == j6)) { @@ -328,7 +327,7 @@ public class d implements h { } b bVar3 = this.o; synchronized (bVar3) { - bVar3.f358c = j7; + bVar3.f359c = j7; bVar3.b = j6; bVar3.a = true; } @@ -346,10 +345,10 @@ public class d implements h { public void f(CacheKey cacheKey) { synchronized (this.q) { try { - List I0 = AnimatableValueParser.I0(cacheKey); + List B0 = c.c.a.a0.d.B0(cacheKey); int i = 0; while (true) { - ArrayList arrayList = (ArrayList) I0; + ArrayList arrayList = (ArrayList) B0; if (i >= arrayList.size()) { break; } @@ -375,7 +374,7 @@ public class d implements h { b bVar = this.o; synchronized (bVar) { bVar.a = false; - bVar.f358c = -1; + bVar.f359c = -1; bVar.b = -1; } e(); @@ -404,13 +403,13 @@ public class d implements h { aVar.h.unlock(); } } - StatFs statFs = c2 == 1 ? aVar.f365c : aVar.e; + StatFs statFs = c2 == 1 ? aVar.f366c : aVar.e; long availableBlocksLong = statFs != null ? statFs.getAvailableBlocksLong() * statFs.getBlockSizeLong() : 0; if (availableBlocksLong > 0 && availableBlocksLong >= a2) { z2 = false; } if (z2) { - this.f = this.f357c; + this.f = this.f358c; } else { this.f = this.d; } diff --git a/app/src/main/java/c/f/b/b/e.java b/app/src/main/java/c/f/b/b/e.java index 9ee62c62a2..c7b5737215 100644 --- a/app/src/main/java/c/f/b/b/e.java +++ b/app/src/main/java/c/f/b/b/e.java @@ -1,9 +1,8 @@ package c.f.b.b; import androidx.annotation.VisibleForTesting; -import c.f.b.a.d; +import c.c.a.a0.d; import c.f.b.b.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.file.FileUtils$CreateDirectoryException; import com.facebook.common.internal.Supplier; import java.io.File; @@ -16,7 +15,7 @@ public class e implements c { public final Supplier b; /* renamed from: c reason: collision with root package name */ - public final String f360c; + public final String f361c; public final c.f.b.a.a d; @VisibleForTesting public volatile a e = new a(null, null); @@ -38,7 +37,7 @@ public class e implements c { this.a = i; this.d = aVar; this.b = supplier; - this.f360c = str; + this.f361c = str; } @Override // c.f.b.b.c @@ -81,14 +80,14 @@ public class e implements c { } public final void h() throws IOException { - File file = new File(this.b.get(), this.f360c); + File file = new File(this.b.get(), this.f361c); try { - AnimatableValueParser.O1(file); + d.l1(file); file.getAbsolutePath(); int i = c.f.d.e.a.a; this.e = new a(file, new a(file, this.a, this.d)); } catch (FileUtils$CreateDirectoryException e) { - Objects.requireNonNull((d) this.d); + Objects.requireNonNull((c.f.b.a.d) this.d); throw e; } } @@ -105,7 +104,7 @@ public class e implements c { z2 = false; if (z2) { if (!(this.e.a == null || this.e.b == null)) { - AnimatableValueParser.b0(this.e.b); + d.b0(this.e.b); } h(); } diff --git a/app/src/main/java/c/f/b/b/i.java b/app/src/main/java/c/f/b/b/i.java index d394a91099..2880fbd402 100644 --- a/app/src/main/java/c/f/b/b/i.java +++ b/app/src/main/java/c/f/b/b/i.java @@ -7,7 +7,7 @@ public class i { public static i b; /* renamed from: c reason: collision with root package name */ - public static int f361c; + public static int f362c; public CacheKey d; public i e; @@ -19,16 +19,16 @@ public class i { } b = iVar.e; iVar.e = null; - f361c--; + f362c--; return iVar; } } public void b() { synchronized (a) { - int i = f361c; + int i = f362c; if (i < 5) { - f361c = i + 1; + f362c = i + 1; i iVar = b; if (iVar != null) { this.e = iVar; diff --git a/app/src/main/java/c/f/d/d/i.java b/app/src/main/java/c/f/d/d/i.java index f88c5395ab..82558d3d3b 100644 --- a/app/src/main/java/c/f/d/d/i.java +++ b/app/src/main/java/c/f/d/d/i.java @@ -8,7 +8,7 @@ public final class i { public final a b; /* renamed from: c reason: collision with root package name */ - public a f362c; + public a f363c; /* compiled from: Objects */ public static final class a { @@ -16,7 +16,7 @@ public final class i { public Object b; /* renamed from: c reason: collision with root package name */ - public a f363c; + public a f364c; public a(h hVar) { } @@ -25,7 +25,7 @@ public final class i { public i(String str, h hVar) { a aVar = new a(null); this.b = aVar; - this.f362c = aVar; + this.f363c = aVar; this.a = str; } @@ -41,8 +41,8 @@ public final class i { public final i c(String str, Object obj) { a aVar = new a(null); - this.f362c.f363c = aVar; - this.f362c = aVar; + this.f363c.f364c = aVar; + this.f363c = aVar; aVar.b = obj; Objects.requireNonNull(str); aVar.a = str; @@ -53,7 +53,7 @@ public final class i { StringBuilder sb = new StringBuilder(32); sb.append(this.a); sb.append('{'); - a aVar = this.b.f363c; + a aVar = this.b.f364c; String str = ""; while (aVar != null) { Object obj = aVar.b; @@ -69,7 +69,7 @@ public final class i { String deepToString = Arrays.deepToString(new Object[]{obj}); sb.append((CharSequence) deepToString, 1, deepToString.length() - 1); } - aVar = aVar.f363c; + aVar = aVar.f364c; str = ", "; } sb.append('}'); diff --git a/app/src/main/java/c/f/d/f/b.java b/app/src/main/java/c/f/d/f/b.java index 7e70b7d012..7e6b8ea852 100644 --- a/app/src/main/java/c/f/d/f/b.java +++ b/app/src/main/java/c/f/d/f/b.java @@ -9,5 +9,5 @@ public class b { public static final Map b = f.of("image/heif", "heif", "image/heic", "heic"); /* renamed from: c reason: collision with root package name */ - public static final Map f364c = f.of("heif", "image/heif", "heic", "image/heic"); + public static final Map f365c = f.of("heif", "image/heif", "heic", "image/heic"); } diff --git a/app/src/main/java/c/f/d/g/f.java b/app/src/main/java/c/f/d/g/f.java index 686f3eafbc..e2c514a07a 100644 --- a/app/src/main/java/c/f/d/g/f.java +++ b/app/src/main/java/c/f/d/g/f.java @@ -1,7 +1,7 @@ package c.f.d.g; +import c.c.a.a0.d; import c.f.d.e.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.io.InputStream; import java.util.Objects; @@ -38,7 +38,7 @@ public class f extends InputStream { @Override // java.io.InputStream public int available() throws IOException { - AnimatableValueParser.B(this.m <= this.l); + d.B(this.m <= this.l); b(); return this.i.available() + (this.l - this.m); } @@ -69,7 +69,7 @@ public class f extends InputStream { @Override // java.io.InputStream public int read() throws IOException { - AnimatableValueParser.B(this.m <= this.l); + d.B(this.m <= this.l); b(); if (!a()) { return -1; @@ -82,7 +82,7 @@ public class f extends InputStream { @Override // java.io.InputStream public int read(byte[] bArr, int i, int i2) throws IOException { - AnimatableValueParser.B(this.m <= this.l); + d.B(this.m <= this.l); b(); if (!a()) { return -1; @@ -95,7 +95,7 @@ public class f extends InputStream { @Override // java.io.InputStream public long skip(long j) throws IOException { - AnimatableValueParser.B(this.m <= this.l); + d.B(this.m <= this.l); b(); int i = this.l; int i2 = this.m; diff --git a/app/src/main/java/c/f/d/g/h.java b/app/src/main/java/c/f/d/g/h.java index 0666f5c801..e01c47f80d 100644 --- a/app/src/main/java/c/f/d/g/h.java +++ b/app/src/main/java/c/f/d/g/h.java @@ -1,8 +1,8 @@ package c.f.d.g; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.d.b.a.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.memory.PooledByteBuffer; import java.io.InputStream; /* compiled from: PooledByteBufferInputStream */ @@ -15,7 +15,7 @@ public class h extends InputStream { public int k = 0; public h(PooledByteBuffer pooledByteBuffer) { - AnimatableValueParser.j(Boolean.valueOf(!pooledByteBuffer.isClosed())); + d.j(Boolean.valueOf(!pooledByteBuffer.isClosed())); this.i = pooledByteBuffer; } @@ -53,13 +53,13 @@ public class h extends InputStream { @Override // java.io.InputStream public int read(byte[] bArr, int i, int i2) { if (i < 0 || i2 < 0 || i + i2 > bArr.length) { - StringBuilder P = a.P("length="); - P.append(bArr.length); - P.append("; regionStart="); - P.append(i); - P.append("; regionLength="); - P.append(i2); - throw new ArrayIndexOutOfBoundsException(P.toString()); + StringBuilder O = a.O("length="); + O.append(bArr.length); + O.append("; regionStart="); + O.append(i); + O.append("; regionLength="); + O.append(i2); + throw new ArrayIndexOutOfBoundsException(O.toString()); } int available = available(); if (available <= 0) { @@ -81,7 +81,7 @@ public class h extends InputStream { @Override // java.io.InputStream public long skip(long j) { - AnimatableValueParser.j(Boolean.valueOf(j >= 0)); + d.j(Boolean.valueOf(j >= 0)); int min = Math.min((int) j, available()); this.j += min; return (long) min; diff --git a/app/src/main/java/c/f/d/g/j.java b/app/src/main/java/c/f/d/g/j.java index 54a3533618..7381a8eb3a 100644 --- a/app/src/main/java/c/f/d/g/j.java +++ b/app/src/main/java/c/f/d/g/j.java @@ -1,6 +1,6 @@ package c.f.d.g; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; @@ -10,7 +10,7 @@ public class j { public final a b; public j(a aVar) { - AnimatableValueParser.j(true); + d.j(true); this.b = aVar; } diff --git a/app/src/main/java/c/f/d/h/a.java b/app/src/main/java/c/f/d/h/a.java index ddf8224284..f4867c6296 100644 --- a/app/src/main/java/c/f/d/h/a.java +++ b/app/src/main/java/c/f/d/h/a.java @@ -1,6 +1,6 @@ package c.f.d.h; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.facebook.common.references.CloseableReference; import com.facebook.common.references.SharedReference; /* compiled from: DefaultCloseableReference */ @@ -16,7 +16,7 @@ public class a extends CloseableReference { @Override // com.facebook.common.references.CloseableReference /* renamed from: b */ public CloseableReference clone() { - AnimatableValueParser.B(x()); + d.B(x()); return new a(this.n, this.o, this.p != null ? new Throwable(this.p) : null); } diff --git a/app/src/main/java/c/f/d/h/e.java b/app/src/main/java/c/f/d/h/e.java index 33a8916119..13e1569d4d 100644 --- a/app/src/main/java/c/f/d/h/e.java +++ b/app/src/main/java/c/f/d/h/e.java @@ -1,6 +1,6 @@ package c.f.d.h; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.facebook.common.references.CloseableReference; import com.facebook.common.references.SharedReference; /* compiled from: RefCountCloseableReference */ @@ -16,7 +16,7 @@ public class e extends CloseableReference { @Override // com.facebook.common.references.CloseableReference /* renamed from: b */ public CloseableReference clone() { - AnimatableValueParser.B(x()); + d.B(x()); return new e(this.n, this.o, this.p); } } diff --git a/app/src/main/java/c/f/d/i/a.java b/app/src/main/java/c/f/d/i/a.java index b0b23aaa17..443e56009d 100644 --- a/app/src/main/java/c/f/d/i/a.java +++ b/app/src/main/java/c/f/d/i/a.java @@ -14,7 +14,7 @@ public class a { public static final long b = TimeUnit.MINUTES.toMillis(2); /* renamed from: c reason: collision with root package name */ - public volatile StatFs f365c = null; + public volatile StatFs f366c = null; public volatile File d; public volatile StatFs e = null; public volatile File f; @@ -39,7 +39,7 @@ public class a { } public final void b() { - this.f365c = c(this.f365c, this.d); + this.f366c = c(this.f366c, this.d); this.e = c(this.e, this.f); this.g = SystemClock.uptimeMillis(); } diff --git a/app/src/main/java/c/f/d/m/c.java b/app/src/main/java/c/f/d/m/c.java index dc920cfcf1..6b567383bb 100644 --- a/app/src/main/java/c/f/d/m/c.java +++ b/app/src/main/java/c/f/d/m/c.java @@ -7,7 +7,7 @@ public class c { public static boolean b = false; /* renamed from: c reason: collision with root package name */ - public static final byte[] f366c = a("RIFF"); + public static final byte[] f367c = a("RIFF"); public static final byte[] d = a("WEBP"); public static final byte[] e = a("VP8 "); public static final byte[] f = a("VP8L"); @@ -22,7 +22,7 @@ public class c { } public static boolean b(byte[] bArr, int i, int i2) { - return i2 >= 20 && d(bArr, i, f366c) && d(bArr, i + 8, d); + return i2 >= 20 && d(bArr, i, f367c) && d(bArr, i + 8, d); } public static b c() { diff --git a/app/src/main/java/c/f/e/c.java b/app/src/main/java/c/f/e/c.java index f364217463..428f12f410 100644 --- a/app/src/main/java/c/f/e/c.java +++ b/app/src/main/java/c/f/e/c.java @@ -13,7 +13,7 @@ public abstract class c implements DataSource { public int b = 1; /* renamed from: c reason: collision with root package name */ - public boolean f367c = false; + public boolean f368c = false; public T d = null; public Throwable e = null; public float f = 0.0f; @@ -43,10 +43,10 @@ public abstract class c implements DataSource { public boolean close() { T t; synchronized (this) { - if (this.f367c) { + if (this.f368c) { return false; } - this.f367c = true; + this.f368c = true; t = this.d; this.d = null; } @@ -77,7 +77,7 @@ public abstract class c implements DataSource { boolean z2; Objects.requireNonNull(executor); synchronized (this) { - if (!this.f367c) { + if (!this.f368c) { z2 = true; if (this.b == 1) { this.g.add(Pair.create(fVar, executor)); @@ -114,7 +114,7 @@ public abstract class c implements DataSource { } public synchronized boolean i() { - return this.f367c; + return this.f368c; } public final void j() { @@ -131,7 +131,7 @@ public abstract class c implements DataSource { boolean z2; synchronized (this) { z2 = true; - if (!this.f367c) { + if (!this.f368c) { if (this.b == 1) { this.b = 3; this.e = th; @@ -150,7 +150,7 @@ public abstract class c implements DataSource { boolean z2; synchronized (this) { z2 = false; - if (!this.f367c) { + if (!this.f368c) { if (this.b == 1) { if (f >= this.f) { this.f = f; @@ -201,7 +201,7 @@ public abstract class c implements DataSource { synchronized (this) { try { boolean z3 = true; - if (!this.f367c) { + if (!this.f368c) { if (this.b == 1) { if (z2) { this.b = 2; diff --git a/app/src/main/java/c/f/e/e.java b/app/src/main/java/c/f/e/e.java index 8adf86aaa2..cc94c00915 100644 --- a/app/src/main/java/c/f/e/e.java +++ b/app/src/main/java/c/f/e/e.java @@ -1,6 +1,6 @@ package c.f.e; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.facebook.common.internal.Supplier; import com.facebook.datasource.DataSource; /* compiled from: DataSources */ @@ -13,6 +13,6 @@ public final class e implements Supplier> { @Override // com.facebook.common.internal.Supplier public Object get() { - return AnimatableValueParser.Z0(this.a); + return d.Q0(this.a); } } diff --git a/app/src/main/java/c/f/e/g.java b/app/src/main/java/c/f/e/g.java index a16a580296..a48840b792 100644 --- a/app/src/main/java/c/f/e/g.java +++ b/app/src/main/java/c/f/e/g.java @@ -1,7 +1,7 @@ package c.f.e; +import c.c.a.a0.d; import c.f.d.d.i; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.internal.Supplier; import com.facebook.datasource.DataSource; import java.util.List; @@ -172,7 +172,7 @@ public class g implements Supplier> { } public g(List>> list) { - AnimatableValueParser.l(!list.isEmpty(), "List of suppliers is empty!"); + d.l(!list.isEmpty(), "List of suppliers is empty!"); this.a = list; } @@ -183,7 +183,7 @@ public class g implements Supplier> { if (!(obj instanceof g)) { return false; } - return AnimatableValueParser.i0(this.a, ((g) obj).a); + return d.i0(this.a, ((g) obj).a); } @Override // com.facebook.common.internal.Supplier @@ -196,8 +196,8 @@ public class g implements Supplier> { } public String toString() { - i K2 = AnimatableValueParser.K2(this); - K2.c("list", this.a); - return K2.toString(); + i g2 = d.g2(this); + g2.c("list", this.a); + return g2.toString(); } } diff --git a/app/src/main/java/c/f/g/a/a/c.java b/app/src/main/java/c/f/g/a/a/c.java index 6e20d514f1..412ba05ef0 100644 --- a/app/src/main/java/c/f/g/a/a/c.java +++ b/app/src/main/java/c/f/g/a/a/c.java @@ -4,6 +4,7 @@ import android.content.res.Resources; import android.graphics.drawable.Drawable; import android.net.Uri; import androidx.core.os.EnvironmentCompat; +import c.c.a.a0.d; import c.f.d.d.e; import c.f.d.d.i; import c.f.g.a.a.h.b; @@ -12,7 +13,6 @@ import c.f.g.a.a.h.h; import c.f.g.e.p; import c.f.j.c.w; import c.f.j.i.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.common.internal.Supplier; import com.facebook.common.references.CloseableReference; @@ -46,19 +46,19 @@ public class c extends AbstractDraweeController, I public ImageRequest K; /* renamed from: x reason: collision with root package name */ - public final a f368x; + public final a f369x; /* renamed from: y reason: collision with root package name */ - public final e f369y; + public final e f370y; /* renamed from: z reason: collision with root package name */ - public final w f370z; + public final w f371z; public c(Resources resources, c.f.g.b.a aVar, a aVar2, Executor executor, w wVar, e eVar) { super(aVar, executor, null, null); - this.f368x = new a(resources, aVar2); - this.f369y = eVar; - this.f370z = wVar; + this.f369x = new a(resources, aVar2); + this.f370y = eVar; + this.f371z = wVar; } public synchronized void F(b bVar) { @@ -114,7 +114,7 @@ public class c extends AbstractDraweeController, I } fVar2.j.add(eVar); this.E.d(true); - h hVar = this.E.f373c; + h hVar = this.E.f374c; hVar.f = abstractDraweeControllerBuilder.h; hVar.g = null; hVar.h = abstractDraweeControllerBuilder.i; @@ -168,7 +168,7 @@ public class c extends AbstractDraweeController, I aVar4.invalidateSelf(); c.f.g.h.a aVar5 = this.k; ScalingUtils$ScaleType scalingUtils$ScaleType = null; - if (!(aVar5 == null || (r0 = AnimatableValueParser.r0(aVar5.e())) == null)) { + if (!(aVar5 == null || (r0 = d.r0(aVar5.e())) == null)) { scalingUtils$ScaleType = r0.m; } aVar4.m = scalingUtils$ScaleType; @@ -234,11 +234,11 @@ public class c extends AbstractDraweeController, I CloseableReference closeableReference2 = closeableReference; try { c.f.j.r.b.b(); - AnimatableValueParser.B(CloseableReference.z(closeableReference2)); + d.B(CloseableReference.z(closeableReference2)); c.f.j.j.c w = closeableReference2.w(); K(w); Drawable J = J(this.D, w); - if (J == null && (J = J(this.f369y, w)) == null && (J = this.f368x.b(w)) == null) { + if (J == null && (J = J(this.f370y, w)) == null && (J = this.f369x.b(w)) == null) { throw new UnsupportedOperationException("Unrecognized image class: " + w); } c.f.j.r.b.b(); @@ -254,7 +254,7 @@ public class c extends AbstractDraweeController, I public CloseableReference h() { c.f.j.r.b.b(); try { - w wVar = this.f370z; + w wVar = this.f371z; if (wVar != null) { CacheKey cacheKey = this.A; if (cacheKey != null) { @@ -298,7 +298,7 @@ public class c extends AbstractDraweeController, I @Override // com.facebook.drawee.controller.AbstractDraweeController public ImageInfo l(CloseableReference closeableReference) { CloseableReference closeableReference2 = closeableReference; - AnimatableValueParser.B(CloseableReference.z(closeableReference2)); + d.B(CloseableReference.z(closeableReference2)); return closeableReference2.w(); } @@ -311,13 +311,13 @@ public class c extends AbstractDraweeController, I ImageRequest imageRequest = this.I; ImageRequest imageRequest2 = this.K; ImageRequest[] imageRequestArr = this.J; - if (imageRequest == null || (uri = imageRequest.f2263c) == null) { + if (imageRequest == null || (uri = imageRequest.f2266c) == null) { if (!(imageRequestArr == null || imageRequestArr.length <= 0 || imageRequestArr[0] == null)) { ImageRequest imageRequest3 = imageRequestArr[0]; - uri = imageRequest3 != null ? imageRequest3.f2263c : null; + uri = imageRequest3 != null ? imageRequest3.f2266c : null; } if (imageRequest2 != null) { - return imageRequest2.f2263c; + return imageRequest2.f2266c; } return null; } @@ -336,10 +336,10 @@ public class c extends AbstractDraweeController, I @Override // com.facebook.drawee.controller.AbstractDraweeController public String toString() { - i K2 = AnimatableValueParser.K2(this); - K2.c("super", super.toString()); - K2.c("dataSourceSupplier", this.B); - return K2.toString(); + i g2 = d.g2(this); + g2.c("super", super.toString()); + g2.c("dataSourceSupplier", this.B); + return g2.toString(); } /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.String, java.lang.Object] */ diff --git a/app/src/main/java/c/f/g/a/a/d.java b/app/src/main/java/c/f/g/a/a/d.java index bb5e6326de..b0ee37bb20 100644 --- a/app/src/main/java/c/f/g/a/a/d.java +++ b/app/src/main/java/c/f/g/a/a/d.java @@ -85,12 +85,12 @@ public class d extends AbstractDraweeControllerBuilder supplier = fVar.g; if (supplier != null) { cVar2.C = supplier.get().booleanValue(); diff --git a/app/src/main/java/c/f/g/a/a/e.java b/app/src/main/java/c/f/g/a/a/e.java index 4bbc519e90..48ddc54f7a 100644 --- a/app/src/main/java/c/f/g/a/a/e.java +++ b/app/src/main/java/c/f/g/a/a/e.java @@ -2,6 +2,7 @@ package c.f.g.a.a; import android.content.Context; import android.content.res.Resources; +import c.c.a.a0.d; import c.f.d.b.f; import c.f.g.b.a; import c.f.g.b.b; @@ -9,7 +10,6 @@ import c.f.j.c.w; import c.f.j.e.h; import c.f.j.e.l; import c.f.j.j.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.common.internal.Supplier; /* compiled from: PipelineDraweeControllerBuilderSupplier */ @@ -18,12 +18,12 @@ public class e implements Supplier { public final h b; /* renamed from: c reason: collision with root package name */ - public final f f371c; + public final f f372c; public e(Context context) { a aVar; l lVar = l.a; - AnimatableValueParser.y(lVar, "ImagePipelineFactory was not initialized!"); + d.y(lVar, "ImagePipelineFactory was not initialized!"); this.a = context; if (lVar.l == null) { lVar.l = lVar.a(); @@ -31,7 +31,7 @@ public class e implements Supplier { h hVar = lVar.l; this.b = hVar; f fVar = new f(); - this.f371c = fVar; + this.f372c = fVar; Resources resources = context.getResources(); synchronized (a.class) { if (a.a == null) { @@ -48,7 +48,7 @@ public class e implements Supplier { w wVar = hVar.e; fVar.a = resources; fVar.b = aVar; - fVar.f372c = a; + fVar.f373c = a; fVar.d = fVar2; fVar.e = wVar; fVar.f = null; @@ -57,7 +57,7 @@ public class e implements Supplier { /* renamed from: a */ public d get() { - d dVar = new d(this.a, this.f371c, this.b, null, null); + d dVar = new d(this.a, this.f372c, this.b, null, null); dVar.q = null; return dVar; } diff --git a/app/src/main/java/c/f/g/a/a/f.java b/app/src/main/java/c/f/g/a/a/f.java index 4b2a85bad7..30fdd05869 100644 --- a/app/src/main/java/c/f/g/a/a/f.java +++ b/app/src/main/java/c/f/g/a/a/f.java @@ -14,7 +14,7 @@ public class f { public a b; /* renamed from: c reason: collision with root package name */ - public c.f.j.i.a f372c; + public c.f.j.i.a f373c; public Executor d; public w e; public e f; diff --git a/app/src/main/java/c/f/g/a/a/h/f.java b/app/src/main/java/c/f/g/a/a/h/f.java index 76e50c02be..28a7fb456f 100644 --- a/app/src/main/java/c/f/g/a/a/h/f.java +++ b/app/src/main/java/c/f/g/a/a/h/f.java @@ -13,7 +13,7 @@ public class f implements g { public final b b; /* renamed from: c reason: collision with root package name */ - public final h f373c = new h(); + public final h f374c = new h(); public final Supplier d; public c e; public b f; @@ -46,8 +46,8 @@ public class f implements g { if (!(!this.k || (list = this.j) == null || list.isEmpty())) { if (!(i != 3 || (aVar = this.a.k) == null || aVar.e() == null)) { Rect bounds = aVar.e().getBounds(); - this.f373c.f375s = bounds.width(); - this.f373c.t = bounds.height(); + this.f374c.f376s = bounds.width(); + this.f374c.t = bounds.height(); } d b = hVar.b(); for (e eVar : this.j) { @@ -62,9 +62,9 @@ public class f implements g { list.clear(); } d(false); - h hVar = this.f373c; + h hVar = this.f374c; hVar.b = null; - hVar.f374c = null; + hVar.f375c = null; hVar.d = null; hVar.e = null; hVar.f = null; @@ -73,7 +73,7 @@ public class f implements g { hVar.p = 1; hVar.q = null; hVar.r = false; - hVar.f375s = -1; + hVar.f376s = -1; hVar.t = -1; hVar.u = null; hVar.v = -1; @@ -90,13 +90,13 @@ public class f implements g { this.k = z2; if (z2) { if (this.h == null) { - this.h = new a(this.b, this.f373c, this, this.d, l.a); + this.h = new a(this.b, this.f374c, this, this.d, l.a); } if (this.g == null) { - this.g = new c.f.g.a.a.h.i.c(this.b, this.f373c); + this.g = new c.f.g.a.a.h.i.c(this.b, this.f374c); } if (this.f == null) { - this.f = new c.f.g.a.a.h.i.b(this.f373c, this); + this.f = new c.f.g.a.a.h.i.b(this.f374c, this); } c cVar = this.e; if (cVar == null) { diff --git a/app/src/main/java/c/f/g/a/a/h/h.java b/app/src/main/java/c/f/g/a/a/h/h.java index 54e0657480..3300b63820 100644 --- a/app/src/main/java/c/f/g/a/a/h/h.java +++ b/app/src/main/java/c/f/g/a/a/h/h.java @@ -10,7 +10,7 @@ public class h { public String b; /* renamed from: c reason: collision with root package name */ - public ImageRequest f374c; + public ImageRequest f375c; public Object d; public ImageInfo e; public ImageRequest f; @@ -28,20 +28,20 @@ public class h { public boolean r; /* renamed from: s reason: collision with root package name */ - public int f375s = -1; + public int f376s = -1; public int t = -1; public Throwable u; public int v = -1; public int w = -1; /* renamed from: x reason: collision with root package name */ - public long f376x = -1; + public long f377x = -1; /* renamed from: y reason: collision with root package name */ - public long f377y = -1; + public long f378y = -1; /* renamed from: z reason: collision with root package name */ - public long f378z = -1; + public long f379z = -1; public void a() { this.n = -1; @@ -50,12 +50,12 @@ public class h { this.k = -1; this.l = -1; this.m = -1; - this.f376x = -1; - this.f377y = -1; - this.f378z = -1; + this.f377x = -1; + this.f378y = -1; + this.f379z = -1; } public d b() { - return new d(this.a, this.b, this.f374c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.o, this.p, this.q, this.r, this.f375s, this.t, this.u, this.w, this.f376x, this.f377y, null, this.f378z, this.A); + return new d(this.a, this.b, this.f375c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.o, this.p, this.q, this.r, this.f376s, this.t, this.u, this.w, this.f377x, this.f378y, null, this.f379z, this.A); } } diff --git a/app/src/main/java/c/f/g/a/a/h/i/a.java b/app/src/main/java/c/f/g/a/a/h/i/a.java index c5c26c4ea3..7b87740b83 100644 --- a/app/src/main/java/c/f/g/a/a/h/i/a.java +++ b/app/src/main/java/c/f/g/a/a/h/i/a.java @@ -19,7 +19,7 @@ public class a extends c.f.h.b.a.a { public final h b; /* renamed from: c reason: collision with root package name */ - public final g f379c; + public final g f380c; public final Supplier d; public final Supplier e; public Handler f; @@ -51,7 +51,7 @@ public class a extends c.f.h.b.a.a { public a(b bVar, h hVar, g gVar, Supplier supplier, Supplier supplier2) { this.a = bVar; this.b = hVar; - this.f379c = gVar; + this.f380c = gVar; this.d = supplier; this.e = supplier2; } @@ -67,7 +67,7 @@ public class a extends c.f.h.b.a.a { e.A = aVar; g(e, 0); e.w = 1; - e.f376x = now; + e.f377x = now; h(e, 1); } @@ -81,7 +81,7 @@ public class a extends c.f.h.b.a.a { e.u = th; g(e, 5); e.w = 2; - e.f377y = now; + e.f378y = now; h(e, 2); } @@ -97,7 +97,7 @@ public class a extends c.f.h.b.a.a { g(e, 4); } e.w = 2; - e.f377y = now; + e.f378y = now; h(e, 2); } @@ -126,7 +126,7 @@ public class a extends c.f.h.b.a.a { handlerThread.start(); Looper looper = handlerThread.getLooper(); Objects.requireNonNull(looper); - this.f = new HandlerC0060a(looper, this.f379c); + this.f = new HandlerC0060a(looper, this.f380c); } } } @@ -144,7 +144,7 @@ public class a extends c.f.h.b.a.a { this.f.sendMessage(obtainMessage); return; } - ((f) this.f379c).b(hVar, i); + ((f) this.f380c).b(hVar, i); } public final void h(h hVar, int i) { @@ -158,6 +158,6 @@ public class a extends c.f.h.b.a.a { this.f.sendMessage(obtainMessage); return; } - ((f) this.f379c).a(hVar, i); + ((f) this.f380c).a(hVar, i); } } diff --git a/app/src/main/java/c/f/g/a/a/h/i/c.java b/app/src/main/java/c/f/g/a/a/h/i/c.java index 0ae77c0e80..8666a18c7c 100644 --- a/app/src/main/java/c/f/g/a/a/h/i/c.java +++ b/app/src/main/java/c/f/g/a/a/h/i/c.java @@ -18,7 +18,7 @@ public class c extends a { public void a(ImageRequest imageRequest, Object obj, String str, boolean z2) { this.b.n = this.a.now(); h hVar = this.b; - hVar.f374c = imageRequest; + hVar.f375c = imageRequest; hVar.d = obj; hVar.b = str; hVar.r = z2; @@ -28,7 +28,7 @@ public class c extends a { public void c(ImageRequest imageRequest, String str, boolean z2) { this.b.o = this.a.now(); h hVar = this.b; - hVar.f374c = imageRequest; + hVar.f375c = imageRequest; hVar.b = str; hVar.r = z2; } @@ -37,7 +37,7 @@ public class c extends a { public void g(ImageRequest imageRequest, String str, Throwable th, boolean z2) { this.b.o = this.a.now(); h hVar = this.b; - hVar.f374c = imageRequest; + hVar.f375c = imageRequest; hVar.b = str; hVar.r = z2; } diff --git a/app/src/main/java/c/f/g/b/b.java b/app/src/main/java/c/f/g/b/b.java index 9a263f2dca..67b76100e6 100644 --- a/app/src/main/java/c/f/g/b/b.java +++ b/app/src/main/java/c/f/g/b/b.java @@ -11,7 +11,7 @@ public class b extends a { public final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public final Handler f380c = new Handler(Looper.getMainLooper()); + public final Handler f381c = new Handler(Looper.getMainLooper()); public ArrayList d = new ArrayList<>(); public ArrayList e = new ArrayList<>(); public final Runnable f = new a(); diff --git a/app/src/main/java/c/f/g/b/c.java b/app/src/main/java/c/f/g/b/c.java index 51fa6afbb3..945aa08fa3 100644 --- a/app/src/main/java/c/f/g/b/c.java +++ b/app/src/main/java/c/f/g/b/c.java @@ -8,7 +8,7 @@ public class c { public static boolean b = true; /* renamed from: c reason: collision with root package name */ - public final Queue f381c = new ArrayBlockingQueue(20); + public final Queue f382c = new ArrayBlockingQueue(20); /* compiled from: DraweeEventTracker */ public enum a { @@ -40,14 +40,14 @@ public class c { public void a(a aVar) { if (b) { - if (this.f381c.size() + 1 > 20) { - this.f381c.poll(); + if (this.f382c.size() + 1 > 20) { + this.f382c.poll(); } - this.f381c.add(aVar); + this.f382c.add(aVar); } } public String toString() { - return this.f381c.toString(); + return this.f382c.toString(); } } diff --git a/app/src/main/java/c/f/g/b/d.java b/app/src/main/java/c/f/g/b/d.java index a7c128cf1c..cd30b4e4fa 100644 --- a/app/src/main/java/c/f/g/b/d.java +++ b/app/src/main/java/c/f/g/b/d.java @@ -5,5 +5,5 @@ public class d { public int b = 4; /* renamed from: c reason: collision with root package name */ - public int f386c = 0; + public int f387c = 0; } diff --git a/app/src/main/java/c/f/g/c/b.java b/app/src/main/java/c/f/g/c/b.java index 7bd8d013b7..0455de27b6 100644 --- a/app/src/main/java/c/f/g/c/b.java +++ b/app/src/main/java/c/f/g/c/b.java @@ -1,7 +1,7 @@ package c.f.g.c; +import c.c.a.a0.d; import c.f.d.d.i; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.internal.Supplier; import com.facebook.datasource.DataSource; import com.facebook.drawee.controller.AbstractDraweeControllerBuilder; @@ -12,7 +12,7 @@ public class b implements Supplier> { public final /* synthetic */ String b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ Object f387c; + public final /* synthetic */ Object f388c; public final /* synthetic */ Object d; public final /* synthetic */ AbstractDraweeControllerBuilder.b e; public final /* synthetic */ AbstractDraweeControllerBuilder f; @@ -21,19 +21,19 @@ public class b implements Supplier> { this.f = abstractDraweeControllerBuilder; this.a = draweeController; this.b = str; - this.f387c = obj; + this.f388c = obj; this.d = obj2; this.e = bVar; } @Override // com.facebook.common.internal.Supplier public Object get() { - return this.f.b(this.a, this.b, this.f387c, this.d, this.e); + return this.f.b(this.a, this.b, this.f388c, this.d, this.e); } public String toString() { - i K2 = AnimatableValueParser.K2(this); - K2.c("request", this.f387c.toString()); - return K2.toString(); + i g2 = d.g2(this); + g2.c("request", this.f388c.toString()); + return g2.toString(); } } diff --git a/app/src/main/java/c/f/g/d/a.java b/app/src/main/java/c/f/g/d/a.java index 85e627e5ff..46c8342407 100644 --- a/app/src/main/java/c/f/g/d/a.java +++ b/app/src/main/java/c/f/g/d/a.java @@ -31,20 +31,20 @@ public class a extends Drawable implements b { public final Paint r = new Paint(1); /* renamed from: s reason: collision with root package name */ - public final Matrix f388s = new Matrix(); + public final Matrix f389s = new Matrix(); public final Rect t = new Rect(); public final RectF u = new RectF(); public int v; public int w; /* renamed from: x reason: collision with root package name */ - public int f389x; + public int f390x; /* renamed from: y reason: collision with root package name */ - public int f390y; + public int f391y; /* renamed from: z reason: collision with root package name */ - public int f391z; + public int f392z; public a() { c(); @@ -59,14 +59,14 @@ public class a extends Drawable implements b { float measureText = this.r.measureText(u); float measureText2 = this.r.measureText(str2); this.r.setColor(1711276032); - int i2 = this.f390y; - int i3 = this.f391z; - canvas.drawRect((float) (i2 - 4), (float) (i3 + 8), ((float) i2) + measureText + measureText2 + 4.0f, (float) (i3 + this.f389x + 8), this.r); + int i2 = this.f391y; + int i3 = this.f392z; + canvas.drawRect((float) (i2 - 4), (float) (i3 + 8), ((float) i2) + measureText + measureText2 + 4.0f, (float) (i3 + this.f390x + 8), this.r); this.r.setColor(-1); - canvas.drawText(u, (float) this.f390y, (float) this.f391z, this.r); + canvas.drawText(u, (float) this.f391y, (float) this.f392z, this.r); this.r.setColor(i); - canvas.drawText(str2, ((float) this.f390y) + measureText, (float) this.f391z, this.r); - this.f391z += this.f389x; + canvas.drawText(str2, ((float) this.f391y) + measureText, (float) this.f392z, this.r); + this.f392z += this.f390x; } public void c() { @@ -109,8 +109,8 @@ public class a extends Drawable implements b { this.r.setStyle(Paint.Style.FILL); this.r.setStrokeWidth(0.0f); this.r.setColor(-1); - this.f390y = this.v; - this.f391z = this.w; + this.f391y = this.v; + this.f392z = this.w; a(canvas, "ID", this.i, -1); a(canvas, "D", b("%dx%d", Integer.valueOf(bounds.width()), Integer.valueOf(bounds.height())), -1); int i4 = this.j; @@ -125,14 +125,14 @@ public class a extends Drawable implements b { rect.left = 0; rect.right = width; rect.bottom = height; - this.f388s.reset(); - scalingUtils$ScaleType2.a(this.f388s, this.t, i4, i5, 0.0f, 0.0f); + this.f389s.reset(); + scalingUtils$ScaleType2.a(this.f389s, this.t, i4, i5, 0.0f, 0.0f); RectF rectF = this.u; rectF.top = 0.0f; rectF.left = 0.0f; rectF.right = (float) i4; rectF.bottom = (float) i5; - this.f388s.mapRect(rectF); + this.f389s.mapRect(rectF); width = Math.min(width, (int) this.u.width()); height = Math.min(height, (int) this.u.height()); } @@ -221,10 +221,10 @@ public class a extends Drawable implements b { int min = Math.min(40, Math.max(10, Math.min(rect.width() / 8, rect.height() / 9))); this.r.setTextSize((float) min); int i = min + 8; - this.f389x = i; + this.f390x = i; int i2 = this.q; if (i2 == 80) { - this.f389x = i * -1; + this.f390x = i * -1; } this.v = rect.left + 10; this.w = i2 == 80 ? rect.bottom - 10 : rect.top + 10 + 10; diff --git a/app/src/main/java/c/f/g/d/b/a.java b/app/src/main/java/c/f/g/d/b/a.java index 4bce3358bc..3887642b58 100644 --- a/app/src/main/java/c/f/g/d/b/a.java +++ b/app/src/main/java/c/f/g/d/b/a.java @@ -8,17 +8,17 @@ public class a extends c { public long b = -1; /* renamed from: c reason: collision with root package name */ - public b f392c; + public b f393c; public a(b bVar) { - this.f392c = bVar; + this.f393c = bVar; } @Override // c.f.g.c.c, com.facebook.drawee.controller.ControllerListener public void onFinalImageSet(String str, Object obj, Animatable animatable) { long currentTimeMillis = System.currentTimeMillis(); this.b = currentTimeMillis; - b bVar = this.f392c; + b bVar = this.f393c; if (bVar != null) { c.f.g.d.a aVar = (c.f.g.d.a) bVar; aVar.A = currentTimeMillis - this.a; diff --git a/app/src/main/java/c/f/g/e/b.java b/app/src/main/java/c/f/g/e/b.java index d753daccb5..0be251e8db 100644 --- a/app/src/main/java/c/f/g/e/b.java +++ b/app/src/main/java/c/f/g/e/b.java @@ -7,7 +7,7 @@ import android.graphics.Matrix; import android.graphics.Rect; import android.graphics.RectF; import android.graphics.drawable.Drawable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Objects; /* compiled from: ArrayDrawable */ public class b extends Drawable implements Drawable.Callback, e0, d0 { @@ -30,7 +30,7 @@ public class b extends Drawable implements Drawable.Callback, e0, d0 { while (true) { Drawable[] drawableArr2 = this.k; if (i < drawableArr2.length) { - AnimatableValueParser.y2(drawableArr2[i], this, this); + d.V1(drawableArr2[i], this, this); i++; } else { this.l = new d[drawableArr2.length]; @@ -41,11 +41,11 @@ public class b extends Drawable implements Drawable.Callback, e0, d0 { public Drawable a(int i) { boolean z2 = true; - AnimatableValueParser.j(Boolean.valueOf(i >= 0)); + d.j(Boolean.valueOf(i >= 0)); if (i >= this.k.length) { z2 = false; } - AnimatableValueParser.j(Boolean.valueOf(z2)); + d.j(Boolean.valueOf(z2)); return this.k[i]; } @@ -56,21 +56,21 @@ public class b extends Drawable implements Drawable.Callback, e0, d0 { public Drawable c(int i, Drawable drawable) { boolean z2 = true; - AnimatableValueParser.j(Boolean.valueOf(i >= 0)); + d.j(Boolean.valueOf(i >= 0)); if (i >= this.k.length) { z2 = false; } - AnimatableValueParser.j(Boolean.valueOf(z2)); + d.j(Boolean.valueOf(z2)); Drawable drawable2 = this.k[i]; if (drawable != drawable2) { if (drawable != null && this.p) { drawable.mutate(); } - AnimatableValueParser.y2(this.k[i], null, null); - AnimatableValueParser.y2(drawable, null, null); - AnimatableValueParser.A2(drawable, this.j); - AnimatableValueParser.N(drawable, this); - AnimatableValueParser.y2(drawable, this, this); + d.V1(this.k[i], null, null); + d.V1(drawable, null, null); + d.X1(drawable, this.j); + d.N(drawable, this); + d.V1(drawable, this, this); this.o = false; this.k[i] = drawable; invalidateSelf(); @@ -326,7 +326,7 @@ public class b extends Drawable implements Drawable.Callback, e0, d0 { @Override // android.graphics.drawable.Drawable public void setColorFilter(ColorFilter colorFilter) { e eVar = this.j; - eVar.f393c = colorFilter; + eVar.f394c = colorFilter; eVar.b = true; int i = 0; while (true) { diff --git a/app/src/main/java/c/f/g/e/e.java b/app/src/main/java/c/f/g/e/e.java index 198f3d7320..0518d90e8a 100644 --- a/app/src/main/java/c/f/g/e/e.java +++ b/app/src/main/java/c/f/g/e/e.java @@ -7,7 +7,7 @@ public class e { public boolean b = false; /* renamed from: c reason: collision with root package name */ - public ColorFilter f393c = null; + public ColorFilter f394c = null; public int d = -1; public int e = -1; } diff --git a/app/src/main/java/c/f/g/e/f.java b/app/src/main/java/c/f/g/e/f.java index eb85aad2ac..5d27ca09ce 100644 --- a/app/src/main/java/c/f/g/e/f.java +++ b/app/src/main/java/c/f/g/e/f.java @@ -4,7 +4,7 @@ import android.graphics.Canvas; import android.graphics.drawable.Drawable; import android.os.SystemClock; import androidx.annotation.VisibleForTesting; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Arrays; import java.util.Objects; /* compiled from: FadeDrawable */ @@ -19,7 +19,7 @@ public class f extends b { public final boolean r; /* renamed from: s reason: collision with root package name */ - public final int f394s; + public final int f395s; public final int t; @VisibleForTesting public int u; @@ -30,15 +30,15 @@ public class f extends b { @VisibleForTesting /* renamed from: x reason: collision with root package name */ - public int[] f395x; + public int[] f396x; @VisibleForTesting /* renamed from: y reason: collision with root package name */ - public int[] f396y; + public int[] f397y; @VisibleForTesting /* renamed from: z reason: collision with root package name */ - public int f397z; + public int f398z; /* compiled from: FadeDrawable */ public interface a { @@ -46,23 +46,23 @@ public class f extends b { public f(Drawable[] drawableArr, boolean z2, int i) { super(drawableArr); - AnimatableValueParser.C(drawableArr.length >= 1, "At least one layer required!"); + d.C(drawableArr.length >= 1, "At least one layer required!"); this.q = drawableArr; int[] iArr = new int[drawableArr.length]; - this.f395x = iArr; - this.f396y = new int[drawableArr.length]; - this.f397z = 255; + this.f396x = iArr; + this.f397y = new int[drawableArr.length]; + this.f398z = 255; this.A = new boolean[drawableArr.length]; this.B = 0; this.r = z2; int i2 = z2 ? 255 : 0; - this.f394s = i2; + this.f395s = i2; this.t = i; this.u = 2; Arrays.fill(iArr, i2); - this.f395x[0] = 255; - Arrays.fill(this.f396y, i2); - this.f396y[0] = 255; + this.f396x[0] = 255; + Arrays.fill(this.f397y, i2); + this.f397y[0] = 255; Arrays.fill(this.A, z2); this.A[0] = true; } @@ -74,7 +74,7 @@ public class f extends b { int i2 = this.u; int i3 = 2; if (i2 == 0) { - System.arraycopy(this.f396y, 0, this.f395x, 0, this.q.length); + System.arraycopy(this.f397y, 0, this.f396x, 0, this.q.length); this.w = SystemClock.uptimeMillis(); z2 = i(this.v == 0 ? 1.0f : 0.0f); if (!this.D && (i = this.t) >= 0) { @@ -94,7 +94,7 @@ public class f extends b { } else if (i2 != 1) { z2 = true; } else { - AnimatableValueParser.B(this.v > 0); + d.B(this.v > 0); z2 = i(((float) (SystemClock.uptimeMillis() - this.w)) / ((float) this.v)); if (!z2) { i3 = 1; @@ -108,7 +108,7 @@ public class f extends b { break; } Drawable drawable = drawableArr[i4]; - int ceil = (int) Math.ceil(((double) (this.f396y[i4] * this.f397z)) / 255.0d); + int ceil = (int) Math.ceil(((double) (this.f397y[i4] * this.f398z)) / 255.0d); if (drawable != null && ceil > 0) { this.B++; drawable.mutate().setAlpha(ceil); @@ -140,14 +140,14 @@ public class f extends b { public void g() { this.u = 2; for (int i = 0; i < this.q.length; i++) { - this.f396y[i] = this.A[i] ? 255 : 0; + this.f397y[i] = this.A[i] ? 255 : 0; } invalidateSelf(); } @Override // android.graphics.drawable.Drawable public int getAlpha() { - return this.f397z; + return this.f398z; } public final boolean i(float f) { @@ -155,8 +155,8 @@ public class f extends b { for (int i = 0; i < this.q.length; i++) { boolean[] zArr = this.A; int i2 = zArr[i] ? 1 : -1; - int[] iArr = this.f396y; - iArr[i] = (int) ((((float) (i2 * 255)) * f) + ((float) this.f395x[i])); + int[] iArr = this.f397y; + iArr[i] = (int) ((((float) (i2 * 255)) * f) + ((float) this.f396x[i])); if (iArr[i] < 0) { iArr[i] = 0; } @@ -182,8 +182,8 @@ public class f extends b { @Override // c.f.g.e.b, android.graphics.drawable.Drawable public void setAlpha(int i) { - if (this.f397z != i) { - this.f397z = i; + if (this.f398z != i) { + this.f398z = i; invalidateSelf(); } } diff --git a/app/src/main/java/c/f/g/e/g.java b/app/src/main/java/c/f/g/e/g.java index 0bbda49c69..a333810238 100644 --- a/app/src/main/java/c/f/g/e/g.java +++ b/app/src/main/java/c/f/g/e/g.java @@ -7,7 +7,7 @@ import android.graphics.Matrix; import android.graphics.Rect; import android.graphics.RectF; import android.graphics.drawable.Drawable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: ForwardingDrawable */ public class g extends Drawable implements Drawable.Callback, e0, d0, d { public static final Matrix i = new Matrix(); @@ -17,7 +17,7 @@ public class g extends Drawable implements Drawable.Callback, e0, d0, d { public g(Drawable drawable) { this.j = drawable; - AnimatableValueParser.y2(drawable, this, this); + d.V1(drawable, this, this); } @Override // c.f.g.e.d0 @@ -130,11 +130,11 @@ public class g extends Drawable implements Drawable.Callback, e0, d0, d { public Drawable o(Drawable drawable) { Drawable drawable2 = this.j; - AnimatableValueParser.y2(drawable2, null, null); - AnimatableValueParser.y2(drawable, null, null); - AnimatableValueParser.A2(drawable, this.k); - AnimatableValueParser.N(drawable, this); - AnimatableValueParser.y2(drawable, this, this); + d.V1(drawable2, null, null); + d.V1(drawable, null, null); + d.X1(drawable, this.k); + d.N(drawable, this); + d.V1(drawable, this, this); this.j = drawable; invalidateSelf(); return drawable2; @@ -177,7 +177,7 @@ public class g extends Drawable implements Drawable.Callback, e0, d0, d { @Override // android.graphics.drawable.Drawable public void setColorFilter(ColorFilter colorFilter) { e eVar = this.k; - eVar.f393c = colorFilter; + eVar.f394c = colorFilter; eVar.b = true; Drawable drawable = this.j; if (drawable != null) { diff --git a/app/src/main/java/c/f/g/e/k.java b/app/src/main/java/c/f/g/e/k.java index d4f42b515a..dffc5ad8b0 100644 --- a/app/src/main/java/c/f/g/e/k.java +++ b/app/src/main/java/c/f/g/e/k.java @@ -9,8 +9,8 @@ import android.graphics.Paint; import android.graphics.Shader; import android.graphics.drawable.BitmapDrawable; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.f.j.r.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.lang.ref.WeakReference; /* compiled from: RoundedBitmapDrawable */ public class k extends n { @@ -69,7 +69,7 @@ public class k extends n { float f = this.l; if (f > 0.0f) { this.M.setStrokeWidth(f); - this.M.setColor(AnimatableValueParser.P1(this.o, this.L.getAlpha())); + this.M.setColor(d.m1(this.o, this.L.getAlpha())); canvas.drawPath(this.p, this.M); } canvas.restoreToCount(save); diff --git a/app/src/main/java/c/f/g/e/l.java b/app/src/main/java/c/f/g/e/l.java index 49a18404c4..7deeae2f2e 100644 --- a/app/src/main/java/c/f/g/e/l.java +++ b/app/src/main/java/c/f/g/e/l.java @@ -8,7 +8,7 @@ import android.graphics.Rect; import android.graphics.RectF; import android.graphics.drawable.Drawable; import androidx.annotation.VisibleForTesting; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Arrays; /* compiled from: RoundedColorDrawable */ public class l extends Drawable implements j { @@ -28,7 +28,7 @@ public class l extends Drawable implements j { @VisibleForTesting /* renamed from: s reason: collision with root package name */ - public final Path f398s = new Path(); + public final Path f399s = new Path(); @VisibleForTesting public final Path t = new Path(); public int u = 0; @@ -58,7 +58,7 @@ public class l extends Drawable implements j { public final void b() { float[] fArr; float[] fArr2; - this.f398s.reset(); + this.f399s.reset(); this.t.reset(); this.v.set(getBounds()); RectF rectF = this.v; @@ -85,7 +85,7 @@ public class l extends Drawable implements j { float f3 = this.o + (this.q ? this.n : 0.0f); this.v.inset(f3, f3); if (this.m) { - this.f398s.addCircle(this.v.centerX(), this.v.centerY(), Math.min(this.v.width(), this.v.height()) / 2.0f, Path.Direction.CW); + this.f399s.addCircle(this.v.centerX(), this.v.centerY(), Math.min(this.v.width(), this.v.height()) / 2.0f, Path.Direction.CW); } else if (this.q) { if (this.k == null) { this.k = new float[8]; @@ -98,9 +98,9 @@ public class l extends Drawable implements j { fArr[i] = this.i[i] - this.n; i++; } - this.f398s.addRoundRect(this.v, fArr, Path.Direction.CW); + this.f399s.addRoundRect(this.v, fArr, Path.Direction.CW); } else { - this.f398s.addRoundRect(this.v, this.i, Path.Direction.CW); + this.f399s.addRoundRect(this.v, this.i, Path.Direction.CW); } float f4 = -f3; this.v.inset(f4, f4); @@ -115,12 +115,12 @@ public class l extends Drawable implements j { @Override // android.graphics.drawable.Drawable public void draw(Canvas canvas) { - this.l.setColor(AnimatableValueParser.P1(this.u, this.w)); + this.l.setColor(d.m1(this.u, this.w)); this.l.setStyle(Paint.Style.FILL); this.l.setFilterBitmap(this.r); - canvas.drawPath(this.f398s, this.l); + canvas.drawPath(this.f399s, this.l); if (this.n != 0.0f) { - this.l.setColor(AnimatableValueParser.P1(this.p, this.w)); + this.l.setColor(d.m1(this.p, this.w)); this.l.setStyle(Paint.Style.STROKE); this.l.setStrokeWidth(this.n); canvas.drawPath(this.t, this.l); @@ -151,11 +151,11 @@ public class l extends Drawable implements j { @Override // android.graphics.drawable.Drawable public int getOpacity() { - int P1 = AnimatableValueParser.P1(this.u, this.w) >>> 24; - if (P1 == 255) { + int m1 = d.m1(this.u, this.w) >>> 24; + if (m1 == 255) { return -1; } - return P1 == 0 ? -2 : -3; + return m1 == 0 ? -2 : -3; } @Override // c.f.g.e.j @@ -169,7 +169,7 @@ public class l extends Drawable implements j { @Override // c.f.g.e.j public void j(float f) { - AnimatableValueParser.l(f >= 0.0f, "radius should be non negative"); + d.l(f >= 0.0f, "radius should be non negative"); Arrays.fill(this.i, f); b(); invalidateSelf(); @@ -180,7 +180,7 @@ public class l extends Drawable implements j { if (fArr == null) { Arrays.fill(this.i, 0.0f); } else { - AnimatableValueParser.l(fArr.length == 8, "radii should have exactly 8 values"); + d.l(fArr.length == 8, "radii should have exactly 8 values"); System.arraycopy(fArr, 0, this.i, 0, 8); } b(); diff --git a/app/src/main/java/c/f/g/e/m.java b/app/src/main/java/c/f/g/e/m.java index 607da5dcc9..4b4ba61ca6 100644 --- a/app/src/main/java/c/f/g/e/m.java +++ b/app/src/main/java/c/f/g/e/m.java @@ -8,8 +8,8 @@ import android.graphics.Rect; import android.graphics.RectF; import android.graphics.drawable.Drawable; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.c.a.y.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; /* compiled from: RoundedCornersDrawable */ public class m extends g implements j { @@ -27,20 +27,20 @@ public class m extends g implements j { @VisibleForTesting /* renamed from: s reason: collision with root package name */ - public final Paint f399s = new Paint(1); + public final Paint f400s = new Paint(1); public boolean t = false; public float u = 0.0f; public int v = 0; public int w = 0; /* renamed from: x reason: collision with root package name */ - public float f400x = 0.0f; + public float f401x = 0.0f; /* renamed from: y reason: collision with root package name */ - public boolean f401y = false; + public boolean f402y = false; /* renamed from: z reason: collision with root package name */ - public boolean f402z = false; + public boolean f403z = false; public m(Drawable drawable) { super(drawable); @@ -66,7 +66,7 @@ public class m extends g implements j { this.n.set(getBounds()); int h = b.h(this.m); if (h == 0) { - if (this.f401y) { + if (this.f402y) { RectF rectF = this.o; if (rectF == null) { this.o = new RectF(this.n); @@ -92,32 +92,32 @@ public class m extends g implements j { drawable2.draw(canvas); } } - this.f399s.setStyle(Paint.Style.FILL); - this.f399s.setColor(this.w); - this.f399s.setStrokeWidth(0.0f); - this.f399s.setFilterBitmap(this.f402z); + this.f400s.setStyle(Paint.Style.FILL); + this.f400s.setColor(this.w); + this.f400s.setStrokeWidth(0.0f); + this.f400s.setFilterBitmap(this.f403z); this.A.setFillType(Path.FillType.EVEN_ODD); - canvas.drawPath(this.A, this.f399s); + canvas.drawPath(this.A, this.f400s); if (this.t) { float width = ((this.n.width() - this.n.height()) + this.u) / 2.0f; float height = ((this.n.height() - this.n.width()) + this.u) / 2.0f; if (width > 0.0f) { RectF rectF3 = this.n; float f2 = rectF3.left; - canvas.drawRect(f2, rectF3.top, f2 + width, rectF3.bottom, this.f399s); + canvas.drawRect(f2, rectF3.top, f2 + width, rectF3.bottom, this.f400s); RectF rectF4 = this.n; float f3 = rectF4.right; - canvas.drawRect(f3 - width, rectF4.top, f3, rectF4.bottom, this.f399s); + canvas.drawRect(f3 - width, rectF4.top, f3, rectF4.bottom, this.f400s); } if (height > 0.0f) { RectF rectF5 = this.n; float f4 = rectF5.left; float f5 = rectF5.top; - canvas.drawRect(f4, f5, rectF5.right, f5 + height, this.f399s); + canvas.drawRect(f4, f5, rectF5.right, f5 + height, this.f400s); RectF rectF6 = this.n; float f6 = rectF6.left; float f7 = rectF6.bottom; - canvas.drawRect(f6, f7 - height, rectF6.right, f7, this.f399s); + canvas.drawRect(f6, f7 - height, rectF6.right, f7, this.f400s); } } } else if (h == 1) { @@ -130,32 +130,32 @@ public class m extends g implements j { canvas.restoreToCount(save2); } if (this.v != 0) { - this.f399s.setStyle(Paint.Style.STROKE); - this.f399s.setColor(this.v); - this.f399s.setStrokeWidth(this.u); + this.f400s.setStyle(Paint.Style.STROKE); + this.f400s.setColor(this.v); + this.f400s.setStrokeWidth(this.u); this.A.setFillType(Path.FillType.EVEN_ODD); - canvas.drawPath(this.B, this.f399s); + canvas.drawPath(this.B, this.f400s); } } @Override // c.f.g.e.j public void e(boolean z2) { - if (this.f402z != z2) { - this.f402z = z2; + if (this.f403z != z2) { + this.f403z = z2; invalidateSelf(); } } @Override // c.f.g.e.j public void f(boolean z2) { - this.f401y = z2; + this.f402y = z2; p(); invalidateSelf(); } @Override // c.f.g.e.j public void i(float f) { - this.f400x = f; + this.f401x = f; p(); invalidateSelf(); } @@ -172,7 +172,7 @@ public class m extends g implements j { if (fArr == null) { Arrays.fill(this.q, 0.0f); } else { - AnimatableValueParser.l(fArr.length == 8, "radii should have exactly 8 values"); + d.l(fArr.length == 8, "radii should have exactly 8 values"); System.arraycopy(fArr, 0, this.q, 0, 8); } p(); @@ -194,7 +194,7 @@ public class m extends g implements j { this.B.reset(); this.C.set(getBounds()); RectF rectF = this.C; - float f = this.f400x; + float f = this.f401x; rectF.inset(f, f); if (this.m == 1) { this.A.addRect(this.C, Path.Direction.CW); @@ -205,7 +205,7 @@ public class m extends g implements j { this.A.addRoundRect(this.C, this.q, Path.Direction.CW); } RectF rectF2 = this.C; - float f2 = -this.f400x; + float f2 = -this.f401x; rectF2.inset(f2, f2); RectF rectF3 = this.C; float f3 = this.u / 2.0f; @@ -219,7 +219,7 @@ public class m extends g implements j { if (i >= fArr.length) { break; } - fArr[i] = (this.q[i] + this.f400x) - (this.u / 2.0f); + fArr[i] = (this.q[i] + this.f401x) - (this.u / 2.0f); i++; } this.B.addRoundRect(this.C, fArr, Path.Direction.CW); diff --git a/app/src/main/java/c/f/g/e/n.java b/app/src/main/java/c/f/g/e/n.java index 22365cb8d8..1824da85f7 100644 --- a/app/src/main/java/c/f/g/e/n.java +++ b/app/src/main/java/c/f/g/e/n.java @@ -12,8 +12,8 @@ import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.RequiresApi; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.f.j.r.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; /* compiled from: RoundedDrawable */ public abstract class n extends Drawable implements j, d0 { @@ -52,7 +52,7 @@ public abstract class n extends Drawable implements j, d0 { @VisibleForTesting /* renamed from: s reason: collision with root package name */ - public float[] f403s; + public float[] f404s; @VisibleForTesting public final RectF t = new RectF(); @VisibleForTesting @@ -65,15 +65,15 @@ public abstract class n extends Drawable implements j, d0 { @VisibleForTesting /* renamed from: x reason: collision with root package name */ - public RectF f404x; + public RectF f405x; @VisibleForTesting /* renamed from: y reason: collision with root package name */ - public final Matrix f405y = new Matrix(); + public final Matrix f406y = new Matrix(); @VisibleForTesting /* renamed from: z reason: collision with root package name */ - public final Matrix f406z = new Matrix(); + public final Matrix f407z = new Matrix(); public n(Drawable drawable) { this.i = drawable; @@ -165,13 +165,13 @@ public abstract class n extends Drawable implements j, d0 { if (this.j) { this.m.addCircle(this.t.centerX(), this.t.centerY(), Math.min(this.t.width(), this.t.height()) / 2.0f, Path.Direction.CW); } else if (this.H) { - if (this.f403s == null) { - this.f403s = new float[8]; + if (this.f404s == null) { + this.f404s = new float[8]; } for (int i2 = 0; i2 < this.r.length; i2++) { - this.f403s[i2] = this.q[i2] - this.l; + this.f404s[i2] = this.q[i2] - this.l; } - this.m.addRoundRect(this.t, this.f403s, Path.Direction.CW); + this.m.addRoundRect(this.t, this.f404s, Path.Direction.CW); } else { this.m.addRoundRect(this.t, this.q, Path.Direction.CW); } @@ -222,37 +222,37 @@ public abstract class n extends Drawable implements j, d0 { } this.v.set(0.0f, 0.0f, (float) getIntrinsicWidth(), (float) getIntrinsicHeight()); this.w.set(this.i.getBounds()); - this.f405y.setRectToRect(this.v, this.w, Matrix.ScaleToFit.FILL); + this.f406y.setRectToRect(this.v, this.w, Matrix.ScaleToFit.FILL); if (this.H) { - RectF rectF = this.f404x; + RectF rectF = this.f405x; if (rectF == null) { - this.f404x = new RectF(this.t); + this.f405x = new RectF(this.t); } else { rectF.set(this.t); } - RectF rectF2 = this.f404x; + RectF rectF2 = this.f405x; float f = this.l; rectF2.inset(f, f); if (this.D == null) { this.D = new Matrix(); } - this.D.setRectToRect(this.t, this.f404x, Matrix.ScaleToFit.FILL); + this.D.setRectToRect(this.t, this.f405x, Matrix.ScaleToFit.FILL); } else { Matrix matrix2 = this.D; if (matrix2 != null) { matrix2.reset(); } } - if (!this.A.equals(this.B) || !this.f405y.equals(this.f406z) || ((matrix = this.D) != null && !matrix.equals(this.E))) { + if (!this.A.equals(this.B) || !this.f406y.equals(this.f407z) || ((matrix = this.D) != null && !matrix.equals(this.E))) { this.n = true; this.A.invert(this.C); this.F.set(this.A); if (this.H) { this.F.postConcat(this.D); } - this.F.preConcat(this.f405y); + this.F.preConcat(this.f406y); this.B.set(this.A); - this.f406z.set(this.f405y); + this.f407z.set(this.f406y); if (this.H) { Matrix matrix3 = this.E; if (matrix3 == null) { @@ -286,7 +286,7 @@ public abstract class n extends Drawable implements j, d0 { public void j(float f) { boolean z2 = false; int i = (f > 0.0f ? 1 : (f == 0.0f ? 0 : -1)); - AnimatableValueParser.B(i >= 0); + d.B(i >= 0); Arrays.fill(this.q, f); if (i != 0) { z2 = true; @@ -302,7 +302,7 @@ public abstract class n extends Drawable implements j, d0 { Arrays.fill(this.q, 0.0f); this.k = false; } else { - AnimatableValueParser.l(fArr.length == 8, "radii should have exactly 8 values"); + d.l(fArr.length == 8, "radii should have exactly 8 values"); System.arraycopy(fArr, 0, this.q, 0, 8); this.k = false; for (int i = 0; i < 8; i++) { diff --git a/app/src/main/java/c/f/g/e/p.java b/app/src/main/java/c/f/g/e/p.java index 7101f2e723..4f80ebaf26 100644 --- a/app/src/main/java/c/f/g/e/p.java +++ b/app/src/main/java/c/f/g/e/p.java @@ -6,7 +6,7 @@ import android.graphics.PointF; import android.graphics.Rect; import android.graphics.drawable.Drawable; import androidx.annotation.VisibleForTesting; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.facebook.drawee.drawable.ScalingUtils$ScaleType; /* compiled from: ScaleTypeDrawable */ public class p extends g { @@ -24,7 +24,7 @@ public class p extends g { public Matrix r; /* renamed from: s reason: collision with root package name */ - public Matrix f407s = new Matrix(); + public Matrix f408s = new Matrix(); public p(Drawable drawable, ScalingUtils$ScaleType scalingUtils$ScaleType) { super(drawable); @@ -99,10 +99,10 @@ public class p extends g { } drawable.setBounds(0, 0, intrinsicWidth, intrinsicHeight); ScalingUtils$ScaleType scalingUtils$ScaleType3 = this.m; - Matrix matrix = this.f407s; + Matrix matrix = this.f408s; PointF pointF = this.o; scalingUtils$ScaleType3.a(matrix, bounds, intrinsicWidth, intrinsicHeight, pointF != null ? pointF.x : 0.5f, pointF != null ? pointF.y : 0.5f); - this.r = this.f407s; + this.r = this.f408s; } } @@ -126,7 +126,7 @@ public class p extends g { } public void r(ScalingUtils$ScaleType scalingUtils$ScaleType) { - if (!AnimatableValueParser.i0(this.m, scalingUtils$ScaleType)) { + if (!d.i0(this.m, scalingUtils$ScaleType)) { this.m = scalingUtils$ScaleType; this.n = null; p(); diff --git a/app/src/main/java/c/f/g/f/a.java b/app/src/main/java/c/f/g/f/a.java index 38e138dd51..8cde4f4496 100644 --- a/app/src/main/java/c/f/g/f/a.java +++ b/app/src/main/java/c/f/g/f/a.java @@ -15,7 +15,7 @@ public class a { public static final ScalingUtils$ScaleType b = s.l; /* renamed from: c reason: collision with root package name */ - public Resources f408c; + public Resources f409c; public int d = 300; public float e = 0.0f; public Drawable f = null; @@ -37,7 +37,7 @@ public class a { } public a(Resources resources) { - this.f408c = resources; + this.f409c = resources; ScalingUtils$ScaleType scalingUtils$ScaleType = a; this.g = scalingUtils$ScaleType; this.h = null; diff --git a/app/src/main/java/c/f/g/f/b.java b/app/src/main/java/c/f/g/f/b.java index 54105f759c..32f6e7c0af 100644 --- a/app/src/main/java/c/f/g/f/b.java +++ b/app/src/main/java/c/f/g/f/b.java @@ -30,7 +30,7 @@ public class b extends g implements f0 { if (!draweeHolder.a) { a.m(c.class, "%x: Draw requested for a non-attached controller %x. %s", Integer.valueOf(System.identityHashCode(draweeHolder)), Integer.valueOf(System.identityHashCode(draweeHolder.e)), draweeHolder.toString()); draweeHolder.b = true; - draweeHolder.f2254c = true; + draweeHolder.f2257c = true; draweeHolder.b(); } } diff --git a/app/src/main/java/c/f/g/f/c.java b/app/src/main/java/c/f/g/f/c.java index 04903864da..d0a79de429 100644 --- a/app/src/main/java/c/f/g/f/c.java +++ b/app/src/main/java/c/f/g/f/c.java @@ -9,7 +9,7 @@ public class c { public boolean b = false; /* renamed from: c reason: collision with root package name */ - public float[] f409c = null; + public float[] f410c = null; public int d = 0; public float e = 0.0f; public int f = 0; @@ -18,10 +18,10 @@ public class c { public static c a(float f) { c cVar = new c(); - if (cVar.f409c == null) { - cVar.f409c = new float[8]; + if (cVar.f410c == null) { + cVar.f410c = new float[8]; } - Arrays.fill(cVar.f409c, f); + Arrays.fill(cVar.f410c, f); return cVar; } @@ -40,7 +40,7 @@ public class c { } c cVar = (c) obj; if (this.b == cVar.b && this.d == cVar.d && Float.compare(cVar.e, this.e) == 0 && this.f == cVar.f && Float.compare(cVar.g, this.g) == 0 && this.a == cVar.a && this.h == cVar.h) { - return Arrays.equals(this.f409c, cVar.f409c); + return Arrays.equals(this.f410c, cVar.f410c); } return false; } @@ -48,7 +48,7 @@ public class c { public int hashCode() { int i = this.a; int h = (((i != 0 ? b.h(i) : 0) * 31) + (this.b ? 1 : 0)) * 31; - float[] fArr = this.f409c; + float[] fArr = this.f410c; int hashCode = (((h + (fArr != null ? Arrays.hashCode(fArr) : 0)) * 31) + this.d) * 31; float f = this.e; int floatToIntBits = (((hashCode + (f != 0.0f ? Float.floatToIntBits(f) : 0)) * 31) + this.f) * 31; diff --git a/app/src/main/java/c/f/g/f/d.java b/app/src/main/java/c/f/g/f/d.java index 09432fcbf1..61e306e5c7 100644 --- a/app/src/main/java/c/f/g/f/d.java +++ b/app/src/main/java/c/f/g/f/d.java @@ -15,7 +15,6 @@ import c.f.g.e.m; import c.f.g.e.o; import c.f.g.e.p; import c.f.j.r.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.drawee.drawable.ScalingUtils$ScaleType; /* compiled from: WrappingUtils */ public class d { @@ -43,7 +42,7 @@ public class d { public static void b(j jVar, c cVar) { jVar.c(cVar.b); - jVar.m(cVar.f409c); + jVar.m(cVar.f410c); jVar.a(cVar.f, cVar.e); jVar.i(cVar.g); jVar.f(false); @@ -108,7 +107,7 @@ public class d { return drawable; } p pVar = new p(drawable, scalingUtils$ScaleType); - if (pointF != null && !AnimatableValueParser.i0(pVar.o, pointF)) { + if (pointF != null && !c.c.a.a0.d.i0(pVar.o, pointF)) { if (pVar.o == null) { pVar.o = new PointF(); } diff --git a/app/src/main/java/c/f/g/g/a.java b/app/src/main/java/c/f/g/g/a.java index dc8877a5c3..bd8d5d693f 100644 --- a/app/src/main/java/c/f/g/g/a.java +++ b/app/src/main/java/c/f/g/g/a.java @@ -12,7 +12,7 @@ public class a { @VisibleForTesting /* renamed from: c reason: collision with root package name */ - public boolean f410c = false; + public boolean f411c = false; @VisibleForTesting public boolean d = false; @VisibleForTesting diff --git a/app/src/main/java/c/f/g/j/a.java b/app/src/main/java/c/f/g/j/a.java index 9090786f3d..db18c4c181 100644 --- a/app/src/main/java/c/f/g/j/a.java +++ b/app/src/main/java/c/f/g/j/a.java @@ -3,8 +3,8 @@ package c.f.g.j; import android.annotation.TargetApi; import android.content.Context; import android.util.AttributeSet; +import c.c.a.a0.d; import c.f.j.r.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.drawee.generic.GenericDraweeHierarchy; import com.facebook.drawee.view.DraweeView; /* compiled from: GenericDraweeView */ @@ -39,7 +39,7 @@ public class a extends DraweeView { b.b(); b.b(); c.f.g.f.a aVar = new c.f.g.f.a(context.getResources()); - AnimatableValueParser.O2(aVar, context, attributeSet); + d.k2(aVar, context, attributeSet); b.b(); setAspectRatio(aVar.e); setHierarchy(aVar.a()); diff --git a/app/src/main/java/c/f/h/a/a/c.java b/app/src/main/java/c/f/h/a/a/c.java index 3a15f93d7c..46ffc05c85 100644 --- a/app/src/main/java/c/f/h/a/a/c.java +++ b/app/src/main/java/c/f/h/a/a/c.java @@ -10,7 +10,7 @@ public class c extends b { public final c.f.d.k.b b; /* renamed from: c reason: collision with root package name */ - public final ScheduledExecutorService f411c; + public final ScheduledExecutorService f412c; public boolean d = false; public long e; public b f; @@ -51,13 +51,13 @@ public class c extends b { super(t); this.f = bVar; this.b = bVar2; - this.f411c = scheduledExecutorService; + this.f412c = scheduledExecutorService; } public final synchronized void c() { if (!this.d) { this.d = true; - this.f411c.schedule(this.g, 1000, TimeUnit.MILLISECONDS); + this.f412c.schedule(this.g, 1000, TimeUnit.MILLISECONDS); } } diff --git a/app/src/main/java/c/f/h/a/b/a.java b/app/src/main/java/c/f/h/a/b/a.java index 6b7811c664..6d2718f815 100644 --- a/app/src/main/java/c/f/h/a/b/a.java +++ b/app/src/main/java/c/f/h/a/b/a.java @@ -20,7 +20,7 @@ public class a implements c.f.h.a.a.a, c.b { public final b b; /* renamed from: c reason: collision with root package name */ - public final d f412c; + public final d f413c; public final c d; public final c.f.h.a.b.e.a e; public final b f; @@ -33,7 +33,7 @@ public class a implements c.f.h.a.a.a, c.b { public a(PlatformBitmapFactory platformBitmapFactory, b bVar, d dVar, c cVar, c.f.h.a.b.e.a aVar, b bVar2) { this.a = platformBitmapFactory; this.b = bVar; - this.f412c = dVar; + this.f413c = dVar; this.d = cVar; this.e = aVar; this.f = bVar2; @@ -43,12 +43,12 @@ public class a implements c.f.h.a.a.a, c.b { @Override // c.f.h.a.a.d public int a() { - return this.f412c.a(); + return this.f413c.a(); } @Override // c.f.h.a.a.d public int b() { - return this.f412c.b(); + return this.f413c.b(); } @Override // c.f.h.a.a.c.b @@ -68,7 +68,7 @@ public class a implements c.f.h.a.a.a, c.b { @Override // c.f.h.a.a.d public int e(int i) { - return this.f412c.e(i); + return this.f413c.e(i); } @Override // c.f.h.a.a.a @@ -86,12 +86,12 @@ public class a implements c.f.h.a.a.a, c.b { this.h = rect; c.f.h.a.b.f.b bVar = (c.f.h.a.b.f.b) this.d; c.f.j.a.c.a aVar = (c.f.j.a.c.a) bVar.b; - if (!c.f.j.a.c.a.a(aVar.f428c, rect).equals(aVar.d)) { + if (!c.f.j.a.c.a.a(aVar.f429c, rect).equals(aVar.d)) { aVar = new c.f.j.a.c.a(aVar.a, aVar.b, rect, aVar.i); } if (aVar != bVar.b) { bVar.b = aVar; - bVar.f415c = new c.f.j.a.c.d(aVar, bVar.d); + bVar.f416c = new c.f.j.a.c.d(aVar, bVar.d); } n(); } @@ -214,14 +214,14 @@ public class a implements c.f.h.a.a.a, c.b { } public final void n() { - int width = ((c.f.j.a.c.a) ((c.f.h.a.b.f.b) this.d).b).f428c.getWidth(); + int width = ((c.f.j.a.c.a) ((c.f.h.a.b.f.b) this.d).b).f429c.getWidth(); this.i = width; int i = -1; if (width == -1) { Rect rect = this.h; this.i = rect == null ? -1 : rect.width(); } - int height = ((c.f.j.a.c.a) ((c.f.h.a.b.f.b) this.d).b).f428c.getHeight(); + int height = ((c.f.j.a.c.a) ((c.f.h.a.b.f.b) this.d).b).f429c.getHeight(); this.j = height; if (height == -1) { Rect rect2 = this.h; diff --git a/app/src/main/java/c/f/h/a/b/d/b.java b/app/src/main/java/c/f/h/a/b/d/b.java index bc18e3186f..7de3c4a97d 100644 --- a/app/src/main/java/c/f/h/a/b/d/b.java +++ b/app/src/main/java/c/f/h/a/b/d/b.java @@ -17,7 +17,7 @@ public class b implements c.f.h.a.b.b { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final SparseArray> f413c = new SparseArray<>(); + public final SparseArray> f414c = new SparseArray<>(); public CloseableReference d; public b(c cVar, boolean z2) { @@ -92,10 +92,10 @@ public class b implements c.f.h.a.b.b { return; } c cVar = this.a; - CloseableReference c2 = cVar.b.c(new c.b(cVar.a, i), C, cVar.f429c); + CloseableReference c2 = cVar.b.c(new c.b(cVar.a, i), C, cVar.f430c); if (CloseableReference.z(c2)) { - closeableReference2 = this.f413c.get(i); - this.f413c.put(i, c2); + closeableReference2 = this.f414c.get(i); + this.f414c.put(i, c2); int i3 = a.a; } C.close(); @@ -121,13 +121,13 @@ public class b implements c.f.h.a.b.b { closeableReference.close(); } this.d = null; - for (int i = 0; i < this.f413c.size(); i++) { - CloseableReference valueAt = this.f413c.valueAt(i); + for (int i = 0; i < this.f414c.size(); i++) { + CloseableReference valueAt = this.f414c.valueAt(i); if (valueAt != null) { valueAt.close(); } } - this.f413c.clear(); + this.f414c.clear(); } @Override // c.f.h.a.b.b @@ -141,9 +141,9 @@ public class b implements c.f.h.a.b.b { public synchronized void e(int i, CloseableReference closeableReference, int i2) { Objects.requireNonNull(closeableReference); synchronized (this) { - CloseableReference closeableReference2 = this.f413c.get(i); + CloseableReference closeableReference2 = this.f414c.get(i); if (closeableReference2 != null) { - this.f413c.delete(i); + this.f414c.delete(i); Class cls = CloseableReference.i; closeableReference2.close(); int i3 = a.a; @@ -155,7 +155,7 @@ public class b implements c.f.h.a.b.b { if (C != null) { closeableReference3 = this.d; c cVar = this.a; - this.d = cVar.b.c(new c.b(cVar.a, i), C, cVar.f429c); + this.d = cVar.b.c(new c.b(cVar.a, i), C, cVar.f430c); } if (C != null) { C.close(); diff --git a/app/src/main/java/c/f/h/a/b/e/c.java b/app/src/main/java/c/f/h/a/b/e/c.java index ed21833ffa..7e1e917053 100644 --- a/app/src/main/java/c/f/h/a/b/e/c.java +++ b/app/src/main/java/c/f/h/a/b/e/c.java @@ -12,7 +12,7 @@ public class c implements b { public final c.f.h.a.b.c b; /* renamed from: c reason: collision with root package name */ - public final Bitmap.Config f414c; + public final Bitmap.Config f415c; public final ExecutorService d; public final SparseArray e = new SparseArray<>(); @@ -41,7 +41,7 @@ public class c implements b { return false; } else { try { - closeableReference = c.this.a.a(this.j.i(), this.j.g(), c.this.f414c); + closeableReference = c.this.a.a(this.j.i(), this.j.g(), c.this.f415c); i3 = -1; } catch (RuntimeException e) { c.f.d.e.a.l(c.class, "Failed to create frame bitmap", e); @@ -106,7 +106,7 @@ public class c implements b { public c(PlatformBitmapFactory platformBitmapFactory, c.f.h.a.b.c cVar, Bitmap.Config config, ExecutorService executorService) { this.a = platformBitmapFactory; this.b = cVar; - this.f414c = config; + this.f415c = config; this.d = executorService; } } diff --git a/app/src/main/java/c/f/h/a/b/f/a.java b/app/src/main/java/c/f/h/a/b/f/a.java index 4d8e555f7b..d7d0af73ea 100644 --- a/app/src/main/java/c/f/h/a/b/f/a.java +++ b/app/src/main/java/c/f/h/a/b/f/a.java @@ -16,7 +16,7 @@ public class a implements d { @Override // c.f.h.a.a.d public int b() { - return ((c.f.j.a.c.a) this.a).f428c.b(); + return ((c.f.j.a.c.a) this.a).f429c.b(); } @Override // c.f.h.a.a.d diff --git a/app/src/main/java/c/f/h/a/b/f/b.java b/app/src/main/java/c/f/h/a/b/f/b.java index ab319d451c..d09e633847 100644 --- a/app/src/main/java/c/f/h/a/b/f/b.java +++ b/app/src/main/java/c/f/h/a/b/f/b.java @@ -10,7 +10,7 @@ public class b implements c { public c.f.j.a.a.a b; /* renamed from: c reason: collision with root package name */ - public d f415c; + public d f416c; public final d.a d; /* compiled from: AnimatedDrawableBackendFrameRenderer */ @@ -33,12 +33,12 @@ public class b implements c { this.d = aVar2; this.a = bVar; this.b = aVar; - this.f415c = new d(aVar, aVar2); + this.f416c = new d(aVar, aVar2); } public boolean a(int i, Bitmap bitmap) { try { - this.f415c.d(i, bitmap); + this.f416c.d(i, bitmap); return true; } catch (IllegalStateException e) { c.f.d.e.a.d(b.class, e, "Rendering of frame unsuccessful. Frame number: %d", Integer.valueOf(i)); diff --git a/app/src/main/java/c/f/h/a/c/a.java b/app/src/main/java/c/f/h/a/c/a.java index 3dfd903e1c..8138f113ec 100644 --- a/app/src/main/java/c/f/h/a/c/a.java +++ b/app/src/main/java/c/f/h/a/c/a.java @@ -22,17 +22,17 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { public long r; /* renamed from: s reason: collision with root package name */ - public long f416s; + public long f417s; public int t; public long u; public int v; public volatile b w; /* renamed from: x reason: collision with root package name */ - public e f417x; + public e f418x; /* renamed from: y reason: collision with root package name */ - public final Runnable f418y; + public final Runnable f419y; /* compiled from: AnimatedDrawable2 */ /* renamed from: c.f.h.a.c.a$a reason: collision with other inner class name */ @@ -43,7 +43,7 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { @Override // java.lang.Runnable public void run() { a aVar = a.this; - aVar.unscheduleSelf(aVar.f418y); + aVar.unscheduleSelf(aVar.f419y); a.this.invalidateSelf(); } } @@ -55,7 +55,7 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { public a(c.f.h.a.a.a aVar) { this.u = 8; this.w = j; - this.f418y = new RunnableC0063a(); + this.f419y = new RunnableC0063a(); this.k = aVar; this.l = aVar == null ? null : new c.f.h.a.e.a(aVar); } @@ -116,7 +116,7 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { if (j2 == -1) { long j7 = this.n + j2 + this.u; this.p = j7; - scheduleSelf(this.f418y, j7); + scheduleSelf(this.f419y, j7); } else { Objects.requireNonNull(this.w); this.m = false; @@ -178,10 +178,10 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { @Override // android.graphics.drawable.Drawable public void setAlpha(int i2) { - if (this.f417x == null) { - this.f417x = new e(); + if (this.f418x == null) { + this.f418x = new e(); } - this.f417x.a = i2; + this.f418x.a = i2; c.f.h.a.a.a aVar = this.k; if (aVar != null) { aVar.f(i2); @@ -190,11 +190,11 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { @Override // android.graphics.drawable.Drawable public void setColorFilter(ColorFilter colorFilter) { - if (this.f417x == null) { - this.f417x = new e(); + if (this.f418x == null) { + this.f418x = new e(); } - e eVar = this.f417x; - eVar.f393c = colorFilter; + e eVar = this.f418x; + eVar.f394c = colorFilter; eVar.b = true; c.f.h.a.a.a aVar = this.k; if (aVar != null) { @@ -211,7 +211,7 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { long j2 = uptimeMillis - this.r; this.n = j2; this.p = j2; - this.o = uptimeMillis - this.f416s; + this.o = uptimeMillis - this.f417s; this.q = this.t; invalidateSelf(); Objects.requireNonNull(this.w); @@ -223,14 +223,14 @@ public class a extends Drawable implements Animatable, c.f.f.a.a { if (this.m) { long uptimeMillis = SystemClock.uptimeMillis(); this.r = uptimeMillis - this.n; - this.f416s = uptimeMillis - this.o; + this.f417s = uptimeMillis - this.o; this.t = this.q; this.m = false; this.n = 0; this.p = 0; this.o = -1; this.q = -1; - unscheduleSelf(this.f418y); + unscheduleSelf(this.f419y); Objects.requireNonNull(this.w); } } diff --git a/app/src/main/java/c/f/h/a/d/e.java b/app/src/main/java/c/f/h/a/d/e.java index c03852a2b6..e265205527 100644 --- a/app/src/main/java/c/f/h/a/d/e.java +++ b/app/src/main/java/c/f/h/a/d/e.java @@ -19,7 +19,7 @@ public class e implements a { public final ScheduledExecutorService b; /* renamed from: c reason: collision with root package name */ - public final ExecutorService f419c; + public final ExecutorService f420c; public final c.f.d.k.b d; public final PlatformBitmapFactory e; public final m f; @@ -29,7 +29,7 @@ public class e implements a { public e(b bVar, ScheduledExecutorService scheduledExecutorService, ExecutorService executorService, c.f.d.k.b bVar2, PlatformBitmapFactory platformBitmapFactory, m mVar, Supplier supplier, Supplier supplier2) { this.a = bVar; this.b = scheduledExecutorService; - this.f419c = executorService; + this.f420c = executorService; this.d = bVar2; this.e = platformBitmapFactory; this.f = mVar; @@ -67,7 +67,7 @@ public class e implements a { intValue = this.h.get().intValue(); if (intValue <= 0) { d dVar2 = new d(intValue); - cVar2 = new c.f.h.a.b.e.c(this.e, bVar3, Bitmap.Config.ARGB_8888, this.f419c); + cVar2 = new c.f.h.a.b.e.c(this.e, bVar3, Bitmap.Config.ARGB_8888, this.f420c); dVar = dVar2; } else { dVar = null; diff --git a/app/src/main/java/c/f/h/b/a/b.java b/app/src/main/java/c/f/h/b/a/b.java index 3ed5173a09..59cd671661 100644 --- a/app/src/main/java/c/f/h/b/a/b.java +++ b/app/src/main/java/c/f/h/b/a/b.java @@ -10,7 +10,7 @@ public interface b { public Map b; /* renamed from: c reason: collision with root package name */ - public Map f420c; + public Map f421c; public Map d; public Object e; } diff --git a/app/src/main/java/c/f/i/a.java b/app/src/main/java/c/f/i/a.java index ff87a8ecb4..c5c5dca14a 100644 --- a/app/src/main/java/c/f/i/a.java +++ b/app/src/main/java/c/f/i/a.java @@ -1,24 +1,24 @@ package c.f.i; import androidx.exifinterface.media.ExifInterface; +import c.c.a.a0.d; import c.f.i.c; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: DefaultImageFormatChecker */ public class a implements c.a { public static final byte[] a; public static final int b; /* renamed from: c reason: collision with root package name */ - public static final byte[] f421c; + public static final byte[] f422c; public static final int d; - public static final byte[] e = AnimatableValueParser.f("GIF87a"); - public static final byte[] f = AnimatableValueParser.f("GIF89a"); + public static final byte[] e = d.f("GIF87a"); + public static final byte[] f = d.f("GIF89a"); public static final byte[] g; public static final int h; public static final byte[] i; public static final int j; - public static final byte[] k = AnimatableValueParser.f("ftyp"); - public static final byte[][] l = {AnimatableValueParser.f("heic"), AnimatableValueParser.f("heix"), AnimatableValueParser.f("hevc"), AnimatableValueParser.f("hevx"), AnimatableValueParser.f("mif1"), AnimatableValueParser.f("msf1")}; + public static final byte[] k = d.f("ftyp"); + public static final byte[][] l = {d.f("heic"), d.f("heix"), d.f("hevc"), d.f("hevx"), d.f("mif1"), d.f("msf1")}; public static final byte[] m; public static final byte[] n = {77, 77, 0, ExifInterface.START_CODE}; public static final int o; @@ -29,9 +29,9 @@ public class a implements c.a { a = bArr; b = bArr.length; byte[] bArr2 = {-119, 80, 78, 71, 13, 10, 26, 10}; - f421c = bArr2; + f422c = bArr2; d = bArr2.length; - byte[] f2 = AnimatableValueParser.f("BM"); + byte[] f2 = d.f("BM"); g = f2; h = f2.length; byte[] bArr3 = {0, 0, 1, 0}; @@ -44,7 +44,7 @@ public class a implements c.a { public a() { int[] iArr = {21, 20, b, d, 6, h, j, 12}; - AnimatableValueParser.j(true); + d.j(true); int i2 = iArr[0]; for (int i3 = 1; i3 < 8; i3++) { if (iArr[i3] > i2) { @@ -66,7 +66,7 @@ public class a implements c.a { boolean z2; boolean z3 = false; if (c.f.d.m.c.b(bArr, 0, i2)) { - AnimatableValueParser.j(Boolean.valueOf(c.f.d.m.c.b(bArr, 0, i2))); + d.j(Boolean.valueOf(c.f.d.m.c.b(bArr, 0, i2))); if (c.f.d.m.c.d(bArr, 12, c.f.d.m.c.e)) { return b.f; } @@ -88,32 +88,32 @@ public class a implements c.a { return z3 ? b.i : b.h; } byte[] bArr3 = a; - if (i2 >= bArr3.length && AnimatableValueParser.T0(bArr, bArr3, 0)) { + if (i2 >= bArr3.length && d.L0(bArr, bArr3, 0)) { return b.a; } - byte[] bArr4 = f421c; - if (i2 >= bArr4.length && AnimatableValueParser.T0(bArr, bArr4, 0)) { + byte[] bArr4 = f422c; + if (i2 >= bArr4.length && d.L0(bArr, bArr4, 0)) { return b.b; } - if (i2 >= 6 && (AnimatableValueParser.T0(bArr, e, 0) || AnimatableValueParser.T0(bArr, f, 0))) { - return b.f422c; + if (i2 >= 6 && (d.L0(bArr, e, 0) || d.L0(bArr, f, 0))) { + return b.f423c; } byte[] bArr5 = g; - if (i2 < bArr5.length ? false : AnimatableValueParser.T0(bArr, bArr5, 0)) { + if (i2 < bArr5.length ? false : d.L0(bArr, bArr5, 0)) { return b.d; } byte[] bArr6 = i; - if (i2 < bArr6.length ? false : AnimatableValueParser.T0(bArr, bArr6, 0)) { + if (i2 < bArr6.length ? false : d.L0(bArr, bArr6, 0)) { return b.e; } - if (i2 >= 12 && bArr[3] >= 8 && AnimatableValueParser.T0(bArr, k, 4)) { + if (i2 >= 12 && bArr[3] >= 8 && d.L0(bArr, k, 4)) { byte[][] bArr7 = l; int length = bArr7.length; int i3 = 0; while (true) { if (i3 >= length) { break; - } else if (AnimatableValueParser.T0(bArr, bArr7[i3], 8)) { + } else if (d.L0(bArr, bArr7[i3], 8)) { z2 = true; break; } else { @@ -123,7 +123,7 @@ public class a implements c.a { if (!z2) { return b.k; } - if (i2 >= o && (AnimatableValueParser.T0(bArr, m, 0) || AnimatableValueParser.T0(bArr, n, 0))) { + if (i2 >= o && (d.L0(bArr, m, 0) || d.L0(bArr, n, 0))) { z3 = true; } return z3 ? b.l : c.a; diff --git a/app/src/main/java/c/f/i/b.java b/app/src/main/java/c/f/i/b.java index dc6074c147..918ec48498 100644 --- a/app/src/main/java/c/f/i/b.java +++ b/app/src/main/java/c/f/i/b.java @@ -7,7 +7,7 @@ public final class b { public static final c b = new c("PNG", "png"); /* renamed from: c reason: collision with root package name */ - public static final c f422c = new c("GIF", IconUtils.ANIMATED_IMAGE_EXTENSION); + public static final c f423c = new c("GIF", IconUtils.ANIMATED_IMAGE_EXTENSION); public static final c d = new c("BMP", "bmp"); public static final c e = new c("ICO", "ico"); public static final c f = new c("WEBP_SIMPLE", "webp"); diff --git a/app/src/main/java/c/f/i/d.java b/app/src/main/java/c/f/i/d.java index e1a3c5c0a3..f3d4643d78 100644 --- a/app/src/main/java/c/f/i/d.java +++ b/app/src/main/java/c/f/i/d.java @@ -2,7 +2,6 @@ package c.f.i; import c.f.d.d.m; import c.f.i.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.io.InputStream; import java.util.List; @@ -13,7 +12,7 @@ public class d { public int b; /* renamed from: c reason: collision with root package name */ - public List f423c; + public List f424c; public final c.a d = new a(); public d() { @@ -27,22 +26,22 @@ public class d { Objects.requireNonNull(inputStream); int i2 = c2.b; byte[] bArr = new byte[i2]; - AnimatableValueParser.j(Boolean.valueOf(i2 >= i2)); + c.c.a.a0.d.j(Boolean.valueOf(i2 >= i2)); if (inputStream.markSupported()) { try { inputStream.mark(i2); - i = AnimatableValueParser.e2(inputStream, bArr, 0, i2); + i = c.c.a.a0.d.B1(inputStream, bArr, 0, i2); } finally { inputStream.reset(); } } else { - i = AnimatableValueParser.e2(inputStream, bArr, 0, i2); + i = c.c.a.a0.d.B1(inputStream, bArr, 0, i2); } c b = c2.d.b(bArr, i); if (!(b == null || b == c.a)) { return b; } - List list = c2.f423c; + List list = c2.f424c; if (list != null) { for (c.a aVar : list) { c b2 = aVar.b(bArr, i); @@ -76,7 +75,7 @@ public class d { public final void d() { this.b = this.d.a(); - List list = this.f423c; + List list = this.f424c; if (list != null) { for (c.a aVar : list) { this.b = Math.max(this.b, aVar.a()); diff --git a/app/src/main/java/c/f/j/a/a/b.java b/app/src/main/java/c/f/j/a/a/b.java index 5c04f095a0..02c4b93b8a 100644 --- a/app/src/main/java/c/f/j/a/a/b.java +++ b/app/src/main/java/c/f/j/a/a/b.java @@ -5,7 +5,7 @@ public class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f424c; + public final int f425c; public final int d; public final int e; public final int f; @@ -13,7 +13,7 @@ public class b { public b(int i, int i2, int i3, int i4, int i5, int i6, int i7) { this.a = i2; this.b = i3; - this.f424c = i4; + this.f425c = i4; this.d = i5; this.e = i6; this.f = i7; diff --git a/app/src/main/java/c/f/j/a/a/e.java b/app/src/main/java/c/f/j/a/a/e.java index 128ce09cc4..732912cba1 100644 --- a/app/src/main/java/c/f/j/a/a/e.java +++ b/app/src/main/java/c/f/j/a/a/e.java @@ -11,7 +11,7 @@ public class e { public CloseableReference b; /* renamed from: c reason: collision with root package name */ - public List> f425c; + public List> f426c; public a d; public e(f fVar) { @@ -19,7 +19,7 @@ public class e { Objects.requireNonNull(cVar); this.a = cVar; this.b = CloseableReference.p(fVar.b); - this.f425c = CloseableReference.r(fVar.f426c); + this.f426c = CloseableReference.r(fVar.f427c); this.d = fVar.e; } } diff --git a/app/src/main/java/c/f/j/a/a/f.java b/app/src/main/java/c/f/j/a/a/f.java index 10aaf0a937..149c725af2 100644 --- a/app/src/main/java/c/f/j/a/a/f.java +++ b/app/src/main/java/c/f/j/a/a/f.java @@ -10,7 +10,7 @@ public class f { public CloseableReference b; /* renamed from: c reason: collision with root package name */ - public List> f426c; + public List> f427c; public int d; public a e; @@ -26,8 +26,8 @@ public class f { closeableReference.close(); } this.b = null; - CloseableReference.t(this.f426c); - this.f426c = null; + CloseableReference.t(this.f427c); + this.f427c = null; return eVar; } catch (Throwable th) { CloseableReference closeableReference2 = this.b; @@ -36,8 +36,8 @@ public class f { closeableReference2.close(); } this.b = null; - CloseableReference.t(this.f426c); - this.f426c = null; + CloseableReference.t(this.f427c); + this.f427c = null; throw th; } } diff --git a/app/src/main/java/c/f/j/a/b/e.java b/app/src/main/java/c/f/j/a/b/e.java index 9a7061674c..0589ba7368 100644 --- a/app/src/main/java/c/f/j/a/b/e.java +++ b/app/src/main/java/c/f/j/a/b/e.java @@ -14,7 +14,7 @@ public class e implements d { public static c b; /* renamed from: c reason: collision with root package name */ - public final b f427c; + public final b f428c; public final PlatformBitmapFactory d; static { @@ -34,7 +34,7 @@ public class e implements d { } public e(b bVar, PlatformBitmapFactory platformBitmapFactory) { - this.f427c = bVar; + this.f428c = bVar; this.d = platformBitmapFactory; } @@ -44,7 +44,7 @@ public class e implements d { f fVar = new f(cVar); fVar.b = CloseableReference.p(null); fVar.d = 0; - fVar.f426c = CloseableReference.r(null); + fVar.f427c = CloseableReference.r(null); fVar.e = null; a aVar = new a(fVar.a()); CloseableReference.t(null); diff --git a/app/src/main/java/c/f/j/a/c/a.java b/app/src/main/java/c/f/j/a/c/a.java index dbcdfdb5bc..cf888aa5ed 100644 --- a/app/src/main/java/c/f/j/a/c/a.java +++ b/app/src/main/java/c/f/j/a/c/a.java @@ -15,7 +15,7 @@ public class a implements c.f.j.a.a.a { public final e b; /* renamed from: c reason: collision with root package name */ - public final c f428c; + public final c f429c; public final Rect d; public final int[] e; public final b[] f; @@ -28,7 +28,7 @@ public class a implements c.f.j.a.a.a { this.a = aVar; this.b = eVar; c cVar = eVar.a; - this.f428c = cVar; + this.f429c = cVar; int[] h = cVar.h(); this.e = h; Objects.requireNonNull(aVar); @@ -51,11 +51,11 @@ public class a implements c.f.j.a.a.a { iArr3[i4] = i3; i3 += iArr2[i4]; } - this.d = a(this.f428c, rect); + this.d = a(this.f429c, rect); this.i = z2; - this.f = new b[this.f428c.a()]; - for (int i5 = 0; i5 < this.f428c.a(); i5++) { - this.f[i5] = this.f428c.f(i5); + this.f = new b[this.f429c.a()]; + for (int i5 = 0; i5 < this.f429c.a(); i5++) { + this.f[i5] = this.f429c.f(i5); } } @@ -64,7 +64,7 @@ public class a implements c.f.j.a.a.a { } public int b() { - return this.f428c.a(); + return this.f429c.a(); } public final synchronized Bitmap c(int i, int i2) { @@ -86,9 +86,9 @@ public class a implements c.f.j.a.a.a { } public void d(int i, Canvas canvas) { - d d = this.f428c.d(i); + d d = this.f429c.d(i); try { - if (this.f428c.e()) { + if (this.f429c.e()) { f(canvas, d); } else { e(canvas, d); @@ -127,8 +127,8 @@ public class a implements c.f.j.a.a.a { } public final void f(Canvas canvas, d dVar) { - double width = ((double) this.d.width()) / ((double) this.f428c.getWidth()); - double height = ((double) this.d.height()) / ((double) this.f428c.getHeight()); + double width = ((double) this.d.width()) / ((double) this.f429c.getWidth()); + double height = ((double) this.d.height()) / ((double) this.f429c.getHeight()); int round = (int) Math.round(((double) dVar.getWidth()) * width); int round2 = (int) Math.round(((double) dVar.getHeight()) * height); int b = (int) (((double) dVar.b()) * width); diff --git a/app/src/main/java/c/f/j/a/c/c.java b/app/src/main/java/c/f/j/a/c/c.java index c59b94260f..5921484c92 100644 --- a/app/src/main/java/c/f/j/a/c/c.java +++ b/app/src/main/java/c/f/j/a/c/c.java @@ -2,9 +2,9 @@ package c.f.j.a.c; import androidx.annotation.VisibleForTesting; import androidx.core.view.PointerIconCompat; +import c.c.a.a0.d; import c.f.d.d.i; import c.f.j.c.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import java.util.LinkedHashSet; /* compiled from: AnimatedFrameCache */ @@ -13,7 +13,7 @@ public class c { public final m b; /* renamed from: c reason: collision with root package name */ - public final m.b f429c = new a(); + public final m.b f430c = new a(); public final LinkedHashSet d = new LinkedHashSet<>(); /* compiled from: AnimatedFrameCache */ @@ -73,10 +73,10 @@ public class c { } public String toString() { - i K2 = AnimatableValueParser.K2(this); - K2.c("imageCacheKey", this.a); - K2.a("frameIndex", this.b); - return K2.toString(); + i g2 = d.g2(this); + g2.c("imageCacheKey", this.a); + g2.a("frameIndex", this.b); + return g2.toString(); } } diff --git a/app/src/main/java/c/f/j/a/c/d.java b/app/src/main/java/c/f/j/a/c/d.java index af7cc58eb6..dc4fbd8a56 100644 --- a/app/src/main/java/c/f/j/a/c/d.java +++ b/app/src/main/java/c/f/j/a/c/d.java @@ -14,7 +14,7 @@ public class d { public final a b; /* renamed from: c reason: collision with root package name */ - public final Paint f430c; + public final Paint f431c; /* compiled from: AnimatedImageCompositor */ public interface a { @@ -27,7 +27,7 @@ public class d { this.a = aVar; this.b = aVar2; Paint paint = new Paint(); - this.f430c = paint; + this.f431c = paint; paint.setColor(0); paint.setStyle(Paint.Style.FILL); paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC)); @@ -36,11 +36,11 @@ public class d { public final void a(Canvas canvas, b bVar) { int i = bVar.a; int i2 = bVar.b; - canvas.drawRect((float) i, (float) i2, (float) (i + bVar.f424c), (float) (i2 + bVar.d), this.f430c); + canvas.drawRect((float) i, (float) i2, (float) (i + bVar.f425c), (float) (i2 + bVar.d), this.f431c); } public final boolean b(b bVar) { - return bVar.a == 0 && bVar.b == 0 && bVar.f424c == ((a) this.a).d.width() && bVar.d == ((a) this.a).d.height(); + return bVar.a == 0 && bVar.b == 0 && bVar.f425c == ((a) this.a).d.width() && bVar.d == ((a) this.a).d.height(); } public final boolean c(int i) { diff --git a/app/src/main/java/c/f/j/b/a.java b/app/src/main/java/c/f/j/b/a.java index 98e2407b72..d795ed9447 100644 --- a/app/src/main/java/c/f/j/b/a.java +++ b/app/src/main/java/c/f/j/b/a.java @@ -3,7 +3,6 @@ package c.f.j.b; import android.annotation.TargetApi; import android.graphics.Bitmap; import c.f.j.l.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.references.CloseableReference; import com.facebook.imagepipeline.bitmaps.PlatformBitmapFactory; /* compiled from: ArtBitmapFactory */ @@ -20,7 +19,7 @@ public class a extends PlatformBitmapFactory { @Override // com.facebook.imagepipeline.bitmaps.PlatformBitmapFactory public CloseableReference b(int i, int i2, Bitmap.Config config) { Bitmap bitmap = this.a.get(c.f.k.a.c(i, i2, config)); - AnimatableValueParser.j(Boolean.valueOf(bitmap.getAllocationByteCount() >= c.f.k.a.b(config) * (i * i2))); + c.c.a.a0.d.j(Boolean.valueOf(bitmap.getAllocationByteCount() >= c.f.k.a.b(config) * (i * i2))); bitmap.reconfigure(i, i2, config); return CloseableReference.H(bitmap, this.a, this.b.a); } diff --git a/app/src/main/java/c/f/j/c/a0.java b/app/src/main/java/c/f/j/c/a0.java index 24183314a5..d13c08b1a3 100644 --- a/app/src/main/java/c/f/j/c/a0.java +++ b/app/src/main/java/c/f/j/c/a0.java @@ -1,8 +1,8 @@ package c.f.j.c; +import c.c.a.a0.d; import c.f.d.e.a; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.common.memory.PooledByteBuffer; import com.facebook.common.references.CloseableReference; @@ -32,7 +32,7 @@ public class a0 { } public synchronized void b(CacheKey cacheKey, e eVar) { - AnimatableValueParser.j(Boolean.valueOf(e.t(eVar))); + d.j(Boolean.valueOf(e.t(eVar))); e put = this.a.put(cacheKey, e.a(eVar)); if (put != null) { put.close(); @@ -62,7 +62,7 @@ public class a0 { public synchronized boolean d(CacheKey cacheKey, e eVar) { Objects.requireNonNull(cacheKey); Objects.requireNonNull(eVar); - AnimatableValueParser.j(Boolean.valueOf(e.t(eVar))); + d.j(Boolean.valueOf(e.t(eVar))); e eVar2 = this.a.get(cacheKey); if (eVar2 == null) { return false; diff --git a/app/src/main/java/c/f/j/c/b.java b/app/src/main/java/c/f/j/c/b.java index d9f63da366..11cf8929f1 100644 --- a/app/src/main/java/c/f/j/c/b.java +++ b/app/src/main/java/c/f/j/c/b.java @@ -1,8 +1,8 @@ package c.f.j.c; +import c.c.a.a0.d; import c.f.j.d.e; import c.f.j.d.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.common.time.RealtimeSinceBootClock; import java.util.Objects; @@ -12,7 +12,7 @@ public class b implements CacheKey { public final e b; /* renamed from: c reason: collision with root package name */ - public final f f431c; + public final f f432c; public final c.f.j.d.b d; public final CacheKey e; public final String f; @@ -23,7 +23,7 @@ public class b implements CacheKey { Objects.requireNonNull(str); this.a = str; this.b = eVar; - this.f431c = fVar; + this.f432c = fVar; this.d = bVar; this.e = cacheKey; this.f = str2; @@ -56,7 +56,7 @@ public class b implements CacheKey { return false; } b bVar = (b) obj; - return this.g == bVar.g && this.a.equals(bVar.a) && AnimatableValueParser.i0(this.b, bVar.b) && AnimatableValueParser.i0(this.f431c, bVar.f431c) && AnimatableValueParser.i0(this.d, bVar.d) && AnimatableValueParser.i0(this.e, bVar.e) && AnimatableValueParser.i0(this.f, bVar.f); + return this.g == bVar.g && this.a.equals(bVar.a) && d.i0(this.b, bVar.b) && d.i0(this.f432c, bVar.f432c) && d.i0(this.d, bVar.d) && d.i0(this.e, bVar.e) && d.i0(this.f, bVar.f); } @Override // com.facebook.cache.common.CacheKey @@ -65,6 +65,6 @@ public class b implements CacheKey { } public String toString() { - return String.format(null, "%s_%s_%s_%s_%s_%s_%d", this.a, this.b, this.f431c, this.d, this.e, this.f, Integer.valueOf(this.g)); + return String.format(null, "%s_%s_%s_%s_%s_%s_%d", this.a, this.b, this.f432c, this.d, this.e, this.f, Integer.valueOf(this.g)); } } diff --git a/app/src/main/java/c/f/j/c/f.java b/app/src/main/java/c/f/j/c/f.java index 5b02ab2238..1f49b426d0 100644 --- a/app/src/main/java/c/f/j/c/f.java +++ b/app/src/main/java/c/f/j/c/f.java @@ -7,7 +7,6 @@ import c.f.d.g.g; import c.f.d.g.j; import c.f.j.j.e; import c.f.j.r.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.common.memory.PooledByteBuffer; import java.io.FileInputStream; @@ -23,7 +22,7 @@ public class f { public final g b; /* renamed from: c reason: collision with root package name */ - public final j f432c; + public final j f433c; public final Executor d; public final Executor e; public final a0 f = new a0(); @@ -69,7 +68,7 @@ public class f { public f(h hVar, g gVar, j jVar, Executor executor, Executor executor2, r rVar) { this.a = hVar; this.b = gVar; - this.f432c = jVar; + this.f433c = jVar; this.d = executor; this.e = executor2; this.g = rVar; @@ -124,10 +123,10 @@ public class f { Objects.requireNonNull(dVar); try { synchronized (dVar.q) { - List I0 = AnimatableValueParser.I0(cacheKey); + List B0 = c.c.a.a0.d.B0(cacheKey); int i = 0; while (true) { - ArrayList arrayList = (ArrayList) I0; + ArrayList arrayList = (ArrayList) B0; if (i < arrayList.size()) { String str = (String) arrayList.get(i); if (dVar.k.c(str, cacheKey)) { @@ -156,7 +155,7 @@ public class f { Objects.requireNonNull((z) this.g); Executor executor = z.g.a; if (eVar instanceof Boolean) { - return ((Boolean) eVar).booleanValue() ? z.g.f2976c : z.g.d; + return ((Boolean) eVar).booleanValue() ? z.g.f2979c : z.g.d; } z.g gVar = new z.g<>(); if (gVar.h(eVar)) { @@ -195,7 +194,7 @@ public class f { try { b.b(); Objects.requireNonNull(cacheKey); - AnimatableValueParser.j(Boolean.valueOf(e.t(eVar))); + c.c.a.a0.d.j(Boolean.valueOf(e.t(eVar))); this.f.b(cacheKey, eVar); e a2 = e.a(eVar); try { diff --git a/app/src/main/java/c/f/j/c/l.java b/app/src/main/java/c/f/j/c/l.java index a439a2bf9d..9ff60ddd64 100644 --- a/app/src/main/java/c/f/j/c/l.java +++ b/app/src/main/java/c/f/j/c/l.java @@ -11,7 +11,7 @@ public class l { public final LinkedHashMap b = new LinkedHashMap<>(); /* renamed from: c reason: collision with root package name */ - public int f433c = 0; + public int f434c = 0; public l(b0 b0Var) { this.a = b0Var; @@ -22,7 +22,7 @@ public class l { } public synchronized int b() { - return this.f433c; + return this.f434c; } public final int c(V v) { @@ -35,16 +35,16 @@ public class l { public synchronized V d(K k, V v) { V remove; remove = this.b.remove(k); - this.f433c -= c(remove); + this.f434c -= c(remove); this.b.put(k, v); - this.f433c += c(v); + this.f434c += c(v); return remove; } public synchronized V e(K k) { V remove; remove = this.b.remove(k); - this.f433c -= c(remove); + this.f434c -= c(remove); return remove; } @@ -58,7 +58,7 @@ public class l { next.getKey(); } arrayList.add(next.getValue()); - this.f433c -= c(next.getValue()); + this.f434c -= c(next.getValue()); it.remove(); } return arrayList; diff --git a/app/src/main/java/c/f/j/c/m.java b/app/src/main/java/c/f/j/c/m.java index 849a4898bb..c034802ec5 100644 --- a/app/src/main/java/c/f/j/c/m.java +++ b/app/src/main/java/c/f/j/c/m.java @@ -13,7 +13,7 @@ public interface m extends w, c.f.d.g.b { public final CloseableReference b; /* renamed from: c reason: collision with root package name */ - public int f434c = 0; + public int f435c = 0; public boolean d = false; public final b e; diff --git a/app/src/main/java/c/f/j/c/n.java b/app/src/main/java/c/f/j/c/n.java index 99e1ce3347..dadd1a3612 100644 --- a/app/src/main/java/c/f/j/c/n.java +++ b/app/src/main/java/c/f/j/c/n.java @@ -9,11 +9,11 @@ public class n implements i { public static n a; public CacheKey a(ImageRequest imageRequest, Object obj) { - return new b(imageRequest.f2263c.toString(), imageRequest.i, imageRequest.j, imageRequest.h, null, null, obj); + return new b(imageRequest.f2266c.toString(), imageRequest.i, imageRequest.j, imageRequest.h, null, null, obj); } public CacheKey b(ImageRequest imageRequest, Object obj) { - return new f(imageRequest.f2263c.toString()); + return new f(imageRequest.f2266c.toString()); } public CacheKey c(ImageRequest imageRequest, Object obj) { @@ -28,6 +28,6 @@ public class n implements i { cacheKey = null; str = null; } - return new b(imageRequest.f2263c.toString(), imageRequest.i, imageRequest.j, imageRequest.h, cacheKey, str, obj); + return new b(imageRequest.f2266c.toString(), imageRequest.i, imageRequest.j, imageRequest.h, cacheKey, str, obj); } } diff --git a/app/src/main/java/c/f/j/c/v.java b/app/src/main/java/c/f/j/c/v.java index f3b341ef78..9a81af16c2 100644 --- a/app/src/main/java/c/f/j/c/v.java +++ b/app/src/main/java/c/f/j/c/v.java @@ -2,12 +2,12 @@ package c.f.j.c; import android.os.SystemClock; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.f.d.d.j; import c.f.d.h.f; import c.f.j.a.c.c; import c.f.j.c.m; import c.f.j.c.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.internal.Supplier; import com.facebook.common.references.CloseableReference; import com.facebook.imagepipeline.cache.MemoryCacheParams; @@ -23,7 +23,7 @@ public class v implements m, w { @VisibleForTesting /* renamed from: c reason: collision with root package name */ - public final l> f435c; + public final l> f436c; public final b0 d; public final Supplier e; public MemoryCacheParams f; @@ -49,8 +49,8 @@ public class v implements m, w { synchronized (vVar) { synchronized (vVar) { z2 = false; - AnimatableValueParser.B(aVar.f434c > 0); - aVar.f434c--; + d.B(aVar.f435c > 0); + aVar.f435c--; } CloseableReference.s(vVar.o(aVar)); if (!z2) { @@ -63,7 +63,7 @@ public class v implements m, w { vVar.j(); } synchronized (vVar) { - if (!aVar.d && aVar.f434c == 0) { + if (!aVar.d && aVar.f435c == 0) { vVar.b.d(aVar.a, aVar); z2 = true; } @@ -81,10 +81,10 @@ public class v implements m, w { new WeakHashMap(); this.d = b0Var; this.b = new l<>(new u(this, b0Var)); - this.f435c = new l<>(new u(this, b0Var)); + this.f436c = new l<>(new u(this, b0Var)); this.e = supplier; MemoryCacheParams memoryCacheParams = supplier.get(); - AnimatableValueParser.y(memoryCacheParams, "mMemoryCacheParamsSupplier returned null"); + d.y(memoryCacheParams, "mMemoryCacheParamsSupplier returned null"); this.f = memoryCacheParams; this.a = bVar; } @@ -111,12 +111,12 @@ public class v implements m, w { e = this.b.e(k); z2 = false; if (e != null) { - m.a e2 = this.f435c.e(k); + m.a e2 = this.f436c.e(k); Objects.requireNonNull(e2); - if (e2.f434c == 0) { + if (e2.f435c == 0) { z2 = true; } - AnimatableValueParser.B(z2); + d.B(z2); closeableReference = e2.b; z2 = true; } else { @@ -140,7 +140,7 @@ public class v implements m, w { m(); synchronized (this) { m.a e = this.b.e(k); - m.a e2 = this.f435c.e(k); + m.a e2 = this.f436c.e(k); closeableReference2 = null; if (e2 != null) { g(e2); @@ -165,7 +165,7 @@ public class v implements m, w { } if (z2) { m.a aVar = new m.a<>(k, closeableReference, bVar); - this.f435c.d(k, aVar); + this.f436c.d(k, aVar); closeableReference2 = n(aVar); } if (closeableReference3 != null) { @@ -178,7 +178,7 @@ public class v implements m, w { @Override // c.f.j.c.w public synchronized boolean contains(K k) { boolean containsKey; - l> lVar = this.f435c; + l> lVar = this.f436c; synchronized (lVar) { containsKey = lVar.b.containsKey(k); } @@ -191,7 +191,7 @@ public class v implements m, w { ArrayList> f2; synchronized (this) { f = this.b.f(jVar); - f2 = this.f435c.f(jVar); + f2 = this.f436c.f(jVar); h(f2); } i(f2); @@ -202,16 +202,16 @@ public class v implements m, w { } public synchronized int e() { - return this.f435c.a() - this.b.a(); + return this.f436c.a() - this.b.a(); } public synchronized int f() { - return this.f435c.b() - this.b.b(); + return this.f436c.b() - this.b.b(); } public final synchronized void g(m.a aVar) { Objects.requireNonNull(aVar); - AnimatableValueParser.B(!aVar.d); + d.B(!aVar.d); aVar.d = true; } @@ -223,7 +223,7 @@ public class v implements m, w { CloseableReference closeableReference = null; synchronized (this) { e = this.b.e(k); - l> lVar = this.f435c; + l> lVar = this.f436c; synchronized (lVar) { aVar = lVar.b.get(k); } @@ -262,7 +262,7 @@ public class v implements m, w { MemoryCacheParams memoryCacheParams = this.f; int min = Math.min(memoryCacheParams.d, memoryCacheParams.b - e()); MemoryCacheParams memoryCacheParams2 = this.f; - p = p(min, Math.min(memoryCacheParams2.f2256c, memoryCacheParams2.a - f())); + p = p(min, Math.min(memoryCacheParams2.f2259c, memoryCacheParams2.a - f())); h(p); } i(p); @@ -282,15 +282,15 @@ public class v implements m, w { if (this.g + this.f.f <= SystemClock.uptimeMillis()) { this.g = SystemClock.uptimeMillis(); MemoryCacheParams memoryCacheParams = this.e.get(); - AnimatableValueParser.y(memoryCacheParams, "mMemoryCacheParamsSupplier returned null"); + d.y(memoryCacheParams, "mMemoryCacheParamsSupplier returned null"); this.f = memoryCacheParams; } } public final synchronized CloseableReference n(m.a aVar) { synchronized (this) { - AnimatableValueParser.B(!aVar.d); - aVar.f434c++; + d.B(!aVar.d); + aVar.f435c++; } return CloseableReference.G(aVar.b.w(), new a(aVar)); return CloseableReference.G(aVar.b.w(), new a(aVar)); @@ -298,7 +298,7 @@ public class v implements m, w { public final synchronized CloseableReference o(m.a aVar) { Objects.requireNonNull(aVar); - return (!aVar.d || aVar.f434c != 0) ? null : aVar.b; + return (!aVar.d || aVar.f435c != 0) ? null : aVar.b; } public final synchronized ArrayList> p(int i, int i2) { @@ -319,7 +319,7 @@ public class v implements m, w { } if (next != null) { this.b.e(next); - arrayList.add(this.f435c.e(next)); + arrayList.add(this.f436c.e(next)); } else { throw new IllegalStateException(String.format("key is null, but exclusiveEntries count: %d, size: %d", Integer.valueOf(this.b.a()), Integer.valueOf(this.b.b()))); } diff --git a/app/src/main/java/c/f/j/d/a.java b/app/src/main/java/c/f/j/d/a.java index 619492f22b..17d747a660 100644 --- a/app/src/main/java/c/f/j/d/a.java +++ b/app/src/main/java/c/f/j/d/a.java @@ -1,6 +1,6 @@ package c.f.j.d; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: BytesRange */ public class a { public final int a; @@ -23,7 +23,7 @@ public class a { } public int hashCode() { - return AnimatableValueParser.V0(this.a, this.b); + return d.M0(this.a, this.b); } /* JADX DEBUG: Can't convert new array creation: APUT found in different block: 0x0013: APUT (r0v1 java.lang.Object[]), (0 ??[int, short, byte, char]), (r1v1 java.lang.String) */ diff --git a/app/src/main/java/c/f/j/d/b.java b/app/src/main/java/c/f/j/d/b.java index 27fc24d5a8..2a1910f840 100644 --- a/app/src/main/java/c/f/j/d/b.java +++ b/app/src/main/java/c/f/j/d/b.java @@ -1,16 +1,16 @@ package c.f.j.d; import android.graphics.Bitmap; +import c.c.a.a0.d; import c.d.b.a.a; import c.f.d.d.i; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: ImageDecodeOptions */ public class b { public static final b a = new b(new c()); public final int b = 100; /* renamed from: c reason: collision with root package name */ - public final int f436c = Integer.MAX_VALUE; + public final int f437c = Integer.MAX_VALUE; public final Bitmap.Config d; public b(c cVar) { @@ -25,26 +25,26 @@ public class b { return false; } b bVar = (b) obj; - return this.b == bVar.b && this.f436c == bVar.f436c && this.d == bVar.d; + return this.b == bVar.b && this.f437c == bVar.f437c && this.d == bVar.d; } public int hashCode() { - return ((((((this.d.ordinal() + (((((((((((this.b * 31) + this.f436c) * 31) + 0) * 31) + 0) * 31) + 0) * 31) + 0) * 31)) * 31) + 0) * 31) + 0) * 31) + 0; + return ((((((this.d.ordinal() + (((((((((((this.b * 31) + this.f437c) * 31) + 0) * 31) + 0) * 31) + 0) * 31) + 0) * 31)) * 31) + 0) * 31) + 0) * 31) + 0; } public String toString() { - StringBuilder P = a.P("ImageDecodeOptions{"); - i K2 = AnimatableValueParser.K2(this); - K2.a("minDecodeIntervalMs", this.b); - K2.a("maxDimensionPx", this.f436c); - K2.b("decodePreviewFrame", false); - K2.b("useLastFrameForPreview", false); - K2.b("decodeAllFrames", false); - K2.b("forceStaticImage", false); - K2.c("bitmapConfigName", this.d.name()); - K2.c("customImageDecoder", null); - K2.c("bitmapTransformation", null); - K2.c("colorSpace", null); - return a.H(P, K2.toString(), "}"); + StringBuilder O = a.O("ImageDecodeOptions{"); + i g2 = d.g2(this); + g2.a("minDecodeIntervalMs", this.b); + g2.a("maxDimensionPx", this.f437c); + g2.b("decodePreviewFrame", false); + g2.b("useLastFrameForPreview", false); + g2.b("decodeAllFrames", false); + g2.b("forceStaticImage", false); + g2.c("bitmapConfigName", this.d.name()); + g2.c("customImageDecoder", null); + g2.c("bitmapTransformation", null); + g2.c("colorSpace", null); + return a.G(O, g2.toString(), "}"); } } diff --git a/app/src/main/java/c/f/j/d/e.java b/app/src/main/java/c/f/j/d/e.java index e4d768de54..ef144fb707 100644 --- a/app/src/main/java/c/f/j/d/e.java +++ b/app/src/main/java/c/f/j/d/e.java @@ -1,22 +1,22 @@ package c.f.j.d; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: ResizeOptions */ public class e { public final int a; public final int b; /* renamed from: c reason: collision with root package name */ - public final float f437c; + public final float f438c; public final float d; public e(int i, int i2) { boolean z2 = true; - AnimatableValueParser.j(Boolean.valueOf(i > 0)); - AnimatableValueParser.j(Boolean.valueOf(i2 <= 0 ? false : z2)); + d.j(Boolean.valueOf(i > 0)); + d.j(Boolean.valueOf(i2 <= 0 ? false : z2)); this.a = i; this.b = i2; - this.f437c = 2048.0f; + this.f438c = 2048.0f; this.d = 0.6666667f; } @@ -32,7 +32,7 @@ public class e { } public int hashCode() { - return AnimatableValueParser.V0(this.a, this.b); + return d.M0(this.a, this.b); } public String toString() { diff --git a/app/src/main/java/c/f/j/d/f.java b/app/src/main/java/c/f/j/d/f.java index 84b48da451..750b7c2981 100644 --- a/app/src/main/java/c/f/j/d/f.java +++ b/app/src/main/java/c/f/j/d/f.java @@ -1,34 +1,34 @@ package c.f.j.d; import androidx.annotation.Nullable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: RotationOptions */ public class f { public static final f a = new f(-1, false); public static final f b = new f(-1, true); /* renamed from: c reason: collision with root package name */ - public final int f438c; + public final int f439c; public final boolean d; public f(int i, boolean z2) { - this.f438c = i; + this.f439c = i; this.d = z2; } public int a() { if (!c()) { - return this.f438c; + return this.f439c; } throw new IllegalStateException("Rotation is set to use EXIF"); } public boolean b() { - return this.f438c != -2; + return this.f439c != -2; } public boolean c() { - return this.f438c == -1; + return this.f439c == -1; } public boolean equals(@Nullable Object obj) { @@ -39,14 +39,14 @@ public class f { return false; } f fVar = (f) obj; - return this.f438c == fVar.f438c && this.d == fVar.d; + return this.f439c == fVar.f439c && this.d == fVar.d; } public int hashCode() { - return AnimatableValueParser.W0(Integer.valueOf(this.f438c), Boolean.valueOf(this.d)); + return d.N0(Integer.valueOf(this.f439c), Boolean.valueOf(this.d)); } public String toString() { - return String.format(null, "%d defer:%b", Integer.valueOf(this.f438c), Boolean.valueOf(this.d)); + return String.format(null, "%d defer:%b", Integer.valueOf(this.f439c), Boolean.valueOf(this.d)); } } diff --git a/app/src/main/java/c/f/j/e/b.java b/app/src/main/java/c/f/j/e/b.java index 5f6d3b8cbb..9e12606e1d 100644 --- a/app/src/main/java/c/f/j/e/b.java +++ b/app/src/main/java/c/f/j/e/b.java @@ -9,13 +9,13 @@ public class b implements e { public final Executor b; /* renamed from: c reason: collision with root package name */ - public final Executor f439c; + public final Executor f440c; public final Executor d; public final ScheduledExecutorService e; public b(int i) { this.b = Executors.newFixedThreadPool(i, new n(10, "FrescoDecodeExecutor", true)); - this.f439c = Executors.newFixedThreadPool(i, new n(10, "FrescoBackgroundExecutor", true)); + this.f440c = Executors.newFixedThreadPool(i, new n(10, "FrescoBackgroundExecutor", true)); this.e = Executors.newScheduledThreadPool(i, new n(10, "FrescoBackgroundExecutor", true)); this.d = Executors.newFixedThreadPool(1, new n(10, "FrescoLightWeightBackgroundExecutor", true)); } @@ -32,7 +32,7 @@ public class b implements e { @Override // c.f.j.e.e public Executor c() { - return this.f439c; + return this.f440c; } @Override // c.f.j.e.e diff --git a/app/src/main/java/c/f/j/e/c.java b/app/src/main/java/c/f/j/e/c.java index 22c4a94057..01c7bcb978 100644 --- a/app/src/main/java/c/f/j/e/c.java +++ b/app/src/main/java/c/f/j/e/c.java @@ -17,7 +17,7 @@ public class c implements f { public h a(DiskCacheConfig diskCacheConfig) { Objects.requireNonNull(this.a); - e eVar = new e(diskCacheConfig.a, diskCacheConfig.f2244c, diskCacheConfig.b, diskCacheConfig.h); + e eVar = new e(diskCacheConfig.a, diskCacheConfig.f2247c, diskCacheConfig.b, diskCacheConfig.h); ExecutorService newSingleThreadExecutor = Executors.newSingleThreadExecutor(); return new d(eVar, diskCacheConfig.g, new d.c(diskCacheConfig.f, diskCacheConfig.e, diskCacheConfig.d), diskCacheConfig.i, diskCacheConfig.h, diskCacheConfig.j, newSingleThreadExecutor, false); } diff --git a/app/src/main/java/c/f/j/e/h.java b/app/src/main/java/c/f/j/e/h.java index 1439a43b47..d11d8a0816 100644 --- a/app/src/main/java/c/f/j/e/h.java +++ b/app/src/main/java/c/f/j/e/h.java @@ -12,7 +12,6 @@ import c.f.j.p.b0; import c.f.j.p.c1; import c.f.j.p.f1; import c.f.j.p.v0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.common.internal.Supplier; import com.facebook.common.memory.PooledByteBuffer; @@ -28,7 +27,7 @@ public class h { public final e b; /* renamed from: c reason: collision with root package name */ - public final d f440c; + public final d f441c; public final Supplier d; public final w e; public final w f; @@ -46,7 +45,7 @@ public class h { public h(p pVar, Set set, Set set2, Supplier supplier, w wVar, w wVar2, f fVar, f fVar2, i iVar, f1 f1Var, Supplier supplier2, Supplier supplier3, a aVar, j jVar) { this.a = pVar; this.b = new c.f.j.k.c(set); - this.f440c = new b(set2); + this.f441c = new b(set2); this.d = supplier; this.e = wVar; this.f = wVar2; @@ -61,7 +60,7 @@ public class h { try { return b(this.a.c(imageRequest), imageRequest, cVar, obj, eVar, str); } catch (Exception e) { - return AnimatableValueParser.Z0(e); + return c.c.a.a0.d.Q0(e); } } @@ -77,7 +76,7 @@ public class h { e eVar3 = imageRequest.r; if (eVar3 == null) { eVar2 = this.b; - b0 b0Var = new b0(eVar2, this.f440c); + b0 b0Var = new b0(eVar2, this.f441c); aVar = this.k; if (aVar != null) { aVar.a(obj, false); @@ -85,7 +84,7 @@ public class h { ImageRequest.c f = ImageRequest.c.f(imageRequest.m, cVar); String valueOf = String.valueOf(this.i.getAndIncrement()); if (!imageRequest.f) { - if (c.f.d.l.b.e(imageRequest.f2263c)) { + if (c.f.d.l.b.e(imageRequest.f2266c)) { z2 = false; c1 c1Var = new c1(imageRequest, valueOf, str, b0Var, obj, f, false, z2, imageRequest.l, this.l); c.f.j.r.b.b(); @@ -106,7 +105,7 @@ public class h { e eVar4 = imageRequest.r; if (eVar4 == null) { eVar2 = new c.f.j.k.c(this.b, eVar); - b0 b0Var = new b0(eVar2, this.f440c); + b0 b0Var = new b0(eVar2, this.f441c); aVar = this.k; if (aVar != null) { } @@ -124,7 +123,7 @@ public class h { cVar2 = new c.f.j.k.c(this.b, eVar, eVar4); } eVar2 = cVar2; - b0 b0Var = new b0(eVar2, this.f440c); + b0 b0Var = new b0(eVar2, this.f441c); aVar = this.k; if (aVar != null) { } @@ -140,7 +139,7 @@ public class h { c.f.j.r.b.b(); return dVar; } catch (Exception e) { - return AnimatableValueParser.Z0(e); + return c.c.a.a0.d.Q0(e); } finally { c.f.j.r.b.b(); } diff --git a/app/src/main/java/c/f/j/e/j.java b/app/src/main/java/c/f/j/e/j.java index ecb8b2e60d..aa52dd015a 100644 --- a/app/src/main/java/c/f/j/e/j.java +++ b/app/src/main/java/c/f/j/e/j.java @@ -31,7 +31,7 @@ public class j { public final Bitmap.Config b; /* renamed from: c reason: collision with root package name */ - public final Supplier f441c; + public final Supplier f442c; public final w.a d; public final i e; public final Context f; @@ -49,20 +49,20 @@ public class j { public final c.f.j.h.c r; /* renamed from: s reason: collision with root package name */ - public final Set f442s; + public final Set f443s; public final Set t; public final boolean u; public final DiskCacheConfig v; public final k w; /* renamed from: x reason: collision with root package name */ - public final boolean f443x; + public final boolean f444x; /* renamed from: y reason: collision with root package name */ - public final c.f.j.g.a f444y; + public final c.f.j.g.a f445y; /* renamed from: z reason: collision with root package name */ - public final c.f.j.c.a f445z; + public final c.f.j.c.a f446z; /* compiled from: ImagePipelineConfig */ public static class a { @@ -70,7 +70,7 @@ public class j { public final Context b; /* renamed from: c reason: collision with root package name */ - public boolean f446c = false; + public boolean f447c = false; public DiskCacheConfig d; public DiskCacheConfig e; public final k.b f = new k.b(this); @@ -96,7 +96,7 @@ public class j { c.f.j.r.b.b(); this.w = new k(aVar.f, null); Supplier supplier = aVar.a; - this.f441c = supplier == null ? new DefaultBitmapMemoryCacheParamsSupplier((ActivityManager) aVar.b.getSystemService(ActivityChooserModel.ATTRIBUTE_ACTIVITY)) : supplier; + this.f442c = supplier == null ? new DefaultBitmapMemoryCacheParamsSupplier((ActivityManager) aVar.b.getSystemService(ActivityChooserModel.ATTRIBUTE_ACTIVITY)) : supplier; this.d = new c.f.j.c.c(); this.b = Bitmap.Config.ARGB_8888; synchronized (n.class) { @@ -110,7 +110,7 @@ public class j { Objects.requireNonNull(context); this.f = context; this.h = new c(new d()); - this.g = aVar.f446c; + this.g = aVar.f447c; this.i = new o(); synchronized (z.class) { if (z.a == null) { @@ -141,15 +141,15 @@ public class j { x xVar = new x(new c.f.j.l.w(new w.b(null), null)); this.q = xVar; this.r = new c.f.j.h.e(); - this.f442s = new HashSet(); + this.f443s = new HashSet(); this.t = new HashSet(); this.u = true; DiskCacheConfig diskCacheConfig2 = aVar.e; this.v = diskCacheConfig2 != null ? diskCacheConfig2 : diskCacheConfig; this.j = new b(xVar.b()); - this.f443x = aVar.g; - this.f444y = aVar.h; - this.f445z = new c.f.j.c.k(); + this.f444x = aVar.g; + this.f445y = aVar.h; + this.f446z = new c.f.j.c.k(); c.f.j.r.b.b(); } } diff --git a/app/src/main/java/c/f/j/e/k.java b/app/src/main/java/c/f/j/e/k.java index 709874a4ce..a9431293d3 100644 --- a/app/src/main/java/c/f/j/e/k.java +++ b/app/src/main/java/c/f/j/e/k.java @@ -9,7 +9,7 @@ public class k { public final d b = new c(); /* renamed from: c reason: collision with root package name */ - public final boolean f447c; + public final boolean f448c; public final Supplier d; public boolean e; public final boolean f; @@ -21,7 +21,7 @@ public class k { public boolean b; /* renamed from: c reason: collision with root package name */ - public Supplier f448c = new c.f.d.d.k(Boolean.FALSE); + public Supplier f449c = new c.f.d.d.k(Boolean.FALSE); public b(j.a aVar) { this.a = aVar; @@ -38,8 +38,8 @@ public class k { public k(b bVar, a aVar) { Objects.requireNonNull(bVar); - this.f447c = bVar.b; - this.d = bVar.f448c; + this.f448c = bVar.b; + this.d = bVar.f449c; this.e = true; this.f = true; this.g = 20; diff --git a/app/src/main/java/c/f/j/e/l.java b/app/src/main/java/c/f/j/e/l.java index 2bea214ca7..f1c6674947 100644 --- a/app/src/main/java/c/f/j/e/l.java +++ b/app/src/main/java/c/f/j/e/l.java @@ -44,7 +44,7 @@ public class l { public final f1 b; /* renamed from: c reason: collision with root package name */ - public final j f449c; + public final j f450c; public final a d; public m e; public s f; @@ -62,18 +62,18 @@ public class l { public PlatformBitmapFactory r; /* renamed from: s reason: collision with root package name */ - public d f450s; + public d f451s; public a t; public l(j jVar) { c.f.j.r.b.b(); Objects.requireNonNull(jVar); - this.f449c = jVar; + this.f450c = jVar; Objects.requireNonNull(jVar.w); this.b = new g1(jVar.j.b()); Objects.requireNonNull(jVar.w); CloseableReference.j = 0; - this.d = new a(jVar.f444y); + this.d = new a(jVar.f445y); c.f.j.r.b.b(); } @@ -89,48 +89,48 @@ public class l { public final h a() { b bVar; if (Build.VERSION.SDK_INT >= 24) { - Objects.requireNonNull(this.f449c.w); + Objects.requireNonNull(this.f450c.w); } if (this.o == null) { - ContentResolver contentResolver = this.f449c.f.getApplicationContext().getContentResolver(); + ContentResolver contentResolver = this.f450c.f.getApplicationContext().getContentResolver(); if (this.n == null) { - j jVar = this.f449c; + j jVar = this.f450c; k.d dVar = jVar.w.b; Context context = jVar.f; c.f.d.g.a f = jVar.q.f(); if (this.k == null) { - Objects.requireNonNull(this.f449c); + Objects.requireNonNull(this.f450c); a b = b(); b bVar2 = null; if (b != null) { - bVar2 = b.b(this.f449c.b); - bVar = b.c(this.f449c.b); + bVar2 = b.b(this.f450c.b); + bVar = b.c(this.f450c.b); } else { bVar = null; } - Objects.requireNonNull(this.f449c); + Objects.requireNonNull(this.f450c); this.k = new c.f.j.h.a(bVar2, bVar, h()); } b bVar3 = this.k; - j jVar2 = this.f449c; + j jVar2 = this.f450c; c.f.j.h.c cVar = jVar2.r; boolean z2 = jVar2.g; boolean z3 = jVar2.u; Objects.requireNonNull(jVar2.w); - j jVar3 = this.f449c; + j jVar3 = this.f450c; e eVar = jVar3.j; g d = jVar3.q.d(0); - this.f449c.q.e(); + this.f450c.q.e(); s d2 = d(); s e = e(); f f2 = f(); f i = i(); - i iVar = this.f449c.e; + i iVar = this.f450c.e; PlatformBitmapFactory g = g(); - Objects.requireNonNull(this.f449c.w); - Objects.requireNonNull(this.f449c.w); - Objects.requireNonNull(this.f449c.w); - k kVar = this.f449c.w; + Objects.requireNonNull(this.f450c.w); + Objects.requireNonNull(this.f450c.w); + Objects.requireNonNull(this.f450c.w); + k kVar = this.f450c.w; int i2 = kVar.a; a aVar = this.d; int i3 = kVar.g; @@ -138,50 +138,50 @@ public class l { this.n = new o(context, f, bVar3, cVar, z2, z3, false, eVar, d, d2, e, f2, i, iVar, g, 0, 0, false, i2, aVar, false, i3); } o oVar = this.n; - j jVar4 = this.f449c; + j jVar4 = this.f450c; n0 n0Var = jVar4.o; boolean z4 = jVar4.u; Objects.requireNonNull(jVar4.w); f1 f1Var = this.b; - j jVar5 = this.f449c; + j jVar5 = this.f450c; boolean z5 = jVar5.g; Objects.requireNonNull(jVar5.w); - j jVar6 = this.f449c; - boolean z6 = jVar6.f443x; + j jVar6 = this.f450c; + boolean z6 = jVar6.f444x; if (this.m == null) { Objects.requireNonNull(jVar6.w); - k kVar2 = this.f449c.w; + k kVar2 = this.f450c.w; this.m = new e(kVar2.a, false, null, null, kVar2.f); } c.f.j.s.c cVar2 = this.m; - Objects.requireNonNull(this.f449c.w); - Objects.requireNonNull(this.f449c.w); - Objects.requireNonNull(this.f449c.w); - Objects.requireNonNull(this.f449c.w); + Objects.requireNonNull(this.f450c.w); + Objects.requireNonNull(this.f450c.w); + Objects.requireNonNull(this.f450c.w); + Objects.requireNonNull(this.f450c.w); this.o = new p(contentResolver, oVar, n0Var, z4, false, f1Var, z5, false, false, z6, cVar2, false, false, false, false); } p pVar = this.o; - Set unmodifiableSet = Collections.unmodifiableSet(this.f449c.f442s); - Set unmodifiableSet2 = Collections.unmodifiableSet(this.f449c.t); - Supplier supplier = this.f449c.l; + Set unmodifiableSet = Collections.unmodifiableSet(this.f450c.f443s); + Set unmodifiableSet2 = Collections.unmodifiableSet(this.f450c.t); + Supplier supplier = this.f450c.l; s d3 = d(); s e2 = e(); f f3 = f(); f i4 = i(); - j jVar7 = this.f449c; + j jVar7 = this.f450c; i iVar2 = jVar7.e; f1 f1Var2 = this.b; Supplier supplier2 = jVar7.w.d; Objects.requireNonNull(jVar7); - return new h(pVar, unmodifiableSet, unmodifiableSet2, supplier, d3, e2, f3, i4, iVar2, f1Var2, supplier2, null, null, this.f449c); + return new h(pVar, unmodifiableSet, unmodifiableSet2, supplier, d3, e2, f3, i4, iVar2, f1Var2, supplier2, null, null, this.f450c); } public final a b() { if (this.t == null) { PlatformBitmapFactory g = g(); - e eVar = this.f449c.j; + e eVar = this.f450c.j; m c2 = c(); - boolean z2 = this.f449c.w.f447c; + boolean z2 = this.f450c.w.f448c; if (!c.f.j.a.b.b.a) { try { c.f.j.a.b.b.b = (a) Class.forName("com.facebook.fresco.animation.factory.AnimatedFactoryV2Impl").getConstructor(PlatformBitmapFactory.class, e.class, m.class, Boolean.TYPE).newInstance(g, eVar, c2, Boolean.valueOf(z2)); @@ -198,9 +198,9 @@ public class l { public m c() { if (this.e == null) { - j jVar = this.f449c; - c.f.j.c.a aVar = jVar.f445z; - Supplier supplier = jVar.f441c; + j jVar = this.f450c; + c.f.j.c.a aVar = jVar.f446z; + Supplier supplier = jVar.f442c; c.f.d.g.c cVar = jVar.n; w.a aVar2 = jVar.d; c.f.j.c.k kVar = (c.f.j.c.k) aVar; @@ -215,7 +215,7 @@ public class l { public s d() { if (this.f == null) { m c2 = c(); - r rVar = this.f449c.k; + r rVar = this.f450c.k; Objects.requireNonNull((z) rVar); this.f = new s<>(c2, new t(rVar)); } @@ -224,9 +224,9 @@ public class l { public s e() { if (this.h == null) { - Objects.requireNonNull(this.f449c); + Objects.requireNonNull(this.f450c); if (this.g == null) { - j jVar = this.f449c; + j jVar = this.f450c; Supplier supplier = jVar.i; c.f.d.g.c cVar = jVar.n; v vVar = new v(new p(), new y(), supplier, null); @@ -234,7 +234,7 @@ public class l { this.g = vVar; } m mVar = this.g; - r rVar = this.f449c.k; + r rVar = this.f450c.k; Objects.requireNonNull((z) rVar); this.h = new s<>(mVar, new q(rVar)); } @@ -244,21 +244,21 @@ public class l { public f f() { if (this.i == null) { if (this.j == null) { - j jVar = this.f449c; + j jVar = this.f450c; this.j = ((c) jVar.h).a(jVar.m); } h hVar = this.j; - j jVar2 = this.f449c; + j jVar2 = this.f450c; x xVar = jVar2.q; Objects.requireNonNull(jVar2); - this.i = new f(hVar, xVar.d(0), this.f449c.q.e(), this.f449c.j.e(), this.f449c.j.d(), this.f449c.k); + this.i = new f(hVar, xVar.d(0), this.f450c.q.e(), this.f450c.j.e(), this.f450c.j.d(), this.f450c.k); } return this.i; } public PlatformBitmapFactory g() { if (this.r == null) { - x xVar = this.f449c.q; + x xVar = this.f450c.q; h(); this.r = new c.f.j.b.a(xVar.a(), this.d); } @@ -267,8 +267,8 @@ public class l { public d h() { d dVar; - if (this.f450s == null) { - j jVar = this.f449c; + if (this.f451s == null) { + j jVar = this.f450c; x xVar = jVar.q; Objects.requireNonNull(jVar.w); if (Build.VERSION.SDK_INT >= 26) { @@ -278,22 +278,22 @@ public class l { int b2 = xVar.b(); dVar = new c.f.j.n.a(xVar.a(), b2, new Pools.SynchronizedPool(b2)); } - this.f450s = dVar; + this.f451s = dVar; } - return this.f450s; + return this.f451s; } public final f i() { if (this.p == null) { if (this.q == null) { - j jVar = this.f449c; + j jVar = this.f450c; this.q = ((c) jVar.h).a(jVar.v); } h hVar = this.q; - j jVar2 = this.f449c; + j jVar2 = this.f450c; x xVar = jVar2.q; Objects.requireNonNull(jVar2); - this.p = new f(hVar, xVar.d(0), this.f449c.q.e(), this.f449c.j.e(), this.f449c.j.d(), this.f449c.k); + this.p = new f(hVar, xVar.d(0), this.f450c.q.e(), this.f450c.j.e(), this.f450c.j.d(), this.f450c.k); } return this.p; } diff --git a/app/src/main/java/c/f/j/e/o.java b/app/src/main/java/c/f/j/e/o.java index e6882a81ba..8632c3a72f 100644 --- a/app/src/main/java/c/f/j/e/o.java +++ b/app/src/main/java/c/f/j/e/o.java @@ -24,7 +24,7 @@ public class o { public Resources b; /* renamed from: c reason: collision with root package name */ - public AssetManager f451c; + public AssetManager f452c; public final a d; public final b e; public final c f; @@ -42,22 +42,22 @@ public class o { public final d r; /* renamed from: s reason: collision with root package name */ - public final PlatformBitmapFactory f452s; + public final PlatformBitmapFactory f453s; public final int t; public final int u; public boolean v; public final a w; /* renamed from: x reason: collision with root package name */ - public final int f453x; + public final int f454x; /* renamed from: y reason: collision with root package name */ - public final boolean f454y; + public final boolean f455y; public o(Context context, a aVar, b bVar, c cVar, boolean z2, boolean z3, boolean z4, e eVar, g gVar, w wVar, w wVar2, f fVar, f fVar2, i iVar, PlatformBitmapFactory platformBitmapFactory, int i, int i2, boolean z5, int i3, a aVar2, boolean z6, int i4) { this.a = context.getApplicationContext().getContentResolver(); this.b = context.getApplicationContext().getResources(); - this.f451c = context.getApplicationContext().getAssets(); + this.f452c = context.getApplicationContext().getAssets(); this.d = aVar; this.e = bVar; this.f = cVar; @@ -71,15 +71,15 @@ public class o { this.l = fVar; this.m = fVar2; this.p = iVar; - this.f452s = platformBitmapFactory; + this.f453s = platformBitmapFactory; this.q = new d<>(i4); this.r = new d<>(i4); this.t = i; this.u = i2; this.v = z5; - this.f453x = i3; + this.f454x = i3; this.w = aVar2; - this.f454y = z6; + this.f455y = z6; } public b1 a(v0 v0Var, boolean z2, c.f.j.s.c cVar) { diff --git a/app/src/main/java/c/f/j/e/p.java b/app/src/main/java/c/f/j/e/p.java index 7f6c745730..5b0f016668 100644 --- a/app/src/main/java/c/f/j/e/p.java +++ b/app/src/main/java/c/f/j/e/p.java @@ -4,6 +4,7 @@ import android.content.ContentResolver; import android.net.Uri; import androidx.annotation.Nullable; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.f.d.d.l; import c.f.j.c.w; import c.f.j.j.e; @@ -41,7 +42,6 @@ import c.f.j.p.v; import c.f.j.p.v0; import c.f.j.r.b; import c.f.j.s.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.common.memory.PooledByteBuffer; import com.facebook.common.references.CloseableReference; @@ -56,7 +56,7 @@ public class p { public final o b; /* renamed from: c reason: collision with root package name */ - public final n0 f455c; + public final n0 f456c; public final boolean d; public final boolean e; public final f1 f; @@ -85,7 +85,7 @@ public class p { @VisibleForTesting /* renamed from: s reason: collision with root package name */ - public v0> f456s; + public v0> f457s; @Nullable @VisibleForTesting public v0> t; @@ -100,15 +100,15 @@ public class p { @VisibleForTesting /* renamed from: x reason: collision with root package name */ - public Map>, v0>> f457x; + public Map>, v0>> f458x; public p(ContentResolver contentResolver, o oVar, n0 n0Var, boolean z2, boolean z3, f1 f1Var, boolean z4, boolean z5, boolean z6, boolean z7, c cVar, boolean z8, boolean z9, boolean z10, boolean z11) { this.a = contentResolver; this.b = oVar; - this.f455c = n0Var; + this.f456c = n0Var; this.d = z2; new HashMap(); - this.f457x = new HashMap(); + this.f458x = new HashMap(); this.f = f1Var; this.g = z4; this.h = z5; @@ -125,7 +125,7 @@ public class p { if (this.o == null) { b.b(); o oVar = this.b; - v0 m = m(new m0(oVar.k, oVar.d, this.f455c)); + v0 m = m(new m0(oVar.k, oVar.d, this.f456c)); Objects.requireNonNull(m); a aVar = new a(m); this.o = aVar; @@ -153,8 +153,8 @@ public class p { try { b.b(); Objects.requireNonNull(imageRequest); - Uri uri = imageRequest.f2263c; - AnimatableValueParser.y(uri, "Uri is null."); + Uri uri = imageRequest.f2266c; + d.y(uri, "Uri is null."); int i = imageRequest.d; if (i != 0) { boolean z2 = false; @@ -224,7 +224,7 @@ public class p { v0> v0Var = this.w.get(r0Var); if (v0Var == null) { o oVar3 = this.b; - s0 s0Var = new s0(r0Var, oVar3.f452s, oVar3.j.c()); + s0 s0Var = new s0(r0Var, oVar3.f453s, oVar3.j.c()); o oVar4 = this.b; r0 r0Var2 = new r0(oVar4.o, oVar4.p, s0Var); this.w.put(r0Var, r0Var2); @@ -236,18 +236,18 @@ public class p { } if (this.h) { synchronized (this) { - v0> v0Var2 = this.f457x.get(r0Var); + v0> v0Var2 = this.f458x.get(r0Var); if (v0Var2 == null) { o oVar5 = this.b; i iVar = new i(r0Var, oVar5.t, oVar5.u, oVar5.v); - this.f457x.put(r0Var, iVar); + this.f458x.put(r0Var, iVar); r0Var = iVar; } else { r0Var = v0Var2; } } } - if (this.m && imageRequest.f2264s > 0) { + if (this.m && imageRequest.f2267s > 0) { synchronized (this) { oVar = new o(r0Var, this.b.j.g()); } @@ -264,7 +264,7 @@ public class p { public final synchronized v0> d() { if (this.t == null) { o oVar = this.b; - this.t = k(new d0(oVar.j.e(), oVar.k, oVar.f451c)); + this.t = k(new d0(oVar.j.e(), oVar.k, oVar.f452c)); } return this.t; } @@ -282,11 +282,11 @@ public class p { } public final synchronized v0> f() { - if (this.f456s == null) { + if (this.f457s == null) { o oVar = this.b; - this.f456s = k(new i0(oVar.j.e(), oVar.k, oVar.b)); + this.f457s = k(new i0(oVar.j.e(), oVar.k, oVar.b)); } - return this.f456s; + return this.f457s; } public final synchronized v0> g() { @@ -327,7 +327,7 @@ public class p { public final v0> j(v0 v0Var) { b.b(); o oVar = this.b; - v0> i = i(new n(oVar.d, oVar.j.a(), oVar.e, oVar.f, oVar.g, oVar.h, oVar.i, v0Var, oVar.f453x, oVar.w, null, l.a)); + v0> i = i(new n(oVar.d, oVar.j.a(), oVar.e, oVar.f, oVar.g, oVar.h, oVar.i, v0Var, oVar.f454x, oVar.w, null, l.a)); b.b(); return i; } @@ -367,8 +367,8 @@ public class p { c.f.j.c.i iVar2 = oVar4.p; v vVar = new v(wVar, iVar2, v0Var); if (!this.l) { - return new u(iVar2, oVar4.f454y, vVar); + return new u(iVar2, oVar4.f455y, vVar); } - return new u(iVar2, oVar4.f454y, new c.f.j.p.w(oVar4.l, oVar4.m, iVar2, oVar4.q, oVar4.r, vVar)); + return new u(iVar2, oVar4.f455y, new c.f.j.p.w(oVar4.l, oVar4.m, iVar2, oVar4.q, oVar4.r, vVar)); } } diff --git a/app/src/main/java/c/f/j/f/a.java b/app/src/main/java/c/f/j/f/a.java index 5481101a3d..4661f64ec1 100644 --- a/app/src/main/java/c/f/j/f/a.java +++ b/app/src/main/java/c/f/j/f/a.java @@ -1,8 +1,8 @@ package c.f.j.f; +import c.c.a.a0.d; import c.f.j.p.b; import c.f.j.p.c1; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.references.CloseableReference; import java.util.Objects; /* compiled from: AbstractProducerToDataSourceAdapter */ @@ -17,7 +17,7 @@ public class a extends b { public void g() { b bVar = this.b; synchronized (bVar) { - AnimatableValueParser.B(bVar.i()); + d.B(bVar.i()); } } diff --git a/app/src/main/java/c/f/j/h/a.java b/app/src/main/java/c/f/j/h/a.java index 1321488899..b6c839e1d6 100644 --- a/app/src/main/java/c/f/j/h/a.java +++ b/app/src/main/java/c/f/j/h/a.java @@ -16,7 +16,7 @@ public class a implements b { public final b b; /* renamed from: c reason: collision with root package name */ - public final d f458c; + public final d f459c; public final b d = new C0065a(); /* compiled from: DefaultImageDecoder */ @@ -31,7 +31,7 @@ public class a implements b { c.f.i.c cVar = eVar.k; if (cVar == c.f.i.b.a) { a aVar = a.this; - CloseableReference b = aVar.f458c.b(eVar, bVar.d, null, i, null); + CloseableReference b = aVar.f459c.b(eVar, bVar.d, null, i, null); try { aVar.c(null, b); eVar.w(); @@ -41,7 +41,7 @@ public class a implements b { } finally { b.close(); } - } else if (cVar == c.f.i.b.f422c) { + } else if (cVar == c.f.i.b.f423c) { a aVar2 = a.this; Objects.requireNonNull(aVar2); eVar.w(); @@ -68,7 +68,7 @@ public class a implements b { public a(b bVar, b bVar2, d dVar) { this.a = bVar; this.b = bVar2; - this.f458c = dVar; + this.f459c = dVar; } @Override // c.f.j.h.b @@ -83,7 +83,7 @@ public class a implements b { } public c.f.j.j.d b(e eVar, b bVar) { - CloseableReference a = this.f458c.a(eVar, bVar.d, null, null); + CloseableReference a = this.f459c.a(eVar, bVar.d, null, null); try { c(null, a); i iVar = h.a; diff --git a/app/src/main/java/c/f/j/h/d.java b/app/src/main/java/c/f/j/h/d.java index 044275d418..e8b88e63b0 100644 --- a/app/src/main/java/c/f/j/h/d.java +++ b/app/src/main/java/c/f/j/h/d.java @@ -4,7 +4,6 @@ import c.f.d.d.m; import c.f.d.g.a; import c.f.d.g.f; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.io.InputStream; import java.util.Objects; @@ -14,7 +13,7 @@ public class d { public int b = 0; /* renamed from: c reason: collision with root package name */ - public int f459c = 0; + public int f460c = 0; public int d = 0; public int e = 0; public int f = 0; @@ -40,8 +39,8 @@ public class d { if (this.a == 6 || (read = inputStream.read()) == -1) { break; } - int i2 = this.f459c + 1; - this.f459c = i2; + int i2 = this.f460c + 1; + this.f460c = i2; if (this.g) { this.a = 6; this.g = false; @@ -55,11 +54,11 @@ public class d { if (i3 == 4) { this.a = 5; } else if (i3 != 5) { - AnimatableValueParser.B(false); + c.c.a.a0.d.B(false); } else { int i4 = ((this.b << 8) + read) - 2; - AnimatableValueParser.F2(inputStream, (long) i4); - this.f459c += i4; + c.c.a.a0.d.b2(inputStream, (long) i4); + this.f460c += i4; this.a = 2; } } else if (read == 255) { @@ -118,12 +117,12 @@ public class d { } public boolean b(e eVar) { - if (this.a == 6 || eVar.f() <= this.f459c) { + if (this.a == 6 || eVar.f() <= this.f460c) { return false; } f fVar = new f(eVar.e(), this.h.get(16384), this.h); try { - AnimatableValueParser.F2(fVar, (long) this.f459c); + c.c.a.a0.d.b2(fVar, (long) this.f460c); boolean a = a(fVar); c.f.d.d.a.b(fVar); return a; diff --git a/app/src/main/java/c/f/j/j/a.java b/app/src/main/java/c/f/j/j/a.java index af383b2a9f..3730d29b1f 100644 --- a/app/src/main/java/c/f/j/j/a.java +++ b/app/src/main/java/c/f/j/j/a.java @@ -35,8 +35,8 @@ public class a extends c { closeableReference.close(); } eVar.b = null; - CloseableReference.t(eVar.f425c); - eVar.f425c = null; + CloseableReference.t(eVar.f426c); + eVar.f426c = null; } } diff --git a/app/src/main/java/c/f/j/j/e.java b/app/src/main/java/c/f/j/j/e.java index 055b6da55e..3c1794ca90 100644 --- a/app/src/main/java/c/f/j/j/e.java +++ b/app/src/main/java/c/f/j/j/e.java @@ -4,12 +4,11 @@ import android.graphics.ColorSpace; import android.media.ExifInterface; import android.os.Build; import android.util.Pair; +import c.c.a.a0.d; import c.f.d.g.h; import c.f.i.b; import c.f.i.c; -import c.f.i.d; import c.f.j.d.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.internal.Supplier; import com.facebook.common.memory.PooledByteBuffer; import com.facebook.common.references.CloseableReference; @@ -32,7 +31,7 @@ public class e implements Closeable { public a r; /* renamed from: s reason: collision with root package name */ - public ColorSpace f460s; + public ColorSpace f461s; public boolean t; public e(Supplier supplier, int i) { @@ -43,7 +42,7 @@ public class e implements Closeable { } public e(CloseableReference closeableReference) { - AnimatableValueParser.j(Boolean.valueOf(CloseableReference.z(closeableReference))); + d.j(Boolean.valueOf(CloseableReference.z(closeableReference))); this.i = closeableReference.clone(); this.j = null; } @@ -98,7 +97,7 @@ public class e implements Closeable { this.q = eVar.f(); this.r = eVar.r; eVar.w(); - this.f460s = eVar.f460s; + this.f461s = eVar.f461s; this.t = eVar.t; } @@ -179,8 +178,8 @@ public class e implements Closeable { boolean z3; int i3; int i4; - int m2; - c b = d.b(e()); + int J1; + c b = c.f.i.d.b(e()); this.k = b; int i5 = 0; InputStream inputStream = null; @@ -193,10 +192,10 @@ public class e implements Closeable { byte[] bArr = new byte[4]; try { e.read(bArr); - if (AnimatableValueParser.J(bArr, "RIFF")) { - AnimatableValueParser.D0(e); + if (d.J(bArr, "RIFF")) { + d.y0(e); e.read(bArr); - if (AnimatableValueParser.J(bArr, "WEBP")) { + if (d.J(bArr, "WEBP")) { e.read(bArr); StringBuilder sb = new StringBuilder(); for (int i6 = 0; i6 < 4; i6++) { @@ -204,12 +203,12 @@ public class e implements Closeable { } String sb2 = sb.toString(); if ("VP8 ".equals(sb2)) { - inputStream = AnimatableValueParser.O0(e); + inputStream = d.G0(e); } else if ("VP8L".equals(sb2)) { - inputStream = AnimatableValueParser.P0(e); + inputStream = d.H0(e); } else if ("VP8X".equals(sb2)) { e.skip(8); - Pair pair2 = new Pair(Integer.valueOf(AnimatableValueParser.g2(e) + 1), Integer.valueOf(AnimatableValueParser.g2(e) + 1)); + Pair pair2 = new Pair(Integer.valueOf(d.D1(e) + 1), Integer.valueOf(d.D1(e) + 1)); try { e.close(); } catch (IOException e2) { @@ -248,7 +247,7 @@ public class e implements Closeable { try { InputStream e6 = e(); c.f.k.b a = c.f.k.a.a(e6); - this.f460s = a.b; + this.f461s = a.b; Pair pair3 = a.a; if (pair3 != null) { this.n = ((Integer) pair3.first).intValue(); @@ -275,12 +274,12 @@ public class e implements Closeable { try { Objects.requireNonNull(e7); while (true) { - if (AnimatableValueParser.m2(e7, 1, false) != 255) { + if (d.J1(e7, 1, false) != 255) { break; } int i7 = 255; while (i7 == 255) { - i7 = AnimatableValueParser.m2(e7, 1, false); + i7 = d.J1(e7, 1, false); } if (i7 == 225) { z2 = true; @@ -292,24 +291,24 @@ public class e implements Closeable { } else if (i7 == 218) { break; } else { - e7.skip((long) (AnimatableValueParser.m2(e7, 2, false) - 2)); + e7.skip((long) (d.J1(e7, 2, false) - 2)); } } } } z2 = false; - if (z2 && (m2 = AnimatableValueParser.m2(e7, 2, false) - 2) > 6) { - int m22 = AnimatableValueParser.m2(e7, 4, false); - int m23 = AnimatableValueParser.m2(e7, 2, false); - i = (m2 - 4) - 2; - if (m22 == 1165519206 && m23 == 0) { + if (z2 && (J1 = d.J1(e7, 2, false) - 2) > 6) { + int J12 = d.J1(e7, 4, false); + int J13 = d.J1(e7, 2, false); + i = (J1 - 4) - 2; + if (J12 == 1165519206 && J13 == 0) { if (i == 0) { if (i > 8) { - int m24 = AnimatableValueParser.m2(e7, 4, false); + int J14 = d.J1(e7, 4, false); int i8 = i - 4; - if (m24 == 1229531648 || m24 == 1296891946) { - z3 = m24 == 1229531648; - i2 = AnimatableValueParser.m2(e7, 4, z3); + if (J14 == 1229531648 || J14 == 1296891946) { + z3 = J14 == 1229531648; + i2 = d.J1(e7, 4, z3); i3 = i8 - 4; if (i2 < 8 || i2 - 8 > i3) { c.f.d.e.a.a(c.f.k.c.class, "Invalid offset"); @@ -321,27 +320,27 @@ public class e implements Closeable { e7.skip((long) i9); int i10 = i3 - i9; if (i10 >= 14) { - int m25 = AnimatableValueParser.m2(e7, 2, z3); + int J15 = d.J1(e7, 2, z3); int i11 = i10 - 2; while (true) { - int i12 = m25 - 1; - if (m25 <= 0 || i11 < 12) { + int i12 = J15 - 1; + if (J15 <= 0 || i11 < 12) { break; } i4 = i11 - 2; - if (AnimatableValueParser.m2(e7, 2, z3) == 274) { + if (d.J1(e7, 2, z3) == 274) { break; } e7.skip(10); i11 = i4 - 10; - m25 = i12; + J15 = i12; } } i4 = 0; if (i4 >= 10) { - if (AnimatableValueParser.m2(e7, 2, z3) == 3) { - if (AnimatableValueParser.m2(e7, 4, z3) == 1) { - i5 = AnimatableValueParser.m2(e7, 2, z3); + if (d.J1(e7, 2, z3) == 3) { + if (d.J1(e7, 4, z3) == 1) { + i5 = d.J1(e7, 2, z3); } } } @@ -359,7 +358,7 @@ public class e implements Closeable { } } this.m = i5; - this.l = AnimatableValueParser.u0(i5); + this.l = d.u0(i5); } } i = 0; @@ -368,7 +367,7 @@ public class e implements Closeable { } catch (IOException unused3) { } this.m = i5; - this.l = AnimatableValueParser.u0(i5); + this.l = d.u0(i5); } } else if (b == b.k && this.l == -1) { InputStream e8 = e(); @@ -382,7 +381,7 @@ public class e implements Closeable { int i14 = c.f.d.e.a.a; } this.m = i5; - this.l = AnimatableValueParser.u0(i5); + this.l = d.u0(i5); } else if (this.l == -1) { this.l = 0; } diff --git a/app/src/main/java/c/f/j/j/h.java b/app/src/main/java/c/f/j/j/h.java index 222d6562c2..ee4d60fb42 100644 --- a/app/src/main/java/c/f/j/j/h.java +++ b/app/src/main/java/c/f/j/j/h.java @@ -5,12 +5,12 @@ public class h implements i { public int b; /* renamed from: c reason: collision with root package name */ - public boolean f461c; + public boolean f462c; public boolean d; public h(int i, boolean z2, boolean z3) { this.b = i; - this.f461c = z2; + this.f462c = z2; this.d = z3; } @@ -22,12 +22,12 @@ public class h implements i { return false; } h hVar = (h) obj; - return this.b == hVar.b && this.f461c == hVar.f461c && this.d == hVar.d; + return this.b == hVar.b && this.f462c == hVar.f462c && this.d == hVar.d; } public int hashCode() { int i = 0; - int i2 = this.b ^ (this.f461c ? 4194304 : 0); + int i2 = this.b ^ (this.f462c ? 4194304 : 0); if (this.d) { i = 8388608; } diff --git a/app/src/main/java/c/f/j/l/a.java b/app/src/main/java/c/f/j/l/a.java index 6e5234f3f7..2973f96e0c 100644 --- a/app/src/main/java/c/f/j/l/a.java +++ b/app/src/main/java/c/f/j/l/a.java @@ -4,7 +4,7 @@ import android.annotation.TargetApi; import android.os.SharedMemory; import android.system.ErrnoException; import android.util.Log; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.io.Closeable; import java.nio.ByteBuffer; import java.util.Objects; @@ -16,7 +16,7 @@ public class a implements r, Closeable { public final long k; public a(int i) { - AnimatableValueParser.j(Boolean.valueOf(i > 0)); + d.j(Boolean.valueOf(i > 0)); try { SharedMemory create = SharedMemory.create("AshmemMemoryChunk", i); this.i = create; @@ -31,13 +31,13 @@ public class a implements r, Closeable { public void a(int i, r rVar, int i2, int i3) { Objects.requireNonNull(rVar); if (rVar.getUniqueId() == this.k) { - StringBuilder P = c.d.b.a.a.P("Copying from AshmemMemoryChunk "); - P.append(Long.toHexString(this.k)); - P.append(" to AshmemMemoryChunk "); - P.append(Long.toHexString(rVar.getUniqueId())); - P.append(" which are the same "); - Log.w("AshmemMemoryChunk", P.toString()); - AnimatableValueParser.j(Boolean.FALSE); + StringBuilder O = c.d.b.a.a.O("Copying from AshmemMemoryChunk "); + O.append(Long.toHexString(this.k)); + O.append(" to AshmemMemoryChunk "); + O.append(Long.toHexString(rVar.getUniqueId())); + O.append(" which are the same "); + Log.w("AshmemMemoryChunk", O.toString()); + d.j(Boolean.FALSE); } if (rVar.getUniqueId() < this.k) { synchronized (rVar) { @@ -57,9 +57,9 @@ public class a implements r, Closeable { @Override // c.f.j.l.r public synchronized int b(int i, byte[] bArr, int i2, int i3) { int e; - AnimatableValueParser.B(!isClosed()); - e = AnimatableValueParser.e(i, i3, getSize()); - AnimatableValueParser.q(i, bArr.length, i2, e, getSize()); + d.B(!isClosed()); + e = d.e(i, i3, getSize()); + d.q(i, bArr.length, i2, e, getSize()); this.j.position(i); this.j.put(bArr, i2, e); return e; @@ -67,9 +67,9 @@ public class a implements r, Closeable { public final void c(int i, r rVar, int i2, int i3) { if (rVar instanceof a) { - AnimatableValueParser.B(!isClosed()); - AnimatableValueParser.B(!rVar.isClosed()); - AnimatableValueParser.q(i, rVar.getSize(), i2, i3, getSize()); + d.B(!isClosed()); + d.B(!rVar.isClosed()); + d.q(i, rVar.getSize(), i2, i3, getSize()); this.j.position(i); rVar.getByteBuffer().position(i2); byte[] bArr = new byte[i3]; @@ -97,7 +97,7 @@ public class a implements r, Closeable { @Override // c.f.j.l.r public int getSize() { - AnimatableValueParser.B(!isClosed()); + d.B(!isClosed()); return this.i.getSize(); } @@ -109,12 +109,12 @@ public class a implements r, Closeable { @Override // c.f.j.l.r public synchronized byte h(int i) { boolean z2 = true; - AnimatableValueParser.B(!isClosed()); - AnimatableValueParser.j(Boolean.valueOf(i >= 0)); + d.B(!isClosed()); + d.j(Boolean.valueOf(i >= 0)); if (i >= getSize()) { z2 = false; } - AnimatableValueParser.j(Boolean.valueOf(z2)); + d.j(Boolean.valueOf(z2)); return this.j.get(i); } @@ -122,9 +122,9 @@ public class a implements r, Closeable { public synchronized int i(int i, byte[] bArr, int i2, int i3) { int e; Objects.requireNonNull(bArr); - AnimatableValueParser.B(!isClosed()); - e = AnimatableValueParser.e(i, i3, getSize()); - AnimatableValueParser.q(i, bArr.length, i2, e, getSize()); + d.B(!isClosed()); + e = d.e(i, i3, getSize()); + d.q(i, bArr.length, i2, e, getSize()); this.j.position(i); this.j.get(bArr, i2, e); return e; diff --git a/app/src/main/java/c/f/j/l/b.java b/app/src/main/java/c/f/j/l/b.java index 21a0c37ca1..9ca40f3de7 100644 --- a/app/src/main/java/c/f/j/l/b.java +++ b/app/src/main/java/c/f/j/l/b.java @@ -1,15 +1,15 @@ package c.f.j.l; import android.graphics.Bitmap; +import c.c.a.a0.d; import c.f.d.h.f; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: BitmapCounter */ public class b { public int a; public long b; /* renamed from: c reason: collision with root package name */ - public final int f462c; + public final int f463c; public final int d; public final f e; @@ -32,16 +32,16 @@ public class b { public b(int i, int i2) { boolean z2 = true; - AnimatableValueParser.j(Boolean.valueOf(i > 0)); - AnimatableValueParser.j(Boolean.valueOf(i2 <= 0 ? false : z2)); - this.f462c = i; + d.j(Boolean.valueOf(i > 0)); + d.j(Boolean.valueOf(i2 <= 0 ? false : z2)); + this.f463c = i; this.d = i2; this.e = new a(); } public synchronized void a(Bitmap bitmap) { int d = c.f.k.a.d(bitmap); - AnimatableValueParser.l(this.a > 0, "No bitmaps registered."); + d.l(this.a > 0, "No bitmaps registered."); long j = (long) d; boolean z2 = j <= this.b; Object[] objArr = {Integer.valueOf(d), Long.valueOf(this.b)}; @@ -49,7 +49,7 @@ public class b { this.b -= j; this.a--; } else { - throw new IllegalArgumentException(AnimatableValueParser.m0("Bitmap size bigger than the total registered size: %d, %d", objArr)); + throw new IllegalArgumentException(d.m0("Bitmap size bigger than the total registered size: %d, %d", objArr)); } } diff --git a/app/src/main/java/c/f/j/l/c.java b/app/src/main/java/c/f/j/l/c.java index 3186daea30..d512027de4 100644 --- a/app/src/main/java/c/f/j/l/c.java +++ b/app/src/main/java/c/f/j/l/c.java @@ -7,7 +7,7 @@ public class c { public static int b = 384; /* renamed from: c reason: collision with root package name */ - public static volatile b f463c; + public static volatile b f464c; static { int min = (int) Math.min(Runtime.getRuntime().maxMemory(), 2147483647L); diff --git a/app/src/main/java/c/f/j/l/e.java b/app/src/main/java/c/f/j/l/e.java index b02c81524d..a1c4479aab 100644 --- a/app/src/main/java/c/f/j/l/e.java +++ b/app/src/main/java/c/f/j/l/e.java @@ -15,7 +15,7 @@ public class e extends q { if (bVar == null) { obj = null; } else { - obj = bVar.f466c.pollFirst(); + obj = bVar.f467c.pollFirst(); gVar.a(bVar); } } diff --git a/app/src/main/java/c/f/j/l/f.java b/app/src/main/java/c/f/j/l/f.java index e3bc6c1b68..eb6745a37d 100644 --- a/app/src/main/java/c/f/j/l/f.java +++ b/app/src/main/java/c/f/j/l/f.java @@ -2,8 +2,8 @@ package c.f.j.l; import android.util.Log; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.f.d.e.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.LinkedList; import java.util.Queue; /* compiled from: Bucket */ @@ -13,33 +13,33 @@ public class f { public final int b; /* renamed from: c reason: collision with root package name */ - public final Queue f464c; + public final Queue f465c; public final boolean d; public int e; public f(int i, int i2, int i3, boolean z2) { boolean z3 = true; - AnimatableValueParser.B(i > 0); - AnimatableValueParser.B(i2 >= 0); - AnimatableValueParser.B(i3 < 0 ? false : z3); + d.B(i > 0); + d.B(i2 >= 0); + d.B(i3 < 0 ? false : z3); this.a = i; this.b = i2; - this.f464c = new LinkedList(); + this.f465c = new LinkedList(); this.e = i3; this.d = z2; } public void a(V v) { - this.f464c.add(v); + this.f465c.add(v); } public void b() { - AnimatableValueParser.B(this.e > 0); + d.B(this.e > 0); this.e--; } public V c() { - return (V) this.f464c.poll(); + return (V) this.f465c.poll(); } public void d(V v) { @@ -48,7 +48,7 @@ public class f { if (this.e > 0) { z2 = true; } - AnimatableValueParser.B(z2); + d.B(z2); this.e--; a(v); return; diff --git a/app/src/main/java/c/f/j/l/g.java b/app/src/main/java/c/f/j/l/g.java index 511e1d5a7f..ba9edd134b 100644 --- a/app/src/main/java/c/f/j/l/g.java +++ b/app/src/main/java/c/f/j/l/g.java @@ -11,7 +11,7 @@ public class g { @VisibleForTesting /* renamed from: c reason: collision with root package name */ - public b f465c; + public b f466c; /* compiled from: BucketMap */ @VisibleForTesting @@ -20,17 +20,17 @@ public class g { public int b; /* renamed from: c reason: collision with root package name */ - public LinkedList f466c; + public LinkedList f467c; public b d; public b(b bVar, int i, LinkedList linkedList, b bVar2, a aVar) { this.b = i; - this.f466c = linkedList; + this.f467c = linkedList; this.d = null; } public String toString() { - return c.d.b.a.a.z(c.d.b.a.a.P("LinkedEntry(key: "), this.b, ")"); + return c.d.b.a.a.z(c.d.b.a.a.O("LinkedEntry(key: "), this.b, ")"); } } @@ -42,7 +42,7 @@ public class g { b bVar2 = (b) this.b; if (bVar2 == null) { this.b = bVar; - this.f465c = bVar; + this.f466c = bVar; return; } bVar.d = bVar2; @@ -65,8 +65,8 @@ public class g { if (bVar == this.b) { this.b = bVar3; } - if (bVar == this.f465c) { - this.f465c = bVar2; + if (bVar == this.f466c) { + this.f466c = bVar2; } } } diff --git a/app/src/main/java/c/f/j/l/i.java b/app/src/main/java/c/f/j/l/i.java index 09259e472c..949d4c0dfa 100644 --- a/app/src/main/java/c/f/j/l/i.java +++ b/app/src/main/java/c/f/j/l/i.java @@ -1,8 +1,8 @@ package c.f.j.l; import android.util.Log; +import c.c.a.a0.d; import c.d.b.a.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.Closeable; import java.nio.ByteBuffer; import java.util.Objects; @@ -21,13 +21,13 @@ public class i implements r, Closeable { public void a(int i, r rVar, int i2, int i3) { Objects.requireNonNull(rVar); if (rVar.getUniqueId() == this.k) { - StringBuilder P = a.P("Copying from BufferMemoryChunk "); - P.append(Long.toHexString(this.k)); - P.append(" to BufferMemoryChunk "); - P.append(Long.toHexString(rVar.getUniqueId())); - P.append(" which are the same "); - Log.w("BufferMemoryChunk", P.toString()); - AnimatableValueParser.j(Boolean.FALSE); + StringBuilder O = a.O("Copying from BufferMemoryChunk "); + O.append(Long.toHexString(this.k)); + O.append(" to BufferMemoryChunk "); + O.append(Long.toHexString(rVar.getUniqueId())); + O.append(" which are the same "); + Log.w("BufferMemoryChunk", O.toString()); + d.j(Boolean.FALSE); } if (rVar.getUniqueId() < this.k) { synchronized (rVar) { @@ -47,9 +47,9 @@ public class i implements r, Closeable { @Override // c.f.j.l.r public synchronized int b(int i, byte[] bArr, int i2, int i3) { int e; - AnimatableValueParser.B(!isClosed()); - e = AnimatableValueParser.e(i, i3, this.j); - AnimatableValueParser.q(i, bArr.length, i2, e, this.j); + d.B(!isClosed()); + e = d.e(i, i3, this.j); + d.q(i, bArr.length, i2, e, this.j); this.i.position(i); this.i.put(bArr, i2, e); return e; @@ -57,9 +57,9 @@ public class i implements r, Closeable { public final void c(int i, r rVar, int i2, int i3) { if (rVar instanceof i) { - AnimatableValueParser.B(!isClosed()); - AnimatableValueParser.B(!rVar.isClosed()); - AnimatableValueParser.q(i, rVar.getSize(), i2, i3, this.j); + d.B(!isClosed()); + d.B(!rVar.isClosed()); + d.q(i, rVar.getSize(), i2, i3, this.j); this.i.position(i); rVar.getByteBuffer().position(i2); byte[] bArr = new byte[i3]; @@ -93,12 +93,12 @@ public class i implements r, Closeable { @Override // c.f.j.l.r public synchronized byte h(int i) { boolean z2 = true; - AnimatableValueParser.B(!isClosed()); - AnimatableValueParser.j(Boolean.valueOf(i >= 0)); + d.B(!isClosed()); + d.j(Boolean.valueOf(i >= 0)); if (i >= this.j) { z2 = false; } - AnimatableValueParser.j(Boolean.valueOf(z2)); + d.j(Boolean.valueOf(z2)); return this.i.get(i); } @@ -106,9 +106,9 @@ public class i implements r, Closeable { public synchronized int i(int i, byte[] bArr, int i2, int i3) { int e; Objects.requireNonNull(bArr); - AnimatableValueParser.B(!isClosed()); - e = AnimatableValueParser.e(i, i3, this.j); - AnimatableValueParser.q(i, bArr.length, i2, e, this.j); + d.B(!isClosed()); + e = d.e(i, i3, this.j); + d.q(i, bArr.length, i2, e, this.j); this.i.position(i); this.i.get(bArr, i2, e); return e; diff --git a/app/src/main/java/c/f/j/l/o.java b/app/src/main/java/c/f/j/l/o.java index 3ca84756ee..ace07c2c54 100644 --- a/app/src/main/java/c/f/j/l/o.java +++ b/app/src/main/java/c/f/j/l/o.java @@ -10,7 +10,7 @@ public class o extends BasePool implements a { public o(c cVar, y yVar, z zVar) { super(cVar, yVar, zVar); - SparseIntArray sparseIntArray = yVar.f470c; + SparseIntArray sparseIntArray = yVar.f471c; this.k = new int[sparseIntArray.size()]; for (int i = 0; i < sparseIntArray.size(); i++) { this.k[i] = sparseIntArray.keyAt(i); diff --git a/app/src/main/java/c/f/j/l/p.java b/app/src/main/java/c/f/j/l/p.java index 8f31e88580..29582e4ae9 100644 --- a/app/src/main/java/c/f/j/l/p.java +++ b/app/src/main/java/c/f/j/l/p.java @@ -11,13 +11,13 @@ public class p implements d { public final int b; /* renamed from: c reason: collision with root package name */ - public int f467c; + public int f468c; public final z d; public int e; public p(int i, int i2, z zVar, c cVar) { this.b = i; - this.f467c = i2; + this.f468c = i2; this.d = zVar; } @@ -62,7 +62,7 @@ public class p implements d { boolean add; Bitmap bitmap = (Bitmap) obj; int b = this.a.b(bitmap); - if (b <= this.f467c) { + if (b <= this.f468c) { this.d.g(b); e eVar = (e) this.a; Objects.requireNonNull(eVar); @@ -80,7 +80,7 @@ public class p implements d { gVar.a.put(b2, bVar2); bVar = bVar2; } - bVar.f466c.addLast(bitmap); + bVar.f467c.addLast(bitmap); gVar.a(bVar); } } diff --git a/app/src/main/java/c/f/j/l/q.java b/app/src/main/java/c/f/j/l/q.java index 5e8ae59349..ed0488bcd1 100644 --- a/app/src/main/java/c/f/j/l/q.java +++ b/app/src/main/java/c/f/j/l/q.java @@ -16,12 +16,12 @@ public abstract class q { T t; g gVar = this.b; synchronized (gVar) { - g.b bVar = gVar.f465c; + g.b bVar = gVar.f466c; if (bVar == null) { t = null; } else { - T pollLast = bVar.f466c.pollLast(); - if (bVar.f466c.isEmpty()) { + T pollLast = bVar.f467c.pollLast(); + if (bVar.f467c.isEmpty()) { gVar.b(bVar); gVar.a.remove(bVar.b); } diff --git a/app/src/main/java/c/f/j/l/s.java b/app/src/main/java/c/f/j/l/s.java index ea89af4928..719645ef9e 100644 --- a/app/src/main/java/c/f/j/l/s.java +++ b/app/src/main/java/c/f/j/l/s.java @@ -9,7 +9,7 @@ public abstract class s extends BasePool { public s(c cVar, y yVar, z zVar) { super(cVar, yVar, zVar); - SparseIntArray sparseIntArray = yVar.f470c; + SparseIntArray sparseIntArray = yVar.f471c; this.k = new int[sparseIntArray.size()]; int i = 0; while (true) { diff --git a/app/src/main/java/c/f/j/l/t.java b/app/src/main/java/c/f/j/l/t.java index 40cd9ad12f..9738a6fe43 100644 --- a/app/src/main/java/c/f/j/l/t.java +++ b/app/src/main/java/c/f/j/l/t.java @@ -1,7 +1,7 @@ package c.f.j.l; import androidx.annotation.VisibleForTesting; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.facebook.common.memory.PooledByteBuffer; import com.facebook.common.references.CloseableReference; import java.nio.ByteBuffer; @@ -14,7 +14,7 @@ public class t implements PooledByteBuffer { public t(CloseableReference closeableReference, int i) { Objects.requireNonNull(closeableReference); - AnimatableValueParser.j(Boolean.valueOf(i >= 0 && i <= closeableReference.w().getSize())); + d.j(Boolean.valueOf(i >= 0 && i <= closeableReference.w().getSize())); this.j = closeableReference.clone(); this.i = i; } @@ -46,18 +46,18 @@ public class t implements PooledByteBuffer { public synchronized byte h(int i) { a(); boolean z2 = true; - AnimatableValueParser.j(Boolean.valueOf(i >= 0)); + d.j(Boolean.valueOf(i >= 0)); if (i >= this.i) { z2 = false; } - AnimatableValueParser.j(Boolean.valueOf(z2)); + d.j(Boolean.valueOf(z2)); return this.j.w().h(i); } @Override // com.facebook.common.memory.PooledByteBuffer public synchronized int i(int i, byte[] bArr, int i2, int i3) { a(); - AnimatableValueParser.j(Boolean.valueOf(i + i3 <= this.i)); + d.j(Boolean.valueOf(i + i3 <= this.i)); return this.j.w().i(i, bArr, i2, i3); } diff --git a/app/src/main/java/c/f/j/l/w.java b/app/src/main/java/c/f/j/l/w.java index e37fa5324c..7d3c2e0d52 100644 --- a/app/src/main/java/c/f/j/l/w.java +++ b/app/src/main/java/c/f/j/l/w.java @@ -9,7 +9,7 @@ public class w { public final z b = v.h(); /* renamed from: c reason: collision with root package name */ - public final y f468c; + public final y f469c; public final c d; public final y e; public final z f; @@ -32,7 +32,7 @@ public class w { for (int i3 = 131072; i3 <= 4194304; i3 *= 2) { sparseIntArray.put(i3, i); } - this.f468c = new y(4194304, i2, sparseIntArray, 131072, 4194304, k.a); + this.f469c = new y(4194304, i2, sparseIntArray, 131072, 4194304, k.a); this.d = d.b(); SparseIntArray sparseIntArray2 = new SparseIntArray(); sparseIntArray2.put(1024, 5); diff --git a/app/src/main/java/c/f/j/l/x.java b/app/src/main/java/c/f/j/l/x.java index 7a1b8f0364..2cd3ddd9a6 100644 --- a/app/src/main/java/c/f/j/l/x.java +++ b/app/src/main/java/c/f/j/l/x.java @@ -1,10 +1,10 @@ package c.f.j.l; +import c.c.a.a0.d; import c.f.d.g.a; import c.f.d.g.c; import c.f.d.g.g; import c.f.d.g.j; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.util.Objects; @@ -14,7 +14,7 @@ public class x { public s b; /* renamed from: c reason: collision with root package name */ - public d f469c; + public d f470c; public s d; public s e; public g f; @@ -26,7 +26,7 @@ public class x { } public d a() { - if (this.f469c == null) { + if (this.f470c == null) { String str = this.a.i; char c2 = 65535; switch (str.hashCode()) { @@ -62,27 +62,27 @@ public class x { break; } if (c2 == 0) { - this.f469c = new l(); + this.f470c = new l(); } else if (c2 == 1) { - this.f469c = new m(); + this.f470c = new m(); } else if (c2 == 2) { Objects.requireNonNull(this.a); int i = this.a.j; v h = v.h(); Objects.requireNonNull(this.a); - this.f469c = new p(0, i, h, null); + this.f470c = new p(0, i, h, null); } else if (c2 != 3) { w wVar = this.a; - this.f469c = new h(wVar.d, wVar.a, wVar.b, false); + this.f470c = new h(wVar.d, wVar.a, wVar.b, false); } else { - this.f469c = new h(this.a.d, j.a(), this.a.b, false); + this.f470c = new h(this.a.d, j.a(), this.a.b, false); } } - return this.f469c; + return this.f470c; } public int b() { - return this.a.f468c.d; + return this.a.f469c.d; } public final s c(int i) { @@ -156,7 +156,7 @@ public class x { public g d(int i) { if (this.f == null) { s c2 = c(i); - AnimatableValueParser.y(c2, "failed to get pool for chunk type: " + i); + d.y(c2, "failed to get pool for chunk type: " + i); this.f = new u(c(i), e()); } return this.f; diff --git a/app/src/main/java/c/f/j/l/y.java b/app/src/main/java/c/f/j/l/y.java index d68229aada..b3eed89b66 100644 --- a/app/src/main/java/c/f/j/l/y.java +++ b/app/src/main/java/c/f/j/l/y.java @@ -1,14 +1,14 @@ package c.f.j.l; import android.util.SparseIntArray; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: PoolParams */ public class y { public final int a; public final int b; /* renamed from: c reason: collision with root package name */ - public final SparseIntArray f470c; + public final SparseIntArray f471c; public final int d; public y(int i, int i2, SparseIntArray sparseIntArray) { @@ -16,10 +16,10 @@ public class y { } public y(int i, int i2, SparseIntArray sparseIntArray, int i3, int i4, int i5) { - AnimatableValueParser.B(i >= 0 && i2 >= i); + d.B(i >= 0 && i2 >= i); this.b = i; this.a = i2; - this.f470c = sparseIntArray; + this.f471c = sparseIntArray; this.d = i5; } } diff --git a/app/src/main/java/c/f/j/n/b.java b/app/src/main/java/c/f/j/n/b.java index c7eb26cac9..71821066ba 100644 --- a/app/src/main/java/c/f/j/n/b.java +++ b/app/src/main/java/c/f/j/n/b.java @@ -28,12 +28,12 @@ public abstract class b implements d { public final d b; /* renamed from: c reason: collision with root package name */ - public final PreverificationHelper f471c; + public final PreverificationHelper f472c; @VisibleForTesting public final Pools.SynchronizedPool d; public b(d dVar, int i, Pools.SynchronizedPool synchronizedPool) { - this.f471c = Build.VERSION.SDK_INT >= 26 ? new PreverificationHelper() : null; + this.f472c = Build.VERSION.SDK_INT >= 26 ? new PreverificationHelper() : null; this.b = dVar; this.d = synchronizedPool; for (int i2 = 0; i2 < i; i2++) { @@ -159,7 +159,7 @@ public abstract class b implements d { i2 = rect.height() / options.inSampleSize; } int i3 = Build.VERSION.SDK_INT; - boolean z2 = i3 >= 26 && (preverificationHelper = this.f471c) != null && preverificationHelper.shouldUseHardwareBitmapConfig(options.inPreferredConfig); + boolean z2 = i3 >= 26 && (preverificationHelper = this.f472c) != null && preverificationHelper.shouldUseHardwareBitmapConfig(options.inPreferredConfig); BitmapRegionDecoder bitmapRegionDecoder2 = null; if (rect != null || !z2) { if (rect != null && z2) { diff --git a/app/src/main/java/c/f/j/p/a0.java b/app/src/main/java/c/f/j/p/a0.java index 7be651f885..98fdfa1726 100644 --- a/app/src/main/java/c/f/j/p/a0.java +++ b/app/src/main/java/c/f/j/p/a0.java @@ -17,7 +17,7 @@ public class a0 extends c { public final ExecutorService b = Executors.newFixedThreadPool(3); /* renamed from: c reason: collision with root package name */ - public final b f472c; + public final b f473c; /* compiled from: HttpUrlConnectionNetworkFetcher */ public static class a extends x { @@ -32,7 +32,7 @@ public class a0 extends c { public a0(int i) { RealtimeSinceBootClock realtimeSinceBootClock = RealtimeSinceBootClock.get(); - this.f472c = realtimeSinceBootClock; + this.f473c = realtimeSinceBootClock; this.a = i; } diff --git a/app/src/main/java/c/f/j/p/a1.java b/app/src/main/java/c/f/j/p/a1.java index 36bf8f7933..490cdd2c30 100644 --- a/app/src/main/java/c/f/j/p/a1.java +++ b/app/src/main/java/c/f/j/p/a1.java @@ -10,16 +10,16 @@ import java.util.concurrent.Executor; public class a1 extends g0 { /* renamed from: c reason: collision with root package name */ - public final ContentResolver f473c; + public final ContentResolver f474c; public a1(Executor executor, g gVar, ContentResolver contentResolver) { super(executor, gVar); - this.f473c = contentResolver; + this.f474c = contentResolver; } @Override // c.f.j.p.g0 public e d(ImageRequest imageRequest) throws IOException { - return c(this.f473c.openInputStream(imageRequest.f2263c), -1); + return c(this.f474c.openInputStream(imageRequest.f2266c), -1); } @Override // c.f.j.p.g0 diff --git a/app/src/main/java/c/f/j/p/b0.java b/app/src/main/java/c/f/j/p/b0.java index 5782c9a3ed..30f2c5576e 100644 --- a/app/src/main/java/c/f/j/p/b0.java +++ b/app/src/main/java/c/f/j/p/b0.java @@ -9,13 +9,13 @@ public class b0 implements d, y0 { public final y0 b; /* renamed from: c reason: collision with root package name */ - public final e f474c; + public final e f475c; public final d d; public b0(e eVar, d dVar) { this.a = eVar; this.b = dVar; - this.f474c = eVar; + this.f475c = eVar; this.d = dVar; } @@ -33,7 +33,7 @@ public class b0 implements d, y0 { @Override // c.f.j.k.d public void b(w0 w0Var) { - e eVar = this.f474c; + e eVar = this.f475c; if (eVar != null) { eVar.a(w0Var.e(), w0Var.b(), w0Var.getId(), w0Var.k()); } @@ -81,7 +81,7 @@ public class b0 implements d, y0 { @Override // c.f.j.k.d public void f(w0 w0Var) { - e eVar = this.f474c; + e eVar = this.f475c; if (eVar != null) { eVar.c(w0Var.e(), w0Var.getId(), w0Var.k()); } @@ -101,7 +101,7 @@ public class b0 implements d, y0 { @Override // c.f.j.k.d public void h(w0 w0Var, Throwable th) { - e eVar = this.f474c; + e eVar = this.f475c; if (eVar != null) { eVar.g(w0Var.e(), w0Var.getId(), th, w0Var.k()); } @@ -113,7 +113,7 @@ public class b0 implements d, y0 { @Override // c.f.j.k.d public void i(w0 w0Var) { - e eVar = this.f474c; + e eVar = this.f475c; if (eVar != null) { eVar.k(w0Var.getId()); } diff --git a/app/src/main/java/c/f/j/p/b1.java b/app/src/main/java/c/f/j/p/b1.java index 2db0799912..b4efd9807e 100644 --- a/app/src/main/java/c/f/j/p/b1.java +++ b/app/src/main/java/c/f/j/p/b1.java @@ -20,7 +20,7 @@ public class b1 implements v0 { public final g b; /* renamed from: c reason: collision with root package name */ - public final v0 f475c; + public final v0 f476c; public final boolean d; public final c e; @@ -28,7 +28,7 @@ public class b1 implements v0 { public class a extends p { /* renamed from: c reason: collision with root package name */ - public final boolean f476c; + public final boolean f477c; public final c d; public final w0 e; public boolean f = false; @@ -45,7 +45,7 @@ public class b1 implements v0 { a aVar = a.this; c cVar = aVar.d; eVar.w(); - c.f.j.s.b createImageTranscoder = cVar.createImageTranscoder(eVar.k, a.this.f476c); + c.f.j.s.b createImageTranscoder = cVar.createImageTranscoder(eVar.k, a.this.f477c); Objects.requireNonNull(createImageTranscoder); aVar.e.o().e(aVar.e, "ResizeAndRotateProducer"); ImageRequest e = aVar.e.e(); @@ -116,7 +116,7 @@ public class b1 implements v0 { super(lVar); this.e = w0Var; Objects.requireNonNull(w0Var.e()); - this.f476c = z2; + this.f477c = z2; this.d = cVar; this.g = new c0(b1.this.a, new C0067a(b1.this), 100); w0Var.f(new b(b1.this, lVar)); @@ -139,7 +139,7 @@ public class b1 implements v0 { eVar.w(); c.f.i.c cVar = eVar.k; ImageRequest e2 = this.e.e(); - c.f.j.s.b createImageTranscoder = this.d.createImageTranscoder(cVar, this.f476c); + c.f.j.s.b createImageTranscoder = this.d.createImageTranscoder(cVar, this.f477c); Objects.requireNonNull(createImageTranscoder); eVar.w(); if (eVar.k == c.f.i.c.a) { @@ -246,7 +246,7 @@ public class b1 implements v0 { Objects.requireNonNull(gVar); this.b = gVar; Objects.requireNonNull(v0Var); - this.f475c = v0Var; + this.f476c = v0Var; Objects.requireNonNull(cVar); this.e = cVar; this.d = z2; @@ -254,6 +254,6 @@ public class b1 implements v0 { @Override // c.f.j.p.v0 public void b(l lVar, w0 w0Var) { - this.f475c.b(new a(lVar, w0Var, this.d, this.e), w0Var); + this.f476c.b(new a(lVar, w0Var, this.d, this.e), w0Var); } } diff --git a/app/src/main/java/c/f/j/p/c0.java b/app/src/main/java/c/f/j/p/c0.java index eaebb22006..df75e2ed16 100644 --- a/app/src/main/java/c/f/j/p/c0.java +++ b/app/src/main/java/c/f/j/p/c0.java @@ -2,8 +2,8 @@ package c.f.j.p; import android.os.SystemClock; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Objects; import java.util.concurrent.Executor; import java.util.concurrent.Executors; @@ -14,7 +14,7 @@ public class c0 { public final c b; /* renamed from: c reason: collision with root package name */ - public final Runnable f477c = new a(); + public final Runnable f478c = new a(); public final Runnable d = new b(); public final int e; @VisibleForTesting @@ -69,7 +69,7 @@ public class c0 { @Override // java.lang.Runnable public void run() { c0 c0Var = c0.this; - c0Var.a.execute(c0Var.f477c); + c0Var.a.execute(c0Var.f478c); } } @@ -103,10 +103,10 @@ public class c0 { public final void b(long j) { Runnable runnable = this.d; if (j > 0) { - if (AnimatableValueParser.b == null) { - AnimatableValueParser.b = Executors.newSingleThreadScheduledExecutor(); + if (d.b == null) { + d.b = Executors.newSingleThreadScheduledExecutor(); } - AnimatableValueParser.b.schedule(runnable, j, TimeUnit.MILLISECONDS); + d.b.schedule(runnable, j, TimeUnit.MILLISECONDS); return; } runnable.run(); diff --git a/app/src/main/java/c/f/j/p/d.java b/app/src/main/java/c/f/j/p/d.java index 938ce933a9..b123a01984 100644 --- a/app/src/main/java/c/f/j/p/d.java +++ b/app/src/main/java/c/f/j/p/d.java @@ -18,7 +18,7 @@ public class d implements w0 { public final ImageRequest b; /* renamed from: c reason: collision with root package name */ - public final String f478c; + public final String f479c; public final String d; public final y0 e; public final Object f; @@ -41,11 +41,11 @@ public class d implements w0 { public d(ImageRequest imageRequest, String str, String str2, y0 y0Var, Object obj, ImageRequest.c cVar, boolean z2, boolean z3, c.f.j.d.d dVar, j jVar) { this.b = imageRequest; - this.f478c = str; + this.f479c = str; HashMap hashMap = new HashMap(); this.h = hashMap; hashMap.put(ModelAuditLogEntry.CHANGE_KEY_ID, str); - hashMap.put("uri_source", imageRequest == null ? "null-request" : imageRequest.f2263c); + hashMap.put("uri_source", imageRequest == null ? "null-request" : imageRequest.f2266c); this.d = str2; this.e = y0Var; this.f = obj; @@ -128,7 +128,7 @@ public class d implements w0 { @Override // c.f.j.p.w0 public String getId() { - return this.f478c; + return this.f479c; } @Override // c.f.j.p.w0 diff --git a/app/src/main/java/c/f/j/p/d0.java b/app/src/main/java/c/f/j/p/d0.java index dfe55af969..f79380b677 100644 --- a/app/src/main/java/c/f/j/p/d0.java +++ b/app/src/main/java/c/f/j/p/d0.java @@ -12,11 +12,11 @@ import java.util.concurrent.Executor; public class d0 extends g0 { /* renamed from: c reason: collision with root package name */ - public final AssetManager f479c; + public final AssetManager f480c; public d0(Executor executor, g gVar, AssetManager assetManager) { super(executor, gVar); - this.f479c = assetManager; + this.f480c = assetManager; } /* JADX WARNING: Code restructure failed: missing block: B:12:0x0031, code lost: @@ -25,10 +25,10 @@ public class d0 extends g0 { @Override // c.f.j.p.g0 public e d(ImageRequest imageRequest) throws IOException { int i; - InputStream open = this.f479c.open(imageRequest.f2263c.getPath().substring(1), 2); + InputStream open = this.f480c.open(imageRequest.f2266c.getPath().substring(1), 2); AssetFileDescriptor assetFileDescriptor = null; try { - assetFileDescriptor = this.f479c.openFd(imageRequest.f2263c.getPath().substring(1)); + assetFileDescriptor = this.f480c.openFd(imageRequest.f2266c.getPath().substring(1)); i = (int) assetFileDescriptor.getLength(); } catch (IOException unused) { i = -1; diff --git a/app/src/main/java/c/f/j/p/e0.java b/app/src/main/java/c/f/j/p/e0.java index d3e38e1c78..c110671605 100644 --- a/app/src/main/java/c/f/j/p/e0.java +++ b/app/src/main/java/c/f/j/p/e0.java @@ -17,7 +17,7 @@ import java.util.concurrent.Executor; public class e0 extends g0 { /* renamed from: c reason: collision with root package name */ - public static final String[] f480c = {"_id", "_data"}; + public static final String[] f481c = {"_id", "_data"}; public final ContentResolver d; public e0(Executor executor, g gVar, ContentResolver contentResolver) { @@ -28,7 +28,7 @@ public class e0 extends g0 { @Override // c.f.j.p.g0 public e d(ImageRequest imageRequest) throws IOException { InputStream inputStream; - Uri uri = imageRequest.f2263c; + Uri uri = imageRequest.f2266c; Uri uri2 = b.a; boolean z2 = false; if (uri.getPath() != null && b.c(uri) && "com.android.contacts".equals(uri.getAuthority()) && !uri.getPath().startsWith(b.a.getPath())) { @@ -54,7 +54,7 @@ public class e0 extends g0 { return c(inputStream, -1); } if (b.b(uri)) { - Cursor query = this.d.query(uri, f480c, null, null, null); + Cursor query = this.d.query(uri, f481c, null, null, null); e eVar = null; if (query != null) { try { diff --git a/app/src/main/java/c/f/j/p/f0.java b/app/src/main/java/c/f/j/p/f0.java index 00b4111511..457b589154 100644 --- a/app/src/main/java/c/f/j/p/f0.java +++ b/app/src/main/java/c/f/j/p/f0.java @@ -6,11 +6,11 @@ import android.graphics.Rect; import android.media.ExifInterface; import android.net.Uri; import android.provider.MediaStore; +import c.c.a.a0.d; import c.f.d.e.a; import c.f.d.g.g; import c.f.d.l.b; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.imagepipeline.request.ImageRequest; import java.io.File; import java.io.FileInputStream; @@ -20,7 +20,7 @@ import java.util.concurrent.Executor; public class f0 extends g0 implements j1 { /* renamed from: c reason: collision with root package name */ - public static final String[] f481c = {"_id", "_data"}; + public static final String[] f482c = {"_id", "_data"}; public static final String[] d = {"_data"}; public static final Rect e = new Rect(0, 0, 512, 384); public static final Rect f = new Rect(0, 0, 96, 96); @@ -34,7 +34,7 @@ public class f0 extends g0 implements j1 { @Override // c.f.j.p.j1 public boolean a(c.f.j.d.e eVar) { Rect rect = e; - return AnimatableValueParser.o1(rect.width(), rect.height(), eVar); + return d.V0(rect.width(), rect.height(), eVar); } @Override // c.f.j.p.g0 @@ -42,8 +42,8 @@ public class f0 extends g0 implements j1 { c.f.j.d.e eVar; Cursor query; e f2; - Uri uri = imageRequest.f2263c; - if (!b.b(uri) || (eVar = imageRequest.i) == null || (query = this.g.query(uri, f481c, null, null, null)) == null) { + Uri uri = imageRequest.f2266c; + if (!b.b(uri) || (eVar = imageRequest.i) == null || (query = this.g.query(uri, f482c, null, null, null)) == null) { return null; } try { @@ -55,7 +55,7 @@ public class f0 extends g0 implements j1 { int i = 0; if (string != null) { try { - i = AnimatableValueParser.u0(new ExifInterface(string).getAttributeInt(androidx.exifinterface.media.ExifInterface.TAG_ORIENTATION, 1)); + i = d.u0(new ExifInterface(string).getAttributeInt(androidx.exifinterface.media.ExifInterface.TAG_ORIENTATION, 1)); } catch (IOException e2) { a.d(f0.class, e2, "Unable to retrieve thumbnail rotation for %s", string); } @@ -76,11 +76,11 @@ public class f0 extends g0 implements j1 { int i; Cursor queryMiniThumbnail; Rect rect = f; - if (AnimatableValueParser.o1(rect.width(), rect.height(), eVar)) { + if (d.V0(rect.width(), rect.height(), eVar)) { i = 3; } else { Rect rect2 = e; - i = AnimatableValueParser.o1(rect2.width(), rect2.height(), eVar) ? 1 : 0; + i = d.V0(rect2.width(), rect2.height(), eVar) ? 1 : 0; } if (i == 0 || (queryMiniThumbnail = MediaStore.Images.Thumbnails.queryMiniThumbnail(this.g, j, i, d)) == null) { return null; diff --git a/app/src/main/java/c/f/j/p/h.java b/app/src/main/java/c/f/j/p/h.java index 463f62c32f..ac7b262433 100644 --- a/app/src/main/java/c/f/j/p/h.java +++ b/app/src/main/java/c/f/j/p/h.java @@ -16,19 +16,19 @@ public class h implements v0> { public final i b; /* renamed from: c reason: collision with root package name */ - public final v0> f482c; + public final v0> f483c; /* compiled from: BitmapMemoryCacheProducer */ public class a extends p, CloseableReference> { /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ CacheKey f483c; + public final /* synthetic */ CacheKey f484c; public final /* synthetic */ boolean d; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public a(l lVar, CacheKey cacheKey, boolean z2) { super(lVar); - this.f483c = cacheKey; + this.f484c = cacheKey; this.d = z2; } @@ -48,7 +48,7 @@ public class h implements v0> { } else if (closeableReference2.w().d() || b.m(i, 8)) { this.b.b(closeableReference2, i); } else { - if (!e && (closeableReference = h.this.a.get(this.f483c)) != null) { + if (!e && (closeableReference = h.this.a.get(this.f484c)) != null) { try { c.f.j.j.i b = closeableReference2.w().b(); c.f.j.j.i b2 = closeableReference.w().b(); @@ -61,7 +61,7 @@ public class h implements v0> { } } if (this.d) { - closeableReference3 = h.this.a.a(this.f483c, closeableReference2); + closeableReference3 = h.this.a.a(this.f484c, closeableReference2); } if (e) { try { @@ -93,7 +93,7 @@ public class h implements v0> { public h(w wVar, i iVar, v0> v0Var) { this.a = wVar; this.b = iVar; - this.f482c = v0Var; + this.f483c = v0Var; } /* JADX INFO: finally extract failed */ @@ -137,7 +137,7 @@ public class h implements v0> { } o.j(w0Var, d, map); b.b(); - this.f482c.b(e, w0Var); + this.f483c.b(e, w0Var); b.b(); b.b(); } catch (Throwable th) { diff --git a/app/src/main/java/c/f/j/p/h1.java b/app/src/main/java/c/f/j/p/h1.java index c0164f8541..161ffd3a63 100644 --- a/app/src/main/java/c/f/j/p/h1.java +++ b/app/src/main/java/c/f/j/p/h1.java @@ -10,7 +10,7 @@ public class h1 implements v0 { public int b = 0; /* renamed from: c reason: collision with root package name */ - public final ConcurrentLinkedQueue, w0>> f484c = new ConcurrentLinkedQueue<>(); + public final ConcurrentLinkedQueue, w0>> f485c = new ConcurrentLinkedQueue<>(); public final Executor d; /* compiled from: ThrottlingProducer */ @@ -62,7 +62,7 @@ public class h1 implements v0 { public final void n() { Pair, w0> poll; synchronized (h1.this) { - poll = h1.this.f484c.poll(); + poll = h1.this.f485c.poll(); if (poll == null) { h1 h1Var = h1.this; h1Var.b--; @@ -89,7 +89,7 @@ public class h1 implements v0 { int i = this.b; z2 = true; if (i >= 5) { - this.f484c.add(Pair.create(lVar, w0Var)); + this.f485c.add(Pair.create(lVar, w0Var)); } else { this.b = i + 1; z2 = false; diff --git a/app/src/main/java/c/f/j/p/i.java b/app/src/main/java/c/f/j/p/i.java index 44394da4fc..7b1017aaf3 100644 --- a/app/src/main/java/c/f/j/p/i.java +++ b/app/src/main/java/c/f/j/p/i.java @@ -3,7 +3,6 @@ package c.f.j.p; import android.graphics.Bitmap; import c.f.j.j.c; import c.f.j.j.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.references.CloseableReference; import java.util.Objects; /* compiled from: BitmapPrepareProducer */ @@ -12,19 +11,19 @@ public class i implements v0> { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f486c; + public final int f487c; public final boolean d; /* compiled from: BitmapPrepareProducer */ public static class a extends p, CloseableReference> { /* renamed from: c reason: collision with root package name */ - public final int f487c; + public final int f488c; public final int d; public a(l> lVar, int i, int i2) { super(lVar); - this.f487c = i; + this.f488c = i; this.d = i2; } @@ -35,7 +34,7 @@ public class i implements v0> { CloseableReference closeableReference = (CloseableReference) obj; if (closeableReference != null && closeableReference.x()) { c cVar = (c) closeableReference.w(); - if (!cVar.isClosed() && (cVar instanceof d) && (bitmap = ((d) cVar).l) != null && (height = bitmap.getHeight() * bitmap.getRowBytes()) >= this.f487c && height <= this.d) { + if (!cVar.isClosed() && (cVar instanceof d) && (bitmap = ((d) cVar).l) != null && (height = bitmap.getHeight() * bitmap.getRowBytes()) >= this.f488c && height <= this.d) { bitmap.prepareToDraw(); } } @@ -44,18 +43,18 @@ public class i implements v0> { } public i(v0> v0Var, int i, int i2, boolean z2) { - AnimatableValueParser.j(Boolean.valueOf(i <= i2)); + c.c.a.a0.d.j(Boolean.valueOf(i <= i2)); Objects.requireNonNull(v0Var); this.a = v0Var; this.b = i; - this.f486c = i2; + this.f487c = i2; this.d = z2; } @Override // c.f.j.p.v0 public void b(l> lVar, w0 w0Var) { if (!w0Var.k() || this.d) { - this.a.b(new a(lVar, this.b, this.f486c), w0Var); + this.a.b(new a(lVar, this.b, this.f487c), w0Var); } else { this.a.b(lVar, w0Var); } diff --git a/app/src/main/java/c/f/j/p/i0.java b/app/src/main/java/c/f/j/p/i0.java index 835531970d..f62f8d9d20 100644 --- a/app/src/main/java/c/f/j/p/i0.java +++ b/app/src/main/java/c/f/j/p/i0.java @@ -12,11 +12,11 @@ import java.util.concurrent.Executor; public class i0 extends g0 { /* renamed from: c reason: collision with root package name */ - public final Resources f488c; + public final Resources f489c; public i0(Executor executor, g gVar, Resources resources) { super(executor, gVar); - this.f488c = resources; + this.f489c = resources; } /* JADX WARNING: Code restructure failed: missing block: B:12:0x0038, code lost: @@ -25,10 +25,10 @@ public class i0 extends g0 { @Override // c.f.j.p.g0 public e d(ImageRequest imageRequest) throws IOException { int i; - InputStream openRawResource = this.f488c.openRawResource(Integer.parseInt(imageRequest.f2263c.getPath().substring(1))); + InputStream openRawResource = this.f489c.openRawResource(Integer.parseInt(imageRequest.f2266c.getPath().substring(1))); AssetFileDescriptor assetFileDescriptor = null; try { - assetFileDescriptor = this.f488c.openRawResourceFd(Integer.parseInt(imageRequest.f2263c.getPath().substring(1))); + assetFileDescriptor = this.f489c.openRawResourceFd(Integer.parseInt(imageRequest.f2266c.getPath().substring(1))); i = (int) assetFileDescriptor.getLength(); } catch (Resources.NotFoundException unused) { i = -1; diff --git a/app/src/main/java/c/f/j/p/i1.java b/app/src/main/java/c/f/j/p/i1.java index 5525a88bc6..4d7c485fe3 100644 --- a/app/src/main/java/c/f/j/p/i1.java +++ b/app/src/main/java/c/f/j/p/i1.java @@ -1,7 +1,7 @@ package c.f.j.p; +import c.c.a.a0.d; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Objects; /* compiled from: ThumbnailBranchProducer */ public class i1 implements v0 { @@ -11,20 +11,20 @@ public class i1 implements v0 { public class a extends p { /* renamed from: c reason: collision with root package name */ - public final w0 f489c; + public final w0 f490c; public final int d; public final c.f.j.d.e e; public a(l lVar, w0 w0Var, int i) { super(lVar); - this.f489c = w0Var; + this.f490c = w0Var; this.d = i; this.e = w0Var.e().i; } @Override // c.f.j.p.p, c.f.j.p.b public void h(Throwable th) { - if (!i1.this.c(this.d + 1, this.b, this.f489c)) { + if (!i1.this.c(this.d + 1, this.b, this.f490c)) { this.b.c(th); } } @@ -32,13 +32,13 @@ public class i1 implements v0 { @Override // c.f.j.p.b public void i(Object obj, int i) { e eVar = (e) obj; - if (eVar != null && (b.f(i) || AnimatableValueParser.p1(eVar, this.e))) { + if (eVar != null && (b.f(i) || d.W0(eVar, this.e))) { this.b.b(eVar, i); } else if (b.e(i)) { if (eVar != null) { eVar.close(); } - if (!i1.this.c(this.d + 1, this.b, this.f489c)) { + if (!i1.this.c(this.d + 1, this.b, this.f490c)) { this.b.b(null, 1); } } @@ -53,7 +53,7 @@ public class i1 implements v0 { return; } if (length >= 0) { - throw new IndexOutOfBoundsException(AnimatableValueParser.m0("%s (%s) must be less than size (%s)", "index", 0, Integer.valueOf(length))); + throw new IndexOutOfBoundsException(d.m0("%s (%s) must be less than size (%s)", "index", 0, Integer.valueOf(length))); } throw new IllegalArgumentException(c.d.b.a.a.l("negative size: ", length)); } diff --git a/app/src/main/java/c/f/j/p/j.java b/app/src/main/java/c/f/j/p/j.java index 531a1c97ca..7af14889ec 100644 --- a/app/src/main/java/c/f/j/p/j.java +++ b/app/src/main/java/c/f/j/p/j.java @@ -18,7 +18,7 @@ public class j implements v0> { public final f b; /* renamed from: c reason: collision with root package name */ - public final f f490c; + public final f f491c; public final i d; public final v0> e; public final d f; @@ -28,7 +28,7 @@ public class j implements v0> { public static class a extends p, CloseableReference> { /* renamed from: c reason: collision with root package name */ - public final w0 f491c; + public final w0 f492c; public final w d; public final f e; public final f f; @@ -38,7 +38,7 @@ public class j implements v0> { public a(l> lVar, w0 w0Var, w wVar, f fVar, f fVar2, i iVar, d dVar, d dVar2) { super(lVar); - this.f491c = w0Var; + this.f492c = w0Var; this.d = wVar; this.e = fVar; this.f = fVar2; @@ -55,11 +55,11 @@ public class j implements v0> { b.b(); if (!b.f(i) && closeableReference != null) { if (!b.l(i, 8)) { - ImageRequest e = this.f491c.e(); - ((n) this.g).b(e, this.f491c.b()); - if (this.f491c.l("origin").equals("memory_bitmap")) { - Objects.requireNonNull(this.f491c.g().w); - Objects.requireNonNull(this.f491c.g().w); + ImageRequest e = this.f492c.e(); + ((n) this.g).b(e, this.f492c.b()); + if (this.f492c.l("origin").equals("memory_bitmap")) { + Objects.requireNonNull(this.f492c.g().w); + Objects.requireNonNull(this.f492c.g().w); } this.b.b(closeableReference, i); b.b(); @@ -77,7 +77,7 @@ public class j implements v0> { public j(w wVar, f fVar, f fVar2, i iVar, d dVar, d dVar2, v0> v0Var) { this.a = wVar; this.b = fVar; - this.f490c = fVar2; + this.f491c = fVar2; this.d = iVar; this.f = dVar; this.g = dVar2; @@ -90,7 +90,7 @@ public class j implements v0> { b.b(); y0 o = w0Var.o(); o.e(w0Var, "BitmapProbeProducer"); - a aVar = new a(lVar, w0Var, this.a, this.b, this.f490c, this.d, this.f, this.g); + a aVar = new a(lVar, w0Var, this.a, this.b, this.f491c, this.d, this.f, this.g); o.j(w0Var, "BitmapProbeProducer", null); b.b(); this.e.b(aVar, w0Var); diff --git a/app/src/main/java/c/f/j/p/j0.java b/app/src/main/java/c/f/j/p/j0.java index 527ba320e8..2020b82ef8 100644 --- a/app/src/main/java/c/f/j/p/j0.java +++ b/app/src/main/java/c/f/j/p/j0.java @@ -83,7 +83,7 @@ public class j0 implements v0> { bitmap = ThumbnailUtils.createVideoThumbnail(str, i); } else { try { - ParcelFileDescriptor openFileDescriptor = j0.this.b.openFileDescriptor(this.p.f2263c, "r"); + ParcelFileDescriptor openFileDescriptor = j0.this.b.openFileDescriptor(this.p.f2266c, "r"); MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever(); mediaMetadataRetriever.setDataSource(openFileDescriptor.getFileDescriptor()); bitmap = mediaMetadataRetriever.getFrameAtTime(-1); @@ -141,7 +141,7 @@ public class j0 implements v0> { String str; Uri uri; Objects.requireNonNull(j0Var); - Uri uri2 = imageRequest.f2263c; + Uri uri2 = imageRequest.f2266c; if (c.f.d.l.b.d(uri2)) { return imageRequest.a().getPath(); } diff --git a/app/src/main/java/c/f/j/p/k.java b/app/src/main/java/c/f/j/p/k.java index 1581777d3e..c5b0bdf812 100644 --- a/app/src/main/java/c/f/j/p/k.java +++ b/app/src/main/java/c/f/j/p/k.java @@ -1,7 +1,7 @@ package c.f.j.p; +import c.c.a.a0.d; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.imagepipeline.request.ImageRequest; /* compiled from: BranchOnSeparateImagesProducer */ public class k implements v0 { @@ -12,36 +12,36 @@ public class k implements v0 { public class b extends p { /* renamed from: c reason: collision with root package name */ - public w0 f492c; + public w0 f493c; public b(l lVar, w0 w0Var, a aVar) { super(lVar); - this.f492c = w0Var; + this.f493c = w0Var; } @Override // c.f.j.p.p, c.f.j.p.b public void h(Throwable th) { - k.this.b.b(this.b, this.f492c); + k.this.b.b(this.b, this.f493c); } @Override // c.f.j.p.b public void i(Object obj, int i) { e eVar = (e) obj; - ImageRequest e = this.f492c.e(); + ImageRequest e = this.f493c.e(); boolean e2 = b.e(i); - boolean p1 = AnimatableValueParser.p1(eVar, e.i); - if (eVar != null && (p1 || e.g)) { - if (!e2 || !p1) { + boolean W0 = d.W0(eVar, e.i); + if (eVar != null && (W0 || e.g)) { + if (!e2 || !W0) { this.b.b(eVar, i & -2); } else { this.b.b(eVar, i); } } - if (e2 && !p1) { + if (e2 && !W0) { if (eVar != null) { eVar.close(); } - k.this.b.b(this.b, this.f492c); + k.this.b.b(this.b, this.f493c); } } } diff --git a/app/src/main/java/c/f/j/p/k0.java b/app/src/main/java/c/f/j/p/k0.java index 669fd7cbd9..30b7bfe781 100644 --- a/app/src/main/java/c/f/j/p/k0.java +++ b/app/src/main/java/c/f/j/p/k0.java @@ -3,7 +3,6 @@ package c.f.j.p; import android.util.Pair; import androidx.annotation.VisibleForTesting; import c.f.j.d.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.Closeable; import java.io.IOException; import java.util.ArrayList; @@ -20,7 +19,7 @@ public abstract class k0 implements v0 { public final v0 b; /* renamed from: c reason: collision with root package name */ - public final boolean f493c; + public final boolean f494c; public final String d; public final String e; @@ -31,7 +30,7 @@ public abstract class k0 implements v0 { public final CopyOnWriteArraySet, w0>> b = new CopyOnWriteArraySet<>(); /* renamed from: c reason: collision with root package name */ - public T f494c; + public T f495c; public float d; public int e; public d f; @@ -52,8 +51,8 @@ public abstract class k0 implements v0 { if (bVar.g == this) { bVar.g = null; bVar.f = null; - bVar.b(bVar.f494c); - bVar.f494c = null; + bVar.b(bVar.f495c); + bVar.f495c = null; bVar.i(c.f.d.l.a.UNSET); } } @@ -136,7 +135,7 @@ public abstract class k0 implements v0 { k = k(); l = l(); j = j(); - closeable = this.f494c; + closeable = this.f495c; f = this.d; i = this.e; } @@ -145,7 +144,7 @@ public abstract class k0 implements v0 { d.r(j); synchronized (create) { synchronized (this) { - if (closeable != this.f494c) { + if (closeable != this.f495c) { closeable = null; } else if (closeable != null) { closeable = k0.this.c(closeable); @@ -217,8 +216,8 @@ public abstract class k0 implements v0 { it = this.b.iterator(); this.b.clear(); k0.this.e(this.a, this); - b(this.f494c); - this.f494c = null; + b(this.f495c); + this.f495c = null; } else { return; } @@ -238,12 +237,12 @@ public abstract class k0 implements v0 { int size; synchronized (this) { if (this.g == aVar) { - b(this.f494c); - this.f494c = null; + b(this.f495c); + this.f495c = null; it = this.b.iterator(); size = this.b.size(); if (b.f(i)) { - this.f494c = k0.this.c(t); + this.f495c = k0.this.c(t); this.e = i; } else { this.b.clear(); @@ -290,8 +289,8 @@ public abstract class k0 implements v0 { public final void i(c.f.d.l.a aVar) { synchronized (this) { boolean z2 = true; - AnimatableValueParser.j(Boolean.valueOf(this.f == null)); - AnimatableValueParser.j(Boolean.valueOf(this.g == null)); + c.c.a.a0.d.j(Boolean.valueOf(this.f == null)); + c.c.a.a0.d.j(Boolean.valueOf(this.g == null)); if (this.b.isEmpty()) { k0.this.e(this.a, this); return; @@ -365,7 +364,7 @@ public abstract class k0 implements v0 { public k0(v0 v0Var, String str, String str2) { this.b = v0Var; this.a = new HashMap(); - this.f493c = false; + this.f494c = false; this.d = str; this.e = str2; } @@ -373,7 +372,7 @@ public abstract class k0 implements v0 { public k0(v0 v0Var, String str, String str2, boolean z2) { this.b = v0Var; this.a = new HashMap(); - this.f493c = z2; + this.f494c = z2; this.d = str; this.e = str2; } diff --git a/app/src/main/java/c/f/j/p/l0.java b/app/src/main/java/c/f/j/p/l0.java index 1822e1c7b2..db20df2eb2 100644 --- a/app/src/main/java/c/f/j/p/l0.java +++ b/app/src/main/java/c/f/j/p/l0.java @@ -42,7 +42,7 @@ public class l0 extends e { d.t(list3); d.r(list2); if (dVar != null) { - if (!k0.this.f493c || dVar.k()) { + if (!k0.this.f494c || dVar.k()) { dVar.u(); } else { d.t(dVar.v(d.LOW)); diff --git a/app/src/main/java/c/f/j/p/m.java b/app/src/main/java/c/f/j/p/m.java index b02cc68963..0346306ceb 100644 --- a/app/src/main/java/c/f/j/p/m.java +++ b/app/src/main/java/c/f/j/p/m.java @@ -2,10 +2,10 @@ package c.f.j.p; import android.net.Uri; import android.util.Base64; +import c.c.a.a0.d; import c.f.d.b.a; import c.f.d.g.g; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.imagepipeline.request.ImageRequest; import java.io.ByteArrayInputStream; import java.io.IOException; @@ -18,8 +18,8 @@ public class m extends g0 { @Override // c.f.j.p.g0 public e d(ImageRequest imageRequest) throws IOException { boolean z2; - String uri = imageRequest.f2263c.toString(); - AnimatableValueParser.j(Boolean.valueOf(uri.substring(0, 5).equals("data:"))); + String uri = imageRequest.f2266c.toString(); + d.j(Boolean.valueOf(uri.substring(0, 5).equals("data:"))); int indexOf = uri.indexOf(44); String substring = uri.substring(indexOf + 1, uri.length()); String substring2 = uri.substring(0, indexOf); diff --git a/app/src/main/java/c/f/j/p/m0.java b/app/src/main/java/c/f/j/p/m0.java index 1a6f041dee..a66fc82c84 100644 --- a/app/src/main/java/c/f/j/p/m0.java +++ b/app/src/main/java/c/f/j/p/m0.java @@ -20,7 +20,7 @@ public class m0 implements v0 { public final c.f.d.g.a b; /* renamed from: c reason: collision with root package name */ - public final n0 f495c; + public final n0 f496c; /* compiled from: NetworkFetchProducer */ public class a implements n0.a { @@ -51,11 +51,11 @@ public class m0 implements v0 { try { int read = inputStream.read(bArr); if (read < 0) { - n0 n0Var = m0Var.f495c; + n0 n0Var = m0Var.f496c; int i2 = ((MemoryPooledByteBufferOutputStream) e).k; a0 a0Var = (a0) n0Var; Objects.requireNonNull(a0Var); - ((a0.a) xVar).f = a0Var.f472c.now(); + ((a0.a) xVar).f = a0Var.f473c.now(); m0Var.c(e, xVar); m0Var.b.release(bArr); e.close(); @@ -79,7 +79,7 @@ public class m0 implements v0 { public m0(g gVar, c.f.d.g.a aVar, n0 n0Var) { this.a = gVar; this.b = aVar; - this.f495c = n0Var; + this.f496c = n0Var; } /* JADX WARNING: Removed duplicated region for block: B:12:0x002c */ @@ -123,13 +123,13 @@ public class m0 implements v0 { @Override // c.f.j.p.v0 public void b(l lVar, w0 w0Var) { w0Var.o().e(w0Var, "NetworkFetchProducer"); - Objects.requireNonNull((a0) this.f495c); + Objects.requireNonNull((a0) this.f496c); a0.a aVar = new a0.a(lVar, w0Var); - n0 n0Var = this.f495c; + n0 n0Var = this.f496c; a aVar2 = new a(aVar); a0 a0Var = (a0) n0Var; Objects.requireNonNull(a0Var); - aVar.d = a0Var.f472c.now(); + aVar.d = a0Var.f473c.now(); w0Var.f(new z(a0Var, a0Var.b.submit(new y(a0Var, aVar, aVar2)), aVar2)); } @@ -139,7 +139,7 @@ public class m0 implements v0 { if (!xVar.a().g(xVar.b, "NetworkFetchProducer")) { hashMap = null; } else { - Objects.requireNonNull((a0) this.f495c); + Objects.requireNonNull((a0) this.f496c); a0.a aVar = (a0.a) xVar; hashMap = new HashMap(4); hashMap.put("queue_time", Long.toString(aVar.e - aVar.d)); @@ -160,11 +160,11 @@ public class m0 implements v0 { if (!xVar.b.p()) { z2 = false; } else { - Objects.requireNonNull(this.f495c); + Objects.requireNonNull(this.f496c); z2 = true; } - if (z2 && uptimeMillis - xVar.f515c >= 100) { - xVar.f515c = uptimeMillis; + if (z2 && uptimeMillis - xVar.f516c >= 100) { + xVar.f516c = uptimeMillis; xVar.a().a(xVar.b, "NetworkFetchProducer", "intermediate_result"); e(iVar, 0, null, xVar.a, xVar.b); } diff --git a/app/src/main/java/c/f/j/p/n.java b/app/src/main/java/c/f/j/p/n.java index 2dbd57ff3a..152256dcdc 100644 --- a/app/src/main/java/c/f/j/p/n.java +++ b/app/src/main/java/c/f/j/p/n.java @@ -8,7 +8,6 @@ import c.f.j.j.e; import c.f.j.j.h; import c.f.j.j.i; import c.f.j.p.c0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.internal.Supplier; import com.facebook.common.references.CloseableReference; import com.facebook.common.util.ExceptionWithNoStacktrace; @@ -25,7 +24,7 @@ public class n implements v0> { public final Executor b; /* renamed from: c reason: collision with root package name */ - public final c.f.j.h.b f496c; + public final c.f.j.h.b f497c; public final c.f.j.h.c d; public final v0 e; public final boolean f; @@ -112,7 +111,7 @@ public class n implements v0> { public abstract class c extends p> { /* renamed from: c reason: collision with root package name */ - public final w0 f497c; + public final w0 f498c; public final y0 d; public final c.f.j.d.b e; public boolean f = false; @@ -137,13 +136,13 @@ public class n implements v0> { Exception e; int i2 = i; if (eVar != null) { - w0 w0Var = c.this.f497c; + w0 w0Var = c.this.f498c; eVar.w(); w0Var.d("image_format", eVar.k.b); if (n.this.f || !b.m(i2, 16)) { ImageRequest e2 = this.a.e(); - if (n.this.g || !c.f.d.l.b.e(e2.f2263c)) { - eVar.p = AnimatableValueParser.c0(e2.j, e2.i, eVar, this.b); + if (n.this.g || !c.f.d.l.b.e(e2.f2266c)) { + eVar.p = c.c.a.a0.d.c0(e2.j, e2.i, eVar, this.b); } } Objects.requireNonNull(this.a.g().w); @@ -169,7 +168,7 @@ public class n implements v0> { boolean e3 = b.e(i); boolean z3 = e3 && !b.m(i2, 8); boolean m = b.m(i2, 4); - c.f.j.d.e eVar2 = cVar2.f497c.e().i; + c.f.j.d.e eVar2 = cVar2.f498c.e().i; if (eVar2 != null) { str = eVar2.a + "x" + eVar2.b; } else { @@ -180,22 +179,22 @@ public class n implements v0> { synchronized (c0Var) { j = c0Var.j - c0Var.i; } - String valueOf2 = String.valueOf(cVar2.f497c.e().f2263c); + String valueOf2 = String.valueOf(cVar2.f498c.e().f2266c); int f = (z3 || m) ? eVar.f() : cVar2.o(eVar); i p = (z3 || m) ? h.a : cVar2.p(); - cVar2.d.e(cVar2.f497c, "DecodeProducer"); + cVar2.d.e(cVar2.f498c, "DecodeProducer"); try { cVar = cVar2.t(eVar, f, p); try { if (eVar.p != 1) { i2 |= 16; } - cVar2.d.j(cVar2.f497c, "DecodeProducer", cVar2.n(cVar, j, p, e3, str2, sb2, str, valueOf)); + cVar2.d.j(cVar2.f498c, "DecodeProducer", cVar2.n(cVar, j, p, e3, str2, sb2, str, valueOf)); cVar2.v(eVar, cVar); cVar2.s(cVar, i2); } catch (Exception e4) { e = e4; - cVar2.d.k(cVar2.f497c, "DecodeProducer", e, cVar2.n(cVar, j, p, e3, str2, sb2, str, valueOf)); + cVar2.d.k(cVar2.f498c, "DecodeProducer", e, cVar2.n(cVar, j, p, e3, str2, sb2, str, valueOf)); cVar2.u(true); cVar2.b.c(e); } @@ -206,7 +205,7 @@ public class n implements v0> { } catch (Exception e6) { e = e6; cVar = null; - cVar2.d.k(cVar2.f497c, "DecodeProducer", e, cVar2.n(cVar, j, p, e3, str2, sb2, str, valueOf)); + cVar2.d.k(cVar2.f498c, "DecodeProducer", e, cVar2.n(cVar, j, p, e3, str2, sb2, str, valueOf)); cVar2.u(true); cVar2.b.c(e); } @@ -238,7 +237,7 @@ public class n implements v0> { @Override // c.f.j.p.e, c.f.j.p.x0 public void b() { - if (c.this.f497c.p()) { + if (c.this.f498c.p()) { c.this.g.d(); } } @@ -246,7 +245,7 @@ public class n implements v0> { public c(l> lVar, w0 w0Var, boolean z2, int i) { super(lVar); - this.f497c = w0Var; + this.f498c = w0Var; this.d = w0Var.o(); c.f.j.d.b bVar = w0Var.e().h; this.e = bVar; @@ -285,7 +284,7 @@ public class n implements v0> { } if (w(eVar, i)) { boolean m = b.m(i, 4); - if (e || m || this.f497c.p()) { + if (e || m || this.f498c.p()) { this.g.d(); } } @@ -302,11 +301,11 @@ public class n implements v0> { } public final Map n(c.f.j.j.c cVar, long j, i iVar, boolean z2, String str, String str2, String str3, String str4) { - if (!this.d.g(this.f497c, "DecodeProducer")) { + if (!this.d.g(this.f498c, "DecodeProducer")) { return null; } String valueOf = String.valueOf(j); - String valueOf2 = String.valueOf(((h) iVar).f461c); + String valueOf2 = String.valueOf(((h) iVar).f462c); String valueOf3 = String.valueOf(z2); if (cVar instanceof c.f.j.j.d) { Bitmap bitmap = ((c.f.j.j.d) cVar).l; @@ -373,12 +372,12 @@ public class n implements v0> { n nVar = n.this; boolean z2 = nVar.k != null && nVar.l.get().booleanValue(); try { - return n.this.f496c.a(eVar, i, iVar, this.e); + return n.this.f497c.a(eVar, i, iVar, this.e); } catch (OutOfMemoryError e) { if (z2) { n.this.k.run(); System.gc(); - return n.this.f496c.a(eVar, i, iVar, this.e); + return n.this.f497c.a(eVar, i, iVar, this.e); } throw e; } @@ -397,19 +396,19 @@ public class n implements v0> { } public final void v(e eVar, c.f.j.j.c cVar) { - w0 w0Var = this.f497c; + w0 w0Var = this.f498c; eVar.w(); w0Var.d("encoded_width", Integer.valueOf(eVar.n)); - w0 w0Var2 = this.f497c; + w0 w0Var2 = this.f498c; eVar.w(); w0Var2.d("encoded_height", Integer.valueOf(eVar.o)); - this.f497c.d("encoded_size", Integer.valueOf(eVar.f())); + this.f498c.d("encoded_size", Integer.valueOf(eVar.f())); if (cVar instanceof c.f.j.j.b) { Bitmap f = ((c.f.j.j.b) cVar).f(); - this.f497c.d("bitmap_config", String.valueOf(f == null ? null : f.getConfig())); + this.f498c.d("bitmap_config", String.valueOf(f == null ? null : f.getConfig())); } if (cVar != null) { - cVar.e(this.f497c.a()); + cVar.e(this.f498c.a()); } } @@ -422,7 +421,7 @@ public class n implements v0> { Objects.requireNonNull(executor); this.b = executor; Objects.requireNonNull(bVar); - this.f496c = bVar; + this.f497c = bVar; Objects.requireNonNull(cVar); this.d = cVar; this.f = z2; @@ -440,7 +439,7 @@ public class n implements v0> { public void b(l> lVar, w0 w0Var) { try { c.f.j.r.b.b(); - this.e.b(!c.f.d.l.b.e(w0Var.e().f2263c) ? new a(this, lVar, w0Var, this.h, this.i) : new b(this, lVar, w0Var, new d(this.a), this.d, this.h, this.i), w0Var); + this.e.b(!c.f.d.l.b.e(w0Var.e().f2266c) ? new a(this, lVar, w0Var, this.h, this.i) : new b(this, lVar, w0Var, new d(this.a), this.d, this.h, this.i), w0Var); c.f.j.r.b.b(); } catch (Throwable th) { c.f.j.r.b.b(); diff --git a/app/src/main/java/c/f/j/p/o.java b/app/src/main/java/c/f/j/p/o.java index c7e04894ea..11ffd31d8c 100644 --- a/app/src/main/java/c/f/j/p/o.java +++ b/app/src/main/java/c/f/j/p/o.java @@ -36,7 +36,7 @@ public class o implements v0> { ImageRequest e = w0Var.e(); ScheduledExecutorService scheduledExecutorService = this.b; if (scheduledExecutorService != null) { - scheduledExecutorService.schedule(new a(lVar, w0Var), (long) e.f2264s, TimeUnit.MILLISECONDS); + scheduledExecutorService.schedule(new a(lVar, w0Var), (long) e.f2267s, TimeUnit.MILLISECONDS); } else { this.a.b(lVar, w0Var); } diff --git a/app/src/main/java/c/f/j/p/o0.java b/app/src/main/java/c/f/j/p/o0.java index caf13f900c..48189f19f8 100644 --- a/app/src/main/java/c/f/j/p/o0.java +++ b/app/src/main/java/c/f/j/p/o0.java @@ -1,8 +1,8 @@ package c.f.j.p; +import c.c.a.a0.d; import c.f.j.d.a; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.cache.common.CacheKey; import com.facebook.imagepipeline.request.ImageRequest; import com.facebook.imagepipeline.request.ImageRequestBuilder; @@ -15,7 +15,7 @@ public class o0 implements c { public final /* synthetic */ w0 b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ l f499c; + public final /* synthetic */ l f500c; public final /* synthetic */ CacheKey d; public final /* synthetic */ q0 e; @@ -23,7 +23,7 @@ public class o0 implements c { this.e = q0Var; this.a = y0Var; this.b = w0Var; - this.f499c = lVar; + this.f500c = lVar; this.d = cacheKey; } @@ -39,10 +39,10 @@ public class o0 implements c { boolean z3 = false; if (z2 || (gVar.e() && (gVar.d() instanceof CancellationException))) { this.a.d(this.b, "PartialDiskCacheProducer", null); - this.f499c.d(); + this.f500c.d(); } else if (gVar.e()) { this.a.k(this.b, "PartialDiskCacheProducer", gVar.d(), null); - q0.c(this.e, this.f499c, this.b, this.d, null); + q0.c(this.e, this.f500c, this.b, this.d, null); } else { synchronized (gVar.e) { eVar = gVar.h; @@ -53,7 +53,7 @@ public class o0 implements c { w0 w0Var = this.b; y0Var.j(w0Var, "PartialDiskCacheProducer", q0.d(y0Var, w0Var, true, eVar2.f())); int f = eVar2.f() - 1; - AnimatableValueParser.j(Boolean.valueOf(f > 0)); + d.j(Boolean.valueOf(f > 0)); eVar2.r = new a(0, f); int f2 = eVar2.f(); ImageRequest e = this.b.e(); @@ -61,10 +61,10 @@ public class o0 implements c { if (aVar != null && aVar.a >= 0 && f >= aVar.b) { this.b.i("disk", "partial"); this.a.c(this.b, "PartialDiskCacheProducer", true); - this.f499c.b(eVar2, 9); + this.f500c.b(eVar2, 9); } else { - this.f499c.b(eVar2, 8); - ImageRequestBuilder b = ImageRequestBuilder.b(e.f2263c); + this.f500c.b(eVar2, 8); + ImageRequestBuilder b = ImageRequestBuilder.b(e.f2266c); b.e = e.h; b.o = e.k; b.f = e.b; @@ -73,24 +73,24 @@ public class o0 implements c { b.j = e.q; b.g = e.f; b.i = e.l; - b.f2265c = e.i; + b.f2268c = e.i; b.n = e.r; b.d = e.j; b.m = e.p; - b.p = e.f2264s; + b.p = e.f2267s; int i = f2 - 1; if (i >= 0) { z3 = true; } - AnimatableValueParser.j(Boolean.valueOf(z3)); + d.j(Boolean.valueOf(z3)); b.o = new a(i, Integer.MAX_VALUE); - q0.c(this.e, this.f499c, new c1(b.a(), this.b), this.d, eVar2); + q0.c(this.e, this.f500c, new c1(b.a(), this.b), this.d, eVar2); } } else { y0 y0Var2 = this.a; w0 w0Var2 = this.b; y0Var2.j(w0Var2, "PartialDiskCacheProducer", q0.d(y0Var2, w0Var2, false, 0)); - q0.c(this.e, this.f499c, this.b, this.d, eVar2); + q0.c(this.e, this.f500c, this.b, this.d, eVar2); } } return null; diff --git a/app/src/main/java/c/f/j/p/q.java b/app/src/main/java/c/f/j/p/q.java index ded4ff2f0b..210db22571 100644 --- a/app/src/main/java/c/f/j/p/q.java +++ b/app/src/main/java/c/f/j/p/q.java @@ -10,14 +10,14 @@ public class q implements c { public final /* synthetic */ w0 b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ l f500c; + public final /* synthetic */ l f501c; public final /* synthetic */ s d; public q(s sVar, y0 y0Var, w0 w0Var, l lVar) { this.d = sVar; this.a = y0Var; this.b = w0Var; - this.f500c = lVar; + this.f501c = lVar; } /* Return type fixed from 'java.lang.Object' to match base method */ @@ -31,10 +31,10 @@ public class q implements c { } if (z2 || (gVar.e() && (gVar.d() instanceof CancellationException))) { this.a.d(this.b, "DiskCacheProducer", null); - this.f500c.d(); + this.f501c.d(); } else if (gVar.e()) { this.a.k(this.b, "DiskCacheProducer", gVar.d(), null); - this.d.d.b(this.f500c, this.b); + this.d.d.b(this.f501c, this.b); } else { synchronized (gVar.e) { eVar = gVar.h; @@ -46,14 +46,14 @@ public class q implements c { y0Var.j(w0Var, "DiskCacheProducer", s.c(y0Var, w0Var, true, eVar2.f())); this.a.c(this.b, "DiskCacheProducer", true); this.b.n("disk"); - this.f500c.a(1.0f); - this.f500c.b(eVar2, 1); + this.f501c.a(1.0f); + this.f501c.b(eVar2, 1); eVar2.close(); } else { y0 y0Var2 = this.a; w0 w0Var2 = this.b; y0Var2.j(w0Var2, "DiskCacheProducer", s.c(y0Var2, w0Var2, false, 0)); - this.d.d.b(this.f500c, this.b); + this.d.d.b(this.f501c, this.b); } } return null; diff --git a/app/src/main/java/c/f/j/p/q0.java b/app/src/main/java/c/f/j/p/q0.java index 4b85da9c6d..c7a81f9dd1 100644 --- a/app/src/main/java/c/f/j/p/q0.java +++ b/app/src/main/java/c/f/j/p/q0.java @@ -24,7 +24,7 @@ public class q0 implements v0 { public final i b; /* renamed from: c reason: collision with root package name */ - public final g f501c; + public final g f502c; public final c.f.d.g.a d; public final v0 e; @@ -32,7 +32,7 @@ public class q0 implements v0 { public static class a extends p { /* renamed from: c reason: collision with root package name */ - public final f f502c; + public final f f503c; public final CacheKey d; public final g e; public final c.f.d.g.a f; @@ -40,7 +40,7 @@ public class q0 implements v0 { public a(l lVar, f fVar, CacheKey cacheKey, g gVar, c.f.d.g.a aVar, e eVar, o0 o0Var) { super(lVar); - this.f502c = fVar; + this.f503c = fVar; this.d = cacheKey; this.e = gVar; this.f = aVar; @@ -56,7 +56,7 @@ public class q0 implements v0 { if (b.m(i, 8) && b.e(i)) { eVar.w(); if (eVar.k != c.a) { - this.f502c.f(this.d, eVar); + this.f503c.f(this.d, eVar); this.b.b(eVar, i); return; } @@ -76,7 +76,7 @@ public class q0 implements v0 { } eVar.close(); this.g.close(); - f fVar = this.f502c; + f fVar = this.f503c; CacheKey cacheKey = this.d; Objects.requireNonNull(fVar); Objects.requireNonNull(cacheKey); @@ -160,13 +160,13 @@ public class q0 implements v0 { public q0(f fVar, i iVar, g gVar, c.f.d.g.a aVar, v0 v0Var) { this.a = fVar; this.b = iVar; - this.f501c = gVar; + this.f502c = gVar; this.d = aVar; this.e = v0Var; } public static void c(q0 q0Var, l lVar, w0 w0Var, CacheKey cacheKey, e eVar) { - q0Var.e.b(new a(lVar, q0Var.a, cacheKey, q0Var.f501c, q0Var.d, eVar, null), w0Var); + q0Var.e.b(new a(lVar, q0Var.a, cacheKey, q0Var.f502c, q0Var.d, eVar, null), w0Var); } @VisibleForTesting @@ -185,7 +185,7 @@ public class q0 implements v0 { return; } w0Var.o().e(w0Var, "PartialDiskCacheProducer"); - Uri build = e.f2263c.buildUpon().appendQueryParameter("fresco_partial", "true").build(); + Uri build = e.f2266c.buildUpon().appendQueryParameter("fresco_partial", "true").build(); i iVar = this.b; w0Var.b(); Objects.requireNonNull((n) iVar); diff --git a/app/src/main/java/c/f/j/p/r0.java b/app/src/main/java/c/f/j/p/r0.java index 8800c37fd9..0877bf99b2 100644 --- a/app/src/main/java/c/f/j/p/r0.java +++ b/app/src/main/java/c/f/j/p/r0.java @@ -16,20 +16,20 @@ public class r0 implements v0> { public final i b; /* renamed from: c reason: collision with root package name */ - public final v0> f503c; + public final v0> f504c; /* compiled from: PostprocessedBitmapMemoryCacheProducer */ public static class a extends p, CloseableReference> { /* renamed from: c reason: collision with root package name */ - public final CacheKey f504c; + public final CacheKey f505c; public final boolean d; public final w e; public final boolean f; public a(l> lVar, CacheKey cacheKey, boolean z2, w wVar, boolean z3) { super(lVar); - this.f504c = cacheKey; + this.f505c = cacheKey; this.d = z2; this.e = wVar; this.f = z3; @@ -45,7 +45,7 @@ public class r0 implements v0> { } } else if (!b.f(i) || this.d) { if (this.f) { - closeableReference2 = this.e.a(this.f504c, closeableReference); + closeableReference2 = this.e.a(this.f505c, closeableReference); } try { this.b.a(1.0f); @@ -67,7 +67,7 @@ public class r0 implements v0> { public r0(w wVar, i iVar, v0> v0Var) { this.a = wVar; this.b = iVar; - this.f503c = v0Var; + this.f504c = v0Var; } @Override // c.f.j.p.v0 @@ -77,7 +77,7 @@ public class r0 implements v0> { Object b = w0Var.b(); b bVar = e.q; if (bVar == null || bVar.getPostprocessorCacheKey() == null) { - this.f503c.b(lVar, w0Var); + this.f504c.b(lVar, w0Var); return; } o.e(w0Var, "PostprocessedBitmapMemoryCacheProducer"); @@ -101,6 +101,6 @@ public class r0 implements v0> { map = f.of("cached_value_found", "false"); } o.j(w0Var, "PostprocessedBitmapMemoryCacheProducer", map); - this.f503c.b(aVar, w0Var); + this.f504c.b(aVar, w0Var); } } diff --git a/app/src/main/java/c/f/j/p/s.java b/app/src/main/java/c/f/j/p/s.java index 273c2b4e45..5cdf7fe417 100644 --- a/app/src/main/java/c/f/j/p/s.java +++ b/app/src/main/java/c/f/j/p/s.java @@ -15,13 +15,13 @@ public class s implements v0 { public final f b; /* renamed from: c reason: collision with root package name */ - public final i f505c; + public final i f506c; public final v0 d; public s(f fVar, f fVar2, i iVar, v0 v0Var) { this.a = fVar; this.b = fVar2; - this.f505c = iVar; + this.f506c = iVar; this.d = v0Var; } @@ -39,7 +39,7 @@ public class s implements v0 { boolean z2 = true; if (e.n) { w0Var.o().e(w0Var, "DiskCacheProducer"); - CacheKey b = ((n) this.f505c).b(e, w0Var.b()); + CacheKey b = ((n) this.f506c).b(e, w0Var.b()); if (e.b != ImageRequest.b.SMALL) { z2 = false; } diff --git a/app/src/main/java/c/f/j/p/s0.java b/app/src/main/java/c/f/j/p/s0.java index 92039948b0..c7121cfbc6 100644 --- a/app/src/main/java/c/f/j/p/s0.java +++ b/app/src/main/java/c/f/j/p/s0.java @@ -2,7 +2,6 @@ package c.f.j.p; import android.graphics.Bitmap; import c.f.d.d.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.facebook.common.references.CloseableReference; import com.facebook.imagepipeline.bitmaps.PlatformBitmapFactory; import java.util.Map; @@ -14,13 +13,13 @@ public class s0 implements v0> { public final PlatformBitmapFactory b; /* renamed from: c reason: collision with root package name */ - public final Executor f506c; + public final Executor f507c; /* compiled from: PostprocessorProducer */ public class b extends p, CloseableReference> { /* renamed from: c reason: collision with root package name */ - public final y0 f507c; + public final y0 f508c; public final w0 d; public final c.f.j.q.b e; public boolean f; @@ -45,7 +44,7 @@ public class s0 implements v0> { public b(l> lVar, y0 y0Var, c.f.j.q.b bVar, w0 w0Var) { super(lVar); - this.f507c = y0Var; + this.f508c = y0Var; this.e = bVar; this.d = w0Var; w0Var.f(new a(s0.this)); @@ -53,16 +52,16 @@ public class s0 implements v0> { public static void n(b bVar, CloseableReference closeableReference, int i) { Objects.requireNonNull(bVar); - AnimatableValueParser.j(Boolean.valueOf(CloseableReference.z(closeableReference))); + c.c.a.a0.d.j(Boolean.valueOf(CloseableReference.z(closeableReference))); if (!(((c.f.j.j.c) closeableReference.w()) instanceof c.f.j.j.d)) { bVar.q(closeableReference, i); return; } - bVar.f507c.e(bVar.d, "PostprocessorProducer"); + bVar.f508c.e(bVar.d, "PostprocessorProducer"); try { CloseableReference r = bVar.r((c.f.j.j.c) closeableReference.w()); try { - y0 y0Var = bVar.f507c; + y0 y0Var = bVar.f508c; w0 w0Var = bVar.d; y0Var.j(w0Var, "PostprocessorProducer", bVar.p(y0Var, w0Var, bVar.e)); bVar.q(r, i); @@ -72,7 +71,7 @@ public class s0 implements v0> { } } } catch (Exception e) { - y0 y0Var2 = bVar.f507c; + y0 y0Var2 = bVar.f508c; w0 w0Var2 = bVar.d; y0Var2.k(w0Var2, "PostprocessorProducer", e, bVar.p(y0Var2, w0Var2, bVar.e)); if (bVar.o()) { @@ -116,7 +115,7 @@ public class s0 implements v0> { closeableReference.close(); } if (s2) { - s0.this.f506c.execute(new t0(this)); + s0.this.f507c.execute(new t0(this)); } } else if (b.e(i)) { q(null, i); @@ -196,7 +195,7 @@ public class s0 implements v0> { public class c extends p, CloseableReference> implements c.f.j.q.d { /* renamed from: c reason: collision with root package name */ - public boolean f508c = false; + public boolean f509c = false; public CloseableReference d = null; public c(s0 s0Var, b bVar, c.f.j.q.c cVar, w0 w0Var, a aVar) { @@ -225,7 +224,7 @@ public class s0 implements v0> { CloseableReference closeableReference = (CloseableReference) obj; if (!b.f(i)) { synchronized (this) { - if (!this.f508c) { + if (!this.f509c) { CloseableReference closeableReference2 = this.d; this.d = CloseableReference.p(closeableReference); if (closeableReference2 != null) { @@ -234,7 +233,7 @@ public class s0 implements v0> { } } synchronized (this) { - if (!this.f508c) { + if (!this.f509c) { p = CloseableReference.p(this.d); } else { return; @@ -253,12 +252,12 @@ public class s0 implements v0> { public final boolean n() { CloseableReference closeableReference; synchronized (this) { - if (this.f508c) { + if (this.f509c) { return false; } closeableReference = this.d; this.d = null; - this.f508c = true; + this.f509c = true; } Class cls = CloseableReference.i; if (closeableReference != null) { @@ -288,7 +287,7 @@ public class s0 implements v0> { this.a = v0Var; this.b = platformBitmapFactory; Objects.requireNonNull(executor); - this.f506c = executor; + this.f507c = executor; } @Override // c.f.j.p.v0 diff --git a/app/src/main/java/c/f/j/p/t.java b/app/src/main/java/c/f/j/p/t.java index d9877e81c3..90b91b812a 100644 --- a/app/src/main/java/c/f/j/p/t.java +++ b/app/src/main/java/c/f/j/p/t.java @@ -13,21 +13,21 @@ public class t implements v0 { public final f b; /* renamed from: c reason: collision with root package name */ - public final i f509c; + public final i f510c; public final v0 d; /* compiled from: DiskCacheWriteProducer */ public static class b extends p { /* renamed from: c reason: collision with root package name */ - public final w0 f510c; + public final w0 f511c; public final f d; public final f e; public final i f; public b(l lVar, w0 w0Var, f fVar, f fVar2, i iVar, a aVar) { super(lVar); - this.f510c = w0Var; + this.f511c = w0Var; this.d = fVar; this.e = fVar2; this.f = iVar; @@ -36,23 +36,23 @@ public class t implements v0 { @Override // c.f.j.p.b public void i(Object obj, int i) { e eVar = (e) obj; - this.f510c.o().e(this.f510c, "DiskCacheWriteProducer"); + this.f511c.o().e(this.f511c, "DiskCacheWriteProducer"); if (!b.f(i) && eVar != null && !b.l(i, 10)) { eVar.w(); if (eVar.k != c.a) { - ImageRequest e = this.f510c.e(); - CacheKey b = ((n) this.f).b(e, this.f510c.b()); + ImageRequest e = this.f511c.e(); + CacheKey b = ((n) this.f).b(e, this.f511c.b()); if (e.b == ImageRequest.b.SMALL) { this.e.f(b, eVar); } else { this.d.f(b, eVar); } - this.f510c.o().j(this.f510c, "DiskCacheWriteProducer", null); + this.f511c.o().j(this.f511c, "DiskCacheWriteProducer", null); this.b.b(eVar, i); return; } } - this.f510c.o().j(this.f510c, "DiskCacheWriteProducer", null); + this.f511c.o().j(this.f511c, "DiskCacheWriteProducer", null); this.b.b(eVar, i); } } @@ -60,7 +60,7 @@ public class t implements v0 { public t(f fVar, f fVar2, i iVar, v0 v0Var) { this.a = fVar; this.b = fVar2; - this.f509c = iVar; + this.f510c = iVar; this.d = v0Var; } @@ -72,7 +72,7 @@ public class t implements v0 { return; } if (w0Var.e().n) { - lVar = new b(lVar, w0Var, this.a, this.b, this.f509c, null); + lVar = new b(lVar, w0Var, this.a, this.b, this.f510c, null); } this.d.b(lVar, w0Var); } diff --git a/app/src/main/java/c/f/j/p/t0.java b/app/src/main/java/c/f/j/p/t0.java index b0ed21177e..dfaed87412 100644 --- a/app/src/main/java/c/f/j/p/t0.java +++ b/app/src/main/java/c/f/j/p/t0.java @@ -40,7 +40,7 @@ public class t0 implements Runnable { s2 = bVar2.s(); } if (s2) { - s0.this.f506c.execute(new t0(bVar2)); + s0.this.f507c.execute(new t0(bVar2)); } } } diff --git a/app/src/main/java/c/f/j/p/v.java b/app/src/main/java/c/f/j/p/v.java index cceaa15036..18f2cbc7fb 100644 --- a/app/src/main/java/c/f/j/p/v.java +++ b/app/src/main/java/c/f/j/p/v.java @@ -18,20 +18,20 @@ public class v implements v0 { public final i b; /* renamed from: c reason: collision with root package name */ - public final v0 f511c; + public final v0 f512c; /* compiled from: EncodedMemoryCacheProducer */ public static class a extends p { /* renamed from: c reason: collision with root package name */ - public final w f512c; + public final w f513c; public final CacheKey d; public final boolean e; public final boolean f; public a(l lVar, w wVar, CacheKey cacheKey, boolean z2, boolean z3) { super(lVar); - this.f512c = wVar; + this.f513c = wVar; this.d = cacheKey; this.e = z2; this.f = z3; @@ -51,7 +51,7 @@ public class v implements v0 { CloseableReference closeableReference = null; try { if (this.f && this.e) { - closeableReference = this.f512c.a(this.d, c2); + closeableReference = this.f513c.a(this.d, c2); } if (closeableReference != null) { try { @@ -88,7 +88,7 @@ public class v implements v0 { public v(w wVar, i iVar, v0 v0Var) { this.a = wVar; this.b = iVar; - this.f511c = v0Var; + this.f512c = v0Var; } /* JADX INFO: finally extract failed */ @@ -143,7 +143,7 @@ public class v implements v0 { map = f.of("cached_value_found", "false"); } o.j(w0Var, "EncodedMemoryCacheProducer", map); - this.f511c.b(aVar, w0Var); + this.f512c.b(aVar, w0Var); Class cls3 = CloseableReference.i; if (closeableReference != null) { closeableReference.close(); diff --git a/app/src/main/java/c/f/j/p/w.java b/app/src/main/java/c/f/j/p/w.java index e8805c1d26..ce18010e1c 100644 --- a/app/src/main/java/c/f/j/p/w.java +++ b/app/src/main/java/c/f/j/p/w.java @@ -15,7 +15,7 @@ public class w implements v0 { public final f b; /* renamed from: c reason: collision with root package name */ - public final i f513c; + public final i f514c; public final v0 d; public final d e; public final d f; @@ -24,7 +24,7 @@ public class w implements v0 { public static class a extends p { /* renamed from: c reason: collision with root package name */ - public final w0 f514c; + public final w0 f515c; public final f d; public final f e; public final i f; @@ -33,7 +33,7 @@ public class w implements v0 { public a(l lVar, w0 w0Var, f fVar, f fVar2, i iVar, d dVar, d dVar2) { super(lVar); - this.f514c = w0Var; + this.f515c = w0Var; this.d = fVar; this.e = fVar2; this.f = iVar; @@ -50,15 +50,15 @@ public class w implements v0 { if (!b.f(i) && eVar != null && !b.l(i, 10)) { eVar.w(); if (eVar.k != c.a) { - ImageRequest e = this.f514c.e(); - CacheKey b = ((n) this.f).b(e, this.f514c.b()); + ImageRequest e = this.f515c.e(); + CacheKey b = ((n) this.f).b(e, this.f515c.b()); this.g.a(b); - if (this.f514c.l("origin").equals("memory_encoded")) { + if (this.f515c.l("origin").equals("memory_encoded")) { if (!this.h.b(b)) { (e.b == ImageRequest.b.SMALL ? this.e : this.d).c(b); this.h.a(b); } - } else if (this.f514c.l("origin").equals("disk")) { + } else if (this.f515c.l("origin").equals("disk")) { this.h.a(b); } this.b.b(eVar, i); @@ -77,7 +77,7 @@ public class w implements v0 { public w(f fVar, f fVar2, i iVar, d dVar, d dVar2, v0 v0Var) { this.a = fVar; this.b = fVar2; - this.f513c = iVar; + this.f514c = iVar; this.e = dVar; this.f = dVar2; this.d = v0Var; @@ -89,7 +89,7 @@ public class w implements v0 { b.b(); y0 o = w0Var.o(); o.e(w0Var, "EncodedProbeProducer"); - a aVar = new a(lVar, w0Var, this.a, this.b, this.f513c, this.e, this.f); + a aVar = new a(lVar, w0Var, this.a, this.b, this.f514c, this.e, this.f); o.j(w0Var, "EncodedProbeProducer", null); b.b(); this.d.b(aVar, w0Var); diff --git a/app/src/main/java/c/f/j/p/x.java b/app/src/main/java/c/f/j/p/x.java index 5dc84d70e6..f92916d987 100644 --- a/app/src/main/java/c/f/j/p/x.java +++ b/app/src/main/java/c/f/j/p/x.java @@ -7,7 +7,7 @@ public class x { public final w0 b; /* renamed from: c reason: collision with root package name */ - public long f515c = 0; + public long f516c = 0; public x(l lVar, w0 w0Var) { this.a = lVar; diff --git a/app/src/main/java/c/f/j/p/y.java b/app/src/main/java/c/f/j/p/y.java index 47fc7d5373..07a590d8e8 100644 --- a/app/src/main/java/c/f/j/p/y.java +++ b/app/src/main/java/c/f/j/p/y.java @@ -34,9 +34,9 @@ public class y implements Runnable { Objects.requireNonNull(a0Var); InputStream inputStream = null; try { - httpURLConnection = a0Var.a(aVar.b.e().f2263c, 5); + httpURLConnection = a0Var.a(aVar.b.e().f2266c, 5); try { - aVar.e = a0Var.f472c.now(); + aVar.e = a0Var.f473c.now(); if (httpURLConnection != null) { inputStream = httpURLConnection.getInputStream(); ((m0.a) aVar2).b(inputStream, -1); diff --git a/app/src/main/java/c/f/j/s/d.java b/app/src/main/java/c/f/j/s/d.java index a1c337df4d..3d40033ba6 100644 --- a/app/src/main/java/c/f/j/s/d.java +++ b/app/src/main/java/c/f/j/s/d.java @@ -73,7 +73,7 @@ public class d { float f = (float) i; float f2 = (float) i2; float max = Math.max(((float) eVar.a) / f, ((float) eVar.b) / f2); - float f3 = eVar.f437c; + float f3 = eVar.f438c; if (f * max > f3) { max = f3 / f; } diff --git a/app/src/main/java/c/f/j/s/f.java b/app/src/main/java/c/f/j/s/f.java index 9213704715..9bb212b6a3 100644 --- a/app/src/main/java/c/f/j/s/f.java +++ b/app/src/main/java/c/f/j/s/f.java @@ -3,11 +3,11 @@ package c.f.j.s; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Matrix; +import c.c.a.a0.d; import c.f.d.e.a; import c.f.i.b; import c.f.i.c; import c.f.j.j.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.OutputStream; /* compiled from: SimpleImageTranscoder */ public class f implements b { @@ -33,7 +33,7 @@ public class f implements b { if (fVar == null) { fVar = c.f.j.d.f.a; } - return this.a && AnimatableValueParser.c0(fVar, eVar2, eVar, this.b) > 1; + return this.a && d.c0(fVar, eVar2, eVar, this.b) > 1; } /* JADX WARNING: Removed duplicated region for block: B:37:0x00a5 */ @@ -48,7 +48,7 @@ public class f implements b { Integer num2 = num == null ? 85 : num; c.f.j.d.f fVar2 = fVar == null ? c.f.j.d.f.a : fVar; int i = 1; - int c02 = !this.a ? 1 : AnimatableValueParser.c0(fVar2, eVar2, eVar, this.b); + int c02 = !this.a ? 1 : d.c0(fVar2, eVar2, eVar, this.b); BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = c02; try { diff --git a/app/src/main/java/c/f/l/a/a.java b/app/src/main/java/c/f/l/a/a.java index 29a8b1d178..c239d8e6c0 100644 --- a/app/src/main/java/c/f/l/a/a.java +++ b/app/src/main/java/c/f/l/a/a.java @@ -8,7 +8,7 @@ public class a { public int b; /* renamed from: c reason: collision with root package name */ - public final int[] f516c = new int[2]; + public final int[] f517c = new int[2]; public final float[] d = new float[2]; public final float[] e = new float[2]; public final float[] f = new float[2]; @@ -28,7 +28,7 @@ public class a { this.a = false; this.b = 0; for (int i = 0; i < 2; i++) { - this.f516c[i] = -1; + this.f517c[i] = -1; } } diff --git a/app/src/main/java/c/f/l/b/b.java b/app/src/main/java/c/f/l/b/b.java index 85fb93820a..0654f255b1 100644 --- a/app/src/main/java/c/f/l/b/b.java +++ b/app/src/main/java/c/f/l/b/b.java @@ -7,13 +7,13 @@ import android.annotation.SuppressLint; import android.graphics.Matrix; import android.view.animation.DecelerateInterpolator; import androidx.annotation.Nullable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Objects; /* compiled from: AnimatedZoomableController */ public class b extends a { /* renamed from: s reason: collision with root package name */ - public final ValueAnimator f517s; + public final ValueAnimator f518s; /* compiled from: AnimatedZoomableController */ public class a implements ValueAnimator.AnimatorUpdateListener { @@ -77,7 +77,7 @@ public class b extends a { public b(c.f.l.a.b bVar) { super(bVar); ValueAnimator ofFloat = ValueAnimator.ofFloat(0.0f, 1.0f); - this.f517s = ofFloat; + this.f518s = ofFloat; ofFloat.setInterpolator(new DecelerateInterpolator()); } @@ -91,15 +91,15 @@ public class b extends a { public void n(Matrix matrix, long j, @Nullable Runnable runnable) { int i = c.f.d.e.a.a; o(); - AnimatableValueParser.j(Boolean.valueOf(j > 0)); - AnimatableValueParser.B(!this.m); + d.j(Boolean.valueOf(j > 0)); + d.B(!this.m); this.m = true; - this.f517s.setDuration(j); + this.f518s.setDuration(j); this.h.getValues(this.n); matrix.getValues(this.o); - this.f517s.addUpdateListener(new a()); - this.f517s.addListener(new C0070b(runnable)); - this.f517s.start(); + this.f518s.addUpdateListener(new a()); + this.f518s.addListener(new C0070b(runnable)); + this.f518s.start(); } @Override // c.f.l.b.a @@ -107,9 +107,9 @@ public class b extends a { public void o() { if (this.m) { c.f.d.e.a.i(b.class, "stopAnimation"); - this.f517s.cancel(); - this.f517s.removeAllUpdateListeners(); - this.f517s.removeAllListeners(); + this.f518s.cancel(); + this.f518s.removeAllUpdateListeners(); + this.f518s.removeAllListeners(); } } } diff --git a/app/src/main/java/c/f/l/b/c.java b/app/src/main/java/c/f/l/b/c.java index 420392e8e6..d56c62fca3 100644 --- a/app/src/main/java/c/f/l/b/c.java +++ b/app/src/main/java/c/f/l/b/c.java @@ -16,7 +16,7 @@ public class c implements e, b.a { public e.a b = null; /* renamed from: c reason: collision with root package name */ - public boolean f518c = false; + public boolean f519c = false; public final RectF d = new RectF(); public final RectF e = new RectF(); public final RectF f = new RectF(); @@ -183,7 +183,7 @@ public class c implements e, b.a { motionEvent.getAction(); int i = c.f.d.e.a.a; int i2 = 0; - if (!this.f518c) { + if (!this.f519c) { return false; } c.f.l.a.a aVar3 = this.a.a; @@ -192,7 +192,7 @@ public class c implements e, b.a { if (!(actionMasked == 0 || actionMasked == 1)) { if (actionMasked == 2) { while (i2 < 2) { - int findPointerIndex = motionEvent.findPointerIndex(aVar3.f516c[i2]); + int findPointerIndex = motionEvent.findPointerIndex(aVar3.f517c[i2]); if (findPointerIndex != -1) { aVar3.f[i2] = motionEvent.getX(findPointerIndex); aVar3.g[i2] = motionEvent.getY(findPointerIndex); @@ -224,9 +224,9 @@ public class c implements e, b.a { i3 = -1; } if (i3 == -1) { - aVar3.f516c[i2] = -1; + aVar3.f517c[i2] = -1; } else { - aVar3.f516c[i2] = motionEvent.getPointerId(i3); + aVar3.f517c[i2] = motionEvent.getPointerId(i3); float[] fArr = aVar3.f; float[] fArr2 = aVar3.d; float x2 = motionEvent.getX(i3); @@ -250,7 +250,7 @@ public class c implements e, b.a { public final void i() { this.h.mapRect(this.f, this.e); e.a aVar = this.b; - if (aVar != null && this.f518c) { + if (aVar != null && this.f519c) { ZoomableDraweeView zoomableDraweeView = ZoomableDraweeView.this; zoomableDraweeView.getLogTag(); zoomableDraweeView.hashCode(); @@ -271,7 +271,7 @@ public class c implements e, b.a { } public void k(boolean z2) { - this.f518c = z2; + this.f519c = z2; if (!z2) { j(); } diff --git a/app/src/main/java/c/f/m/a.java b/app/src/main/java/c/f/m/a.java index 89805b2c83..50e1b4bdbd 100644 --- a/app/src/main/java/c/f/m/a.java +++ b/app/src/main/java/c/f/m/a.java @@ -19,7 +19,7 @@ public class a extends f { public C0071a(f fVar) throws IOException { super(fVar); - this.m = new File(a.this.f520c.getApplicationInfo().nativeLibraryDir); + this.m = new File(a.this.f521c.getApplicationInfo().nativeLibraryDir); this.n = a.this.h; } } @@ -40,7 +40,7 @@ public class a extends f { obtain.writeByte((byte) 2); obtain.writeString(canonicalFile.getPath()); obtain.writeLong(canonicalFile.lastModified()); - Context context = this.f520c; + Context context = this.f521c; PackageManager packageManager = context.getPackageManager(); if (packageManager != null) { try { @@ -52,7 +52,7 @@ public class a extends f { obtain.writeByte((byte) 0); return obtain.marshall(); } - String str = this.f520c.getApplicationInfo().nativeLibraryDir; + String str = this.f521c.getApplicationInfo().nativeLibraryDir; if (str == null) { obtain.writeByte((byte) 1); byte[] marshall = obtain.marshall(); diff --git a/app/src/main/java/c/f/m/b.java b/app/src/main/java/c/f/m/b.java index 27045b65af..a790346b1d 100644 --- a/app/src/main/java/c/f/m/b.java +++ b/app/src/main/java/c/f/m/b.java @@ -12,7 +12,7 @@ public class b extends l { public int b; /* renamed from: c reason: collision with root package name */ - public c f519c; + public c f520c; public b(Context context, int i) { Context applicationContext = context.getApplicationContext(); @@ -22,7 +22,7 @@ public class b extends l { this.a = context; } this.b = i; - this.f519c = new c(new File(this.a.getApplicationInfo().nativeLibraryDir), i); + this.f520c = new c(new File(this.a.getApplicationInfo().nativeLibraryDir), i); } public static File d(Context context) { @@ -31,16 +31,16 @@ public class b extends l { @Override // c.f.m.l public int a(String str, int i, StrictMode.ThreadPolicy threadPolicy) throws IOException { - return this.f519c.a(str, i, threadPolicy); + return this.f520c.a(str, i, threadPolicy); } @Override // c.f.m.l public void b(int i) throws IOException { - this.f519c.b(i); + this.f520c.b(i); } public boolean c() throws IOException { - File file = this.f519c.a; + File file = this.f520c.a; Context e = e(); File d = d(e); if (file.equals(d)) { @@ -49,7 +49,7 @@ public class b extends l { Log.d("SoLoader", "Native library directory updated from " + file + " to " + d); int i = this.b | 1; this.b = i; - this.f519c = new c(d, i); + this.f520c = new c(d, i); this.a = e; return true; } @@ -65,6 +65,6 @@ public class b extends l { @Override // c.f.m.l public String toString() { - return this.f519c.toString(); + return this.f520c.toString(); } } diff --git a/app/src/main/java/c/f/m/c.java b/app/src/main/java/c/f/m/c.java index 9904a59814..7333eb3157 100644 --- a/app/src/main/java/c/f/m/c.java +++ b/app/src/main/java/c/f/m/c.java @@ -3,8 +3,8 @@ package c.f.m; import android.os.StrictMode; import android.os.Trace; import android.util.Log; +import c.c.a.a0.d; import c.d.b.a.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.widgets.chat.input.autocomplete.AutocompleteViewModel; import com.facebook.soloader.Api18TraceUtils; import com.facebook.soloader.SoLoader; @@ -30,14 +30,14 @@ public class c extends l { public int c(String str, int i, File file, StrictMode.ThreadPolicy threadPolicy) throws IOException { File file2 = new File(file, str); if (!file2.exists()) { - StringBuilder U = a.U(str, " not found on "); - U.append(file.getCanonicalPath()); - Log.d("SoLoader", U.toString()); + StringBuilder S = a.S(str, " not found on "); + S.append(file.getCanonicalPath()); + Log.d("SoLoader", S.toString()); return 0; } - StringBuilder U2 = a.U(str, " found on "); - U2.append(file.getCanonicalPath()); - Log.d("SoLoader", U2.toString()); + StringBuilder S2 = a.S(str, " found on "); + S2.append(file.getCanonicalPath()); + Log.d("SoLoader", S2.toString()); if ((i & 1) == 0 || (this.b & 2) == 0) { if ((this.b & 1) != 0) { boolean z2 = SoLoader.a; @@ -47,13 +47,13 @@ public class c extends l { try { FileInputStream fileInputStream = new FileInputStream(file2); try { - String[] l0 = AnimatableValueParser.l0(fileInputStream.getChannel()); + String[] l0 = d.l0(fileInputStream.getChannel()); if (z2) { Trace.endSection(); } - StringBuilder P = a.P("Loading lib dependencies: "); - P.append(Arrays.toString(l0)); - Log.d("SoLoader", P.toString()); + StringBuilder O = a.O("Loading lib dependencies: "); + O.append(Arrays.toString(l0)); + Log.d("SoLoader", O.toString()); for (String str2 : l0) { if (!str2.startsWith(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN)) { SoLoader.d(str2, null, null, i | 1, threadPolicy); diff --git a/app/src/main/java/c/f/m/e.java b/app/src/main/java/c/f/m/e.java index 4101f1e89f..ab90608f91 100644 --- a/app/src/main/java/c/f/m/e.java +++ b/app/src/main/java/c/f/m/e.java @@ -1,8 +1,8 @@ package c.f.m; import android.content.Context; +import c.c.a.a0.d; import c.f.m.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; @@ -77,15 +77,15 @@ public final class e extends m { */ public b(e eVar, m mVar) throws IOException { boolean z2; - Context context = eVar.f520c; - StringBuilder P = c.d.b.a.a.P("/data/local/tmp/exopackage/"); - P.append(context.getPackageName()); - P.append("/native-libs/"); - File file = new File(P.toString()); + Context context = eVar.f521c; + StringBuilder O = c.d.b.a.a.O("/data/local/tmp/exopackage/"); + O.append(context.getPackageName()); + O.append("/native-libs/"); + File file = new File(O.toString()); ArrayList arrayList = new ArrayList(); LinkedHashSet linkedHashSet = new LinkedHashSet(); - String[] M0 = AnimatableValueParser.M0(); - for (String str : M0) { + String[] E0 = d.E0(); + for (String str : E0) { File file2 = new File(file, str); if (file2.isDirectory()) { linkedHashSet.add(str); diff --git a/app/src/main/java/c/f/m/f.java b/app/src/main/java/c/f/m/f.java index 021e620f92..0a24638f7a 100644 --- a/app/src/main/java/c/f/m/f.java +++ b/app/src/main/java/c/f/m/f.java @@ -2,9 +2,9 @@ package c.f.m; import android.content.Context; import android.util.Log; +import c.c.a.a0.d; import c.f.m.a; import c.f.m.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.File; import java.io.IOException; import java.io.InputStream; @@ -103,7 +103,7 @@ public class f extends m { LinkedHashSet linkedHashSet = new LinkedHashSet(); HashMap hashMap = new HashMap(); Pattern compile = Pattern.compile(f.this.g); - String[] M0 = AnimatableValueParser.M0(); + String[] E0 = d.E0(); Enumeration entries = this.j.entries(); while (true) { i = 0; @@ -116,11 +116,11 @@ public class f extends m { String group = matcher.group(1); String group2 = matcher.group(2); while (true) { - if (i >= M0.length) { + if (i >= E0.length) { i = -1; break; } - if (M0[i] != null && group.equals(M0[i])) { + if (E0[i] != null && group.equals(E0[i])) { break; } i++; diff --git a/app/src/main/java/c/f/m/j.java b/app/src/main/java/c/f/m/j.java index 7d0f0a1596..c1fb0e0b29 100644 --- a/app/src/main/java/c/f/m/j.java +++ b/app/src/main/java/c/f/m/j.java @@ -12,7 +12,7 @@ public class j implements b { boolean z2; boolean contains; int i2 = ((i & 1) != 0 ? 16 : 0) | 0; - ReentrantReadWriteLock reentrantReadWriteLock = SoLoader.f2267c; + ReentrantReadWriteLock reentrantReadWriteLock = SoLoader.f2270c; reentrantReadWriteLock.readLock().lock(); try { if (SoLoader.d == null) { @@ -49,7 +49,7 @@ public class j implements b { continue; } catch (UnsatisfiedLinkError e) { int i3 = SoLoader.e; - SoLoader.f2267c.writeLock().lock(); + SoLoader.f2270c.writeLock().lock(); try { if (SoLoader.g == null || !SoLoader.g.c()) { z2 = false; @@ -58,21 +58,21 @@ public class j implements b { SoLoader.e = SoLoader.e + 1; z2 = true; } - SoLoader.f2267c.writeLock().unlock(); + SoLoader.f2270c.writeLock().unlock(); if (SoLoader.e == i3) { throw e; } } catch (IOException e2) { throw new RuntimeException(e2); } catch (Throwable th2) { - SoLoader.f2267c.writeLock().unlock(); + SoLoader.f2270c.writeLock().unlock(); throw th2; } } } while (z2); return z5; } finally { - SoLoader.f2267c.readLock().unlock(); + SoLoader.f2270c.readLock().unlock(); } } } diff --git a/app/src/main/java/c/f/m/m.java b/app/src/main/java/c/f/m/m.java index fdfe13e0a4..7f5fd704ea 100644 --- a/app/src/main/java/c/f/m/m.java +++ b/app/src/main/java/c/f/m/m.java @@ -4,7 +4,6 @@ import android.content.Context; import android.os.Parcel; import android.os.StrictMode; import android.util.Log; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.widgets.chat.input.autocomplete.AutocompleteViewModel; import com.facebook.soloader.SysUtil$LollipopSysdeps; import java.io.Closeable; @@ -21,7 +20,7 @@ import java.util.Objects; public abstract class m extends c { /* renamed from: c reason: collision with root package name */ - public final Context f520c; + public final Context f521c; public String d; public final Map e = new HashMap(); @@ -96,7 +95,7 @@ public abstract class m extends c { i++; } else { randomAccessFile2.close(); - AnimatableValueParser.o0(m.this.a); + c.c.a.a0.d.o0(m.this.a); m.k(this.l, (byte) 1); try { return; @@ -187,7 +186,7 @@ public abstract class m extends c { public m(Context context, String str) { super(new File(context.getApplicationInfo().dataDir + AutocompleteViewModel.COMMAND_DISCOVER_TOKEN + str), 1); - this.f520c = context; + this.f521c = context; } /* JADX WARNING: Code restructure failed: missing block: B:10:?, code lost: @@ -238,15 +237,15 @@ public abstract class m extends c { Log.i("fb-UnpackingSoSource", "dso store is up-to-date: " + this.a); } if (gVar == null) { - StringBuilder P = c.d.b.a.a.P("not releasing dso store lock for "); - P.append(this.a); - P.append(" (syncer thread started)"); - Log.v("fb-UnpackingSoSource", P.toString()); + StringBuilder O = c.d.b.a.a.O("not releasing dso store lock for "); + O.append(this.a); + O.append(" (syncer thread started)"); + Log.v("fb-UnpackingSoSource", O.toString()); } } finally { - StringBuilder P2 = c.d.b.a.a.P(str); - P2.append(this.a); - Log.v(str2, P2.toString()); + StringBuilder O2 = c.d.b.a.a.O(str); + O2.append(this.a); + Log.v(str2, O2.toString()); gVar.close(); } } else { @@ -270,29 +269,29 @@ public abstract class m extends c { if (!z2) { File file = new File(this.a, str); Log.v("fb-UnpackingSoSource", "deleting unaccounted-for file " + file); - AnimatableValueParser.d0(file); + c.c.a.a0.d.d0(file); } } } return; } - StringBuilder P = c.d.b.a.a.P("unable to list directory "); - P.append(this.a); - throw new IOException(P.toString()); + StringBuilder O = c.d.b.a.a.O("unable to list directory "); + O.append(this.a); + throw new IOException(O.toString()); } public final void e(d dVar, byte[] bArr) throws IOException { RandomAccessFile randomAccessFile; - StringBuilder P = c.d.b.a.a.P("extracting DSO "); - P.append(dVar.i.i); - Log.i("fb-UnpackingSoSource", P.toString()); + StringBuilder O = c.d.b.a.a.O("extracting DSO "); + O.append(dVar.i.i); + Log.i("fb-UnpackingSoSource", O.toString()); if (this.a.setWritable(true, true)) { File file = new File(this.a, dVar.i.i); try { randomAccessFile = new RandomAccessFile(file, "rw"); } catch (IOException e2) { Log.w("fb-UnpackingSoSource", "error overwriting " + file + " trying to delete and start over", e2); - AnimatableValueParser.d0(file); + c.c.a.a0.d.d0(file); randomAccessFile = new RandomAccessFile(file, "rw"); } try { @@ -317,16 +316,16 @@ public abstract class m extends c { } throw new IOException("cannot make file executable: " + file); } catch (IOException e3) { - AnimatableValueParser.d0(file); + c.c.a.a0.d.d0(file); throw e3; } catch (Throwable th) { randomAccessFile.close(); throw th; } } else { - StringBuilder P2 = c.d.b.a.a.P("cannot make directory writable for us: "); - P2.append(this.a); - throw new IOException(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("cannot make directory writable for us: "); + O2.append(this.a); + throw new IOException(O2.toString()); } } @@ -459,9 +458,9 @@ public abstract class m extends c { } a aVar = new a(file2, bArr, cVar, file, gVar); if ((i & 1) != 0) { - StringBuilder P = c.d.b.a.a.P("SoSync:"); - P.append(this.a.getName()); - new Thread(aVar, P.toString()).start(); + StringBuilder O = c.d.b.a.a.O("SoSync:"); + O.append(this.a.getName()); + new Thread(aVar, O.toString()).start(); } else { aVar.run(); } @@ -497,9 +496,9 @@ public abstract class m extends c { /* JADX WARNING: Removed duplicated region for block: B:16:0x0056 A[Catch:{ all -> 0x00c5 }] */ public final void j(byte b2, c cVar, e eVar) throws IOException { c cVar2; - StringBuilder P = c.d.b.a.a.P("regenerating DSO store "); - P.append(getClass().getName()); - Log.v("fb-UnpackingSoSource", P.toString()); + StringBuilder O = c.d.b.a.a.O("regenerating DSO store "); + O.append(getClass().getName()); + Log.v("fb-UnpackingSoSource", O.toString()); RandomAccessFile randomAccessFile = new RandomAccessFile(new File(this.a, "dso_manifest"), "rw"); if (b2 == 1) { try { diff --git a/app/src/main/java/c/g/a/a/i.java b/app/src/main/java/c/g/a/a/i.java index f64597aae9..dc2d1ffaae 100644 --- a/app/src/main/java/c/g/a/a/i.java +++ b/app/src/main/java/c/g/a/a/i.java @@ -31,11 +31,11 @@ public @interface i { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f521c; + public final int f522c; public b(int i, int i2) { this.b = i; - this.f521c = i2; + this.f522c = i2; } public boolean equals(Object obj) { @@ -46,15 +46,15 @@ public @interface i { return false; } b bVar = (b) obj; - return bVar.b == this.b && bVar.f521c == this.f521c; + return bVar.b == this.b && bVar.f522c == this.f522c; } public int hashCode() { - return this.f521c + this.b; + return this.f522c + this.b; } public String toString() { - return this == a ? "EMPTY" : String.format("(enabled=0x%x,disabled=0x%x)", Integer.valueOf(this.b), Integer.valueOf(this.f521c)); + return this == a ? "EMPTY" : String.format("(enabled=0x%x,disabled=0x%x)", Integer.valueOf(this.b), Integer.valueOf(this.f522c)); } } @@ -122,7 +122,7 @@ public @interface i { b bVar = this._features; Objects.requireNonNull(bVar); int ordinal = 1 << aVar.ordinal(); - if ((bVar.f521c & ordinal) != 0) { + if ((bVar.f522c & ordinal) != 0) { return Boolean.FALSE; } if ((ordinal & bVar.b) != 0) { @@ -235,15 +235,15 @@ public @interface i { } else { b bVar2 = dVar._features; if (bVar2 != null) { - int i2 = bVar2.f521c; + int i2 = bVar2.f522c; int i3 = bVar2.b; if (!(i2 == 0 && i3 == 0)) { int i4 = bVar.b; - if (i4 == 0 && bVar.f521c == 0) { + if (i4 == 0 && bVar.f522c == 0) { bVar = bVar2; } else { int i5 = ((~i2) & i4) | i3; - int i6 = bVar.f521c; + int i6 = bVar.f522c; int i7 = i2 | ((~i3) & i6); if (!(i5 == i4 && i7 == i6)) { bVar = new b(i5, i7); diff --git a/app/src/main/java/c/g/a/a/p.java b/app/src/main/java/c/g/a/a/p.java index 167443c1ce..ef0c9a04fb 100644 --- a/app/src/main/java/c/g/a/a/p.java +++ b/app/src/main/java/c/g/a/a/p.java @@ -108,11 +108,11 @@ public @interface p { sb.append(this._contentInclusion); if (this._valueFilter != null) { sb.append(",valueFilter="); - c.d.b.a.a.g0(this._valueFilter, sb, ".class"); + c.d.b.a.a.f0(this._valueFilter, sb, ".class"); } if (this._contentFilter != null) { sb.append(",contentFilter="); - c.d.b.a.a.g0(this._contentFilter, sb, ".class"); + c.d.b.a.a.f0(this._contentFilter, sb, ".class"); } sb.append(')'); return sb.toString(); diff --git a/app/src/main/java/c/g/a/b/a.java b/app/src/main/java/c/g/a/b/a.java index 096b840b3c..febff07b1b 100644 --- a/app/src/main/java/c/g/a/b/a.java +++ b/app/src/main/java/c/g/a/b/a.java @@ -181,7 +181,7 @@ public final class a implements Serializable { if (!aVar._name.equals(str)) { aVar = b.b; if (!aVar._name.equals(str)) { - aVar = b.f523c; + aVar = b.f524c; if (!aVar._name.equals(str)) { aVar = b.d; if (!aVar._name.equals(str)) { diff --git a/app/src/main/java/c/g/a/b/b.java b/app/src/main/java/c/g/a/b/b.java index 5915662d7b..bd5ce7fd65 100644 --- a/app/src/main/java/c/g/a/b/b.java +++ b/app/src/main/java/c/g/a/b/b.java @@ -8,14 +8,14 @@ public final class b { public static final a b; /* renamed from: c reason: collision with root package name */ - public static final a f523c; + public static final a f524c; public static final a d; static { a aVar = new a("MIME", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", true, '=', 76); a = aVar; b = new a(aVar, "MIME-NO-LINEFEEDS", Integer.MAX_VALUE); - f523c = new a(aVar, "PEM", true, '=', 64); + f524c = new a(aVar, "PEM", true, '=', 64); StringBuilder sb = new StringBuilder("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"); sb.setCharAt(sb.indexOf(BadgeDrawable.DEFAULT_EXCEED_MAX_BADGE_NUMBER_SUFFIX), '-'); sb.setCharAt(sb.indexOf(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN), '_'); diff --git a/app/src/main/java/c/g/a/b/p/a.java b/app/src/main/java/c/g/a/b/p/a.java index 4958c4e6d0..2b1f4b1691 100644 --- a/app/src/main/java/c/g/a/b/p/a.java +++ b/app/src/main/java/c/g/a/b/p/a.java @@ -7,7 +7,7 @@ public final class a { public static final byte[] b; /* renamed from: c reason: collision with root package name */ - public static final int[] f528c; + public static final int[] f529c; public static final int[] d; public static final int[] e; public static final int[] f; @@ -34,7 +34,7 @@ public final class a { } iArr[34] = 1; iArr[92] = 1; - f528c = iArr; + f529c = iArr; int length2 = iArr.length; int[] iArr2 = new int[length2]; System.arraycopy(iArr, 0, iArr2, 0, length2); diff --git a/app/src/main/java/c/g/a/b/p/c.java b/app/src/main/java/c/g/a/b/p/c.java index ef203c5944..8c702f6b4f 100644 --- a/app/src/main/java/c/g/a/b/p/c.java +++ b/app/src/main/java/c/g/a/b/p/c.java @@ -7,12 +7,12 @@ public class c { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final a f529c; + public final a f530c; public byte[] d; public char[] e; public c(a aVar, Object obj, boolean z2) { - this.f529c = aVar; + this.f530c = aVar; this.a = obj; this.b = z2; } @@ -21,7 +21,7 @@ public class c { byte[] bArr2 = this.d; if (bArr == bArr2 || bArr.length >= bArr2.length) { this.d = null; - this.f529c.f538c.set(3, bArr); + this.f530c.f539c.set(3, bArr); return; } throw new IllegalArgumentException("Trying to release buffer smaller than original"); diff --git a/app/src/main/java/c/g/a/b/p/e.java b/app/src/main/java/c/g/a/b/p/e.java index 831f306e44..c665f295c4 100644 --- a/app/src/main/java/c/g/a/b/p/e.java +++ b/app/src/main/java/c/g/a/b/p/e.java @@ -118,7 +118,7 @@ public final class e { if (str2 != null) { cArr3 = str2.toCharArray(); } else { - int i4 = kVar.f539c; + int i4 = kVar.f540c; if (i4 >= 0) { cArr3 = k.a; } else { diff --git a/app/src/main/java/c/g/a/b/p/g.java b/app/src/main/java/c/g/a/b/p/g.java index 5601af5205..851bd0efb5 100644 --- a/app/src/main/java/c/g/a/b/p/g.java +++ b/app/src/main/java/c/g/a/b/p/g.java @@ -5,7 +5,7 @@ public final class g { public static final String b = String.valueOf(Long.MIN_VALUE); /* renamed from: c reason: collision with root package name */ - public static final int[] f530c = new int[1000]; + public static final int[] f531c = new int[1000]; static { int i = 0; @@ -13,7 +13,7 @@ public final class g { for (int i3 = 0; i3 < 10; i3++) { int i4 = 0; while (i4 < 10) { - f530c[i] = ((i2 + 48) << 16) | ((i3 + 48) << 8) | (i4 + 48); + f531c[i] = ((i2 + 48) << 16) | ((i3 + 48) << 8) | (i4 + 48); i4++; i++; } @@ -22,7 +22,7 @@ public final class g { } public static int a(int i, char[] cArr, int i2) { - int i3 = f530c[i]; + int i3 = f531c[i]; int i4 = i2 + 1; cArr[i2] = (char) (i3 >> 16); int i5 = i4 + 1; @@ -33,7 +33,7 @@ public final class g { } public static int b(int i, char[] cArr, int i2) { - int i3 = f530c[i]; + int i3 = f531c[i]; if (i > 9) { if (i > 99) { cArr[i2] = (char) (i3 >> 16); @@ -51,7 +51,7 @@ public final class g { int i3 = i / 1000; int i4 = i - (i3 * 1000); int i5 = i3 / 1000; - int[] iArr = f530c; + int[] iArr = f531c; int i6 = iArr[i5]; int i7 = i2 + 1; cArr[i2] = (char) (i6 >> 16); @@ -145,7 +145,7 @@ public final class g { int i6 = i4 - (i5 * 1000); int i7 = i5 / 1000; int b2 = b(i7, cArr, i); - int[] iArr = f530c; + int[] iArr = f531c; int i8 = iArr[i5 - (i7 * 1000)]; int i9 = b2 + 1; cArr[b2] = (char) (i8 >> 16); @@ -165,7 +165,7 @@ public final class g { } else { int i15 = i4 / 1000; int i16 = i4 - (i15 * 1000); - int[] iArr2 = f530c; + int[] iArr2 = f531c; int i17 = iArr2[i15]; if (i15 > 9) { if (i15 > 99) { diff --git a/app/src/main/java/c/g/a/b/p/i.java b/app/src/main/java/c/g/a/b/p/i.java index 698e112746..dea9de4199 100644 --- a/app/src/main/java/c/g/a/b/p/i.java +++ b/app/src/main/java/c/g/a/b/p/i.java @@ -51,7 +51,7 @@ public final class i extends Writer { public void write(int i) { k kVar = this.i; char c2 = (char) i; - if (kVar.f539c >= 0) { + if (kVar.f540c >= 0) { kVar.f(16); } kVar.i = null; diff --git a/app/src/main/java/c/g/a/b/q/a.java b/app/src/main/java/c/g/a/b/q/a.java index 476dd135a4..0039208b35 100644 --- a/app/src/main/java/c/g/a/b/q/a.java +++ b/app/src/main/java/c/g/a/b/q/a.java @@ -7,7 +7,7 @@ public class a { public String b; /* renamed from: c reason: collision with root package name */ - public String f531c; + public String f532c; public HashSet d; public a(Object obj) { diff --git a/app/src/main/java/c/g/a/b/q/b.java b/app/src/main/java/c/g/a/b/q/b.java index e93ee9193b..1c97d2496e 100644 --- a/app/src/main/java/c/g/a/b/q/b.java +++ b/app/src/main/java/c/g/a/b/q/b.java @@ -14,7 +14,7 @@ public abstract class b extends a { public final c r; /* renamed from: s reason: collision with root package name */ - public int[] f532s = q; + public int[] f533s = q; public int t; public k u = d.i; public boolean v; diff --git a/app/src/main/java/c/g/a/b/q/c.java b/app/src/main/java/c/g/a/b/q/c.java index e81dea211c..0e6eb2ad39 100644 --- a/app/src/main/java/c/g/a/b/q/c.java +++ b/app/src/main/java/c/g/a/b/q/c.java @@ -10,7 +10,7 @@ import java.util.HashSet; public class c extends g { /* renamed from: c reason: collision with root package name */ - public final c f533c; + public final c f534c; public a d; public c e; public String f; @@ -19,14 +19,14 @@ public class c extends g { public c(int i, c cVar, a aVar) { this.a = i; - this.f533c = cVar; + this.f534c = cVar; this.d = aVar; this.b = -1; } public c(int i, c cVar, a aVar, Object obj) { this.a = i; - this.f533c = cVar; + this.f534c = cVar; this.d = aVar; this.b = -1; this.g = obj; @@ -99,7 +99,7 @@ public class c extends g { a aVar = this.d; if (aVar != null) { aVar.b = null; - aVar.f531c = null; + aVar.f532c = null; aVar.d = null; } return this; @@ -114,7 +114,7 @@ public class c extends g { a aVar = this.d; if (aVar != null) { aVar.b = null; - aVar.f531c = null; + aVar.f532c = null; aVar.d = null; } return this; @@ -135,15 +135,15 @@ public class c extends g { aVar.b = str; } else { if (!str.equals(str2)) { - String str3 = aVar.f531c; + String str3 = aVar.f532c; if (str3 == null) { - aVar.f531c = str; + aVar.f532c = str; } else if (!str.equals(str3)) { if (aVar.d == null) { HashSet hashSet = new HashSet<>(16); aVar.d = hashSet; hashSet.add(aVar.b); - aVar.d.add(aVar.f531c); + aVar.d.add(aVar.f532c); } z2 = !aVar.d.add(str); if (z2) { diff --git a/app/src/main/java/c/g/a/b/q/d.java b/app/src/main/java/c/g/a/b/q/d.java index e021ac84aa..e848fceb69 100644 --- a/app/src/main/java/c/g/a/b/q/d.java +++ b/app/src/main/java/c/g/a/b/q/d.java @@ -26,24 +26,24 @@ public class d extends b { public char[] D; /* renamed from: x reason: collision with root package name */ - public final Writer f534x; + public final Writer f535x; /* renamed from: y reason: collision with root package name */ - public char f535y; + public char f536y; /* renamed from: z reason: collision with root package name */ - public char[] f536z; + public char[] f537z; public d(c cVar, int i, i iVar, Writer writer, char c2) { super(cVar, i, iVar); int[] iArr; - this.f534x = writer; + this.f535x = writer; if (cVar.e == null) { - char[] a = cVar.f529c.a(1, 0); + char[] a = cVar.f530c.a(1, 0); cVar.e = a; - this.f536z = a; + this.f537z = a; this.C = a.length; - this.f535y = c2; + this.f536y = c2; if (c2 != '\"') { if (c2 == '\"') { iArr = a.f; @@ -59,7 +59,7 @@ public class d extends b { } iArr = iArr2; } - this.f532s = iArr; + this.f533s = iArr; return; } return; @@ -73,7 +73,7 @@ public class d extends b { if (this.B + 2 > this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i3 = this.B; int i4 = i3 + 1; this.B = i4; @@ -85,7 +85,7 @@ public class d extends b { B0(); } int i5 = this.B; - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i6 = i5 + 1; cArr2[i5] = '\\'; int i7 = i6 + 1; @@ -128,7 +128,7 @@ public class d extends b { if (i3 > 0) { this.A = 0; this.B = 0; - this.f534x.write(this.f536z, i2, i3); + this.f535x.write(this.f537z, i2, i3); } } @@ -154,7 +154,7 @@ public class d extends b { cArr2 = z0(); } cArr2[1] = (char) i3; - this.f534x.write(cArr2, 0, 2); + this.f535x.write(cArr2, 0, 2); return i; } int i5 = i - 2; @@ -178,13 +178,13 @@ public class d extends b { cArr3[11] = cArr4[i6 & 15]; cArr3[12] = cArr4[i7 >> 4]; cArr3[13] = cArr4[i7 & 15]; - this.f534x.write(cArr3, 8, 6); + this.f535x.write(cArr3, 8, 6); return i; } char[] cArr5 = w; cArr3[6] = cArr5[c2 >> 4]; cArr3[7] = cArr5[c2 & 15]; - this.f534x.write(cArr3, 2, 6); + this.f535x.write(cArr3, 2, 6); return i; } else { int i8 = i - 6; @@ -221,7 +221,7 @@ public class d extends b { if (i3 >= 2) { int i4 = i3 - 2; this.A = i4; - char[] cArr = this.f536z; + char[] cArr = this.f537z; cArr[i4] = '\\'; cArr[i4 + 1] = (char) i; return; @@ -232,11 +232,11 @@ public class d extends b { } this.A = this.B; cArr2[1] = (char) i; - this.f534x.write(cArr2, 0, 2); + this.f535x.write(cArr2, 0, 2); } else if (i != -2) { int i5 = this.B; if (i5 >= 6) { - char[] cArr3 = this.f536z; + char[] cArr3 = this.f537z; int i6 = i5 - 6; this.A = i6; cArr3[i6] = '\\'; @@ -275,13 +275,13 @@ public class d extends b { cArr6[11] = cArr7[i12 & 15]; cArr6[12] = cArr7[i13 >> 4]; cArr6[13] = cArr7[i13 & 15]; - this.f534x.write(cArr6, 8, 6); + this.f535x.write(cArr6, 8, 6); return; } char[] cArr8 = w; cArr6[6] = cArr8[c2 >> 4]; cArr6[7] = cArr8[c2 & 15]; - this.f534x.write(cArr6, 2, 6); + this.f535x.write(cArr6, 2, 6); } else { Objects.requireNonNull(null); throw null; @@ -334,11 +334,11 @@ public class d extends b { int i8 = i7 + 1; i4 = i8 + 1; i6 += 3; - int b = aVar.b((((bArr[i7] & 255) | (bArr[i4] << 8)) << 8) | (bArr[i8] & 255), this.f536z, this.B); + int b = aVar.b((((bArr[i7] & 255) | (bArr[i4] << 8)) << 8) | (bArr[i8] & 255), this.f537z, this.B); this.B = b; d--; if (d <= 0) { - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i9 = b + 1; this.B = i9; cArr[b] = '\\'; @@ -360,7 +360,7 @@ public class d extends b { i2 = 1; } int i11 = i6 + i2; - this.B = aVar.c(i10, i2, this.f536z, this.B); + this.B = aVar.c(i10, i2, this.f537z, this.B); return i11; } @@ -405,11 +405,11 @@ public class d extends b { int i8 = i7 + 1; i5 = i8 + 1; i -= 3; - int b = aVar.b((((bArr[i7] & 255) | (bArr[i5] << 8)) << 8) | (bArr[i8] & 255), this.f536z, this.B); + int b = aVar.b((((bArr[i7] & 255) | (bArr[i5] << 8)) << 8) | (bArr[i8] & 255), this.f537z, this.B); this.B = b; d--; if (d <= 0) { - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i9 = b + 1; this.B = i9; cArr[b] = '\\'; @@ -430,7 +430,7 @@ public class d extends b { } else { i3 = 1; } - this.B = aVar.c(i10, i3, this.f536z, this.B); + this.B = aVar.c(i10, i3, this.f537z, this.B); return i - i3; } @@ -441,22 +441,22 @@ public class d extends b { if (this.B + 13 >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i2 = this.B; int i3 = i2 + 1; this.B = i3; - cArr[i2] = this.f535y; + cArr[i2] = this.f536y; int d = g.d(i, cArr, i3); this.B = d; - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; this.B = d + 1; - cArr2[d] = this.f535y; + cArr2[d] = this.f536y; return; } if (this.B + 11 >= this.C) { B0(); } - this.B = g.d(i, this.f536z, this.B); + this.B = g.d(i, this.f537z, this.B); } public final void H0() throws IOException { @@ -464,7 +464,7 @@ public class d extends b { B0(); } int i = this.B; - char[] cArr = this.f536z; + char[] cArr = this.f537z; cArr[i] = 'n'; int i2 = i + 1; cArr[i2] = 'u'; @@ -482,40 +482,40 @@ public class d extends b { if (this.B + 23 >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; int i2 = i + 1; this.B = i2; - cArr[i] = this.f535y; + cArr[i] = this.f536y; int e = g.e(j, cArr, i2); this.B = e; - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; this.B = e + 1; - cArr2[e] = this.f535y; + cArr2[e] = this.f536y; return; } if (this.B + 21 >= this.C) { B0(); } - this.B = g.e(j, this.f536z, this.B); + this.B = g.e(j, this.f537z, this.B); } public final void I0(String str) throws IOException { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; - cArr[i] = this.f535y; + cArr[i] = this.f536y; T(str); if (this.B >= this.C) { B0(); } - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i2 = this.B; this.B = i2 + 1; - cArr2[i2] = this.f535y; + cArr2[i2] = this.f536y; } /* JADX WARNING: Code restructure failed: missing block: B:67:0x010a, code lost: @@ -526,10 +526,10 @@ public class d extends b { if (r4 <= 0) goto L_0x0114; */ /* JADX WARNING: Code restructure failed: missing block: B:69:0x010f, code lost: - r18.f534x.write(r3, r5, r4); + r18.f535x.write(r3, r5, r4); */ /* JADX WARNING: Code restructure failed: missing block: B:70:0x0114, code lost: - r3 = r18.f536z; + r3 = r18.f537z; r4 = r18.B; r18.B = r4 + 1; r3 = r3[r4]; @@ -559,17 +559,17 @@ public class d extends b { i7 = length2 - i6; } int i8 = i6 + i7; - str.getChars(i6, i8, this.f536z, 0); + str.getChars(i6, i8, this.f537z, 0); int i9 = this.t; if (i9 != 0) { - int[] iArr = this.f532s; + int[] iArr = this.f533s; int min = Math.min(iArr.length, i9 + 1); int i10 = 0; int i11 = 0; int i12 = 0; while (i10 < i7) { while (true) { - cArr3 = this.f536z; + cArr3 = this.f537z; c4 = cArr3[i10]; if (c4 >= min) { if (c4 > i9) { @@ -590,24 +590,24 @@ public class d extends b { i4 = i11; int i13 = i10 - i12; if (i13 > 0) { - this.f534x.write(cArr3, i12, i13); + this.f535x.write(cArr3, i12, i13); if (i10 >= i7) { break; } } int i14 = i10 + 1; - i12 = C0(this.f536z, i14, i7, c4, i4); + i12 = C0(this.f537z, i14, i7, c4, i4); i11 = i4; i10 = i14; } } else { - int[] iArr2 = this.f532s; + int[] iArr2 = this.f533s; int length3 = iArr2.length; int i15 = 0; int i16 = 0; while (i15 < i7) { do { - cArr2 = this.f536z; + cArr2 = this.f537z; c3 = cArr2[i15]; if (c3 < length3 && iArr2[c3] != 0) { break; @@ -616,13 +616,13 @@ public class d extends b { } while (i15 < i7); int i17 = i15 - i16; if (i17 > 0) { - this.f534x.write(cArr2, i16, i17); + this.f535x.write(cArr2, i16, i17); if (i15 >= i7) { break; } } int i18 = i15 + 1; - i16 = C0(this.f536z, i18, i7, c3, iArr2[c3]); + i16 = C0(this.f537z, i18, i7, c3, iArr2[c3]); i15 = i18; } } @@ -636,15 +636,15 @@ public class d extends b { if (this.B + length > i5) { B0(); } - str.getChars(0, length, this.f536z, this.B); + str.getChars(0, length, this.f537z, this.B); int i19 = this.t; if (i19 != 0) { int i20 = this.B + length; - int[] iArr3 = this.f532s; + int[] iArr3 = this.f533s; int min2 = Math.min(iArr3.length, i19 + 1); while (this.B < i20) { while (true) { - cArr = this.f536z; + cArr = this.f537z; i = this.B; c2 = cArr[i]; if (c2 < min2) { @@ -671,7 +671,7 @@ public class d extends b { int i21 = this.A; int i22 = i - i21; if (i22 > 0) { - this.f534x.write(cArr, i21, i22); + this.f535x.write(cArr, i21, i22); } this.B++; D0(c2, i3); @@ -679,11 +679,11 @@ public class d extends b { return; } int i23 = this.B + length; - int[] iArr4 = this.f532s; + int[] iArr4 = this.f533s; int length4 = iArr4.length; while (this.B < i23) { while (true) { - char[] cArr4 = this.f536z; + char[] cArr4 = this.f537z; int i24 = this.B; char c5 = cArr4[i24]; if (c5 < length4 && iArr4[c5] != 0) { @@ -742,22 +742,22 @@ public class d extends b { if (this.B + 8 >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; int i2 = i + 1; this.B = i2; - cArr[i] = this.f535y; + cArr[i] = this.f536y; int d = g.d(s2, cArr, i2); this.B = d; - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; this.B = d + 1; - cArr2[d] = this.f535y; + cArr2[d] = this.f536y; return; } if (this.B + 6 >= this.C) { B0(); } - this.B = g.d(s2, this.f536z, this.B); + this.B = g.d(s2, this.f537z, this.B); } @Override // c.g.a.b.d @@ -765,7 +765,7 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = c2; @@ -773,7 +773,7 @@ public class d extends b { @Override // c.g.a.b.d public void S(k kVar) throws IOException { - int b = kVar.b(this.f536z, this.B); + int b = kVar.b(this.f537z, this.B); if (b < 0) { T(kVar.getValue()); } else { @@ -790,14 +790,14 @@ public class d extends b { i = this.C - this.B; } if (i >= length) { - str.getChars(0, length, this.f536z, this.B); + str.getChars(0, length, this.f537z, this.B); this.B += length; return; } int i2 = this.C; int i3 = this.B; int i4 = i2 - i3; - str.getChars(0, i4, this.f536z, i3); + str.getChars(0, i4, this.f537z, i3); this.B += i4; B0(); int length2 = str.length() - i4; @@ -805,14 +805,14 @@ public class d extends b { int i5 = this.C; if (length2 > i5) { int i6 = i4 + i5; - str.getChars(i4, i6, this.f536z, 0); + str.getChars(i4, i6, this.f537z, 0); this.A = 0; this.B = i5; B0(); length2 -= i5; i4 = i6; } else { - str.getChars(i4, i4 + length2, this.f536z, 0); + str.getChars(i4, i4 + length2, this.f537z, 0); this.A = 0; this.B = length2; return; @@ -826,12 +826,12 @@ public class d extends b { if (i2 > this.C - this.B) { B0(); } - System.arraycopy(cArr, i, this.f536z, this.B, i2); + System.arraycopy(cArr, i, this.f537z, this.B, i2); this.B += i2; return; } B0(); - this.f534x.write(cArr, i, i2); + this.f535x.write(cArr, i, i2); } @Override // c.g.a.b.d @@ -846,7 +846,7 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = '['; @@ -864,7 +864,7 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = '['; @@ -882,7 +882,7 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i2 = this.B; this.B = i2 + 1; cArr[i2] = '['; @@ -900,7 +900,7 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = '{'; @@ -908,7 +908,7 @@ public class d extends b { @Override // c.g.a.b.d, java.io.Closeable, java.lang.AutoCloseable public void close() throws IOException { - if (this.f536z != null && d(d.a.AUTO_CLOSE_JSON_CONTENT)) { + if (this.f537z != null && d(d.a.AUTO_CLOSE_JSON_CONTENT)) { while (true) { c cVar = this.p; if (!cVar.b()) { @@ -924,22 +924,22 @@ public class d extends b { B0(); this.A = 0; this.B = 0; - if (this.f534x != null) { + if (this.f535x != null) { if (this.r.b || d(d.a.AUTO_CLOSE_TARGET)) { - this.f534x.close(); + this.f535x.close(); } else if (d(d.a.FLUSH_PASSED_TO_STREAM)) { - this.f534x.flush(); + this.f535x.flush(); } } - char[] cArr = this.f536z; + char[] cArr = this.f537z; if (cArr != null) { - this.f536z = null; + this.f537z = null; c cVar2 = this.r; Objects.requireNonNull(cVar2); char[] cArr2 = cVar2.e; if (cArr == cArr2 || cArr.length >= cArr2.length) { cVar2.e = null; - cVar2.f529c.d.set(1, cArr); + cVar2.f530c.d.set(1, cArr); return; } throw new IllegalArgumentException("Trying to release buffer smaller than original"); @@ -958,7 +958,7 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = '{'; @@ -970,19 +970,19 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i2 = this.B; this.B = i2 + 1; - cArr[i2] = this.f535y; + cArr[i2] = this.f536y; c cVar = this.r; if (cVar.d == null) { - c.g.a.b.t.a aVar2 = cVar.f529c; + c.g.a.b.t.a aVar2 = cVar.f530c; Objects.requireNonNull(aVar2); int i3 = c.g.a.b.t.a.a[3]; if (i3 <= 0) { i3 = 0; } - byte[] andSet = aVar2.f538c.getAndSet(3, null); + byte[] andSet = aVar2.f539c.getAndSet(3, null); if (andSet == null || andSet.length < i3) { andSet = new byte[i3]; } @@ -1004,10 +1004,10 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i4 = this.B; this.B = i4 + 1; - cArr2[i4] = this.f535y; + cArr2[i4] = this.f536y; return i; } throw new IllegalStateException("Trying to call same allocXxx() method second time"); @@ -1016,8 +1016,8 @@ public class d extends b { @Override // java.io.Flushable public void flush() throws IOException { B0(); - if (this.f534x != null && d(d.a.FLUSH_PASSED_TO_STREAM)) { - this.f534x.flush(); + if (this.f535x != null && d(d.a.FLUSH_PASSED_TO_STREAM)) { + this.f535x.flush(); } } @@ -1027,11 +1027,11 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; int i2 = i + 1; this.B = i2; - cArr[i] = this.f535y; + cArr[i] = this.f536y; int c2 = kVar.c(cArr, i2); if (c2 < 0) { char[] a = kVar.a(); @@ -1040,19 +1040,19 @@ public class d extends b { if (length > this.C - this.B) { B0(); } - System.arraycopy(a, 0, this.f536z, this.B, length); + System.arraycopy(a, 0, this.f537z, this.B, length); this.B += length; } else { B0(); - this.f534x.write(a, 0, length); + this.f535x.write(a, 0, length); } if (this.B >= this.C) { B0(); } - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i3 = this.B; this.B = i3 + 1; - cArr2[i3] = this.f535y; + cArr2[i3] = this.f536y; return; } int i4 = this.B + c2; @@ -1060,10 +1060,10 @@ public class d extends b { if (i4 >= this.C) { B0(); } - char[] cArr3 = this.f536z; + char[] cArr3 = this.f537z; int i5 = this.B; this.B = i5 + 1; - cArr3[i5] = this.f535y; + cArr3[i5] = this.f536y; } @Override // c.g.a.b.d @@ -1076,18 +1076,18 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; - cArr[i] = this.f535y; + cArr[i] = this.f536y; J0(str); if (this.B >= this.C) { B0(); } - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i2 = this.B; this.B = i2 + 1; - cArr2[i2] = this.f535y; + cArr2[i2] = this.f536y; } @Override // c.g.a.b.d @@ -1097,14 +1097,14 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i3 = this.B; this.B = i3 + 1; - cArr2[i3] = this.f535y; + cArr2[i3] = this.f536y; int i4 = this.t; if (i4 != 0) { int i5 = i2 + i; - int[] iArr = this.f532s; + int[] iArr = this.f533s; int min = Math.min(iArr.length, i4 + 1); int i6 = 0; while (i < i5) { @@ -1133,12 +1133,12 @@ public class d extends b { B0(); } if (i8 > 0) { - System.arraycopy(cArr, i, this.f536z, this.B, i8); + System.arraycopy(cArr, i, this.f537z, this.B, i8); this.B += i8; } } else { B0(); - this.f534x.write(cArr, i, i8); + this.f535x.write(cArr, i, i8); } if (i7 >= i5) { break; @@ -1148,7 +1148,7 @@ public class d extends b { } } else { int i9 = i2 + i; - int[] iArr2 = this.f532s; + int[] iArr2 = this.f533s; int length = iArr2.length; while (i < i9) { int i10 = i; @@ -1165,12 +1165,12 @@ public class d extends b { B0(); } if (i11 > 0) { - System.arraycopy(cArr, i, this.f536z, this.B, i11); + System.arraycopy(cArr, i, this.f537z, this.B, i11); this.B += i11; } } else { B0(); - this.f534x.write(cArr, i, i11); + this.f535x.write(cArr, i, i11); } if (i10 >= i9) { break; @@ -1183,10 +1183,10 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr3 = this.f536z; + char[] cArr3 = this.f537z; int i12 = this.B; this.B = i12 + 1; - cArr3[i12] = this.f535y; + cArr3[i12] = this.f536y; } @Override // c.g.a.b.d @@ -1195,10 +1195,10 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i3 = this.B; this.B = i3 + 1; - cArr[i3] = this.f535y; + cArr[i3] = this.f536y; int i4 = i2 + i; int i5 = i4 - 3; int i6 = this.C - 6; @@ -1210,11 +1210,11 @@ public class d extends b { int i7 = i + 1; int i8 = i7 + 1; int i9 = i8 + 1; - int b = aVar.b((((bArr[i] << 8) | (bArr[i7] & 255)) << 8) | (bArr[i8] & 255), this.f536z, this.B); + int b = aVar.b((((bArr[i] << 8) | (bArr[i7] & 255)) << 8) | (bArr[i8] & 255), this.f537z, this.B); this.B = b; d--; if (d <= 0) { - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i10 = b + 1; this.B = i10; cArr2[b] = '\\'; @@ -1234,15 +1234,15 @@ public class d extends b { if (i11 == 2) { i13 |= (bArr[i12] & 255) << 8; } - this.B = aVar.c(i13, i11, this.f536z, this.B); + this.B = aVar.c(i13, i11, this.f537z, this.B); } if (this.B >= this.C) { B0(); } - char[] cArr3 = this.f536z; + char[] cArr3 = this.f537z; int i14 = this.B; this.B = i14 + 1; - cArr3[i14] = this.f535y; + cArr3[i14] = this.f536y; } @Override // c.g.a.b.d @@ -1253,7 +1253,7 @@ public class d extends b { B0(); } int i2 = this.B; - char[] cArr = this.f536z; + char[] cArr = this.f537z; if (z2) { cArr[i2] = 't'; int i3 = i2 + 1; @@ -1286,19 +1286,19 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = ']'; } c cVar = this.p; cVar.g = null; - this.p = cVar.f533c; + this.p = cVar.f534c; return; } - StringBuilder P = c.d.b.a.a.P("Current context not Array but "); - P.append(this.p.e()); - throw new JsonGenerationException(P.toString(), this); + StringBuilder O = c.d.b.a.a.O("Current context not Array but "); + O.append(this.p.e()); + throw new JsonGenerationException(O.toString(), this); } @Override // c.g.a.b.o.a @@ -1327,7 +1327,7 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = c2; @@ -1362,19 +1362,19 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; cArr[i] = '}'; } c cVar = this.p; cVar.g = null; - this.p = cVar.f533c; + this.p = cVar.f534c; return; } - StringBuilder P = c.d.b.a.a.P("Current context not Object but "); - P.append(this.p.e()); - throw new JsonGenerationException(P.toString(), this); + StringBuilder O = c.d.b.a.a.O("Current context not Object but "); + O.append(this.p.e()); + throw new JsonGenerationException(O.toString(), this); } @Override // c.g.a.b.d @@ -1397,25 +1397,25 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; - cArr[i] = this.f535y; + cArr[i] = this.f536y; U(a, 0, a.length); if (this.B >= this.C) { B0(); } - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i2 = this.B; this.B = i2 + 1; - cArr2[i2] = this.f535y; + cArr2[i2] = this.f536y; return; } if (this.B + 1 >= this.C) { B0(); } if (z2) { - char[] cArr3 = this.f536z; + char[] cArr3 = this.f537z; int i3 = this.B; this.B = i3 + 1; cArr3[i3] = ','; @@ -1425,11 +1425,11 @@ public class d extends b { U(a2, 0, a2.length); return; } - char[] cArr4 = this.f536z; + char[] cArr4 = this.f537z; int i4 = this.B; int i5 = i4 + 1; this.B = i5; - cArr4[i4] = this.f535y; + cArr4[i4] = this.f536y; int c2 = kVar.c(cArr4, i5); if (c2 < 0) { char[] a3 = kVar.a(); @@ -1437,10 +1437,10 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr5 = this.f536z; + char[] cArr5 = this.f537z; int i6 = this.B; this.B = i6 + 1; - cArr5[i6] = this.f535y; + cArr5[i6] = this.f536y; return; } int i7 = this.B + c2; @@ -1448,10 +1448,10 @@ public class d extends b { if (i7 >= this.C) { B0(); } - char[] cArr6 = this.f536z; + char[] cArr6 = this.f537z; int i8 = this.B; this.B = i8 + 1; - cArr6[i8] = this.f535y; + cArr6[i8] = this.f536y; return; } throw new JsonGenerationException("Can not write a field name, expecting a value", this); @@ -1476,25 +1476,25 @@ public class d extends b { if (this.B >= this.C) { B0(); } - char[] cArr = this.f536z; + char[] cArr = this.f537z; int i = this.B; this.B = i + 1; - cArr[i] = this.f535y; + cArr[i] = this.f536y; J0(str); if (this.B >= this.C) { B0(); } - char[] cArr2 = this.f536z; + char[] cArr2 = this.f537z; int i2 = this.B; this.B = i2 + 1; - cArr2[i2] = this.f535y; + cArr2[i2] = this.f536y; return; } if (this.B + 1 >= this.C) { B0(); } if (z2) { - char[] cArr3 = this.f536z; + char[] cArr3 = this.f537z; int i3 = this.B; this.B = i3 + 1; cArr3[i3] = ','; @@ -1503,18 +1503,18 @@ public class d extends b { J0(str); return; } - char[] cArr4 = this.f536z; + char[] cArr4 = this.f537z; int i4 = this.B; this.B = i4 + 1; - cArr4[i4] = this.f535y; + cArr4[i4] = this.f536y; J0(str); if (this.B >= this.C) { B0(); } - char[] cArr5 = this.f536z; + char[] cArr5 = this.f537z; int i5 = this.B; this.B = i5 + 1; - cArr5[i5] = this.f535y; + cArr5[i5] = this.f536y; return; } throw new JsonGenerationException("Can not write a field name, expecting a value", this); diff --git a/app/src/main/java/c/g/a/b/s/b.java b/app/src/main/java/c/g/a/b/s/b.java index 57568c99ce..5459584f1a 100644 --- a/app/src/main/java/c/g/a/b/s/b.java +++ b/app/src/main/java/c/g/a/b/s/b.java @@ -7,7 +7,7 @@ public class b { public Class b; /* renamed from: c reason: collision with root package name */ - public Object f537c = null; + public Object f538c = null; public String d; public int e; public h f; diff --git a/app/src/main/java/c/g/a/b/t/a.java b/app/src/main/java/c/g/a/b/t/a.java index b7d15d74ae..03d9ffba3b 100644 --- a/app/src/main/java/c/g/a/b/t/a.java +++ b/app/src/main/java/c/g/a/b/t/a.java @@ -8,7 +8,7 @@ public class a { public static final int[] b = {SendUtils.MAX_MESSAGE_CHARACTER_COUNT_PREMIUM, SendUtils.MAX_MESSAGE_CHARACTER_COUNT_PREMIUM, 200, 200}; /* renamed from: c reason: collision with root package name */ - public final AtomicReferenceArray f538c = new AtomicReferenceArray<>(4); + public final AtomicReferenceArray f539c = new AtomicReferenceArray<>(4); public final AtomicReferenceArray d = new AtomicReferenceArray<>(4); public char[] a(int i, int i2) { diff --git a/app/src/main/java/c/g/a/b/t/d.java b/app/src/main/java/c/g/a/b/t/d.java index 66de40fc4e..b80a52d487 100644 --- a/app/src/main/java/c/g/a/b/t/d.java +++ b/app/src/main/java/c/g/a/b/t/d.java @@ -51,10 +51,10 @@ public class d implements j, e, Serializable { this._rootSeparator = jVar; j jVar2 = j.b; this._separators = jVar2; - StringBuilder P = c.d.b.a.a.P(" "); - P.append(jVar2.c()); - P.append(" "); - this._objectFieldValueSeparatorWithSpaces = P.toString(); + StringBuilder O = c.d.b.a.a.O(" "); + O.append(jVar2.c()); + O.append(" "); + this._objectFieldValueSeparatorWithSpaces = O.toString(); } public d(d dVar) { @@ -101,7 +101,7 @@ public class d implements j, e, Serializable { if (d.class == d.class) { return new d(this); } - throw new IllegalStateException(c.d.b.a.a.j(d.class, c.d.b.a.a.P("Failed `createInstance()`: "), " does not override method; it has to")); + throw new IllegalStateException(c.d.b.a.a.j(d.class, c.d.b.a.a.O("Failed `createInstance()`: "), " does not override method; it has to")); } @Override // c.g.a.b.j diff --git a/app/src/main/java/c/g/a/b/t/k.java b/app/src/main/java/c/g/a/b/t/k.java index 8b3be79b29..4458fabfe9 100644 --- a/app/src/main/java/c/g/a/b/t/k.java +++ b/app/src/main/java/c/g/a/b/t/k.java @@ -7,7 +7,7 @@ public final class k { public final a b; /* renamed from: c reason: collision with root package name */ - public int f539c; + public int f540c; public ArrayList d; public boolean e; public int f; @@ -24,11 +24,11 @@ public final class k { this.b = null; this.g = cArr; this.h = cArr.length; - this.f539c = -1; + this.f540c = -1; } public void a(String str, int i, int i2) { - if (this.f539c >= 0) { + if (this.f540c >= 0) { f(i2); } this.i = null; @@ -64,7 +64,7 @@ public final class k { } public void b(char[] cArr, int i, int i2) { - if (this.f539c >= 0) { + if (this.f540c >= 0) { f(i2); } this.i = null; @@ -99,7 +99,7 @@ public final class k { this.i = new String(this.j); } else { String str = ""; - if (this.f539c >= 0) { + if (this.f540c >= 0) { this.i = str; return str; } @@ -168,7 +168,7 @@ public final class k { } public final void f(int i) { - this.f539c = -1; + this.f540c = -1; int i2 = i + 0; char[] cArr = this.g; if (cArr == null || i2 > cArr.length) { diff --git a/app/src/main/java/c/g/a/c/b0/f.java b/app/src/main/java/c/g/a/c/b0/f.java index 30579b3a4b..924d7be6c3 100644 --- a/app/src/main/java/c/g/a/c/b0/f.java +++ b/app/src/main/java/c/g/a/c/b0/f.java @@ -90,15 +90,15 @@ public class f implements Serializable { try { return d.g(cls, false); } catch (Throwable th) { - StringBuilder P = a.P("Failed to create instance of `"); - P.append(cls.getName()); - P.append("` for handling values of type "); - P.append(d.n(jVar)); - P.append(", problem: ("); - P.append(th.getClass().getName()); - P.append(") "); - P.append(th.getMessage()); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Failed to create instance of `"); + O.append(cls.getName()); + O.append("` for handling values of type "); + O.append(d.n(jVar)); + O.append(", problem: ("); + O.append(th.getClass().getName()); + O.append(") "); + O.append(th.getMessage()); + throw new IllegalStateException(O.toString()); } } @@ -106,13 +106,13 @@ public class f implements Serializable { try { return b(Class.forName(str), jVar); } catch (Throwable th) { - StringBuilder V = a.V("Failed to find class `", str, "` for handling values of type "); - V.append(d.n(jVar)); - V.append(", problem: ("); - V.append(th.getClass().getName()); - V.append(") "); - V.append(th.getMessage()); - throw new IllegalStateException(V.toString()); + StringBuilder U = a.U("Failed to find class `", str, "` for handling values of type "); + U.append(d.n(jVar)); + U.append(", problem: ("); + U.append(th.getClass().getName()); + U.append(") "); + U.append(th.getMessage()); + throw new IllegalStateException(U.toString()); } } } diff --git a/app/src/main/java/c/g/a/c/c0/a0.java b/app/src/main/java/c/g/a/c/c0/a0.java index 9bd0220752..4056c9d2a2 100644 --- a/app/src/main/java/c/g/a/c/c0/a0.java +++ b/app/src/main/java/c/g/a/c/c0/a0.java @@ -11,7 +11,7 @@ public class a0 { public final t b; /* renamed from: c reason: collision with root package name */ - public final Class> f540c; + public final Class> f541c; public final Class d; public final Class e; public final boolean f; @@ -19,20 +19,20 @@ public class a0 { public a0(t tVar, Class cls, Class> cls2, boolean z2, Class cls3) { this.b = tVar; this.e = cls; - this.f540c = cls2; + this.f541c = cls2; this.f = z2; this.d = cls3 == null ? n0.class : cls3; } public String toString() { - StringBuilder P = a.P("ObjectIdInfo: propName="); - P.append(this.b); - P.append(", scope="); - P.append(d.u(this.e)); - P.append(", generatorType="); - P.append(d.u(this.f540c)); - P.append(", alwaysAsId="); - P.append(this.f); - return P.toString(); + StringBuilder O = a.O("ObjectIdInfo: propName="); + O.append(this.b); + O.append(", scope="); + O.append(d.u(this.e)); + O.append(", generatorType="); + O.append(d.u(this.f541c)); + O.append(", alwaysAsId="); + O.append(this.f); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/c0/b0.java b/app/src/main/java/c/g/a/c/c0/b0.java index 146c917498..758d4c2eec 100644 --- a/app/src/main/java/c/g/a/c/c0/b0.java +++ b/app/src/main/java/c/g/a/c/c0/b0.java @@ -32,7 +32,7 @@ public class b0 { public final a b; /* renamed from: c reason: collision with root package name */ - public final boolean f541c; + public final boolean f542c; public final j d; public final c e; public final g0 f; @@ -50,12 +50,12 @@ public class b0 { public LinkedList r; /* renamed from: s reason: collision with root package name */ - public HashSet f542s; + public HashSet f543s; public LinkedHashMap t; public b0(l lVar, boolean z2, j jVar, c cVar, a aVar) { this.a = lVar; - this.f541c = z2; + this.f542c = z2; this.d = jVar; this.e = cVar; if (lVar.p()) { @@ -93,7 +93,7 @@ public class b0 { String str = n._simpleName; c0Var = map.get(str); if (c0Var == null) { - c0Var = new c0(this.a, this.g, this.f541c, n); + c0Var = new c0(this.a, this.g, this.f542c, n); map.put(str, c0Var); } } @@ -108,11 +108,11 @@ public class b0 { } public void c(String str) { - if (!this.f541c && str != null) { - if (this.f542s == null) { - this.f542s = new HashSet<>(); + if (!this.f542c && str != null) { + if (this.f543s == null) { + this.f543s = new HashSet<>(); } - this.f542s.add(str); + this.f543s.add(str); } } @@ -139,7 +139,7 @@ public class b0 { if (c0Var != null) { return c0Var; } - c0 c0Var2 = new c0(this.a, this.g, this.f541c, t.a(str)); + c0 c0Var2 = new c0(this.a, this.g, this.f542c, t.a(str)); map.put(str, c0Var2); return c0Var2; } @@ -195,7 +195,7 @@ public class b0 { boolean z12; LinkedHashMap linkedHashMap = new LinkedHashMap<>(); c.g.a.c.b bVar = this.g; - boolean z13 = !this.f541c && !this.a.q(p.ALLOW_FINAL_FIELDS_AS_MUTATORS); + boolean z13 = !this.f542c && !this.a.q(p.ALLOW_FINAL_FIELDS_AS_MUTATORS); boolean q = this.a.q(p.PROPAGATE_TRANSIENT_MARKER); for (g gVar : this.e.g()) { Boolean bool = Boolean.TRUE; @@ -241,7 +241,7 @@ public class b0 { } this.l.put(E, e); } - t o = this.f541c ? bVar.o(gVar) : bVar.n(gVar); + t o = this.f542c ? bVar.o(gVar) : bVar.n(gVar); boolean z14 = o != null; if (!z14 || !o.d()) { tVar3 = o; @@ -379,7 +379,7 @@ public class b0 { String b2 = b(i2); boolean Z3 = bVar3.Z(next); c0 f4 = f(linkedHashMap, b2); - f4.f545s = new c0.d<>(next, f4.f545s, tVar2, z8, z9, Z3); + f4.f546s = new c0.d<>(next, f4.f546s, tVar2, z8, z9, Z3); } else if (o2 == 2 && Boolean.TRUE.equals(this.g.U(next))) { if (this.o == null) { this.o = new LinkedList<>(); @@ -413,7 +413,7 @@ public class b0 { a(linkedHashMap, eVar.m(i4)); } } - for (j jVar : this.e.f().f544c) { + for (j jVar : this.e.f().f545c) { if (this.k == null) { this.k = new LinkedList<>(); } @@ -426,16 +426,16 @@ public class b0 { Iterator it2 = linkedHashMap.values().iterator(); while (it2.hasNext()) { c0 next2 = it2.next(); - if (!(next2.z(next2.p) || next2.z(next2.r) || next2.z(next2.f545s) || next2.z(next2.q))) { + if (!(next2.z(next2.p) || next2.z(next2.r) || next2.z(next2.f546s) || next2.z(next2.q))) { it2.remove(); - } else if (next2.y(next2.p) || next2.y(next2.r) || next2.y(next2.f545s) || next2.y(next2.q)) { + } else if (next2.y(next2.p) || next2.y(next2.r) || next2.y(next2.f546s) || next2.y(next2.q)) { if (!next2.u()) { it2.remove(); c(next2.p()); } else { next2.p = next2.G(next2.p); next2.r = next2.G(next2.r); - next2.f545s = next2.G(next2.f545s); + next2.f546s = next2.G(next2.f546s); next2.q = next2.G(next2.q); if (!next2.f()) { c(next2.p()); @@ -445,10 +445,10 @@ public class b0 { } boolean q2 = this.a.q(p.INFER_PROPERTY_MUTATORS); for (c0 c0Var2 : linkedHashMap.values()) { - b0 b0Var = this.f541c ? null : this; + b0 b0Var = this.f542c ? null : this; u.a aVar6 = u.a.AUTO; c.g.a.c.b bVar4 = c0Var2.m; - if (bVar4 == null || (!c0Var2.k ? ((dVar = c0Var2.q) == null || (aVar = bVar4.t(dVar.a)) == null || aVar == aVar6) && (((dVar2 = c0Var2.f545s) == null || (aVar = c0Var2.m.t(dVar2.a)) == null || aVar == aVar6) && (((dVar3 = c0Var2.p) == null || (aVar = c0Var2.m.t(dVar3.a)) == null || aVar == aVar6) && ((dVar4 = c0Var2.r) == null || (aVar = c0Var2.m.t(dVar4.a)) == null || aVar == aVar6))) : ((dVar5 = c0Var2.r) == null || (aVar = bVar4.t(dVar5.a)) == null || aVar == aVar6) && (((dVar6 = c0Var2.p) == null || (aVar = c0Var2.m.t(dVar6.a)) == null || aVar == aVar6) && (((dVar7 = c0Var2.q) == null || (aVar = c0Var2.m.t(dVar7.a)) == null || aVar == aVar6) && ((dVar8 = c0Var2.f545s) == null || (aVar = c0Var2.m.t(dVar8.a)) == null || aVar == aVar6))))) { + if (bVar4 == null || (!c0Var2.k ? ((dVar = c0Var2.q) == null || (aVar = bVar4.t(dVar.a)) == null || aVar == aVar6) && (((dVar2 = c0Var2.f546s) == null || (aVar = c0Var2.m.t(dVar2.a)) == null || aVar == aVar6) && (((dVar3 = c0Var2.p) == null || (aVar = c0Var2.m.t(dVar3.a)) == null || aVar == aVar6) && ((dVar4 = c0Var2.r) == null || (aVar = c0Var2.m.t(dVar4.a)) == null || aVar == aVar6))) : ((dVar5 = c0Var2.r) == null || (aVar = bVar4.t(dVar5.a)) == null || aVar == aVar6) && (((dVar6 = c0Var2.p) == null || (aVar = c0Var2.m.t(dVar6.a)) == null || aVar == aVar6) && (((dVar7 = c0Var2.q) == null || (aVar = c0Var2.m.t(dVar7.a)) == null || aVar == aVar6) && ((dVar8 = c0Var2.f546s) == null || (aVar = c0Var2.m.t(dVar8.a)) == null || aVar == aVar6))))) { aVar = null; } if (aVar != null) { @@ -462,7 +462,7 @@ public class b0 { b0Var.c(tVar4._simpleName); } } - c0Var2.f545s = null; + c0Var2.f546s = null; c0Var2.q = null; if (!c0Var2.k) { c0Var2.p = null; @@ -477,7 +477,7 @@ public class b0 { c0Var2.q = c0Var2.H(c0Var2.q); if (!q2 || c0Var2.r == null) { c0Var2.p = c0Var2.H(c0Var2.p); - c0Var2.f545s = c0Var2.H(c0Var2.f545s); + c0Var2.f546s = c0Var2.H(c0Var2.f546s); } } } @@ -497,7 +497,7 @@ public class b0 { HashMap hashMap = new HashMap(); value.B(L, hashMap, value.p); value.B(L, hashMap, value.r); - value.B(L, hashMap, value.f545s); + value.B(L, hashMap, value.f546s); value.B(L, hashMap, value.q); linkedList.addAll(hashMap.values()); } @@ -514,7 +514,7 @@ public class b0 { } else { c0Var4.K(c0Var3); } - if (g(c0Var3, this.k) && (hashSet = this.f542s) != null) { + if (g(c0Var3, this.k) && (hashSet = this.f543s) != null) { hashSet.remove(p); } } @@ -530,24 +530,24 @@ public class b0 { } } for (c0 c0Var5 : linkedHashMap.values()) { - if (this.f541c) { + if (this.f542c) { c0.d dVar9 = c0Var5.r; if (dVar9 != null) { - c0Var5.r = c0Var5.A(c0Var5.r, c0Var5.F(0, dVar9, c0Var5.p, c0Var5.q, c0Var5.f545s)); + c0Var5.r = c0Var5.A(c0Var5.r, c0Var5.F(0, dVar9, c0Var5.p, c0Var5.q, c0Var5.f546s)); } else { c0.d dVar10 = c0Var5.p; if (dVar10 != null) { - c0Var5.p = c0Var5.A(c0Var5.p, c0Var5.F(0, dVar10, c0Var5.q, c0Var5.f545s)); + c0Var5.p = c0Var5.A(c0Var5.p, c0Var5.F(0, dVar10, c0Var5.q, c0Var5.f546s)); } } } else { c0.d dVar11 = c0Var5.q; if (dVar11 != null) { - c0Var5.q = c0Var5.A(c0Var5.q, c0Var5.F(0, dVar11, c0Var5.f545s, c0Var5.p, c0Var5.r)); + c0Var5.q = c0Var5.A(c0Var5.q, c0Var5.F(0, dVar11, c0Var5.f546s, c0Var5.p, c0Var5.r)); } else { - c0.d dVar12 = c0Var5.f545s; + c0.d dVar12 = c0Var5.f546s; if (dVar12 != null) { - c0Var5.f545s = c0Var5.A(c0Var5.f545s, c0Var5.F(0, dVar12, c0Var5.p, c0Var5.r)); + c0Var5.f546s = c0Var5.A(c0Var5.f546s, c0Var5.F(0, dVar12, c0Var5.p, c0Var5.r)); } else { c0.d dVar13 = c0Var5.p; if (dVar13 != null) { @@ -560,7 +560,7 @@ public class b0 { for (c0 c0Var6 : linkedHashMap.values()) { c0Var6.p = c0Var6.J(c0Var6.p); c0Var6.r = c0Var6.J(c0Var6.r); - c0Var6.f545s = c0Var6.J(c0Var6.f545s); + c0Var6.f546s = c0Var6.J(c0Var6.f546s); c0Var6.q = c0Var6.J(c0Var6.q); } Object p2 = this.g.p(this.e); @@ -576,21 +576,21 @@ public class b0 { Objects.requireNonNull(this.a._base); uVar = (c.g.a.c.u) d.g(cls2, this.a.b()); } else { - throw new IllegalStateException(a.j(cls2, a.P("AnnotationIntrospector returned Class "), "; expected Class")); + throw new IllegalStateException(a.j(cls2, a.O("AnnotationIntrospector returned Class "), "; expected Class")); } } else { - StringBuilder P = a.P("AnnotationIntrospector returned PropertyNamingStrategy definition of type "); - P.append(p2.getClass().getName()); - P.append("; expected type PropertyNamingStrategy or Class instead"); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("AnnotationIntrospector returned PropertyNamingStrategy definition of type "); + O.append(p2.getClass().getName()); + O.append("; expected type PropertyNamingStrategy or Class instead"); + throw new IllegalStateException(O.toString()); } if (uVar != null) { c0[] c0VarArr = (c0[]) linkedHashMap.values().toArray(new c0[linkedHashMap.size()]); linkedHashMap.clear(); for (c0 c0Var7 : c0VarArr) { t tVar5 = c0Var7.n; - if (!(c0Var7.w(c0Var7.p) || c0Var7.w(c0Var7.r) || c0Var7.w(c0Var7.f545s) || c0Var7.w(c0Var7.q)) || this.a.q(p.ALLOW_EXPLICIT_PROPERTY_RENAMING)) { - if (this.f541c) { + if (!(c0Var7.w(c0Var7.p) || c0Var7.w(c0Var7.r) || c0Var7.w(c0Var7.f546s) || c0Var7.w(c0Var7.q)) || this.a.q(p.ALLOW_EXPLICIT_PROPERTY_RENAMING)) { + if (this.f542c) { if (c0Var7.r != null) { str = uVar.c(this.a, c0Var7.n(), tVar5._simpleName); } else if (c0Var7.p != null) { @@ -615,7 +615,7 @@ public class b0 { } g(c0Var7, this.k); } else { - if (c0Var7.f545s != null) { + if (c0Var7.f546s != null) { str = uVar.d(this.a, c0Var7.s(), tVar5._simpleName); } else if (c0Var7.q != null) { str = uVar.a(this.a, c0Var7.k(), tVar5._simpleName); @@ -753,10 +753,10 @@ public class b0 { if (objArr.length > 0) { str = String.format(str, objArr); } - StringBuilder P = a.P("Problem with definition of "); - P.append(this.e); - P.append(": "); - P.append(str); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Problem with definition of "); + O.append(this.e); + O.append(": "); + O.append(str); + throw new IllegalArgumentException(O.toString()); } } diff --git a/app/src/main/java/c/g/a/c/c0/c.java b/app/src/main/java/c/g/a/c/c0/c.java index 7a1c97b57e..ea4b3090c8 100644 --- a/app/src/main/java/c/g/a/c/c0/c.java +++ b/app/src/main/java/c/g/a/c/c0/c.java @@ -9,7 +9,6 @@ import c.g.a.c.h0.m; import c.g.a.c.h0.n; import c.g.a.c.i0.d; import c.g.a.c.j; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.lang.annotation.Annotation; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; @@ -36,7 +35,7 @@ public final class c extends b implements e0 { public final boolean r; /* renamed from: s reason: collision with root package name */ - public final c.g.a.c.i0.a f543s; + public final c.g.a.c.i0.a f544s; public a t; public l u; public List v; @@ -48,12 +47,12 @@ public final class c extends b implements e0 { public final List b; /* renamed from: c reason: collision with root package name */ - public final List f544c; + public final List f545c; public a(e eVar, List list, List list2) { this.a = eVar; this.b = list; - this.f544c = list2; + this.f545c = list2; } } @@ -62,7 +61,7 @@ public final class c extends b implements e0 { this.k = cls; this.m = list; this.q = cls2; - this.f543s = aVar; + this.f544s = aVar; this.l = mVar; this.n = bVar; this.p = aVar2; @@ -75,7 +74,7 @@ public final class c extends b implements e0 { this.k = cls; this.m = Collections.emptyList(); this.q = null; - this.f543s = o.a; + this.f544s = o.a; this.l = m.k; this.n = null; this.p = null; @@ -90,7 +89,7 @@ public final class c extends b implements e0 { @Override // c.g.a.c.c0.b public A b(Class cls) { - return (A) this.f543s.a(cls); + return (A) this.f544s.a(cls); } @Override // c.g.a.c.c0.b @@ -252,9 +251,9 @@ public final class c extends b implements e0 { int i9 = 0; while (true) { if (i9 < actualTypeArguments.length) { - TypeVariable L1 = AnimatableValueParser.L1(actualTypeArguments[i9]); - if (L1 != null) { - String name = L1.getName(); + TypeVariable i1 = c.c.a.a0.d.i1(actualTypeArguments[i9]); + if (i1 != null) { + String name = i1.getName(); if (name == null) { jVar = jVar2; break; @@ -292,7 +291,7 @@ public final class c extends b implements e0 { if (i11 >= length3) { z2 = true; break; - } else if (!AnimatableValueParser.d2(bVar2, f, bounds[i11])) { + } else if (!c.c.a.a0.d.A1(bVar2, f, bounds[i11])) { z2 = false; break; } else { @@ -365,7 +364,7 @@ public final class c extends b implements e0 { } if (fVar.e) { e eVar = fVar.f; - if (eVar != null && fVar.f554c.Z(eVar)) { + if (eVar != null && fVar.f555c.Z(eVar)) { fVar.f = null; } int size2 = list.size(); @@ -373,7 +372,7 @@ public final class c extends b implements e0 { size2--; if (size2 < 0) { break; - } else if (fVar.f554c.Z((i) list.get(size2))) { + } else if (fVar.f555c.Z((i) list.get(size2))) { list.remove(size2); } } @@ -382,7 +381,7 @@ public final class c extends b implements e0 { size3--; if (size3 < 0) { break; - } else if (fVar.f554c.Z((i) list2.get(size3))) { + } else if (fVar.f555c.Z((i) list2.get(size3))) { list2.remove(size3); } } @@ -473,7 +472,7 @@ public final class c extends b implements e0 { } else { ArrayList arrayList = new ArrayList(f.size()); for (h.a aVar : f.values()) { - arrayList.add(new g(aVar.a, aVar.b, aVar.f548c.b())); + arrayList.add(new g(aVar.a, aVar.b, aVar.f549c.b())); } list = arrayList; } @@ -520,15 +519,15 @@ public final class c extends b implements e0 { kVar.g(this, jVar._class, linkedHashMap, a2); z2 = true; } - if (z2 && kVar.f554c != null && !linkedHashMap.isEmpty()) { + if (z2 && kVar.f555c != null && !linkedHashMap.isEmpty()) { for (Map.Entry entry : linkedHashMap.entrySet()) { y yVar = (y) entry.getKey(); - if ("hashCode".equals(yVar.b) && yVar.f556c.length == 0) { + if ("hashCode".equals(yVar.b) && yVar.f557c.length == 0) { try { Method declaredMethod = Object.class.getDeclaredMethod(yVar.b, new Class[0]); if (declaredMethod != null) { k.a aVar4 = (k.a) entry.getValue(); - aVar4.f549c = kVar.d(aVar4.f549c, declaredMethod.getDeclaredAnnotations()); + aVar4.f550c = kVar.d(aVar4.f550c, declaredMethod.getDeclaredAnnotations()); aVar4.b = declaredMethod; } } catch (Exception unused) { @@ -543,7 +542,7 @@ public final class c extends b implements e0 { for (Map.Entry entry2 : linkedHashMap.entrySet()) { k.a aVar5 = (k.a) entry2.getValue(); Method method = aVar5.b; - j jVar2 = method == null ? null : new j(aVar5.a, method, aVar5.f549c.b(), null); + j jVar2 = method == null ? null : new j(aVar5.a, method, aVar5.f550c.b(), null); if (jVar2 != null) { linkedHashMap2.put(entry2.getKey(), jVar2); } @@ -562,6 +561,6 @@ public final class c extends b implements e0 { } public String toString() { - return c.d.b.a.a.j(this.k, c.d.b.a.a.P("[AnnotedClass "), "]"); + return c.d.b.a.a.j(this.k, c.d.b.a.a.O("[AnnotedClass "), "]"); } } diff --git a/app/src/main/java/c/g/a/c/c0/c0.java b/app/src/main/java/c/g/a/c/c0/c0.java index 6b667a6981..c745d043f8 100644 --- a/app/src/main/java/c/g/a/c/c0/c0.java +++ b/app/src/main/java/c/g/a/c/c0/c0.java @@ -29,7 +29,7 @@ public class c0 extends s implements Comparable { public d r; /* renamed from: s reason: collision with root package name */ - public d f545s; + public d f546s; public transient s t; public transient b.a u; @@ -75,7 +75,7 @@ public class c0 extends s implements Comparable { public final d b; /* renamed from: c reason: collision with root package name */ - public final t f546c; + public final t f547c; public final boolean d; public final boolean e; public final boolean f; @@ -84,7 +84,7 @@ public class c0 extends s implements Comparable { this.a = t; this.b = dVar; t tVar2 = (tVar == null || tVar.d()) ? null : tVar; - this.f546c = tVar2; + this.f547c = tVar2; if (z2) { if (tVar2 == null) { throw new IllegalArgumentException("Cannot pass true for 'explName' if name is null/empty"); @@ -108,10 +108,10 @@ public class c0 extends s implements Comparable { return this; } d b = dVar.b(); - if (this.f546c != null) { - return b.f546c == null ? c(null) : c(b); + if (this.f547c != null) { + return b.f547c == null ? c(null) : c(b); } - if (b.f546c != null) { + if (b.f547c != null) { return b; } boolean z2 = this.e; @@ -119,7 +119,7 @@ public class c0 extends s implements Comparable { } public d c(d dVar) { - return dVar == this.b ? this : new d<>(this.a, dVar, this.f546c, this.d, this.e, this.f); + return dVar == this.b ? this : new d<>(this.a, dVar, this.f547c, this.d, this.e, this.f); } public d d() { @@ -136,7 +136,7 @@ public class c0 extends s implements Comparable { } public d e() { - return this.b == null ? this : new d<>(this.a, null, this.f546c, this.d, this.e, this.f); + return this.b == null ? this : new d<>(this.a, null, this.f547c, this.d, this.e, this.f); } public d f() { @@ -150,9 +150,9 @@ public class c0 extends s implements Comparable { if (this.b == null) { return format; } - StringBuilder U = c.d.b.a.a.U(format, ", "); - U.append(this.b.toString()); - return U.toString(); + StringBuilder S = c.d.b.a.a.S(format, ", "); + S.append(this.b.toString()); + return S.toString(); } } @@ -169,7 +169,7 @@ public class c0 extends s implements Comparable { this.p = c0Var.p; this.q = c0Var.q; this.r = c0Var.r; - this.f545s = c0Var.f545s; + this.f546s = c0Var.f546s; this.k = c0Var.k; } @@ -206,12 +206,12 @@ public class c0 extends s implements Comparable { if (dVar2 != null) { dVar = dVar.c(A(dVar2, pVar)); } - return iVar == dVar.a ? dVar : new d<>(iVar, dVar.b, dVar.f546c, dVar.d, dVar.e, dVar.f); + return iVar == dVar.a ? dVar : new d<>(iVar, dVar.b, dVar.f547c, dVar.d, dVar.e, dVar.f); } public final void B(Collection collection, Map map, d dVar) { for (d dVar2 = dVar; dVar2 != null; dVar2 = dVar2.b) { - t tVar = dVar2.f546c; + t tVar = dVar2.f547c; if (dVar2.d && tVar != null) { c0 c0Var = map.get(tVar); if (c0Var == null) { @@ -222,34 +222,34 @@ public class c0 extends s implements Comparable { c0Var.p = dVar2.c(c0Var.p); } else if (dVar == this.r) { c0Var.r = dVar2.c(c0Var.r); - } else if (dVar == this.f545s) { - c0Var.f545s = dVar2.c(c0Var.f545s); + } else if (dVar == this.f546s) { + c0Var.f546s = dVar2.c(c0Var.f546s); } else if (dVar == this.q) { c0Var.q = dVar2.c(c0Var.q); } else { throw new IllegalStateException("Internal error: mismatched accessors, property: " + this); } } else if (dVar2.e) { - StringBuilder P = c.d.b.a.a.P("Conflicting/ambiguous property name definitions (implicit name "); + StringBuilder O = c.d.b.a.a.O("Conflicting/ambiguous property name definitions (implicit name "); t tVar2 = this.n; Annotation[] annotationArr = c.g.a.c.i0.d.a; - P.append(tVar2 == null ? "[null]" : c.g.a.c.i0.d.c(tVar2._simpleName)); - P.append("): found multiple explicit names: "); - P.append(collection); - P.append(", but also implicit accessor: "); - P.append(dVar2); - throw new IllegalStateException(P.toString()); + O.append(tVar2 == null ? "[null]" : c.g.a.c.i0.d.c(tVar2._simpleName)); + O.append("): found multiple explicit names: "); + O.append(collection); + O.append(", but also implicit accessor: "); + O.append(dVar2); + throw new IllegalStateException(O.toString()); } } } public final Set C(d dVar, Set set) { while (dVar != null) { - if (dVar.d && dVar.f546c != null) { + if (dVar.d && dVar.f547c != null) { if (set == null) { set = new HashSet<>(); } - set.add(dVar.f546c); + set.add(dVar.f547c); } dVar = dVar.b; } @@ -307,11 +307,11 @@ public class c0 extends s implements Comparable { this.p = N(this.p, c0Var.p); this.q = N(this.q, c0Var.q); this.r = N(this.r, c0Var.r); - this.f545s = N(this.f545s, c0Var.f545s); + this.f546s = N(this.f546s, c0Var.f546s); } public Set L() { - Set C = C(this.q, C(this.f545s, C(this.r, C(this.p, null)))); + Set C = C(this.q, C(this.f546s, C(this.r, C(this.p, null)))); return C == null ? Collections.emptySet() : C; } @@ -332,7 +332,7 @@ public class c0 extends s implements Comparable { if (dVar4 != null) { t = eVar.a(dVar4.a); } - if (t == null && (dVar2 = this.f545s) != null) { + if (t == null && (dVar2 = this.f546s) != null) { t = eVar.a(dVar2.a); } } @@ -355,7 +355,7 @@ public class c0 extends s implements Comparable { @Override // c.g.a.c.c0.s public boolean f() { - return (this.q == null && this.f545s == null && this.p == null) ? false : true; + return (this.q == null && this.f546s == null && this.p == null) ? false : true; } @Override // c.g.a.c.c0.s @@ -422,13 +422,13 @@ public class c0 extends s implements Comparable { } else if (g2.isAssignableFrom(g)) { } } - StringBuilder P = c.d.b.a.a.P("Multiple fields representing property \""); - P.append(p()); - P.append("\": "); - P.append(gVar.h()); - P.append(" vs "); - P.append(gVar2.h()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Multiple fields representing property \""); + O.append(p()); + O.append("\": "); + O.append(gVar.h()); + O.append(" vs "); + O.append(gVar2.h()); + throw new IllegalArgumentException(O.toString()); } return gVar; } @@ -470,13 +470,13 @@ public class c0 extends s implements Comparable { dVar = dVar2; dVar2 = dVar2.b; } else { - StringBuilder P = c.d.b.a.a.P("Conflicting getter definitions for property \""); - P.append(p()); - P.append("\": "); - P.append(dVar.a.h()); - P.append(" vs "); - P.append(dVar2.a.h()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Conflicting getter definitions for property \""); + O.append(p()); + O.append("\": "); + O.append(dVar.a.h()); + O.append(" vs "); + O.append(dVar2.a.h()); + throw new IllegalArgumentException(O.toString()); } } this.r = dVar.e(); @@ -581,7 +581,7 @@ public class c0 extends s implements Comparable { if (dVar3 != null) { jVar = dVar3.a; } else { - d dVar4 = this.f545s; + d dVar4 = this.f546s; if (dVar4 != null) { jVar = dVar4.a; } else { @@ -650,7 +650,7 @@ public class c0 extends s implements Comparable { @Override // c.g.a.c.c0.s public j s() { - d dVar = this.f545s; + d dVar = this.f546s; if (dVar == null) { return null; } @@ -698,7 +698,7 @@ public class c0 extends s implements Comparable { throw new IllegalArgumentException(String.format("Conflicting setter definitions for property \"%s\": %s vs %s", p(), dVar.a.h(), dVar2.a.h())); } } - this.f545s = dVar.e(); + this.f546s = dVar.e(); return dVar.a; } @@ -714,23 +714,23 @@ public class c0 extends s implements Comparable { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("[Property '"); - P.append(this.n); - P.append("'; ctors: "); - P.append(this.q); - P.append(", field(s): "); - P.append(this.p); - P.append(", getter(s): "); - P.append(this.r); - P.append(", setter(s): "); - P.append(this.f545s); - P.append("]"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("[Property '"); + O.append(this.n); + O.append("'; ctors: "); + O.append(this.q); + O.append(", field(s): "); + O.append(this.p); + O.append(", getter(s): "); + O.append(this.r); + O.append(", setter(s): "); + O.append(this.f546s); + O.append("]"); + return O.toString(); } @Override // c.g.a.c.c0.s public boolean u() { - return x(this.p) || x(this.r) || x(this.f545s) || w(this.q); + return x(this.p) || x(this.r) || x(this.f546s) || w(this.q); } @Override // c.g.a.c.c0.s @@ -741,7 +741,7 @@ public class c0 extends s implements Comparable { public final boolean w(d dVar) { while (dVar != null) { - if (dVar.f546c != null && dVar.d) { + if (dVar.f547c != null && dVar.d) { return true; } dVar = dVar.b; @@ -751,7 +751,7 @@ public class c0 extends s implements Comparable { public final boolean x(d dVar) { while (dVar != null) { - t tVar = dVar.f546c; + t tVar = dVar.f547c; if (tVar != null && tVar.c()) { return true; } diff --git a/app/src/main/java/c/g/a/c/c0/d.java b/app/src/main/java/c/g/a/c/c0/d.java index 4ff19c9a40..b8517524d3 100644 --- a/app/src/main/java/c/g/a/c/c0/d.java +++ b/app/src/main/java/c/g/a/c/c0/d.java @@ -21,7 +21,7 @@ public class d { public static final Class b = Map.class; /* renamed from: c reason: collision with root package name */ - public final l f547c; + public final l f548c; public final b d; public final t.a e; public final m f; @@ -31,7 +31,7 @@ public class d { public final boolean j; public d(l lVar, j jVar, t.a aVar) { - this.f547c = lVar; + this.f548c = lVar; this.g = jVar; Class cls = jVar._class; this.h = cls; @@ -45,7 +45,7 @@ public class d { } public d(l lVar, Class cls, t.a aVar) { - this.f547c = lVar; + this.f548c = lVar; Class cls2 = null; this.g = null; this.h = cls; @@ -168,7 +168,7 @@ public class d { if (!(z2 || this.j)) { return o.a; } - o oVar = o.a.f550c; + o oVar = o.a.f551c; Class cls = this.i; if (cls != null) { oVar = b(oVar, this.h, cls); diff --git a/app/src/main/java/c/g/a/c/c0/e.java b/app/src/main/java/c/g/a/c/c0/e.java index 1708189db4..58e14b81aa 100644 --- a/app/src/main/java/c/g/a/c/c0/e.java +++ b/app/src/main/java/c/g/a/c/c0/e.java @@ -79,9 +79,9 @@ public final class e extends n { @Override // c.g.a.c.c0.i public Object j(Object obj) throws UnsupportedOperationException { - StringBuilder P = c.d.b.a.a.P("Cannot call getValue() on constructor of "); - P.append(g().getName()); - throw new UnsupportedOperationException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Cannot call getValue() on constructor of "); + O.append(g().getName()); + throw new UnsupportedOperationException(O.toString()); } @Override // c.g.a.c.c0.i @@ -108,11 +108,11 @@ public final class e extends n { } return new e(null, declaredConstructor, null, null); } catch (Exception unused) { - StringBuilder P = c.d.b.a.a.P("Could not find constructor with "); - P.append(this._serialization.args.length); - P.append(" args from Class '"); - P.append(cls.getName()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Could not find constructor with "); + O.append(this._serialization.args.length); + O.append(" args from Class '"); + O.append(cls.getName()); + throw new IllegalArgumentException(O.toString()); } } diff --git a/app/src/main/java/c/g/a/c/c0/f.java b/app/src/main/java/c/g/a/c/c0/f.java index 16055f9f1a..b3dec779d0 100644 --- a/app/src/main/java/c/g/a/c/c0/f.java +++ b/app/src/main/java/c/g/a/c/c0/f.java @@ -59,7 +59,7 @@ public final class f extends u { int length = annotationArr.length; p[] pVarArr = new p[length]; for (int i = 0; i < length; i++) { - o b = b(o.a.f550c, annotationArr[i]); + o b = b(o.a.f551c, annotationArr[i]); if (annotationArr2 != null) { b = b(b, annotationArr2[i]); } @@ -70,7 +70,7 @@ public final class f extends u { public j j(Method method, e0 e0Var, Method method2) { int length = method.getParameterTypes().length; - if (this.f554c == null) { + if (this.f555c == null) { return new j(e0Var, method, new p(), u.a(length)); } if (length == 0) { @@ -89,16 +89,16 @@ public final class f extends u { Annotation[][] annotationArr; p[] i; int a = aVar.a(); - if (this.f554c == null) { + if (this.f555c == null) { return new e(this.d, aVar.a, new p(), u.a(a)); } if (a == 0) { return new e(this.d, aVar.a, g(aVar, aVar2), u.a); } - Annotation[][] annotationArr2 = aVar.f583c; + Annotation[][] annotationArr2 = aVar.f584c; if (annotationArr2 == null) { annotationArr2 = aVar.a.getParameterAnnotations(); - aVar.f583c = annotationArr2; + aVar.f584c = annotationArr2; } Annotation[][] annotationArr3 = 0; if (a != annotationArr2.length) { @@ -124,10 +124,10 @@ public final class f extends u { } } else { if (aVar2 != null) { - Annotation[][] annotationArr4 = aVar2.f583c; + Annotation[][] annotationArr4 = aVar2.f584c; if (annotationArr4 == null) { annotationArr4 = aVar2.a.getParameterAnnotations(); - aVar2.f583c = annotationArr4; + aVar2.f584c = annotationArr4; } annotationArr3 = annotationArr4; } diff --git a/app/src/main/java/c/g/a/c/c0/f0.java b/app/src/main/java/c/g/a/c/c0/f0.java index 91b5f2148b..945269894e 100644 --- a/app/src/main/java/c/g/a/c/c0/f0.java +++ b/app/src/main/java/c/g/a/c/c0/f0.java @@ -63,7 +63,7 @@ public class f0 extends i implements Serializable { @Override // c.g.a.c.c0.i public Object j(Object obj) throws IllegalArgumentException { - throw new IllegalArgumentException(a.H(a.P("Cannot get virtual property '"), this._name, "'")); + throw new IllegalArgumentException(a.G(a.O("Cannot get virtual property '"), this._name, "'")); } @Override // c.g.a.c.c0.i @@ -73,9 +73,9 @@ public class f0 extends i implements Serializable { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("[virtual "); - P.append(h()); - P.append("]"); - return P.toString(); + StringBuilder O = a.O("[virtual "); + O.append(h()); + O.append("]"); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/c0/g.java b/app/src/main/java/c/g/a/c/c0/g.java index b8c37220fe..dedd98f39d 100644 --- a/app/src/main/java/c/g/a/c/c0/g.java +++ b/app/src/main/java/c/g/a/c/c0/g.java @@ -77,11 +77,11 @@ public final class g extends i implements Serializable { try { return this.k.get(obj); } catch (IllegalAccessException e) { - StringBuilder P = c.d.b.a.a.P("Failed to getValue() for field "); - P.append(h()); - P.append(": "); - P.append(e.getMessage()); - throw new IllegalArgumentException(P.toString(), e); + StringBuilder O = c.d.b.a.a.O("Failed to getValue() for field "); + O.append(h()); + O.append(": "); + O.append(e.getMessage()); + throw new IllegalArgumentException(O.toString(), e); } } @@ -100,20 +100,20 @@ public final class g extends i implements Serializable { } return new g(null, declaredField, null); } catch (Exception unused) { - StringBuilder P = c.d.b.a.a.P("Could not find method '"); - P.append(this._serialization.name); - P.append("' from Class '"); - P.append(cls.getName()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Could not find method '"); + O.append(this._serialization.name); + O.append("' from Class '"); + O.append(cls.getName()); + throw new IllegalArgumentException(O.toString()); } } @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("[field "); - P.append(h()); - P.append("]"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("[field "); + O.append(h()); + O.append("]"); + return O.toString(); } public Object writeReplace() { diff --git a/app/src/main/java/c/g/a/c/c0/h.java b/app/src/main/java/c/g/a/c/c0/h.java index 67b138c3b8..f1a887c136 100644 --- a/app/src/main/java/c/g/a/c/c0/h.java +++ b/app/src/main/java/c/g/a/c/c0/h.java @@ -25,7 +25,7 @@ public class h extends u { public final Field b; /* renamed from: c reason: collision with root package name */ - public o f548c = o.a.f550c; + public o f549c = o.a.f551c; public a(e0 e0Var, Field field) { this.a = e0Var; @@ -58,7 +58,7 @@ public class h extends u { } a aVar3 = new a(e0Var, field); if (this.f) { - aVar3.f548c = b(aVar3.f548c, field.getDeclaredAnnotations()); + aVar3.f549c = b(aVar3.f549c, field.getDeclaredAnnotations()); } f.put(field.getName(), aVar3); } @@ -69,7 +69,7 @@ public class h extends u { Field[] declaredFields2 = ((Class) it.next()).getDeclaredFields(); for (Field field2 : declaredFields2) { if (g(field2) && (aVar2 = f.get(field2.getName())) != null) { - aVar2.f548c = b(aVar2.f548c, field2.getDeclaredAnnotations()); + aVar2.f549c = b(aVar2.f549c, field2.getDeclaredAnnotations()); } } } diff --git a/app/src/main/java/c/g/a/c/c0/j.java b/app/src/main/java/c/g/a/c/c0/j.java index f36a14b975..4c89562c4c 100644 --- a/app/src/main/java/c/g/a/c/c0/j.java +++ b/app/src/main/java/c/g/a/c/c0/j.java @@ -80,10 +80,10 @@ public final class j extends n implements Serializable { if (o != 1) { return String.format("%s(%d params)", super.h(), Integer.valueOf(o())); } - StringBuilder U = c.d.b.a.a.U(h, "("); - U.append(p(0).getName()); - U.append(")"); - return U.toString(); + StringBuilder S = c.d.b.a.a.S(h, "("); + S.append(p(0).getName()); + S.append(")"); + return S.toString(); } @Override // c.g.a.c.c0.b @@ -101,11 +101,11 @@ public final class j extends n implements Serializable { try { return this.k.invoke(obj, null); } catch (IllegalAccessException | InvocationTargetException e) { - StringBuilder P = c.d.b.a.a.P("Failed to getValue() with method "); - P.append(h()); - P.append(": "); - P.append(e.getMessage()); - throw new IllegalArgumentException(P.toString(), e); + StringBuilder O = c.d.b.a.a.O("Failed to getValue() with method "); + O.append(h()); + O.append(": "); + O.append(e.getMessage()); + throw new IllegalArgumentException(O.toString(), e); } } @@ -151,20 +151,20 @@ public final class j extends n implements Serializable { } return new j(null, declaredMethod, null, null); } catch (Exception unused) { - StringBuilder P = c.d.b.a.a.P("Could not find method '"); - P.append(this._serialization.name); - P.append("' from Class '"); - P.append(cls.getName()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Could not find method '"); + O.append(this._serialization.name); + O.append("' from Class '"); + O.append(cls.getName()); + throw new IllegalArgumentException(O.toString()); } } @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("[method "); - P.append(h()); - P.append("]"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("[method "); + O.append(h()); + O.append("]"); + return O.toString(); } public Object writeReplace() { diff --git a/app/src/main/java/c/g/a/c/c0/k.java b/app/src/main/java/c/g/a/c/c0/k.java index 6aac9d888f..aeb909d703 100644 --- a/app/src/main/java/c/g/a/c/c0/k.java +++ b/app/src/main/java/c/g/a/c/c0/k.java @@ -22,12 +22,12 @@ public class k extends u { public Method b; /* renamed from: c reason: collision with root package name */ - public o f549c; + public o f550c; public a(e0 e0Var, Method method, o oVar) { this.a = e0Var; this.b = method; - this.f549c = oVar; + this.f550c = oVar; } } @@ -52,10 +52,10 @@ public class k extends u { y yVar = new y(method); a aVar = map.get(yVar); if (aVar == null) { - map.put(yVar, new a(e0Var, method, this.f554c == null ? o.a.f550c : c(method.getDeclaredAnnotations()))); + map.put(yVar, new a(e0Var, method, this.f555c == null ? o.a.f551c : c(method.getDeclaredAnnotations()))); } else { if (this.e) { - aVar.f549c = d(aVar.f549c, method.getDeclaredAnnotations()); + aVar.f550c = d(aVar.f550c, method.getDeclaredAnnotations()); } Method method2 = aVar.b; if (method2 == null) { @@ -72,7 +72,7 @@ public class k extends u { public void g(e0 e0Var, Class cls, Map map, Class cls2) { List list; - if (this.f554c != null) { + if (this.f555c != null) { Annotation[] annotationArr = d.a; if (cls2 == cls || cls2 == Object.class) { list = Collections.emptyList(); @@ -90,7 +90,7 @@ public class k extends u { if (aVar == null) { map.put(yVar, new a(e0Var, null, c(declaredAnnotations))); } else { - aVar.f549c = d(aVar.f549c, declaredAnnotations); + aVar.f550c = d(aVar.f550c, declaredAnnotations); } } } diff --git a/app/src/main/java/c/g/a/c/c0/m.java b/app/src/main/java/c/g/a/c/c0/m.java index 4303a52969..e74d30bec9 100644 --- a/app/src/main/java/c/g/a/c/c0/m.java +++ b/app/src/main/java/c/g/a/c/c0/m.java @@ -62,9 +62,9 @@ public final class m extends i { @Override // c.g.a.c.c0.i public Object j(Object obj) throws UnsupportedOperationException { - StringBuilder P = a.P("Cannot call getValue() on constructor parameter of "); - P.append(g().getName()); - throw new UnsupportedOperationException(P.toString()); + StringBuilder O = a.O("Cannot call getValue() on constructor parameter of "); + O.append(g().getName()); + throw new UnsupportedOperationException(O.toString()); } @Override // c.g.a.c.c0.i @@ -80,11 +80,11 @@ public final class m extends i { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("[parameter #"); - P.append(this._index); - P.append(", annotations: "); - P.append(this.j); - P.append("]"); - return P.toString(); + StringBuilder O = a.O("[parameter #"); + O.append(this._index); + O.append(", annotations: "); + O.append(this.j); + O.append("]"); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/c0/o.java b/app/src/main/java/c/g/a/c/c0/o.java index f2b7f5f36d..9f3536034c 100644 --- a/app/src/main/java/c/g/a/c/c0/o.java +++ b/app/src/main/java/c/g/a/c/c0/o.java @@ -14,7 +14,7 @@ public abstract class o { public static class a extends o { /* renamed from: c reason: collision with root package name */ - public static final a f550c = new a(null); + public static final a f551c = new a(null); public a(Object obj) { super(null); @@ -45,26 +45,26 @@ public abstract class o { public static class b extends o { /* renamed from: c reason: collision with root package name */ - public final HashMap, Annotation> f551c; + public final HashMap, Annotation> f552c; public b(Object obj, Class cls, Annotation annotation, Class cls2, Annotation annotation2) { super(obj); HashMap, Annotation> hashMap = new HashMap<>(); - this.f551c = hashMap; + this.f552c = hashMap; hashMap.put(cls, annotation); hashMap.put(cls2, annotation2); } @Override // c.g.a.c.c0.o public o a(Annotation annotation) { - this.f551c.put(annotation.annotationType(), annotation); + this.f552c.put(annotation.annotationType(), annotation); return this; } @Override // c.g.a.c.c0.o public p b() { p pVar = new p(); - for (Annotation annotation : this.f551c.values()) { + for (Annotation annotation : this.f552c.values()) { if (pVar.i == null) { pVar.i = new HashMap<>(); } @@ -78,10 +78,10 @@ public abstract class o { @Override // c.g.a.c.c0.o public c.g.a.c.i0.a c() { - if (this.f551c.size() != 2) { - return new p(this.f551c); + if (this.f552c.size() != 2) { + return new p(this.f552c); } - Iterator, Annotation>> it = this.f551c.entrySet().iterator(); + Iterator, Annotation>> it = this.f552c.entrySet().iterator(); Map.Entry, Annotation> next = it.next(); Map.Entry, Annotation> next2 = it.next(); return new f(next.getKey(), next.getValue(), next2.getKey(), next2.getValue()); @@ -89,7 +89,7 @@ public abstract class o { @Override // c.g.a.c.c0.o public boolean d(Annotation annotation) { - return this.f551c.containsKey(annotation.annotationType()); + return this.f552c.containsKey(annotation.annotationType()); } } @@ -137,19 +137,19 @@ public abstract class o { public static class e extends o { /* renamed from: c reason: collision with root package name */ - public Class f552c; + public Class f553c; public Annotation d; public e(Object obj, Class cls, Annotation annotation) { super(obj); - this.f552c = cls; + this.f553c = cls; this.d = annotation; } @Override // c.g.a.c.c0.o public o a(Annotation annotation) { Class annotationType = annotation.annotationType(); - Class cls = this.f552c; + Class cls = this.f553c; if (cls != annotationType) { return new b(this.b, cls, this.d, annotationType, annotation); } @@ -159,7 +159,7 @@ public abstract class o { @Override // c.g.a.c.c0.o public p b() { - Class cls = this.f552c; + Class cls = this.f553c; Annotation annotation = this.d; HashMap hashMap = new HashMap(4); hashMap.put(cls, annotation); @@ -168,12 +168,12 @@ public abstract class o { @Override // c.g.a.c.c0.o public c.g.a.c.i0.a c() { - return new d(this.f552c, this.d); + return new d(this.f553c, this.d); } @Override // c.g.a.c.c0.o public boolean d(Annotation annotation) { - return annotation.annotationType() == this.f552c; + return annotation.annotationType() == this.f553c; } } diff --git a/app/src/main/java/c/g/a/c/c0/q.java b/app/src/main/java/c/g/a/c/c0/q.java index e479545adb..06388f6a23 100644 --- a/app/src/main/java/c/g/a/c/c0/q.java +++ b/app/src/main/java/c/g/a/c/c0/q.java @@ -15,7 +15,7 @@ public class q extends c { public static final Class[] b = new Class[0]; /* renamed from: c reason: collision with root package name */ - public final b0 f553c; + public final b0 f554c; public final l d; public final b e; public final c f; @@ -29,7 +29,7 @@ public class q extends c { super(r0); j jVar = b0Var.d; c cVar = b0Var.e; - this.f553c = b0Var; + this.f554c = b0Var; l lVar = b0Var.a; this.d = lVar; if (lVar == null) { @@ -44,7 +44,7 @@ public class q extends c { public q(l lVar, j jVar, c cVar, List list) { super(jVar); - this.f553c = null; + this.f554c = null; this.d = lVar; if (lVar == null) { this.e = null; @@ -72,7 +72,7 @@ public class q extends c { @Override // c.g.a.c.c public i b() { - b0 b0Var = this.f553c; + b0 b0Var = this.f554c; if (b0Var == null) { return null; } @@ -99,7 +99,7 @@ public class q extends c { public List d() { if (this.i == null) { - b0 b0Var = this.f553c; + b0 b0Var = this.f554c; if (!b0Var.i) { b0Var.h(); } diff --git a/app/src/main/java/c/g/a/c/c0/u.java b/app/src/main/java/c/g/a/c/c0/u.java index de27f7d1cb..2891cfb79c 100644 --- a/app/src/main/java/c/g/a/c/c0/u.java +++ b/app/src/main/java/c/g/a/c/c0/u.java @@ -12,10 +12,10 @@ public class u { public static final Annotation[] b = new Annotation[0]; /* renamed from: c reason: collision with root package name */ - public final b f554c; + public final b f555c; public u(b bVar) { - this.f554c = bVar; + this.f555c = bVar; } public static p[] a(int i) { @@ -32,7 +32,7 @@ public class u { public final o b(o oVar, Annotation[] annotationArr) { for (Annotation annotation : annotationArr) { oVar = oVar.a(annotation); - if (this.f554c.b0(annotation)) { + if (this.f555c.b0(annotation)) { oVar = e(oVar, annotation); } } @@ -40,10 +40,10 @@ public class u { } public final o c(Annotation[] annotationArr) { - o oVar = o.a.f550c; + o oVar = o.a.f551c; for (Annotation annotation : annotationArr) { oVar = oVar.a(annotation); - if (this.f554c.b0(annotation)) { + if (this.f555c.b0(annotation)) { oVar = e(oVar, annotation); } } @@ -54,12 +54,12 @@ public class u { for (Annotation annotation : annotationArr) { if (!oVar.d(annotation)) { oVar = oVar.a(annotation); - if (this.f554c.b0(annotation)) { + if (this.f555c.b0(annotation)) { Annotation[] i = d.i(annotation.annotationType()); for (Annotation annotation2 : i) { if (!((annotation2 instanceof Target) || (annotation2 instanceof Retention)) && !oVar.d(annotation2)) { oVar = oVar.a(annotation2); - if (this.f554c.b0(annotation2)) { + if (this.f555c.b0(annotation2)) { oVar = e(oVar, annotation2); } } @@ -74,7 +74,7 @@ public class u { Annotation[] i = d.i(annotation.annotationType()); for (Annotation annotation2 : i) { if (!((annotation2 instanceof Target) || (annotation2 instanceof Retention))) { - if (!this.f554c.b0(annotation2)) { + if (!this.f555c.b0(annotation2)) { oVar = oVar.a(annotation2); } else if (!oVar.d(annotation2)) { oVar = e(oVar.a(annotation2), annotation2); diff --git a/app/src/main/java/c/g/a/c/c0/v.java b/app/src/main/java/c/g/a/c/c0/v.java index 05db3492cd..7f94684735 100644 --- a/app/src/main/java/c/g/a/c/c0/v.java +++ b/app/src/main/java/c/g/a/c/c0/v.java @@ -26,7 +26,7 @@ public abstract class v implements d, Serializable { i.d i = lVar.i(cls); b e = lVar.e(); i.d h = (e == null || (member = getMember()) == null) ? null : e.h(member); - return i == null ? h == null ? d.f557c : h : h == null ? i : i.k(h); + return i == null ? h == null ? d.f558c : h : h == null ? i : i.k(h); } @Override // c.g.a.c.d diff --git a/app/src/main/java/c/g/a/c/c0/w.java b/app/src/main/java/c/g/a/c/c0/w.java index 9cceef7fb8..b4a12cbbfd 100644 --- a/app/src/main/java/c/g/a/c/c0/w.java +++ b/app/src/main/java/c/g/a/c/c0/w.java @@ -14,7 +14,7 @@ public class w extends a { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final String f555c; + public final String f556c; public final String d; public final String e; @@ -45,7 +45,7 @@ public class w extends a { c.g.a.c.d0.a aVar = c.g.a.c.d0.a.a; Objects.requireNonNull(aVar); try { - Object[] objArr = (Object[]) aVar.f558c.invoke(cls, new Object[0]); + Object[] objArr = (Object[]) aVar.f559c.invoke(cls, new Object[0]); int length = objArr.length; String[] strArr = new String[length]; for (int i = 0; i < objArr.length; i++) { @@ -59,9 +59,9 @@ public class w extends a { this.f.add(strArr[i2]); } } catch (Exception unused) { - StringBuilder P = c.d.b.a.a.P("Failed to access RecordComponents of type "); - P.append(d.u(cls)); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Failed to access RecordComponents of type "); + O.append(d.u(cls)); + throw new IllegalArgumentException(O.toString()); } } else { throw runtimeException; @@ -77,7 +77,7 @@ public class w extends a { public w(l lVar, c cVar, String str, String str2, String str3, a aVar) { this.b = lVar.q(p.USE_STD_BEAN_NAMING); this.e = str; - this.f555c = str2; + this.f556c = str2; this.d = str3; this.a = aVar; } @@ -105,7 +105,7 @@ public class w extends a { @Override // c.g.a.c.c0.a public String c(j jVar, String str) { - String str2 = this.f555c; + String str2 = this.f556c; if (str2 == null || !str.startsWith(str2)) { return null; } @@ -124,7 +124,7 @@ public class w extends a { } else if ("getMetaClass".equals(str) && jVar.d().getName().startsWith("groovy.lang")) { return null; } - return this.b ? e(str, this.f555c.length()) : d(str, this.f555c.length()); + return this.b ? e(str, this.f556c.length()) : d(str, this.f556c.length()); } public String d(String str, int i) { diff --git a/app/src/main/java/c/g/a/c/c0/x.java b/app/src/main/java/c/g/a/c/c0/x.java index 8ec1225021..3f5e309359 100644 --- a/app/src/main/java/c/g/a/c/c0/x.java +++ b/app/src/main/java/c/g/a/c/c0/x.java @@ -356,7 +356,7 @@ public class x extends b implements Serializable { @Override // c.g.a.c.b public void a(l lVar, c cVar, List list) { - c.g.a.c.y.b bVar = (c.g.a.c.y.b) cVar.f543s.a(c.g.a.c.y.b.class); + c.g.a.c.y.b bVar = (c.g.a.c.y.b) cVar.f544s.a(c.g.a.c.y.b.class); if (bVar != null) { boolean prepend = bVar.prepend(); b.a[] attrs = bVar.attrs(); @@ -375,7 +375,7 @@ public class x extends b implements Serializable { if (!j02.c()) { j02 = c.g.a.c.t.a(value); } - a aVar2 = new a(value, c.g.a.c.i0.q.w(lVar, new f0(cVar, cVar.k, value, jVar), j02, sVar, aVar.include()), cVar.f543s, jVar); + a aVar2 = new a(value, c.g.a.c.i0.q.w(lVar, new f0(cVar, cVar.k, value, jVar), j02, sVar, aVar.include()), cVar.f544s, jVar); if (prepend) { list.add(i2, aVar2); } else { @@ -900,7 +900,7 @@ public class x extends b implements Serializable { a0Var = a0.a; } boolean alwaysAsId = lVar.alwaysAsId(); - return a0Var.f == alwaysAsId ? a0Var : new a0(a0Var.b, a0Var.e, a0Var.f540c, alwaysAsId, a0Var.d); + return a0Var.f == alwaysAsId ? a0Var : new a0(a0Var.b, a0Var.e, a0Var.f541c, alwaysAsId, a0Var.d); } @Override // c.g.a.c.b diff --git a/app/src/main/java/c/g/a/c/c0/y.java b/app/src/main/java/c/g/a/c/c0/y.java index 81dc4a6696..1c07824789 100644 --- a/app/src/main/java/c/g/a/c/c0/y.java +++ b/app/src/main/java/c/g/a/c/c0/y.java @@ -9,19 +9,19 @@ public final class y { public final String b; /* renamed from: c reason: collision with root package name */ - public final Class[] f556c; + public final Class[] f557c; public y(Constructor constructor) { Class[] parameterTypes = constructor.getParameterTypes(); this.b = ""; - this.f556c = parameterTypes == null ? a : parameterTypes; + this.f557c = parameterTypes == null ? a : parameterTypes; } public y(Method method) { String name = method.getName(); Class[] parameterTypes = method.getParameterTypes(); this.b = name; - this.f556c = parameterTypes == null ? a : parameterTypes; + this.f557c = parameterTypes == null ? a : parameterTypes; } public boolean equals(Object obj) { @@ -35,13 +35,13 @@ public final class y { if (!this.b.equals(yVar.b)) { return false; } - Class[] clsArr = yVar.f556c; - int length = this.f556c.length; + Class[] clsArr = yVar.f557c; + int length = this.f557c.length; if (clsArr.length != length) { return false; } for (int i = 0; i < length; i++) { - if (clsArr[i] != this.f556c[i]) { + if (clsArr[i] != this.f557c[i]) { return false; } } @@ -49,13 +49,13 @@ public final class y { } public int hashCode() { - return this.b.hashCode() + this.f556c.length; + return this.b.hashCode() + this.f557c.length; } public String toString() { StringBuilder sb = new StringBuilder(); sb.append(this.b); sb.append("("); - return a.z(sb, this.f556c.length, "-args)"); + return a.z(sb, this.f557c.length, "-args)"); } } diff --git a/app/src/main/java/c/g/a/c/d.java b/app/src/main/java/c/g/a/c/d.java index b157501993..0257feb83f 100644 --- a/app/src/main/java/c/g/a/c/d.java +++ b/app/src/main/java/c/g/a/c/d.java @@ -8,7 +8,7 @@ import java.io.Serializable; public interface d { /* renamed from: c reason: collision with root package name */ - public static final i.d f557c = new i.d("", i.c.ANY, "", "", i.b.a, null); + public static final i.d f558c = new i.d("", i.c.ANY, "", "", i.b.a, null); /* compiled from: BeanProperty */ public static class a implements d, Serializable { diff --git a/app/src/main/java/c/g/a/c/d0/a.java b/app/src/main/java/c/g/a/c/d0/a.java index bc42fbab5d..f6361f10fe 100644 --- a/app/src/main/java/c/g/a/c/d0/a.java +++ b/app/src/main/java/c/g/a/c/d0/a.java @@ -7,7 +7,7 @@ public class a { public static final RuntimeException b; /* renamed from: c reason: collision with root package name */ - public final Method f558c; + public final Method f559c; public final Method d; static { @@ -25,7 +25,7 @@ public class a { public a() throws RuntimeException { try { - this.f558c = Class.class.getMethod("getRecordComponents", new Class[0]); + this.f559c = Class.class.getMethod("getRecordComponents", new Class[0]); Class cls = Class.forName("java.lang.reflect.RecordComponent"); this.d = cls.getMethod("getName", new Class[0]); cls.getMethod("getType", new Class[0]); diff --git a/app/src/main/java/c/g/a/c/e.java b/app/src/main/java/c/g/a/c/e.java index 67ccf20a54..49e2fa6976 100644 --- a/app/src/main/java/c/g/a/c/e.java +++ b/app/src/main/java/c/g/a/c/e.java @@ -40,18 +40,18 @@ public abstract class e { Objects.requireNonNull(vVar._base); return (c.g.a.c.i0.e) d.g(cls, vVar.b()); } - throw new IllegalStateException(a.j(cls, a.P("AnnotationIntrospector returned Class "), "; expected Class")); + throw new IllegalStateException(a.j(cls, a.O("AnnotationIntrospector returned Class "), "; expected Class")); } - StringBuilder P = a.P("AnnotationIntrospector returned Converter definition of type "); - P.append(obj.getClass().getName()); - P.append("; expected type Converter or Class instead"); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("AnnotationIntrospector returned Converter definition of type "); + O.append(obj.getClass().getName()); + O.append("; expected type Converter or Class instead"); + throw new IllegalStateException(O.toString()); } public abstract n d(); public i0 e(b bVar, a0 a0Var) throws JsonMappingException { - Class> cls = a0Var.f540c; + Class> cls = a0Var.f541c; v vVar = ((x) this)._config; Objects.requireNonNull(vVar._base); return ((i0) d.g(cls, vVar.b())).b(a0Var.e); diff --git a/app/src/main/java/c/g/a/c/e0/b.java b/app/src/main/java/c/g/a/c/e0/b.java index 05d10306db..5ba2a76eaa 100644 --- a/app/src/main/java/c/g/a/c/e0/b.java +++ b/app/src/main/java/c/g/a/c/e0/b.java @@ -39,8 +39,8 @@ public final class b implements Serializable { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("[NamedType, class "); - a.g0(this._class, P, ", name: "); - return a.H(P, this._name == null ? "null" : a.H(a.P("'"), this._name, "'"), "]"); + StringBuilder O = a.O("[NamedType, class "); + a.f0(this._class, O, ", name: "); + return a.G(O, this._name == null ? "null" : a.G(a.O("'"), this._name, "'"), "]"); } } diff --git a/app/src/main/java/c/g/a/c/e0/h/b.java b/app/src/main/java/c/g/a/c/e0/h/b.java index 9037caac28..0bcd68296d 100644 --- a/app/src/main/java/c/g/a/c/e0/h/b.java +++ b/app/src/main/java/c/g/a/c/e0/h/b.java @@ -16,6 +16,6 @@ public class b extends d { /* renamed from: i */ public b h(d dVar) { - return this.b == dVar ? this : new b(this.a, dVar, this.f560c); + return this.b == dVar ? this : new b(this.a, dVar, this.f561c); } } diff --git a/app/src/main/java/c/g/a/c/e0/h/c.java b/app/src/main/java/c/g/a/c/e0/h/c.java index c7ae97fa51..3f7e1ead59 100644 --- a/app/src/main/java/c/g/a/c/e0/h/c.java +++ b/app/src/main/java/c/g/a/c/e0/h/c.java @@ -8,21 +8,21 @@ import c.g.a.c.e0.g; public class c extends m { /* renamed from: c reason: collision with root package name */ - public final String f559c; + public final String f560c; public c(e eVar, d dVar, String str) { super(eVar, dVar); - this.f559c = str; + this.f560c = str; } @Override // c.g.a.c.e0.g public g a(d dVar) { - return this.b == dVar ? this : new c(this.a, dVar, this.f559c); + return this.b == dVar ? this : new c(this.a, dVar, this.f560c); } @Override // c.g.a.c.e0.h.m, c.g.a.c.e0.g public String b() { - return this.f559c; + return this.f560c; } @Override // c.g.a.c.e0.g diff --git a/app/src/main/java/c/g/a/c/e0/h/d.java b/app/src/main/java/c/g/a/c/e0/h/d.java index b8a36b9fef..54435a30fb 100644 --- a/app/src/main/java/c/g/a/c/e0/h/d.java +++ b/app/src/main/java/c/g/a/c/e0/h/d.java @@ -6,16 +6,16 @@ import c.g.a.c.e0.e; public class d extends a { /* renamed from: c reason: collision with root package name */ - public final String f560c; + public final String f561c; public d(e eVar, c.g.a.c.d dVar, String str) { super(eVar, dVar); - this.f560c = str; + this.f561c = str; } @Override // c.g.a.c.e0.h.m, c.g.a.c.e0.g public String b() { - return this.f560c; + return this.f561c; } @Override // c.g.a.c.e0.h.a, c.g.a.c.e0.g @@ -25,6 +25,6 @@ public class d extends a { /* renamed from: h */ public d g(c.g.a.c.d dVar) { - return this.b == dVar ? this : new d(this.a, dVar, this.f560c); + return this.b == dVar ? this : new d(this.a, dVar, this.f561c); } } diff --git a/app/src/main/java/c/g/a/c/e0/h/f.java b/app/src/main/java/c/g/a/c/e0/h/f.java index 9d2a603cc7..c595b5ed57 100644 --- a/app/src/main/java/c/g/a/c/e0/h/f.java +++ b/app/src/main/java/c/g/a/c/e0/h/f.java @@ -69,11 +69,11 @@ public class f extends k { } else if (length == 1) { mVar2 = new m(new String[]{typeParameters[0].getName()}, new j[]{c2}, null); } else { - StringBuilder P = a.P("Cannot create TypeBindings for class "); - P.append(EnumSet.class.getName()); - P.append(" with 1 type parameter: class expects "); - P.append(length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Cannot create TypeBindings for class "); + O.append(EnumSet.class.getName()); + O.append(" with 1 type parameter: class expects "); + O.append(length); + throw new IllegalArgumentException(O.toString()); } e eVar = (e) nVar.c(null, EnumSet.class, mVar2); if (mVar2.i()) { @@ -90,7 +90,7 @@ public class f extends k { if (!enumMap.isEmpty()) { cls2 = ((Enum) enumMap.keySet().iterator().next()).getDeclaringClass(); } else { - Field field2 = d.b.a.f584c; + Field field2 = d.b.a.f585c; if (field2 != null) { try { cls2 = (Class) field2.get(enumMap); @@ -103,7 +103,7 @@ public class f extends k { } Objects.requireNonNull(nVar); if (EnumMap.class == Properties.class) { - jVar2 = n.f579x; + jVar2 = n.f580x; jVar = jVar2; } else { m mVar3 = n.k; @@ -124,15 +124,15 @@ public class f extends k { if (length2 == 2) { mVar = new m(strArr3, jVarArr, null); } else { - StringBuilder P2 = a.P("Cannot create TypeBindings for class "); - P2.append(EnumMap.class.getName()); - P2.append(" with "); - P2.append(2); - P2.append(" type parameter"); - P2.append("s"); - P2.append(": class expects "); - P2.append(length2); - throw new IllegalArgumentException(P2.toString()); + StringBuilder O2 = a.O("Cannot create TypeBindings for class "); + O2.append(EnumMap.class.getName()); + O2.append(" with "); + O2.append(2); + O2.append(" type parameter"); + O2.append("s"); + O2.append(": class expects "); + O2.append(length2); + throw new IllegalArgumentException(O2.toString()); } } g gVar = (g) nVar.c(null, EnumMap.class, mVar); diff --git a/app/src/main/java/c/g/a/c/e0/h/h.java b/app/src/main/java/c/g/a/c/e0/h/h.java index f7a6705ada..4f54791b45 100644 --- a/app/src/main/java/c/g/a/c/e0/h/h.java +++ b/app/src/main/java/c/g/a/c/e0/h/h.java @@ -7,23 +7,23 @@ import c.g.a.c.j; public class h extends f { /* renamed from: c reason: collision with root package name */ - public final String f561c; + public final String f562c; public h(j jVar, n nVar, c cVar) { super(jVar, nVar, cVar); String name = jVar._class.getName(); int lastIndexOf = name.lastIndexOf(46); if (lastIndexOf < 0) { - this.f561c = "."; + this.f562c = "."; return; } - this.f561c = name.substring(0, lastIndexOf + 1); + this.f562c = name.substring(0, lastIndexOf + 1); name.substring(0, lastIndexOf); } @Override // c.g.a.c.e0.h.f, c.g.a.c.e0.e public String a(Object obj) { String name = obj.getClass().getName(); - return name.startsWith(this.f561c) ? name.substring(this.f561c.length() - 1) : name; + return name.startsWith(this.f562c) ? name.substring(this.f562c.length() - 1) : name; } } diff --git a/app/src/main/java/c/g/a/c/e0/h/j.java b/app/src/main/java/c/g/a/c/e0/h/j.java index da1084f099..fe39609c83 100644 --- a/app/src/main/java/c/g/a/c/e0/h/j.java +++ b/app/src/main/java/c/g/a/c/e0/h/j.java @@ -76,9 +76,9 @@ public class j implements f { } eVar = new l(vVar, jVar, concurrentHashMap, null); } else if (ordinal != 4) { - StringBuilder P = c.d.b.a.a.P("Do not know how to construct standard type id resolver for idType: "); - P.append(this._idType); - throw new IllegalStateException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Do not know how to construct standard type id resolver for idType: "); + O.append(this._idType); + throw new IllegalStateException(O.toString()); } } eVar = new f(jVar, vVar._base._typeFactory, cVar); @@ -108,9 +108,9 @@ public class j implements f { if (ordinal2 == 4) { return new b(eVar, null, this._typeProperty); } - StringBuilder P2 = c.d.b.a.a.P("Do not know how to construct standard type serializer for inclusion type: "); - P2.append(this._includeAs); - throw new IllegalStateException(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Do not know how to construct standard type serializer for inclusion type: "); + O2.append(this._includeAs); + throw new IllegalStateException(O2.toString()); } /* Return type fixed from 'c.g.a.c.e0.f' to match base method */ diff --git a/app/src/main/java/c/g/a/c/e0/h/l.java b/app/src/main/java/c/g/a/c/e0/h/l.java index d9b5c829d1..d0e648a312 100644 --- a/app/src/main/java/c/g/a/c/e0/h/l.java +++ b/app/src/main/java/c/g/a/c/e0/h/l.java @@ -11,13 +11,13 @@ import java.util.concurrent.ConcurrentHashMap; public class l extends k { /* renamed from: c reason: collision with root package name */ - public final c.g.a.c.z.l f562c; + public final c.g.a.c.z.l f563c; public final ConcurrentHashMap d; public final Map e; public l(c.g.a.c.z.l lVar, j jVar, ConcurrentHashMap concurrentHashMap, HashMap hashMap) { super(jVar, lVar._base._typeFactory); - this.f562c = lVar; + this.f563c = lVar; this.d = concurrentHashMap; this.e = hashMap; lVar.q(p.ACCEPT_CASE_INSENSITIVE_VALUES); @@ -47,8 +47,8 @@ public class l extends k { String str = this.d.get(name); if (str == null) { Class cls2 = this.a.b(null, cls, n.k)._class; - if (this.f562c.p()) { - str = this.f562c.e().O(((q) this.f562c.o(cls2)).f); + if (this.f563c.p()) { + str = this.f563c.e().O(((q) this.f563c.o(cls2)).f); } if (str == null) { str = d(cls2); diff --git a/app/src/main/java/c/g/a/c/e0/h/m.java b/app/src/main/java/c/g/a/c/e0/h/m.java index 5c30cc3107..95d490a638 100644 --- a/app/src/main/java/c/g/a/c/e0/h/m.java +++ b/app/src/main/java/c/g/a/c/e0/h/m.java @@ -24,13 +24,13 @@ public abstract class m extends g { @Override // c.g.a.c.e0.g public b e(c.g.a.b.d dVar, b bVar) throws IOException { - if (bVar.f537c == null) { + if (bVar.f538c == null) { Object obj = bVar.a; Class cls = bVar.b; - bVar.f537c = cls == null ? this.a.a(obj) : this.a.c(obj, cls); + bVar.f538c = cls == null ? this.a.a(obj) : this.a.c(obj, cls); } Objects.requireNonNull(dVar); - Object obj2 = bVar.f537c; + Object obj2 = bVar.f538c; h hVar = bVar.f; String valueOf = obj2 instanceof String ? (String) obj2 : String.valueOf(obj2); bVar.g = true; @@ -81,7 +81,7 @@ public abstract class m extends g { if (h != 4) { dVar.w(); } else { - Object obj = bVar.f537c; + Object obj = bVar.f538c; String valueOf = obj instanceof String ? (String) obj : String.valueOf(obj); dVar.z(bVar.d); dVar.l0(valueOf); diff --git a/app/src/main/java/c/g/a/c/g0/a.java b/app/src/main/java/c/g/a/c/g0/a.java index 5a79ee1164..44939ac87d 100644 --- a/app/src/main/java/c/g/a/c/g0/a.java +++ b/app/src/main/java/c/g/a/c/g0/a.java @@ -12,13 +12,13 @@ public class a { public final i b; /* renamed from: c reason: collision with root package name */ - public n f563c; + public n f564c; public t d; public a(d dVar, i iVar, n nVar) { this.b = iVar; this.a = dVar; - this.f563c = nVar; + this.f564c = nVar; if (nVar instanceof t) { this.d = (t) nVar; } @@ -32,7 +32,7 @@ public class a { if (tVar != null) { tVar.u((Map) j, dVar, xVar); } else { - this.f563c.f(j, dVar, xVar); + this.f564c.f(j, dVar, xVar); } } else { xVar.f(this.a.getType(), String.format("Value returned by 'any-getter' %s() not java.util.Map but %s", this.b.c(), j.getClass().getName())); diff --git a/app/src/main/java/c/g/a/c/g0/b.java b/app/src/main/java/c/g/a/c/g0/b.java index c294abbe07..83836aef21 100644 --- a/app/src/main/java/c/g/a/c/g0/b.java +++ b/app/src/main/java/c/g/a/c/g0/b.java @@ -185,7 +185,7 @@ public abstract class b extends q implements Serializable { } else if (cls == Character.TYPE) { cls = Character.class; } else { - throw new IllegalArgumentException(a.j(cls, a.P("Class "), " is not a primitive type")); + throw new IllegalArgumentException(a.j(cls, a.O("Class "), " is not a primitive type")); } } if (cls == Integer.class) { @@ -210,7 +210,7 @@ public abstract class b extends q implements Serializable { H = aVar; } if (H == null) { - c.g.a.c.c0.b0 b0Var = qVar.f553c; + c.g.a.c.c0.b0 b0Var = qVar.f554c; if (b0Var != null) { if (!b0Var.i) { b0Var.h(); diff --git a/app/src/main/java/c/g/a/c/g0/c.java b/app/src/main/java/c/g/a/c/g0/c.java index 922e880d26..812188fb57 100644 --- a/app/src/main/java/c/g/a/c/g0/c.java +++ b/app/src/main/java/c/g/a/c/g0/c.java @@ -335,9 +335,9 @@ public class c extends n implements Serializable { if (this._serializer == null) { sb.append(", no static serializer"); } else { - StringBuilder P = c.d.b.a.a.P(", static serializer of type "); - P.append(this._serializer.getClass().getName()); - sb.append(P.toString()); + StringBuilder O = c.d.b.a.a.O(", static serializer of type "); + O.append(this._serializer.getClass().getName()); + sb.append(O.toString()); } sb.append(')'); return sb.toString(); diff --git a/app/src/main/java/c/g/a/c/g0/d.java b/app/src/main/java/c/g/a/c/g0/d.java index 82981a33d3..5f70f231e5 100644 --- a/app/src/main/java/c/g/a/c/g0/d.java +++ b/app/src/main/java/c/g/a/c/g0/d.java @@ -60,9 +60,9 @@ public class d extends c.g.a.c.g0.u.d { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("BeanSerializer for "); - P.append(this._handledType.getName()); - return P.toString(); + StringBuilder O = a.O("BeanSerializer for "); + O.append(this._handledType.getName()); + return O.toString(); } @Override // c.g.a.c.g0.u.d diff --git a/app/src/main/java/c/g/a/c/g0/e.java b/app/src/main/java/c/g/a/c/g0/e.java index fe0923c51a..b6a5e5d919 100644 --- a/app/src/main/java/c/g/a/c/g0/e.java +++ b/app/src/main/java/c/g/a/c/g0/e.java @@ -14,7 +14,7 @@ public class e { public final c b; /* renamed from: c reason: collision with root package name */ - public v f564c; + public v f565c; public List d = Collections.emptyList(); public c[] e; public a f; @@ -28,20 +28,20 @@ public class e { public n a() { c[] cVarArr; - if (this.h != null && this.f564c.q(p.CAN_OVERRIDE_ACCESS_MODIFIERS)) { - this.h.f(this.f564c.q(p.OVERRIDE_PUBLIC_ACCESS_MODIFIERS)); + if (this.h != null && this.f565c.q(p.CAN_OVERRIDE_ACCESS_MODIFIERS)) { + this.h.f(this.f565c.q(p.OVERRIDE_PUBLIC_ACCESS_MODIFIERS)); } a aVar = this.f; if (aVar != null) { - aVar.b.f(this.f564c.q(p.OVERRIDE_PUBLIC_ACCESS_MODIFIERS)); + aVar.b.f(this.f565c.q(p.OVERRIDE_PUBLIC_ACCESS_MODIFIERS)); } List list = this.d; if (list != null && !list.isEmpty()) { List list2 = this.d; cVarArr = (c[]) list2.toArray(new c[list2.size()]); - if (this.f564c.q(p.CAN_OVERRIDE_ACCESS_MODIFIERS)) { + if (this.f565c.q(p.CAN_OVERRIDE_ACCESS_MODIFIERS)) { for (c cVar : cVarArr) { - cVar._member.f(this.f564c.q(p.OVERRIDE_PUBLIC_ACCESS_MODIFIERS)); + cVar._member.f(this.f565c.q(p.OVERRIDE_PUBLIC_ACCESS_MODIFIERS)); } } } else if (this.f == null && this.i == null) { diff --git a/app/src/main/java/c/g/a/c/g0/f.java b/app/src/main/java/c/g/a/c/g0/f.java index f77bb6ecaa..70a3a9c40d 100644 --- a/app/src/main/java/c/g/a/c/g0/f.java +++ b/app/src/main/java/c/g/a/c/g0/f.java @@ -34,7 +34,6 @@ import c.g.a.c.v; import c.g.a.c.w; import c.g.a.c.x; import c.g.a.c.z.o; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.fasterxml.jackson.databind.JsonMappingException; import java.io.Serializable; import java.lang.annotation.Annotation; @@ -106,14 +105,14 @@ public class f extends b implements Serializable { Objects.requireNonNull(qVar.d._base); eVar = (e) d.g(cls, qVar.d.b()); } else { - throw new IllegalStateException(a.j(cls, a.P("AnnotationIntrospector returned Class "), "; expected Class")); + throw new IllegalStateException(a.j(cls, a.O("AnnotationIntrospector returned Class "), "; expected Class")); } } } else { - StringBuilder P = a.P("AnnotationIntrospector returned Converter definition of type "); - P.append(H.getClass().getName()); - P.append("; expected type Converter or Class instead"); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("AnnotationIntrospector returned Converter definition of type "); + O.append(H.getClass().getName()); + O.append("; expected type Converter or Class instead"); + throw new IllegalStateException(O.toString()); } } if (eVar == null) { @@ -234,13 +233,13 @@ public class f extends b implements Serializable { } c.g.a.c.i0.d.w(e); c.g.a.c.i0.d.x(e); - StringBuilder P = a.P("Failed to instantiate bean of type "); - P.append(qVar.f.k.getName()); - P.append(": ("); - P.append(e.getClass().getName()); - P.append(") "); - P.append(c.g.a.c.i0.d.h(e)); - throw new IllegalArgumentException(P.toString(), e); + StringBuilder O = a.O("Failed to instantiate bean of type "); + O.append(qVar.f.k.getName()); + O.append(": ("); + O.append(e.getClass().getName()); + O.append(") "); + O.append(c.g.a.c.i0.d.h(e)); + throw new IllegalArgumentException(O.toString(), e); } } if (obj4 == null) { @@ -258,7 +257,7 @@ public class f extends b implements Serializable { z5 = false; if (obj2 != null) { if (obj2.getClass().isArray()) { - obj2 = AnimatableValueParser.s0(obj2); + obj2 = c.c.a.a0.d.s0(obj2); } obj3 = obj2; z3 = z5; @@ -266,11 +265,11 @@ public class f extends b implements Serializable { i = sVar.i(); if (i == null) { } - c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f543s, e, y2, c2, a, z3, obj, i); - q = lVar.f565c.q(iVar); + c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f544s, e, y2, c2, a, z3, obj, i); + q = lVar.f566c.q(iVar); if (q != null) { } - c.g.a.c.i0.n Q = lVar.f565c.Q(iVar); + c.g.a.c.i0.n Q = lVar.f566c.Q(iVar); if (Q == null) { } } @@ -282,14 +281,14 @@ public class f extends b implements Serializable { } c.g.a.c.i0.d.w(e); c.g.a.c.i0.d.x(e); - StringBuilder V = a.V("Failed to get property '", p, "' of default "); - V.append(obj5.getClass().getName()); - V.append(" instance"); - throw new IllegalArgumentException(V.toString()); + StringBuilder U = a.U("Failed to get property '", p, "' of default "); + U.append(obj5.getClass().getName()); + U.append(" instance"); + throw new IllegalArgumentException(U.toString()); } } } - obj2 = AnimatableValueParser.w0(jVar); + obj2 = c.c.a.a0.d.v0(jVar); z5 = true; if (obj2 != null) { } @@ -314,12 +313,12 @@ public class f extends b implements Serializable { } i = qVar2.g; } - c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f543s, e, y2, c2, a, z3, obj, i); - q = lVar.f565c.q(iVar); + c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f544s, e, y2, c2, a, z3, obj, i); + q = lVar.f566c.q(iVar); if (q != null) { cVar2.e(xVar.H(iVar, q)); } - c.g.a.c.i0.n Q = lVar.f565c.Q(iVar); + c.g.a.c.i0.n Q = lVar.f566c.Q(iVar); return Q == null ? new c.g.a.c.g0.t.s(cVar2, Q) : cVar2; } } @@ -336,11 +335,11 @@ public class f extends b implements Serializable { i = sVar.i(); if (i == null) { } - c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f543s, e, y2, c2, a, z3, obj, i); - q = lVar.f565c.q(iVar); + c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f544s, e, y2, c2, a, z3, obj, i); + q = lVar.f566c.q(iVar); if (q != null) { } - c.g.a.c.i0.n Q = lVar.f565c.Q(iVar); + c.g.a.c.i0.n Q = lVar.f566c.Q(iVar); if (Q == null) { } } @@ -349,11 +348,11 @@ public class f extends b implements Serializable { i = sVar.i(); if (i == null) { } - c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f543s, e, y2, c2, a, z3, obj, i); - q = lVar.f565c.q(iVar); + c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f544s, e, y2, c2, a, z3, obj, i); + q = lVar.f566c.q(iVar); if (q != null) { } - c.g.a.c.i0.n Q = lVar.f565c.Q(iVar); + c.g.a.c.i0.n Q = lVar.f566c.Q(iVar); if (Q == null) { } } else { @@ -367,11 +366,11 @@ public class f extends b implements Serializable { i = sVar.i(); if (i == null) { } - c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f543s, e, y2, c2, a, z3, obj, i); - q = lVar.f565c.q(iVar); + c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f544s, e, y2, c2, a, z3, obj, i); + q = lVar.f566c.q(iVar); if (q != null) { } - c.g.a.c.i0.n Q = lVar.f565c.Q(iVar); + c.g.a.c.i0.n Q = lVar.f566c.Q(iVar); if (Q == null) { } } else { @@ -381,11 +380,11 @@ public class f extends b implements Serializable { i = sVar.i(); if (i == null) { } - c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f543s, e, y2, c2, a, z3, obj, i); - q = lVar.f565c.q(iVar); + c cVar2 = new c(sVar, iVar, ((q) lVar.b).f.f544s, e, y2, c2, a, z3, obj, i); + q = lVar.f566c.q(iVar); if (q != null) { } - c.g.a.c.i0.n Q = lVar.f565c.Q(iVar); + c.g.a.c.i0.n Q = lVar.f566c.Q(iVar); if (Q == null) { } } @@ -560,9 +559,9 @@ public class f extends b implements Serializable { obj3 = null; nVar = s3.v(obj3, z12); } else { - obj3 = AnimatableValueParser.w0(jVar3); + obj3 = c.c.a.a0.d.v0(jVar3); if (obj3 != null && obj3.getClass().isArray()) { - obj3 = AnimatableValueParser.s0(obj3); + obj3 = c.c.a.a0.d.s0(obj3); } } z12 = true; @@ -793,9 +792,9 @@ public class f extends b implements Serializable { if (ordinal3 == 3) { obj2 = c.g.a.c.g0.u.t.k; } else if (ordinal3 == 4) { - obj2 = AnimatableValueParser.w0(jVar6); + obj2 = c.c.a.a0.d.v0(jVar6); if (obj2 != null && obj2.getClass().isArray()) { - obj2 = AnimatableValueParser.s0(obj2); + obj2 = c.c.a.a0.d.s0(obj2); } } else if (ordinal3 == 5) { obj2 = xVar.A(null, d3._contentFilter); @@ -903,9 +902,9 @@ public class f extends b implements Serializable { if (ordinal4 == i) { obj = c.g.a.c.g0.u.t.k; } else if (ordinal4 == 4) { - obj = AnimatableValueParser.w0(jVar7); + obj = c.c.a.a0.d.v0(jVar7); if (obj != null && obj.getClass().isArray()) { - obj = AnimatableValueParser.s0(obj); + obj = c.c.a.a0.d.s0(obj); } } else if (ordinal4 == 5) { obj = xVar.A(null, d4._contentFilter); @@ -961,7 +960,7 @@ public class f extends b implements Serializable { } else { v vVar9 = xVar._config; e eVar2 = new e(cVar3); - eVar2.f564c = vVar9; + eVar2.f565c = vVar9; c.g.a.c.c0.q qVar3 = (c.g.a.c.c0.q) cVar3; List d5 = qVar3.d(); v vVar10 = xVar._config; @@ -1032,11 +1031,11 @@ public class f extends b implements Serializable { } else if (eVar2.h == null) { eVar2.h = j; } else { - StringBuilder P = a.P("Multiple type ids specified with "); - P.append(eVar2.h); - P.append(" and "); - P.append(j); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Multiple type ids specified with "); + O.append(eVar2.h); + O.append(" and "); + O.append(j); + throw new IllegalArgumentException(O.toString()); } } z4 = z13; @@ -1095,7 +1094,7 @@ public class f extends b implements Serializable { if (set != null || (d6 != null && !d6.isEmpty())) { Iterator it5 = arrayList.iterator(); while (it5.hasNext()) { - if (AnimatableValueParser.D2(((c) it5.next())._name._value, d6, set)) { + if (c.c.a.a0.d.a2(((c) it5.next())._name._value, d6, set)) { it5.remove(); } } @@ -1110,7 +1109,7 @@ public class f extends b implements Serializable { if (a0Var == null) { jVar2 = null; } else { - Class> cls12 = a0Var.f540c; + Class> cls12 = a0Var.f541c; if (cls12 == l0.class) { String str4 = a0Var.b._simpleName; int size3 = arrayList.size(); @@ -1134,7 +1133,7 @@ public class f extends b implements Serializable { eVar2.i = jVar2; eVar2.d = arrayList; eVar2.g = vVar9.e().g(qVar3.f); - b0 b0Var = qVar3.f553c; + b0 b0Var = qVar3.f554c; if (b0Var != null) { if (!b0Var.i) { b0Var.h(); @@ -1149,7 +1148,7 @@ public class f extends b implements Serializable { throw null; } if (iVar == null) { - b0 b0Var2 = qVar3.f553c; + b0 b0Var2 = qVar3.f554c; if (!b0Var2.i) { b0Var2.h(); } @@ -1234,7 +1233,7 @@ public class f extends b implements Serializable { nVar = CharSequence.class.isAssignableFrom(cls13) ? t0.j : null; } if (nVar == null) { - if (qVar3.f.f543s.size() > 0) { + if (qVar3.f.f544s.size() > 0) { nVar = new d(eVar2.b.a, eVar2, c.g.a.c.g0.u.d.j, null); } } diff --git a/app/src/main/java/c/g/a/c/g0/j.java b/app/src/main/java/c/g/a/c/g0/j.java index a6a4e1efa9..3d63ff5e7a 100644 --- a/app/src/main/java/c/g/a/c/g0/j.java +++ b/app/src/main/java/c/g/a/c/g0/j.java @@ -91,18 +91,18 @@ public abstract class j extends x implements Serializable { nVar = (n) c.g.a.c.i0.d.g(cls, this._config.b()); } else { c.g.a.c.j e = bVar.e(); - StringBuilder P = c.d.b.a.a.P("AnnotationIntrospector returned Class "); - P.append(cls.getName()); - P.append("; expected Class"); - f(e, P.toString()); + StringBuilder O = c.d.b.a.a.O("AnnotationIntrospector returned Class "); + O.append(cls.getName()); + O.append("; expected Class"); + f(e, O.toString()); throw null; } } else { c.g.a.c.j e2 = bVar.e(); - StringBuilder P2 = c.d.b.a.a.P("AnnotationIntrospector returned serializer definition of type "); - P2.append(obj.getClass().getName()); - P2.append("; expected type JsonSerializer or Class instead"); - f(e2, P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("AnnotationIntrospector returned serializer definition of type "); + O2.append(obj.getClass().getName()); + O2.append("; expected type JsonSerializer or Class instead"); + f(e2, O2.toString()); throw null; } if (nVar instanceof o) { @@ -134,10 +134,10 @@ public abstract class j extends x implements Serializable { } String h = c.g.a.c.i0.d.h(exc); if (h == null) { - StringBuilder P = c.d.b.a.a.P("[no message for "); - P.append(exc.getClass().getName()); - P.append("]"); - h = P.toString(); + StringBuilder O = c.d.b.a.a.O("[no message for "); + O.append(exc.getClass().getName()); + O.append("]"); + h = O.toString(); } return new JsonMappingException(dVar, h, exc); } @@ -164,13 +164,13 @@ public abstract class j extends x implements Serializable { m mVar = this._knownSerializers; m.a aVar = mVar.a[mVar.b & (cls.getName().hashCode() + 1)]; if (aVar != null) { - if (!(aVar.f569c == cls && aVar.e)) { + if (!(aVar.f570c == cls && aVar.e)) { while (true) { aVar = aVar.b; if (aVar == null) { break; } - if (aVar.f569c != cls || !aVar.e) { + if (aVar.f570c != cls || !aVar.e) { z2 = false; continue; } else { diff --git a/app/src/main/java/c/g/a/c/g0/l.java b/app/src/main/java/c/g/a/c/g0/l.java index 8cc52f5633..d27bca61a1 100644 --- a/app/src/main/java/c/g/a/c/g0/l.java +++ b/app/src/main/java/c/g/a/c/g0/l.java @@ -14,7 +14,7 @@ public class l { public final c b; /* renamed from: c reason: collision with root package name */ - public final b f565c; + public final b f566c; public Object d; public final p.b e; public final boolean f; @@ -30,28 +30,28 @@ public class l { p.b bVar3 = vVar._configOverrides._defaultInclusion; this.e = bVar3 == null ? bVar2 : bVar3.a(bVar2); this.f = bVar2._valueInclusion == p.a.NON_DEFAULT; - this.f565c = vVar.e(); + this.f566c = vVar.e(); } public j a(c.g.a.c.c0.b bVar, boolean z2, j jVar) throws JsonMappingException { - j e02 = this.f565c.e0(this.a, bVar, jVar); + j e02 = this.f566c.e0(this.a, bVar, jVar); boolean z3 = true; if (e02 != jVar) { Class cls = e02._class; Class cls2 = jVar._class; if (!cls.isAssignableFrom(cls2) && !cls2.isAssignableFrom(cls)) { - StringBuilder P = a.P("Illegal concrete-type annotation for method '"); - P.append(bVar.c()); - P.append("': class "); - P.append(cls.getName()); - P.append(" not a super-type of (declared) class "); - P.append(cls2.getName()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Illegal concrete-type annotation for method '"); + O.append(bVar.c()); + O.append("': class "); + O.append(cls.getName()); + O.append(" not a super-type of (declared) class "); + O.append(cls2.getName()); + throw new IllegalArgumentException(O.toString()); } z2 = true; jVar = e02; } - e.b K = this.f565c.K(bVar); + e.b K = this.f566c.K(bVar); if (!(K == null || K == e.b.DEFAULT_TYPING)) { if (K != e.b.STATIC) { z3 = false; diff --git a/app/src/main/java/c/g/a/c/g0/t/b.java b/app/src/main/java/c/g/a/c/g0/t/b.java index 681ba3df02..ce8edc7606 100644 --- a/app/src/main/java/c/g/a/c/g0/t/b.java +++ b/app/src/main/java/c/g/a/c/g0/t/b.java @@ -77,9 +77,9 @@ public class b extends d { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("BeanAsArraySerializer for "); - P.append(this._handledType.getName()); - return P.toString(); + StringBuilder O = a.O("BeanAsArraySerializer for "); + O.append(this._handledType.getName()); + return O.toString(); } @Override // c.g.a.c.g0.u.d diff --git a/app/src/main/java/c/g/a/c/g0/t/i.java b/app/src/main/java/c/g/a/c/g0/t/i.java index e997c04d36..aef154a29b 100644 --- a/app/src/main/java/c/g/a/c/g0/t/i.java +++ b/app/src/main/java/c/g/a/c/g0/t/i.java @@ -10,7 +10,6 @@ import c.g.a.c.j; import c.g.a.c.n; import c.g.a.c.x; import c.g.a.c.y.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.fasterxml.jackson.databind.JsonMappingException; import java.io.IOException; import java.util.Map; @@ -101,9 +100,9 @@ public class i extends h> implements c.g.a.c.g0.i { if (ordinal != 2) { if (ordinal != 3) { if (ordinal == 4) { - obj2 = AnimatableValueParser.w0(this._valueType); + obj2 = c.c.a.a0.d.v0(this._valueType); if (obj2 != null && obj2.getClass().isArray()) { - obj2 = AnimatableValueParser.s0(obj2); + obj2 = c.c.a.a0.d.s0(obj2); } } else if (ordinal != 5) { obj = null; diff --git a/app/src/main/java/c/g/a/c/g0/t/j.java b/app/src/main/java/c/g/a/c/g0/t/j.java index 8af09b14a6..7bbba4226a 100644 --- a/app/src/main/java/c/g/a/c/g0/t/j.java +++ b/app/src/main/java/c/g/a/c/g0/t/j.java @@ -10,14 +10,14 @@ public final class j { public final k b; /* renamed from: c reason: collision with root package name */ - public final i0 f566c; + public final i0 f567c; public final n d; public final boolean e; public j(c.g.a.c.j jVar, k kVar, i0 i0Var, n nVar, boolean z2) { this.a = jVar; this.b = kVar; - this.f566c = i0Var; + this.f567c = i0Var; this.d = nVar; this.e = z2; } diff --git a/app/src/main/java/c/g/a/c/g0/t/k.java b/app/src/main/java/c/g/a/c/g0/t/k.java index a90ff2cdd9..e2067d3c50 100644 --- a/app/src/main/java/c/g/a/c/g0/t/k.java +++ b/app/src/main/java/c/g/a/c/g0/t/k.java @@ -44,11 +44,11 @@ public class k extends l0 { } catch (RuntimeException e) { throw e; } catch (Exception e2) { - StringBuilder P = a.P("Problem accessing property '"); - P.append(this._property._name._value); - P.append("': "); - P.append(e2.getMessage()); - throw new IllegalStateException(P.toString(), e2); + StringBuilder O = a.O("Problem accessing property '"); + O.append(this._property._name._value); + O.append("': "); + O.append(e2.getMessage()); + throw new IllegalStateException(O.toString(), e2); } } diff --git a/app/src/main/java/c/g/a/c/g0/t/l.java b/app/src/main/java/c/g/a/c/g0/t/l.java index b146312df7..a5097f13d2 100644 --- a/app/src/main/java/c/g/a/c/g0/t/l.java +++ b/app/src/main/java/c/g/a/c/g0/t/l.java @@ -14,7 +14,7 @@ public abstract class l { public final Class b; /* renamed from: c reason: collision with root package name */ - public final Class f567c; + public final Class f568c; public final n d; public final n e; @@ -22,13 +22,13 @@ public abstract class l { super(lVar); this.b = cls; this.d = nVar; - this.f567c = cls2; + this.f568c = cls2; this.e = nVar2; } @Override // c.g.a.c.g0.t.l public l b(Class cls, n nVar) { - return new c(this, new f[]{new f(this.b, this.d), new f(this.f567c, this.e), new f(cls, nVar)}); + return new c(this, new f[]{new f(this.b, this.d), new f(this.f568c, this.e), new f(cls, nVar)}); } @Override // c.g.a.c.g0.t.l @@ -36,7 +36,7 @@ public abstract class l { if (cls == this.b) { return this.d; } - if (cls == this.f567c) { + if (cls == this.f568c) { return this.e; } return null; @@ -190,23 +190,23 @@ public abstract class l { public final Class b; /* renamed from: c reason: collision with root package name */ - public final n f568c; + public final n f569c; public e(l lVar, Class cls, n nVar) { super(lVar); this.b = cls; - this.f568c = nVar; + this.f569c = nVar; } @Override // c.g.a.c.g0.t.l public l b(Class cls, n nVar) { - return new a(this, this.b, this.f568c, cls, nVar); + return new a(this, this.b, this.f569c, cls, nVar); } @Override // c.g.a.c.g0.t.l public n c(Class cls) { if (cls == this.b) { - return this.f568c; + return this.f569c; } return null; } diff --git a/app/src/main/java/c/g/a/c/g0/t/m.java b/app/src/main/java/c/g/a/c/g0/t/m.java index aaf3049954..c03c6f8381 100644 --- a/app/src/main/java/c/g/a/c/g0/t/m.java +++ b/app/src/main/java/c/g/a/c/g0/t/m.java @@ -15,7 +15,7 @@ public final class m { public final a b; /* renamed from: c reason: collision with root package name */ - public final Class f569c; + public final Class f570c; public final j d; public final boolean e; @@ -23,8 +23,8 @@ public final class m { this.b = aVar; this.a = nVar; this.e = uVar.d; - this.f569c = uVar.b; - this.d = uVar.f587c; + this.f570c = uVar.b; + this.d = uVar.f588c; } } @@ -75,7 +75,7 @@ public final class m { if (aVar == null) { return null; } - if (aVar.f569c == cls && !aVar.e) { + if (aVar.f570c == cls && !aVar.e) { return aVar.a; } do { @@ -83,7 +83,7 @@ public final class m { if (aVar == null) { return null; } - if (aVar.f569c != cls || aVar.e) { + if (aVar.f570c != cls || aVar.e) { z2 = false; continue; } else { diff --git a/app/src/main/java/c/g/a/c/g0/t/t.java b/app/src/main/java/c/g/a/c/g0/t/t.java index 8c3994ad4a..b8d3ea08da 100644 --- a/app/src/main/java/c/g/a/c/g0/t/t.java +++ b/app/src/main/java/c/g/a/c/g0/t/t.java @@ -89,9 +89,9 @@ public class t extends d implements Serializable { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("UnwrappingBeanSerializer for "); - P.append(this._handledType.getName()); - return P.toString(); + StringBuilder O = a.O("UnwrappingBeanSerializer for "); + O.append(this._handledType.getName()); + return O.toString(); } @Override // c.g.a.c.g0.u.d diff --git a/app/src/main/java/c/g/a/c/g0/t/u.java b/app/src/main/java/c/g/a/c/g0/t/u.java index 5b91f97872..96f8fe6bb6 100644 --- a/app/src/main/java/c/g/a/c/g0/t/u.java +++ b/app/src/main/java/c/g/a/c/g0/t/u.java @@ -11,7 +11,7 @@ public final class u { public Object b; /* renamed from: c reason: collision with root package name */ - public boolean f570c = false; + public boolean f571c = false; public u(i0 i0Var) { this.a = i0Var; @@ -21,7 +21,7 @@ public final class u { if (this.b == null) { return false; } - if (!this.f570c && !jVar.e) { + if (!this.f571c && !jVar.e) { return false; } Objects.requireNonNull(dVar); diff --git a/app/src/main/java/c/g/a/c/g0/u/d.java b/app/src/main/java/c/g/a/c/g0/u/d.java index 6801f10dc7..bdda8ebbb9 100644 --- a/app/src/main/java/c/g/a/c/g0/u/d.java +++ b/app/src/main/java/c/g/a/c/g0/u/d.java @@ -20,7 +20,6 @@ import c.g.a.c.j; import c.g.a.c.t; import c.g.a.c.v; import c.g.a.c.x; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.fasterxml.jackson.databind.JsonMappingException; import java.io.IOException; import java.util.ArrayList; @@ -67,7 +66,7 @@ public abstract class d extends q0 implements i, o { ArrayList arrayList2 = cVarArr2 == null ? null : new ArrayList(length); for (int i = 0; i < length; i++) { c cVar = cVarArr[i]; - if (!AnimatableValueParser.D2(cVar._name._value, set, set2)) { + if (!c.c.a.a0.d.a2(cVar._name._value, set, set2)) { arrayList.add(cVar); if (cVarArr2 != null) { arrayList2.add(cVarArr2[i]); @@ -172,7 +171,7 @@ public abstract class d extends q0 implements i, o { a0 r = v.r(member); if (r != null) { a0 s3 = v.s(member, r); - Class> cls2 = s3.f540c; + Class> cls2 = s3.f541c; j jVar3 = xVar.d().i(xVar.b(cls2), i0.class)[0]; if (cls2 == l0.class) { String str = s3.b._simpleName; @@ -203,7 +202,7 @@ public abstract class d extends q0 implements i, o { jVar2 = this._objectIdWriter; boolean z2 = s2.f; if (z2 != jVar2.e) { - jVar2 = new c.g.a.c.g0.t.j(jVar2.a, jVar2.b, jVar2.f566c, jVar2.d, z2); + jVar2 = new c.g.a.c.g0.t.j(jVar2.a, jVar2.b, jVar2.f567c, jVar2.d, z2); } } i = 0; @@ -232,7 +231,7 @@ public abstract class d extends q0 implements i, o { } else { dVar2 = this; } - if (!(jVar2 == null || (jVar = new c.g.a.c.g0.t.j(jVar2.a, jVar2.b, jVar2.f566c, xVar.t(jVar2.a, dVar), jVar2.e)) == this._objectIdWriter)) { + if (!(jVar2 == null || (jVar = new c.g.a.c.g0.t.j(jVar2.a, jVar2.b, jVar2.f567c, xVar.t(jVar2.a, dVar), jVar2.e)) == this._objectIdWriter)) { dVar2 = dVar2.x(jVar); } if ((set != null && !set.isEmpty()) || set2 != null) { @@ -309,10 +308,10 @@ public abstract class d extends q0 implements i, o { } a aVar = this._anyGetterWriter; if (aVar != null) { - c.g.a.c.n nVar3 = aVar.f563c; + c.g.a.c.n nVar3 = aVar.f564c; if (nVar3 instanceof c.g.a.c.g0.i) { c.g.a.c.n y2 = xVar.y(nVar3, aVar.a); - aVar.f563c = y2; + aVar.f564c = y2; if (y2 instanceof t) { aVar.d = (t) y2; } @@ -349,7 +348,7 @@ public abstract class d extends q0 implements i, o { public final void p(Object obj, c.g.a.b.d dVar, x xVar, g gVar) throws IOException { c.g.a.c.g0.t.j jVar = this._objectIdWriter; - u p = xVar.p(obj, jVar.f566c); + u p = xVar.p(obj, jVar.f567c); if (!p.a(dVar, xVar, jVar)) { if (p.b == null) { p.b = p.a.c(obj); @@ -362,7 +361,7 @@ public abstract class d extends q0 implements i, o { c.g.a.c.g0.t.j jVar2 = this._objectIdWriter; c.g.a.b.s.b r = r(gVar, obj, c.g.a.b.h.START_OBJECT); gVar.e(dVar, r); - p.f570c = true; + p.f571c = true; Objects.requireNonNull(dVar); c.g.a.b.k kVar = jVar2.b; if (kVar != null) { @@ -382,7 +381,7 @@ public abstract class d extends q0 implements i, o { public final void q(Object obj, c.g.a.b.d dVar, x xVar, boolean z2) throws IOException { c.g.a.c.g0.t.j jVar = this._objectIdWriter; - u p = xVar.p(obj, jVar.f566c); + u p = xVar.p(obj, jVar.f567c); if (!p.a(dVar, xVar, jVar)) { if (p.b == null) { p.b = p.a.c(obj); @@ -395,7 +394,7 @@ public abstract class d extends q0 implements i, o { if (z2) { dVar.e0(obj); } - p.f570c = true; + p.f571c = true; c.g.a.b.k kVar = jVar.b; if (kVar != null) { dVar.x(kVar); @@ -425,7 +424,7 @@ public abstract class d extends q0 implements i, o { j2 = ""; } c.g.a.b.s.b d = gVar.d(obj, hVar); - d.f537c = j2; + d.f538c = j2; return d; } diff --git a/app/src/main/java/c/g/a/c/g0/u/f0.java b/app/src/main/java/c/g/a/c/g0/u/f0.java index e43bb5da7e..fa93461ae4 100644 --- a/app/src/main/java/c/g/a/c/g0/u/f0.java +++ b/app/src/main/java/c/g/a/c/g0/u/f0.java @@ -10,7 +10,6 @@ import c.g.a.c.i0.n; import c.g.a.c.j; import c.g.a.c.x; import c.g.a.c.y.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.fasterxml.jackson.databind.JsonMappingException; import com.fasterxml.jackson.databind.RuntimeJsonMappingException; import java.io.IOException; @@ -126,9 +125,9 @@ public abstract class f0 extends q0 implements i { } return (this._suppressableValue == obj || this._suppressNulls != z3) ? u.t(obj, z3) : u; } - obj = AnimatableValueParser.w0(this._referredType); + obj = c.c.a.a0.d.v0(this._referredType); if (obj != null && obj.getClass().isArray()) { - obj = AnimatableValueParser.s0(obj); + obj = c.c.a.a0.d.s0(obj); } } } diff --git a/app/src/main/java/c/g/a/c/g0/u/l.java b/app/src/main/java/c/g/a/c/g0/u/l.java index 691610ed33..15289f52f1 100644 --- a/app/src/main/java/c/g/a/c/g0/u/l.java +++ b/app/src/main/java/c/g/a/c/g0/u/l.java @@ -102,9 +102,9 @@ public abstract class l extends p0 implements i { if (xVar != null) { return xVar.D(w.WRITE_DATES_AS_TIMESTAMPS); } - StringBuilder P = c.d.b.a.a.P("Null SerializerProvider passed for "); - P.append(this._handledType.getName()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Null SerializerProvider passed for "); + O.append(this._handledType.getName()); + throw new IllegalArgumentException(O.toString()); } public void q(Date date, c.g.a.b.d dVar, x xVar) throws IOException { diff --git a/app/src/main/java/c/g/a/c/g0/u/q.java b/app/src/main/java/c/g/a/c/g0/u/q.java index 9c33ecf49e..2465de4581 100644 --- a/app/src/main/java/c/g/a/c/g0/u/q.java +++ b/app/src/main/java/c/g/a/c/g0/u/q.java @@ -39,10 +39,10 @@ public class q extends p0 { if (indexOf >= 0) { if (indexOf == 0) { if (address instanceof Inet6Address) { - StringBuilder P = a.P("["); - P.append(hostName.substring(1)); - P.append("]"); - str = P.toString(); + StringBuilder O = a.O("["); + O.append(hostName.substring(1)); + O.append("]"); + str = O.toString(); } else { str = hostName.substring(1); } @@ -51,8 +51,8 @@ public class q extends p0 { hostName = hostName.substring(0, indexOf); } } - StringBuilder U = a.U(hostName, ":"); - U.append(inetSocketAddress.getPort()); - dVar.l0(U.toString()); + StringBuilder S = a.S(hostName, ":"); + S.append(inetSocketAddress.getPort()); + dVar.l0(S.toString()); } } diff --git a/app/src/main/java/c/g/a/c/g0/u/s.java b/app/src/main/java/c/g/a/c/g0/u/s.java index 539df132fa..d8400db9ce 100644 --- a/app/src/main/java/c/g/a/c/g0/u/s.java +++ b/app/src/main/java/c/g/a/c/g0/u/s.java @@ -198,11 +198,11 @@ public class s extends q0 implements i { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("(@JsonValue serializer for method "); - P.append(this._accessor.g()); - P.append("#"); - P.append(this._accessor.c()); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("(@JsonValue serializer for method "); + O.append(this._accessor.g()); + O.append("#"); + O.append(this._accessor.c()); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/g0/u/t.java b/app/src/main/java/c/g/a/c/g0/u/t.java index 65d6aba321..acf0f49af5 100644 --- a/app/src/main/java/c/g/a/c/g0/u/t.java +++ b/app/src/main/java/c/g/a/c/g0/u/t.java @@ -14,7 +14,6 @@ import c.g.a.c.v; import c.g.a.c.w; import c.g.a.c.x; import c.g.a.c.y.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.fasterxml.jackson.databind.JsonMappingException; import java.io.IOException; import java.util.HashMap; @@ -254,9 +253,9 @@ public class t extends h> implements i { } return tVar2.v(obj2, z3); } else { - obj = AnimatableValueParser.w0(this._valueType); + obj = c.c.a.a0.d.v0(this._valueType); if (obj != null && obj.getClass().isArray()) { - obj = AnimatableValueParser.s0(obj); + obj = c.c.a.a0.d.s0(obj); } } } else if (this._valueType.b()) { diff --git a/app/src/main/java/c/g/a/c/h0/a.java b/app/src/main/java/c/g/a/c/h0/a.java index a5817ebea9..b73ff5b3d3 100644 --- a/app/src/main/java/c/g/a/c/h0/a.java +++ b/app/src/main/java/c/g/a/c/h0/a.java @@ -89,10 +89,10 @@ public final class a extends l { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("[array type, component type: "); - P.append(this._componentType); - P.append("]"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("[array type, component type: "); + O.append(this._componentType); + O.append("]"); + return O.toString(); } @Override // c.g.a.c.j diff --git a/app/src/main/java/c/g/a/c/h0/c.java b/app/src/main/java/c/g/a/c/h0/c.java index 013b92f139..6704d60a6d 100644 --- a/app/src/main/java/c/g/a/c/h0/c.java +++ b/app/src/main/java/c/g/a/c/h0/c.java @@ -8,7 +8,7 @@ public final class c { public final Class b; /* renamed from: c reason: collision with root package name */ - public ArrayList f575c; + public ArrayList f576c; public c(c cVar, Class cls) { this.a = cVar; @@ -21,15 +21,15 @@ public final class c { } public String toString() { - StringBuilder P = a.P("[ClassStack (self-refs: "); - ArrayList arrayList = this.f575c; - P.append(arrayList == null ? "0" : String.valueOf(arrayList.size())); - P.append(')'); + StringBuilder O = a.O("[ClassStack (self-refs: "); + ArrayList arrayList = this.f576c; + O.append(arrayList == null ? "0" : String.valueOf(arrayList.size())); + O.append(')'); for (c cVar = this; cVar != null; cVar = cVar.a) { - P.append(' '); - P.append(cVar.b.getName()); + O.append(' '); + O.append(cVar.b.getName()); } - P.append(']'); - return P.toString(); + O.append(']'); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/h0/d.java b/app/src/main/java/c/g/a/c/h0/d.java index beedf2d5a0..1009698403 100644 --- a/app/src/main/java/c/g/a/c/h0/d.java +++ b/app/src/main/java/c/g/a/c/h0/d.java @@ -101,11 +101,11 @@ public class d extends l { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("[collection-like type; class "); - a.g0(this._class, P, ", contains "); - P.append(this._elementType); - P.append("]"); - return P.toString(); + StringBuilder O = a.O("[collection-like type; class "); + a.f0(this._class, O, ", contains "); + O.append(this._elementType); + O.append("]"); + return O.toString(); } @Override // c.g.a.c.j diff --git a/app/src/main/java/c/g/a/c/h0/e.java b/app/src/main/java/c/g/a/c/h0/e.java index 7c1089bf03..9b54530cbf 100644 --- a/app/src/main/java/c/g/a/c/h0/e.java +++ b/app/src/main/java/c/g/a/c/h0/e.java @@ -42,10 +42,10 @@ public final class e extends d { @Override // c.g.a.c.h0.d, java.lang.Object public String toString() { - StringBuilder P = a.P("[collection type; class "); - a.g0(this._class, P, ", contains "); - P.append(this._elementType); - P.append("]"); - return P.toString(); + StringBuilder O = a.O("[collection type; class "); + a.f0(this._class, O, ", contains "); + O.append(this._elementType); + O.append("]"); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/h0/g.java b/app/src/main/java/c/g/a/c/h0/g.java index e4c688769b..e82d5e1d1c 100644 --- a/app/src/main/java/c/g/a/c/h0/g.java +++ b/app/src/main/java/c/g/a/c/h0/g.java @@ -51,12 +51,12 @@ public final class g extends f { @Override // c.g.a.c.h0.f, java.lang.Object public String toString() { - StringBuilder P = a.P("[map type; class "); - a.g0(this._class, P, ", "); - P.append(this._keyType); - P.append(" -> "); - P.append(this._valueType); - P.append("]"); - return P.toString(); + StringBuilder O = a.O("[map type; class "); + a.f0(this._class, O, ", "); + O.append(this._keyType); + O.append(" -> "); + O.append(this._valueType); + O.append("]"); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/h0/h.java b/app/src/main/java/c/g/a/c/h0/h.java index 8ef6057f23..d626e61715 100644 --- a/app/src/main/java/c/g/a/c/h0/h.java +++ b/app/src/main/java/c/g/a/c/h0/h.java @@ -55,9 +55,9 @@ public class h extends l { } public final T L() { - StringBuilder P = a.P("Operation should not be attempted on "); - P.append(h.class.getName()); - throw new UnsupportedOperationException(P.toString()); + StringBuilder O = a.O("Operation should not be attempted on "); + O.append(h.class.getName()); + throw new UnsupportedOperationException(O.toString()); } @Override // c.g.a.c.j, java.lang.Object diff --git a/app/src/main/java/c/g/a/c/h0/l.java b/app/src/main/java/c/g/a/c/h0/l.java index 163e79441c..cd32715ca8 100644 --- a/app/src/main/java/c/g/a/c/h0/l.java +++ b/app/src/main/java/c/g/a/c/h0/l.java @@ -63,9 +63,9 @@ public abstract class l extends j implements m { } else if (cls == Void.TYPE) { sb.append('V'); } else { - StringBuilder P = a.P("Unrecognized primitive type: "); - P.append(cls.getName()); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Unrecognized primitive type: "); + O.append(cls.getName()); + throw new IllegalStateException(O.toString()); } return sb; } diff --git a/app/src/main/java/c/g/a/c/h0/m.java b/app/src/main/java/c/g/a/c/h0/m.java index 984f075882..13058c27bc 100644 --- a/app/src/main/java/c/g/a/c/h0/m.java +++ b/app/src/main/java/c/g/a/c/h0/m.java @@ -30,12 +30,12 @@ public class m implements Serializable { public final j[] b; /* renamed from: c reason: collision with root package name */ - public final int f576c; + public final int f577c; public a(Class cls, j[] jVarArr, int i) { this.a = cls; this.b = jVarArr; - this.f576c = i; + this.f577c = i; } public boolean equals(Object obj) { @@ -46,7 +46,7 @@ public class m implements Serializable { return false; } a aVar = (a) obj; - if (this.f576c == aVar.f576c && this.a == aVar.a) { + if (this.f577c == aVar.f577c && this.a == aVar.a) { j[] jVarArr = aVar.b; int length = this.b.length; if (length == jVarArr.length) { @@ -62,7 +62,7 @@ public class m implements Serializable { } public int hashCode() { - return this.f576c; + return this.f577c; } public String toString() { @@ -76,7 +76,7 @@ public class m implements Serializable { public static final TypeVariable[] b = Collection.class.getTypeParameters(); /* renamed from: c reason: collision with root package name */ - public static final TypeVariable[] f577c = Iterable.class.getTypeParameters(); + public static final TypeVariable[] f578c = Iterable.class.getTypeParameters(); public static final TypeVariable[] d = List.class.getTypeParameters(); public static final TypeVariable[] e = ArrayList.class.getTypeParameters(); public static final TypeVariable[] f = Map.class.getTypeParameters(); @@ -107,24 +107,24 @@ public class m implements Serializable { this._hashCode = i2; return; } - StringBuilder P = c.d.b.a.a.P("Mismatching names ("); - P.append(strArr.length); - P.append("), types ("); - throw new IllegalArgumentException(c.d.b.a.a.z(P, jVarArr.length, ")")); + StringBuilder O = c.d.b.a.a.O("Mismatching names ("); + O.append(strArr.length); + O.append("), types ("); + throw new IllegalArgumentException(c.d.b.a.a.z(O, jVarArr.length, ")")); } public static m b(Class cls, j jVar) { TypeVariable[] typeVariableArr = b.a; - TypeVariable[] typeParameters = cls == Collection.class ? b.b : cls == List.class ? b.d : cls == ArrayList.class ? b.e : cls == AbstractList.class ? b.a : cls == Iterable.class ? b.f577c : cls.getTypeParameters(); + TypeVariable[] typeParameters = cls == Collection.class ? b.b : cls == List.class ? b.d : cls == ArrayList.class ? b.e : cls == AbstractList.class ? b.a : cls == Iterable.class ? b.f578c : cls.getTypeParameters(); int length = typeParameters == null ? 0 : typeParameters.length; if (length == 1) { return new m(new String[]{typeParameters[0].getName()}, new j[]{jVar}, null); } - StringBuilder P = c.d.b.a.a.P("Cannot create TypeBindings for class "); - P.append(cls.getName()); - P.append(" with 1 type parameter: class expects "); - P.append(length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Cannot create TypeBindings for class "); + O.append(cls.getName()); + O.append(" with 1 type parameter: class expects "); + O.append(length); + throw new IllegalArgumentException(O.toString()); } public static m c(Class cls, j jVar, j jVar2) { @@ -134,11 +134,11 @@ public class m implements Serializable { if (length == 2) { return new m(new String[]{typeParameters[0].getName(), typeParameters[1].getName()}, new j[]{jVar, jVar2}, null); } - StringBuilder P = c.d.b.a.a.P("Cannot create TypeBindings for class "); - P.append(cls.getName()); - P.append(" with 2 type parameters: class expects "); - P.append(length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Cannot create TypeBindings for class "); + O.append(cls.getName()); + O.append(" with 2 type parameters: class expects "); + O.append(length); + throw new IllegalArgumentException(O.toString()); } public static m d(Class cls, j[] jVarArr) { @@ -163,14 +163,14 @@ public class m implements Serializable { if (strArr.length == jVarArr.length) { return new m(strArr, jVarArr, null); } - StringBuilder P = c.d.b.a.a.P("Cannot create TypeBindings for class "); - c.d.b.a.a.g0(cls, P, " with "); - P.append(jVarArr.length); - P.append(" type parameter"); - P.append(jVarArr.length == 1 ? "" : "s"); - P.append(": class expects "); - P.append(strArr.length); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Cannot create TypeBindings for class "); + c.d.b.a.a.f0(cls, O, " with "); + O.append(jVarArr.length); + O.append(" type parameter"); + O.append(jVarArr.length == 1 ? "" : "s"); + O.append(": class expects "); + O.append(strArr.length); + throw new IllegalArgumentException(O.toString()); } public Object a(Class cls) { @@ -276,18 +276,18 @@ public class m implements Serializable { if (this._types.length == 0) { return "<>"; } - StringBuilder N = c.d.b.a.a.N('<'); + StringBuilder M = c.d.b.a.a.M('<'); int length = this._types.length; for (int i2 = 0; i2 < length; i2++) { if (i2 > 0) { - N.append(','); + M.append(','); } j jVar = this._types[i2]; StringBuilder sb = new StringBuilder(40); jVar.m(sb); - N.append(sb.toString()); + M.append(sb.toString()); } - N.append('>'); - return N.toString(); + M.append('>'); + return M.toString(); } } diff --git a/app/src/main/java/c/g/a/c/h0/n.java b/app/src/main/java/c/g/a/c/h0/n.java index d57dcdf957..3e0a708fa3 100644 --- a/app/src/main/java/c/g/a/c/h0/n.java +++ b/app/src/main/java/c/g/a/c/h0/n.java @@ -45,7 +45,7 @@ public class n implements Serializable { public static final Class r; /* renamed from: s reason: collision with root package name */ - public static final Class f578s; + public static final Class f579s; private static final long serialVersionUID = 1; public static final Class t; public static final k u; @@ -53,13 +53,13 @@ public class n implements Serializable { public static final k w; /* renamed from: x reason: collision with root package name */ - public static final k f579x = new k(String.class); + public static final k f580x = new k(String.class); /* renamed from: y reason: collision with root package name */ - public static final k f580y = new k(Object.class); + public static final k f581y = new k(Object.class); /* renamed from: z reason: collision with root package name */ - public static final k f581z = new k(Comparable.class); + public static final k f582z = new k(Comparable.class); public final ClassLoader _classLoader = null; public final o[] _modifiers = null; public final p _parser = new p(this); @@ -69,7 +69,7 @@ public class n implements Serializable { Class cls = Boolean.TYPE; r = cls; Class cls2 = Integer.TYPE; - f578s = cls2; + f579s = cls2; Class cls3 = Long.TYPE; t = cls3; u = new k(cls); @@ -79,7 +79,7 @@ public class n implements Serializable { public static j k() { Objects.requireNonNull(j); - return f580y; + return f581y; } public j a(Class cls) { @@ -87,7 +87,7 @@ public class n implements Serializable { if (cls == r) { return u; } - if (cls == f578s) { + if (cls == f579s) { return v; } if (cls == t) { @@ -95,10 +95,10 @@ public class n implements Serializable { } return null; } else if (cls == l) { - return f579x; + return f580x; } else { if (cls == m) { - return f580y; + return f581y; } if (cls == q) { return C; @@ -119,7 +119,7 @@ public class n implements Serializable { if (cls == p) { jVar = A; } else if (cls == n) { - jVar = f581z; + jVar = f582z; } else if (cls == o) { jVar = B; } else { @@ -149,7 +149,7 @@ public class n implements Serializable { if (e != null) { jVar = e; } else if (mVar.h(name)) { - jVar = f580y; + jVar = f581y; } else { m l2 = mVar.l(name); synchronized (typeVariable) { @@ -163,9 +163,9 @@ public class n implements Serializable { } else if (type instanceof WildcardType) { jVar = b(cVar, ((WildcardType) type).getUpperBounds()[0], mVar); } else { - StringBuilder P = a.P("Unrecognized Type: "); - P.append(type == null ? "[null]" : type.toString()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Unrecognized Type: "); + O.append(type == null ? "[null]" : type.toString()); + throw new IllegalArgumentException(O.toString()); } } if (this._modifiers != null) { @@ -223,10 +223,10 @@ public class n implements Serializable { } if (cVar3 != null) { j jVar7 = new j(cls, k); - if (cVar3.f575c == null) { - cVar3.f575c = new ArrayList<>(); + if (cVar3.f576c == null) { + cVar3.f576c = new ArrayList<>(); } - cVar3.f575c.add(jVar7); + cVar3.f576c.add(jVar7); return jVar7; } cVar2 = new c(cVar, cls); @@ -245,7 +245,7 @@ public class n implements Serializable { e = e(cVar2, cls, mVar); } if (cls == Properties.class) { - k kVar3 = f579x; + k kVar3 = f580x; jVar6 = g.Q(cls, mVar, b, e, kVar3, kVar3); } else if (b != null) { jVar6 = b.C(cls, mVar, b, e); @@ -254,12 +254,12 @@ public class n implements Serializable { m mVar2 = mVar == null ? k : mVar; if (cls == Map.class) { if (cls == Properties.class) { - kVar2 = f579x; + kVar2 = f580x; } else { List g = mVar2.g(); int size = g.size(); if (size == 0) { - kVar2 = f580y; + kVar2 = f581y; } else if (size != 2) { Object[] objArr = new Object[4]; objArr[0] = d.u(cls); @@ -279,22 +279,22 @@ public class n implements Serializable { } else if (cls == Collection.class) { List g2 = mVar2.g(); if (g2.isEmpty()) { - jVar4 = f580y; + jVar4 = f581y; } else if (g2.size() == 1) { jVar4 = g2.get(0); } else { - throw new IllegalArgumentException(a.j(cls, a.P("Strange Collection type "), ": cannot determine type parameters")); + throw new IllegalArgumentException(a.j(cls, a.O("Strange Collection type "), ": cannot determine type parameters")); } jVar = new e(cls, mVar2, b, e, jVar4, null, null, false); } else { if (cls == AtomicReference.class) { List g3 = mVar2.g(); if (g3.isEmpty()) { - jVar3 = f580y; + jVar3 = f581y; } else if (g3.size() == 1) { jVar3 = g3.get(0); } else { - throw new IllegalArgumentException(a.j(cls, a.P("Strange Reference type "), ": cannot determine type parameters")); + throw new IllegalArgumentException(a.j(cls, a.O("Strange Reference type "), ": cannot determine type parameters")); } cls2 = a2; jVar2 = b; @@ -333,7 +333,7 @@ public class n implements Serializable { jVar = jVar6; } } - ArrayList arrayList = cVar2.f575c; + ArrayList arrayList = cVar2.f576c; if (arrayList != null) { Iterator it = arrayList.iterator(); while (it.hasNext()) { @@ -341,11 +341,11 @@ public class n implements Serializable { if (next._referencedType == null) { next._referencedType = jVar; } else { - StringBuilder P = a.P("Trying to re-set self reference; old value = "); - P.append(next._referencedType); - P.append(", new = "); - P.append(jVar); - throw new IllegalStateException(P.toString()); + StringBuilder O = a.O("Trying to re-set self reference; old value = "); + O.append(next._referencedType); + O.append(", new = "); + O.append(jVar); + throw new IllegalStateException(O.toString()); } } } @@ -490,13 +490,13 @@ public class n implements Serializable { } jVar2 = c(null, cls, m.d(cls, jVarArr)); } else { - StringBuilder P = a.P("Failed to specialize base type "); - P.append(jVar.e()); - P.append(" as "); - P.append(cls.getName()); - P.append(", problem: "); - P.append(str); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Failed to specialize base type "); + O.append(jVar.e()); + O.append(" as "); + O.append(cls.getName()); + O.append(", problem: "); + O.append(str); + throw new IllegalArgumentException(O.toString()); } } else { throw new IllegalArgumentException(String.format("Internal error: unable to locate supertype (%s) from resolved subtype %s", jVar._class.getName(), cls.getName())); diff --git a/app/src/main/java/c/g/a/c/i0/d.java b/app/src/main/java/c/g/a/c/i0/d.java index f92e714f16..1c66df70ad 100644 --- a/app/src/main/java/c/g/a/c/i0/d.java +++ b/app/src/main/java/c/g/a/c/i0/d.java @@ -26,7 +26,7 @@ public final class d { public static final a[] b = new a[0]; /* renamed from: c reason: collision with root package name */ - public static final Iterator f582c = Collections.emptyIterator(); + public static final Iterator f583c = Collections.emptyIterator(); /* compiled from: ClassUtil */ public static final class a { @@ -34,7 +34,7 @@ public final class d { public transient Annotation[] b; /* renamed from: c reason: collision with root package name */ - public transient Annotation[][] f583c; + public transient Annotation[][] f584c; public int d = -1; public a(Constructor constructor) { @@ -58,7 +58,7 @@ public final class d { public final Field b = a(EnumSet.class, "elementType", Class.class); /* renamed from: c reason: collision with root package name */ - public final Field f584c = a(EnumMap.class, "elementType", Class.class); + public final Field f585c = a(EnumMap.class, "elementType", Class.class); public static Field a(Class cls, String str, Class cls2) { Field field; @@ -187,26 +187,26 @@ public final class d { } catch (NoSuchMethodException unused) { constructor = null; } catch (Exception e) { - StringBuilder P = c.d.b.a.a.P("Failed to find default constructor of class "); - P.append(cls.getName()); - P.append(", problem: "); - P.append(e.getMessage()); - y(e, P.toString()); + StringBuilder O = c.d.b.a.a.O("Failed to find default constructor of class "); + O.append(cls.getName()); + O.append(", problem: "); + O.append(e.getMessage()); + y(e, O.toString()); throw null; } if (constructor != null) { try { return constructor.newInstance(new Object[0]); } catch (Exception e2) { - StringBuilder P2 = c.d.b.a.a.P("Failed to instantiate class "); - P2.append(cls.getName()); - P2.append(", problem: "); - P2.append(e2.getMessage()); - y(e2, P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Failed to instantiate class "); + O2.append(cls.getName()); + O2.append(", problem: "); + O2.append(e2.getMessage()); + y(e2, O2.toString()); throw null; } } else { - throw new IllegalArgumentException(c.d.b.a.a.j(cls, c.d.b.a.a.P("Class "), " has no default (no arg) constructor")); + throw new IllegalArgumentException(c.d.b.a.a.j(cls, c.d.b.a.a.O("Class "), " has no default (no arg) constructor")); } } diff --git a/app/src/main/java/c/g/a/c/i0/f.java b/app/src/main/java/c/g/a/c/i0/f.java index 72e3b3bffe..446ac581c7 100644 --- a/app/src/main/java/c/g/a/c/i0/f.java +++ b/app/src/main/java/c/g/a/c/i0/f.java @@ -37,9 +37,9 @@ public final class f implements Serializable { } return new f(cls, kVarArr); } - StringBuilder P = a.P("Cannot determine enum constants for Class "); - P.append(cls.getName()); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = a.O("Cannot determine enum constants for Class "); + O.append(cls.getName()); + throw new IllegalArgumentException(O.toString()); } public Class> b() { diff --git a/app/src/main/java/c/g/a/c/i0/k.java b/app/src/main/java/c/g/a/c/i0/k.java index bd91eae0ba..088f9bdf1a 100644 --- a/app/src/main/java/c/g/a/c/i0/k.java +++ b/app/src/main/java/c/g/a/c/i0/k.java @@ -17,9 +17,9 @@ public final class k extends n { } public String toString() { - StringBuilder P = a.P("[PreAndSuffixTransformer('"); - P.append(this.j); - P.append("','"); - return a.H(P, this.k, "')]"); + StringBuilder O = a.O("[PreAndSuffixTransformer('"); + O.append(this.j); + O.append("','"); + return a.G(O, this.k, "')]"); } } diff --git a/app/src/main/java/c/g/a/c/i0/l.java b/app/src/main/java/c/g/a/c/i0/l.java index 22acd8346a..7371af5815 100644 --- a/app/src/main/java/c/g/a/c/i0/l.java +++ b/app/src/main/java/c/g/a/c/i0/l.java @@ -11,10 +11,10 @@ public final class l extends n { @Override // c.g.a.c.i0.n public String a(String str) { - return a.H(new StringBuilder(), this.j, str); + return a.G(new StringBuilder(), this.j, str); } public String toString() { - return a.H(a.P("[PrefixTransformer('"), this.j, "')]"); + return a.G(a.O("[PrefixTransformer('"), this.j, "')]"); } } diff --git a/app/src/main/java/c/g/a/c/i0/m.java b/app/src/main/java/c/g/a/c/i0/m.java index d752bb842b..39e955158d 100644 --- a/app/src/main/java/c/g/a/c/i0/m.java +++ b/app/src/main/java/c/g/a/c/i0/m.java @@ -11,12 +11,12 @@ public final class m extends n { @Override // c.g.a.c.i0.n public String a(String str) { - StringBuilder P = a.P(str); - P.append(this.j); - return P.toString(); + StringBuilder O = a.O(str); + O.append(this.j); + return O.toString(); } public String toString() { - return a.H(a.P("[SuffixTransformer('"), this.j, "')]"); + return a.G(a.O("[SuffixTransformer('"), this.j, "')]"); } } diff --git a/app/src/main/java/c/g/a/c/i0/n.java b/app/src/main/java/c/g/a/c/i0/n.java index eabe2ebc1b..aea6b435a1 100644 --- a/app/src/main/java/c/g/a/c/i0/n.java +++ b/app/src/main/java/c/g/a/c/i0/n.java @@ -23,12 +23,12 @@ public abstract class n { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("[ChainedTransformer("); - P.append(this._t1); - P.append(", "); - P.append(this._t2); - P.append(")]"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("[ChainedTransformer("); + O.append(this._t1); + O.append(", "); + O.append(this._t2); + O.append(")]"); + return O.toString(); } } diff --git a/app/src/main/java/c/g/a/c/i0/r.java b/app/src/main/java/c/g/a/c/i0/r.java index 8b91de1a45..044207e461 100644 --- a/app/src/main/java/c/g/a/c/i0/r.java +++ b/app/src/main/java/c/g/a/c/i0/r.java @@ -33,7 +33,7 @@ public class r extends DateFormat { public transient Calendar r; /* renamed from: s reason: collision with root package name */ - public transient DateFormat f585s; + public transient DateFormat f586s; static { try { @@ -318,7 +318,7 @@ public class r extends DateFormat { throw new ParseException(String.format("Timestamp value %s out of 64-bit value range", str), parsePosition.getErrorIndex()); } } - if (this.f585s == null) { + if (this.f586s == null) { DateFormat dateFormat2 = n; TimeZone timeZone = this.q; Locale locale = this._locale; @@ -338,9 +338,9 @@ public class r extends DateFormat { if (bool != null) { dateFormat.setLenient(bool.booleanValue()); } - this.f585s = dateFormat; + this.f586s = dateFormat; } - return this.f585s.parse(str, parsePosition); + return this.f586s.parse(str, parsePosition); } } @@ -399,14 +399,14 @@ public class r extends DateFormat { Boolean bool = this._lenient; if (!(valueOf == bool || (valueOf != null && valueOf.equals(bool)))) { this._lenient = valueOf; - this.f585s = null; + this.f586s = null; } } @Override // java.text.DateFormat public void setTimeZone(TimeZone timeZone) { if (!timeZone.equals(this.q)) { - this.f585s = null; + this.f586s = null; this.q = timeZone; } } diff --git a/app/src/main/java/c/g/a/c/i0/s.java b/app/src/main/java/c/g/a/c/i0/s.java index 874db55381..856fdf26c7 100644 --- a/app/src/main/java/c/g/a/c/i0/s.java +++ b/app/src/main/java/c/g/a/c/i0/s.java @@ -257,10 +257,10 @@ public class s extends d { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("[TokenBuffer: "); + StringBuilder O = c.d.b.a.a.O("[TokenBuffer: "); new a(null, false, false, null); - P.append(']'); - return P.toString(); + O.append(']'); + return O.toString(); } @Override // c.g.a.b.d diff --git a/app/src/main/java/c/g/a/c/i0/t.java b/app/src/main/java/c/g/a/c/i0/t.java index 4467a191e5..fe479316b0 100644 --- a/app/src/main/java/c/g/a/c/i0/t.java +++ b/app/src/main/java/c/g/a/c/i0/t.java @@ -6,7 +6,7 @@ import c.g.a.b.g; public class t extends g { /* renamed from: c reason: collision with root package name */ - public final g f586c = null; + public final g f587c = null; public final e d = e.i; public String e; public Object f; diff --git a/app/src/main/java/c/g/a/c/i0/u.java b/app/src/main/java/c/g/a/c/i0/u.java index bf895edee8..c629c9e4da 100644 --- a/app/src/main/java/c/g/a/c/i0/u.java +++ b/app/src/main/java/c/g/a/c/i0/u.java @@ -8,14 +8,14 @@ public class u { public Class b; /* renamed from: c reason: collision with root package name */ - public j f587c; + public j f588c; public boolean d; public u() { } public u(j jVar, boolean z2) { - this.f587c = jVar; + this.f588c = jVar; this.b = null; this.d = z2; this.a = z2 ? jVar._hash - 2 : jVar._hash - 1; @@ -23,7 +23,7 @@ public class u { public u(Class cls, boolean z2) { this.b = cls; - this.f587c = null; + this.f588c = null; this.d = z2; this.a = z2 ? cls.getName().hashCode() + 1 : cls.getName().hashCode(); } @@ -43,7 +43,7 @@ public class u { return false; } Class cls = this.b; - return cls != null ? uVar.b == cls : this.f587c.equals(uVar.f587c); + return cls != null ? uVar.b == cls : this.f588c.equals(uVar.f588c); } public final int hashCode() { @@ -52,13 +52,13 @@ public class u { public final String toString() { if (this.b != null) { - StringBuilder P = a.P("{class: "); - a.g0(this.b, P, ", typed? "); - return a.L(P, this.d, "}"); + StringBuilder O = a.O("{class: "); + a.f0(this.b, O, ", typed? "); + return a.K(O, this.d, "}"); } - StringBuilder P2 = a.P("{type: "); - P2.append(this.f587c); - P2.append(", typed? "); - return a.L(P2, this.d, "}"); + StringBuilder O2 = a.O("{type: "); + O2.append(this.f588c); + O2.append(", typed? "); + return a.K(O2, this.d, "}"); } } diff --git a/app/src/main/java/c/g/a/c/l.java b/app/src/main/java/c/g/a/c/l.java index ea82f9a47c..e0e8568488 100644 --- a/app/src/main/java/c/g/a/c/l.java +++ b/app/src/main/java/c/g/a/c/l.java @@ -8,6 +8,6 @@ public abstract class l extends m.a implements Iterable { /* JADX DEBUG: Type inference failed for r0v0. Raw type applied. Possible types: java.util.Iterator, java.util.Iterator */ @Override // java.lang.Iterable public final Iterator iterator() { - return d.f582c; + return d.f583c; } } diff --git a/app/src/main/java/c/g/a/c/t.java b/app/src/main/java/c/g/a/c/t.java index ca5ee43e08..cfebeca571 100644 --- a/app/src/main/java/c/g/a/c/t.java +++ b/app/src/main/java/c/g/a/c/t.java @@ -83,10 +83,10 @@ public class t implements Serializable { if (this._namespace == null) { return this._simpleName; } - StringBuilder P = a.P("{"); - P.append(this._namespace); - P.append("}"); - P.append(this._simpleName); - return P.toString(); + StringBuilder O = a.O("{"); + O.append(this._namespace); + O.append("}"); + O.append(this._simpleName); + return O.toString(); } } diff --git a/app/src/main/java/c/h/a/a/a.java b/app/src/main/java/c/h/a/a/a.java index 329da98ec0..be741e5bcf 100644 --- a/app/src/main/java/c/h/a/a/a.java +++ b/app/src/main/java/c/h/a/a/a.java @@ -15,15 +15,15 @@ public class a implements c { public RenderScript b; /* renamed from: c reason: collision with root package name */ - public ScriptIntrinsicBlur f596c; + public ScriptIntrinsicBlur f597c; public Allocation d; public Allocation e; @Override // c.h.a.a.c public void a(Bitmap bitmap, Bitmap bitmap2) { this.d.copyFrom(bitmap); - this.f596c.setInput(this.d); - this.f596c.forEach(this.e); + this.f597c.setInput(this.d); + this.f597c.forEach(this.e); this.e.copyTo(bitmap2); } @@ -34,7 +34,7 @@ public class a implements c { try { RenderScript create = RenderScript.create(context); this.b = create; - this.f596c = ScriptIntrinsicBlur.create(create, Element.U8_4(create)); + this.f597c = ScriptIntrinsicBlur.create(create, Element.U8_4(create)); } catch (RSRuntimeException e) { if (a == null && context != null) { a = Boolean.valueOf((context.getApplicationInfo().flags & 2) != 0); @@ -49,7 +49,7 @@ public class a implements c { throw e; } } - this.f596c.setRadius(f); + this.f597c.setRadius(f); Allocation createFromBitmap = Allocation.createFromBitmap(this.b, bitmap, Allocation.MipmapControl.MIPMAP_NONE, 1); this.d = createFromBitmap; this.e = Allocation.createTyped(this.b, createFromBitmap.getType()); @@ -68,10 +68,10 @@ public class a implements c { allocation2.destroy(); this.e = null; } - ScriptIntrinsicBlur scriptIntrinsicBlur = this.f596c; + ScriptIntrinsicBlur scriptIntrinsicBlur = this.f597c; if (scriptIntrinsicBlur != null) { scriptIntrinsicBlur.destroy(); - this.f596c = null; + this.f597c = null; } RenderScript renderScript = this.b; if (renderScript != null) { diff --git a/app/src/main/java/c/h/a/a/b.java b/app/src/main/java/c/h/a/a/b.java index 9cb12b40e3..e602319e07 100644 --- a/app/src/main/java/c/h/a/a/b.java +++ b/app/src/main/java/c/h/a/a/b.java @@ -13,15 +13,15 @@ public class b implements c { public RenderScript b; /* renamed from: c reason: collision with root package name */ - public ScriptIntrinsicBlur f597c; + public ScriptIntrinsicBlur f598c; public Allocation d; public Allocation e; @Override // c.h.a.a.c public void a(Bitmap bitmap, Bitmap bitmap2) { this.d.copyFrom(bitmap); - this.f597c.setInput(this.d); - this.f597c.forEach(this.e); + this.f598c.setInput(this.d); + this.f598c.forEach(this.e); this.e.copyTo(bitmap2); } @@ -32,7 +32,7 @@ public class b implements c { try { RenderScript create = RenderScript.create(context); this.b = create; - this.f597c = ScriptIntrinsicBlur.create(create, Element.U8_4(create)); + this.f598c = ScriptIntrinsicBlur.create(create, Element.U8_4(create)); } catch (RSRuntimeException e) { if (a == null && context != null) { a = Boolean.valueOf((context.getApplicationInfo().flags & 2) != 0); @@ -47,7 +47,7 @@ public class b implements c { throw e; } } - this.f597c.setRadius(f); + this.f598c.setRadius(f); Allocation createFromBitmap = Allocation.createFromBitmap(this.b, bitmap, Allocation.MipmapControl.MIPMAP_NONE, 1); this.d = createFromBitmap; this.e = Allocation.createTyped(this.b, createFromBitmap.getType()); @@ -66,10 +66,10 @@ public class b implements c { allocation2.destroy(); this.e = null; } - ScriptIntrinsicBlur scriptIntrinsicBlur = this.f597c; + ScriptIntrinsicBlur scriptIntrinsicBlur = this.f598c; if (scriptIntrinsicBlur != null) { scriptIntrinsicBlur.destroy(); - this.f597c = null; + this.f598c = null; } RenderScript renderScript = this.b; if (renderScript != null) { diff --git a/app/src/main/java/c/h/a/a/e.java b/app/src/main/java/c/h/a/a/e.java index f7c85f92d0..ebd57b694a 100644 --- a/app/src/main/java/c/h/a/a/e.java +++ b/app/src/main/java/c/h/a/a/e.java @@ -13,15 +13,15 @@ public class e implements c { public RenderScript b; /* renamed from: c reason: collision with root package name */ - public ScriptIntrinsicBlur f598c; + public ScriptIntrinsicBlur f599c; public Allocation d; public Allocation e; @Override // c.h.a.a.c public void a(Bitmap bitmap, Bitmap bitmap2) { this.d.copyFrom(bitmap); - this.f598c.setInput(this.d); - this.f598c.forEach(this.e); + this.f599c.setInput(this.d); + this.f599c.forEach(this.e); this.e.copyTo(bitmap2); } @@ -32,7 +32,7 @@ public class e implements c { try { RenderScript create = RenderScript.create(context); this.b = create; - this.f598c = ScriptIntrinsicBlur.create(create, Element.U8_4(create)); + this.f599c = ScriptIntrinsicBlur.create(create, Element.U8_4(create)); } catch (RSRuntimeException e) { if (a == null && context != null) { a = Boolean.valueOf((context.getApplicationInfo().flags & 2) != 0); @@ -47,7 +47,7 @@ public class e implements c { throw e; } } - this.f598c.setRadius(f); + this.f599c.setRadius(f); Allocation createFromBitmap = Allocation.createFromBitmap(this.b, bitmap, Allocation.MipmapControl.MIPMAP_NONE, 1); this.d = createFromBitmap; this.e = Allocation.createTyped(this.b, createFromBitmap.getType()); @@ -66,10 +66,10 @@ public class e implements c { allocation2.destroy(); this.e = null; } - ScriptIntrinsicBlur scriptIntrinsicBlur = this.f598c; + ScriptIntrinsicBlur scriptIntrinsicBlur = this.f599c; if (scriptIntrinsicBlur != null) { scriptIntrinsicBlur.destroy(); - this.f598c = null; + this.f599c = null; } RenderScript renderScript = this.b; if (renderScript != null) { diff --git a/app/src/main/java/c/i/a/b/b.java b/app/src/main/java/c/i/a/b/b.java index c7c8d97aad..1b4cba48f8 100644 --- a/app/src/main/java/c/i/a/b/b.java +++ b/app/src/main/java/c/i/a/b/b.java @@ -29,6 +29,6 @@ public final class b { @NonNull public String toString() { - return a.H(a.P("Encoding{name=\""), this.a, "\"}"); + return a.G(a.O("Encoding{name=\""), this.a, "\"}"); } } diff --git a/app/src/main/java/c/i/a/b/i/a.java b/app/src/main/java/c/i/a/b/i/a.java index 7103729609..a8f0e0b3d3 100644 --- a/app/src/main/java/c/i/a/b/i/a.java +++ b/app/src/main/java/c/i/a/b/i/a.java @@ -5,7 +5,6 @@ import androidx.annotation.Nullable; import c.i.a.b.b; import c.i.a.b.j.d; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.nio.charset.Charset; import java.util.Arrays; import java.util.Collections; @@ -14,11 +13,11 @@ import java.util.Set; import java.util.regex.Pattern; /* compiled from: CCTDestination */ public final class a implements d { - public static final String a = AnimatableValueParser.N1("hts/frbslgiggolai.o/0clgbthfra=snpoo", "tp:/ieaeogn.ogepscmvc/o/ac?omtjo_rt3"); + public static final String a = c.c.a.a0.d.k1("hts/frbslgiggolai.o/0clgbthfra=snpoo", "tp:/ieaeogn.ogepscmvc/o/ac?omtjo_rt3"); public static final String b; /* renamed from: c reason: collision with root package name */ - public static final String f599c; + public static final String f600c; public static final Set d = Collections.unmodifiableSet(new HashSet(Arrays.asList(new b("proto"), new b("json")))); public static final a e; @NonNull @@ -27,11 +26,11 @@ public final class a implements d { public final String g; static { - String N1 = AnimatableValueParser.N1("hts/frbslgigp.ogepscmv/ieo/eaybtho", "tp:/ieaeogn-agolai.o/1frlglgc/aclg"); - b = N1; - String N12 = AnimatableValueParser.N1("AzSCki82AwsLzKd5O8zo", "IayckHiZRO1EFl1aGoK"); - f599c = N12; - e = new a(N1, N12); + String k1 = c.c.a.a0.d.k1("hts/frbslgigp.ogepscmv/ieo/eaybtho", "tp:/ieaeogn-agolai.o/1frlglgc/aclg"); + b = k1; + String k12 = c.c.a.a0.d.k1("AzSCki82AwsLzKd5O8zo", "IayckHiZRO1EFl1aGoK"); + f600c = k12; + e = new a(k1, k12); } public a(@NonNull String str, @Nullable String str2) { diff --git a/app/src/main/java/c/i/a/b/i/b.java b/app/src/main/java/c/i/a/b/i/b.java index d0ebeb0c0a..6e4871e425 100644 --- a/app/src/main/java/c/i/a/b/i/b.java +++ b/app/src/main/java/c/i/a/b/i/b.java @@ -4,7 +4,6 @@ import androidx.browser.trusted.sharing.ShareTarget; import c.i.a.b.i.d; import c.i.a.b.i.e.h; import c.i.a.b.i.e.n; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.restapi.RestAPIBuilder; import com.google.firebase.encoders.EncodingException; import java.io.BufferedReader; @@ -33,7 +32,7 @@ public final /* synthetic */ class b { d dVar = this.a; d.a aVar = (d.a) obj; Objects.requireNonNull(dVar); - AnimatableValueParser.Z("CctTransportBackend", "Making request to: %s", aVar.a); + c.c.a.a0.d.Z("CctTransportBackend", "Making request to: %s", aVar.a); HttpURLConnection httpURLConnection = (HttpURLConnection) aVar.a.openConnection(); httpURLConnection.setConnectTimeout(30000); httpURLConnection.setReadTimeout(dVar.g); @@ -44,7 +43,7 @@ public final /* synthetic */ class b { httpURLConnection.setRequestProperty("Content-Encoding", "gzip"); httpURLConnection.setRequestProperty("Content-Type", RestAPIBuilder.CONTENT_TYPE_JSON); httpURLConnection.setRequestProperty("Accept-Encoding", "gzip"); - String str = aVar.f601c; + String str = aVar.f602c; if (str != null) { httpURLConnection.setRequestProperty("X-Goog-Api-Key", str); } @@ -59,9 +58,9 @@ public final /* synthetic */ class b { outputStream.close(); } int responseCode = httpURLConnection.getResponseCode(); - AnimatableValueParser.X0("CctTransportBackend", "Status Code: " + responseCode); - AnimatableValueParser.X0("CctTransportBackend", "Content-Type: " + httpURLConnection.getHeaderField("Content-Type")); - AnimatableValueParser.X0("CctTransportBackend", "Content-Encoding: " + httpURLConnection.getHeaderField("Content-Encoding")); + c.c.a.a0.d.O0("CctTransportBackend", "Status Code: " + responseCode); + c.c.a.a0.d.O0("CctTransportBackend", "Content-Type: " + httpURLConnection.getHeaderField("Content-Type")); + c.c.a.a0.d.O0("CctTransportBackend", "Content-Encoding: " + httpURLConnection.getHeaderField("Content-Encoding")); if (responseCode == 302 || responseCode == 301 || responseCode == 307) { return new d.b(responseCode, new URL(httpURLConnection.getHeaderField("Location")), 0); } @@ -93,10 +92,10 @@ public final /* synthetic */ class b { } catch (Throwable unused4) { } } catch (ConnectException | UnknownHostException e) { - AnimatableValueParser.e0("CctTransportBackend", "Couldn't open connection, returning with 500", e); + c.c.a.a0.d.e0("CctTransportBackend", "Couldn't open connection, returning with 500", e); return new d.b(500, null, 0); } catch (EncodingException | IOException e2) { - AnimatableValueParser.e0("CctTransportBackend", "Couldn't encode request, returning with 400", e2); + c.c.a.a0.d.e0("CctTransportBackend", "Couldn't encode request, returning with 400", e2); return new d.b(400, null, 0); } } diff --git a/app/src/main/java/c/i/a/b/i/d.java b/app/src/main/java/c/i/a/b/i/d.java index a5317a1f76..018e7f7524 100644 --- a/app/src/main/java/c/i/a/b/i/d.java +++ b/app/src/main/java/c/i/a/b/i/d.java @@ -21,7 +21,6 @@ import c.i.a.b.j.q.g; import c.i.a.b.j.q.m; import c.i.c.p.h.e; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; @@ -40,7 +39,7 @@ public final class d implements m { public final ConnectivityManager b; /* renamed from: c reason: collision with root package name */ - public final Context f600c; + public final Context f601c; public final URL d = c(a.a); public final c.i.a.b.j.v.a e; public final c.i.a.b.j.v.a f; @@ -53,12 +52,12 @@ public final class d implements m { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f601c; + public final String f602c; public a(URL url, j jVar, @Nullable String str) { this.a = url; this.b = jVar; - this.f601c = str; + this.f602c = str; } } @@ -69,12 +68,12 @@ public final class d implements m { public final URL b; /* renamed from: c reason: collision with root package name */ - public final long f602c; + public final long f603c; public b(int i, @Nullable URL url, long j) { this.a = i; this.b = url; - this.f602c = j; + this.f603c = j; } } @@ -83,7 +82,7 @@ public final class d implements m { ((c.i.a.b.i.e.b) c.i.a.b.i.e.b.a).a(eVar); eVar.e = true; this.a = new c.i.c.p.h.d(eVar); - this.f600c = context; + this.f601c = context; this.b = (ConnectivityManager) context.getSystemService("connectivity"); this.e = aVar2; this.f = aVar; @@ -153,13 +152,13 @@ public final class d implements m { bVar.e = str3; } else { aVar2 = aVar3; - Log.w(AnimatableValueParser.N0("CctTransportBackend"), String.format("Received event of unsupported encoding %s. Skipping...", bVar2)); + Log.w(c.c.a.a0.d.F0("CctTransportBackend"), String.format("Received event of unsupported encoding %s. Skipping...", bVar2)); it2 = it2; it = it; aVar3 = aVar2; } bVar.a = Long.valueOf(fVar4.e()); - bVar.f605c = Long.valueOf(fVar4.h()); + bVar.f606c = Long.valueOf(fVar4.h()); String str4 = fVar4.b().get("tz-offset"); bVar.f = Long.valueOf(str4 == null ? 0 : Long.valueOf(str4).longValue()); aVar2 = aVar3; @@ -168,14 +167,14 @@ public final class d implements m { bVar.b = fVar4.c(); } String str5 = bVar.a == null ? " eventTimeMs" : ""; - if (bVar.f605c == null) { + if (bVar.f606c == null) { str5 = c.d.b.a.a.u(str5, " eventUptimeMs"); } if (bVar.f == null) { str5 = c.d.b.a.a.u(str5, " timezoneOffsetSeconds"); } if (str5.isEmpty()) { - arrayList3.add(new c.i.a.b.i.e.f(bVar.a.longValue(), bVar.b, bVar.f605c.longValue(), bVar.d, bVar.e, bVar.f.longValue(), bVar.g, null)); + arrayList3.add(new c.i.a.b.i.e.f(bVar.a.longValue(), bVar.b, bVar.f606c.longValue(), bVar.d, bVar.e, bVar.f.longValue(), bVar.g, null)); it2 = it2; it = it; aVar3 = aVar2; @@ -213,10 +212,10 @@ public final class d implements m { } } try { - b bVar3 = (b) AnimatableValueParser.w2(5, new a(url, dVar, str2), new b(this), c.a); + b bVar3 = (b) c.c.a.a0.d.T1(5, new a(url, dVar, str2), new b(this), c.a); int i = bVar3.a; if (i == 200) { - return new c.i.a.b.j.q.b(g.a.OK, bVar3.f602c); + return new c.i.a.b.j.q.b(g.a.OK, bVar3.f603c); } if (i < 500) { if (i != 404) { @@ -228,13 +227,13 @@ public final class d implements m { return new c.i.a.b.j.q.b(aVar, -1); } catch (IOException e2) { e = e2; - AnimatableValueParser.e0("CctTransportBackend", "Could not make request to the backend", e); + c.c.a.a0.d.e0("CctTransportBackend", "Could not make request to the backend", e); return new c.i.a.b.j.q.b(aVar, -1); } } catch (IOException e3) { e = e3; aVar = aVar3; - AnimatableValueParser.e0("CctTransportBackend", "Could not make request to the backend", e); + c.c.a.a0.d.e0("CctTransportBackend", "Could not make request to the backend", e); return new c.i.a.b.j.q.b(aVar, -1); } } @@ -271,12 +270,12 @@ public final class d implements m { i2.c().put("mobile-subtype", String.valueOf(i)); i2.c().put("country", Locale.getDefault().getCountry()); i2.c().put("locale", Locale.getDefault().getLanguage()); - i2.c().put("mcc_mnc", ((TelephonyManager) this.f600c.getSystemService("phone")).getSimOperator()); - Context context = this.f600c; + i2.c().put("mcc_mnc", ((TelephonyManager) this.f601c.getSystemService("phone")).getSimOperator()); + Context context = this.f601c; try { i3 = context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionCode; } catch (PackageManager.NameNotFoundException e) { - AnimatableValueParser.e0("CctTransportBackend", "Unable to find version code for package", e); + c.c.a.a0.d.e0("CctTransportBackend", "Unable to find version code for package", e); } i2.c().put("application_build", Integer.toString(i3)); return i2.b(); diff --git a/app/src/main/java/c/i/a/b/i/e/b.java b/app/src/main/java/c/i/a/b/i/e/b.java index 104b6cf0f2..a74d124d82 100644 --- a/app/src/main/java/c/i/a/b/i/e/b.java +++ b/app/src/main/java/c/i/a/b/i/e/b.java @@ -111,33 +111,33 @@ public final class b implements c.i.c.p.g.a { C0078b bVar2 = C0078b.a; c.i.c.p.h.e eVar = (c.i.c.p.h.e) bVar; eVar.b.put(j.class, bVar2); - eVar.f1371c.remove(j.class); + eVar.f1372c.remove(j.class); eVar.b.put(d.class, bVar2); - eVar.f1371c.remove(d.class); + eVar.f1372c.remove(d.class); e eVar2 = e.a; eVar.b.put(m.class, eVar2); - eVar.f1371c.remove(m.class); + eVar.f1372c.remove(m.class); eVar.b.put(g.class, eVar2); - eVar.f1371c.remove(g.class); + eVar.f1372c.remove(g.class); c cVar = c.a; eVar.b.put(k.class, cVar); - eVar.f1371c.remove(k.class); + eVar.f1372c.remove(k.class); eVar.b.put(e.class, cVar); - eVar.f1371c.remove(e.class); + eVar.f1372c.remove(e.class); a aVar = a.a; eVar.b.put(a.class, aVar); - eVar.f1371c.remove(a.class); + eVar.f1372c.remove(a.class); eVar.b.put(c.class, aVar); - eVar.f1371c.remove(c.class); + eVar.f1372c.remove(c.class); d dVar = d.a; eVar.b.put(l.class, dVar); - eVar.f1371c.remove(l.class); + eVar.f1372c.remove(l.class); eVar.b.put(f.class, dVar); - eVar.f1371c.remove(f.class); + eVar.f1372c.remove(f.class); f fVar = f.a; eVar.b.put(o.class, fVar); - eVar.f1371c.remove(o.class); + eVar.f1372c.remove(o.class); eVar.b.put(i.class, fVar); - eVar.f1371c.remove(i.class); + eVar.f1372c.remove(i.class); } } diff --git a/app/src/main/java/c/i/a/b/i/e/c.java b/app/src/main/java/c/i/a/b/i/e/c.java index 6ba7a55856..afb681f7fb 100644 --- a/app/src/main/java/c/i/a/b/i/e/c.java +++ b/app/src/main/java/c/i/a/b/i/e/c.java @@ -7,7 +7,7 @@ public final class c extends a { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f603c; + public final String f604c; public final String d; public final String e; public final String f; @@ -21,7 +21,7 @@ public final class c extends a { public c(Integer num, String str, String str2, String str3, String str4, String str5, String str6, String str7, String str8, String str9, String str10, String str11, a aVar) { this.a = num; this.b = str; - this.f603c = str2; + this.f604c = str2; this.d = str3; this.e = str4; this.f = str5; @@ -60,7 +60,7 @@ public final class c extends a { @Override // c.i.a.b.i.e.a @Nullable public String e() { - return this.f603c; + return this.f604c; } public boolean equals(Object obj) { @@ -75,7 +75,7 @@ public final class c extends a { if (num != null ? num.equals(aVar.l()) : aVar.l() == null) { String str = this.b; if (str != null ? str.equals(aVar.i()) : aVar.i() == null) { - String str2 = this.f603c; + String str2 = this.f604c; if (str2 != null ? str2.equals(aVar.e()) : aVar.e() == null) { String str3 = this.d; if (str3 != null ? str3.equals(aVar.c()) : aVar.c() == null) { @@ -139,7 +139,7 @@ public final class c extends a { int hashCode = ((num == null ? 0 : num.hashCode()) ^ 1000003) * 1000003; String str = this.b; int hashCode2 = (hashCode ^ (str == null ? 0 : str.hashCode())) * 1000003; - String str2 = this.f603c; + String str2 = this.f604c; int hashCode3 = (hashCode2 ^ (str2 == null ? 0 : str2.hashCode())) * 1000003; String str3 = this.d; int hashCode4 = (hashCode3 ^ (str3 == null ? 0 : str3.hashCode())) * 1000003; @@ -189,29 +189,29 @@ public final class c extends a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("AndroidClientInfo{sdkVersion="); - P.append(this.a); - P.append(", model="); - P.append(this.b); - P.append(", hardware="); - P.append(this.f603c); - P.append(", device="); - P.append(this.d); - P.append(", product="); - P.append(this.e); - P.append(", osBuild="); - P.append(this.f); - P.append(", manufacturer="); - P.append(this.g); - P.append(", fingerprint="); - P.append(this.h); - P.append(", locale="); - P.append(this.i); - P.append(", country="); - P.append(this.j); - P.append(", mccMnc="); - P.append(this.k); - P.append(", applicationBuild="); - return c.d.b.a.a.H(P, this.l, "}"); + StringBuilder O = c.d.b.a.a.O("AndroidClientInfo{sdkVersion="); + O.append(this.a); + O.append(", model="); + O.append(this.b); + O.append(", hardware="); + O.append(this.f604c); + O.append(", device="); + O.append(this.d); + O.append(", product="); + O.append(this.e); + O.append(", osBuild="); + O.append(this.f); + O.append(", manufacturer="); + O.append(this.g); + O.append(", fingerprint="); + O.append(this.h); + O.append(", locale="); + O.append(this.i); + O.append(", country="); + O.append(this.j); + O.append(", mccMnc="); + O.append(this.k); + O.append(", applicationBuild="); + return c.d.b.a.a.G(O, this.l, "}"); } } diff --git a/app/src/main/java/c/i/a/b/i/e/d.java b/app/src/main/java/c/i/a/b/i/e/d.java index 50ade6e3e9..6608c94fdc 100644 --- a/app/src/main/java/c/i/a/b/i/e/d.java +++ b/app/src/main/java/c/i/a/b/i/e/d.java @@ -34,6 +34,6 @@ public final class d extends j { } public String toString() { - return a.J(a.P("BatchedLogRequest{logRequests="), this.a, "}"); + return a.H(a.O("BatchedLogRequest{logRequests="), this.a, "}"); } } diff --git a/app/src/main/java/c/i/a/b/i/e/e.java b/app/src/main/java/c/i/a/b/i/e/e.java index e768a2f8b6..ce0a7ed361 100644 --- a/app/src/main/java/c/i/a/b/i/e/e.java +++ b/app/src/main/java/c/i/a/b/i/e/e.java @@ -58,11 +58,11 @@ public final class e extends k { } public String toString() { - StringBuilder P = c.d.b.a.a.P("ClientInfo{clientType="); - P.append(this.a); - P.append(", androidClientInfo="); - P.append(this.b); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("ClientInfo{clientType="); + O.append(this.a); + O.append(", androidClientInfo="); + O.append(this.b); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/i/e/f.java b/app/src/main/java/c/i/a/b/i/e/f.java index 7224d1de0f..1929edf06d 100644 --- a/app/src/main/java/c/i/a/b/i/e/f.java +++ b/app/src/main/java/c/i/a/b/i/e/f.java @@ -9,7 +9,7 @@ public final class f extends l { public final Integer b; /* renamed from: c reason: collision with root package name */ - public final long f604c; + public final long f605c; public final byte[] d; public final String e; public final long f; @@ -21,7 +21,7 @@ public final class f extends l { public Integer b; /* renamed from: c reason: collision with root package name */ - public Long f605c; + public Long f606c; public byte[] d; public String e; public Long f; @@ -31,7 +31,7 @@ public final class f extends l { public f(long j, Integer num, long j2, byte[] bArr, String str, long j3, o oVar, a aVar) { this.a = j; this.b = num; - this.f604c = j2; + this.f605c = j2; this.d = bArr; this.e = str; this.f = j3; @@ -51,7 +51,7 @@ public final class f extends l { @Override // c.i.a.b.i.e.l public long c() { - return this.f604c; + return this.f605c; } @Override // c.i.a.b.i.e.l @@ -76,7 +76,7 @@ public final class f extends l { return false; } l lVar = (l) obj; - if (this.a == lVar.b() && ((num = this.b) != null ? num.equals(lVar.a()) : lVar.a() == null) && this.f604c == lVar.c()) { + if (this.a == lVar.b() && ((num = this.b) != null ? num.equals(lVar.a()) : lVar.a() == null) && this.f605c == lVar.c()) { if (Arrays.equals(this.d, lVar instanceof f ? ((f) lVar).d : lVar.e()) && ((str = this.e) != null ? str.equals(lVar.f()) : lVar.f() == null) && this.f == lVar.g()) { o oVar = this.g; if (oVar == null) { @@ -108,7 +108,7 @@ public final class f extends l { Integer num = this.b; int i2 = 0; int hashCode = num == null ? 0 : num.hashCode(); - long j2 = this.f604c; + long j2 = this.f605c; int hashCode2 = (((((i ^ hashCode) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32)))) * 1000003) ^ Arrays.hashCode(this.d)) * 1000003; String str = this.e; int hashCode3 = str == null ? 0 : str.hashCode(); @@ -122,21 +122,21 @@ public final class f extends l { } public String toString() { - StringBuilder P = c.d.b.a.a.P("LogEvent{eventTimeMs="); - P.append(this.a); - P.append(", eventCode="); - P.append(this.b); - P.append(", eventUptimeMs="); - P.append(this.f604c); - P.append(", sourceExtension="); - P.append(Arrays.toString(this.d)); - P.append(", sourceExtensionJsonProto3="); - P.append(this.e); - P.append(", timezoneOffsetSeconds="); - P.append(this.f); - P.append(", networkConnectionInfo="); - P.append(this.g); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("LogEvent{eventTimeMs="); + O.append(this.a); + O.append(", eventCode="); + O.append(this.b); + O.append(", eventUptimeMs="); + O.append(this.f605c); + O.append(", sourceExtension="); + O.append(Arrays.toString(this.d)); + O.append(", sourceExtensionJsonProto3="); + O.append(this.e); + O.append(", timezoneOffsetSeconds="); + O.append(this.f); + O.append(", networkConnectionInfo="); + O.append(this.g); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/i/e/g.java b/app/src/main/java/c/i/a/b/i/e/g.java index 53e30e052e..a66b96689b 100644 --- a/app/src/main/java/c/i/a/b/i/e/g.java +++ b/app/src/main/java/c/i/a/b/i/e/g.java @@ -8,7 +8,7 @@ public final class g extends m { public final long b; /* renamed from: c reason: collision with root package name */ - public final k f606c; + public final k f607c; public final Integer d; public final String e; public final List f; @@ -17,7 +17,7 @@ public final class g extends m { public g(long j, long j2, k kVar, Integer num, String str, List list, p pVar, a aVar) { this.a = j; this.b = j2; - this.f606c = kVar; + this.f607c = kVar; this.d = num; this.e = str; this.f = list; @@ -27,7 +27,7 @@ public final class g extends m { @Override // c.i.a.b.i.e.m @Nullable public k a() { - return this.f606c; + return this.f607c; } @Override // c.i.a.b.i.e.m @@ -66,7 +66,7 @@ public final class g extends m { return false; } m mVar = (m) obj; - if (this.a == mVar.f() && this.b == mVar.g() && ((kVar = this.f606c) != null ? kVar.equals(mVar.a()) : mVar.a() == null) && ((num = this.d) != null ? num.equals(mVar.c()) : mVar.c() == null) && ((str = this.e) != null ? str.equals(mVar.d()) : mVar.d() == null) && ((list = this.f) != null ? list.equals(mVar.b()) : mVar.b() == null)) { + if (this.a == mVar.f() && this.b == mVar.g() && ((kVar = this.f607c) != null ? kVar.equals(mVar.a()) : mVar.a() == null) && ((num = this.d) != null ? num.equals(mVar.c()) : mVar.c() == null) && ((str = this.e) != null ? str.equals(mVar.d()) : mVar.d() == null) && ((list = this.f) != null ? list.equals(mVar.b()) : mVar.b() == null)) { p pVar = this.g; if (pVar == null) { if (mVar.e() == null) { @@ -93,7 +93,7 @@ public final class g extends m { long j = this.a; long j2 = this.b; int i = (((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003; - k kVar = this.f606c; + k kVar = this.f607c; int i2 = 0; int hashCode = (i ^ (kVar == null ? 0 : kVar.hashCode())) * 1000003; Integer num = this.d; @@ -110,21 +110,21 @@ public final class g extends m { } public String toString() { - StringBuilder P = c.d.b.a.a.P("LogRequest{requestTimeMs="); - P.append(this.a); - P.append(", requestUptimeMs="); - P.append(this.b); - P.append(", clientInfo="); - P.append(this.f606c); - P.append(", logSource="); - P.append(this.d); - P.append(", logSourceName="); - P.append(this.e); - P.append(", logEvents="); - P.append(this.f); - P.append(", qosTier="); - P.append(this.g); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("LogRequest{requestTimeMs="); + O.append(this.a); + O.append(", requestUptimeMs="); + O.append(this.b); + O.append(", clientInfo="); + O.append(this.f607c); + O.append(", logSource="); + O.append(this.d); + O.append(", logSourceName="); + O.append(this.e); + O.append(", logEvents="); + O.append(this.f); + O.append(", qosTier="); + O.append(this.g); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/i/e/h.java b/app/src/main/java/c/i/a/b/i/e/h.java index 525e2c3de4..00068a7f8b 100644 --- a/app/src/main/java/c/i/a/b/i/e/h.java +++ b/app/src/main/java/c/i/a/b/i/e/h.java @@ -27,6 +27,6 @@ public final class h extends n { } public String toString() { - return a.A(a.P("LogResponse{nextRequestWaitMillis="), this.a, "}"); + return a.A(a.O("LogResponse{nextRequestWaitMillis="), this.a, "}"); } } diff --git a/app/src/main/java/c/i/a/b/i/e/i.java b/app/src/main/java/c/i/a/b/i/e/i.java index 8042ffd391..07a60cff6a 100644 --- a/app/src/main/java/c/i/a/b/i/e/i.java +++ b/app/src/main/java/c/i/a/b/i/e/i.java @@ -58,11 +58,11 @@ public final class i extends o { } public String toString() { - StringBuilder P = c.d.b.a.a.P("NetworkConnectionInfo{networkType="); - P.append(this.a); - P.append(", mobileSubtype="); - P.append(this.b); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("NetworkConnectionInfo{networkType="); + O.append(this.a); + O.append(", mobileSubtype="); + O.append(this.b); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/j/a.java b/app/src/main/java/c/i/a/b/j/a.java index 6900515d94..877e136b22 100644 --- a/app/src/main/java/c/i/a/b/j/a.java +++ b/app/src/main/java/c/i/a/b/j/a.java @@ -10,7 +10,7 @@ public final class a extends f { public final Integer b; /* renamed from: c reason: collision with root package name */ - public final e f615c; + public final e f616c; public final long d; public final long e; public final Map f; @@ -21,7 +21,7 @@ public final class a extends f { public Integer b; /* renamed from: c reason: collision with root package name */ - public e f616c; + public e f617c; public Long d; public Long e; public Map f; @@ -29,7 +29,7 @@ public final class a extends f { @Override // c.i.a.b.j.f.a public f b() { String str = this.a == null ? " transportName" : ""; - if (this.f616c == null) { + if (this.f617c == null) { str = c.d.b.a.a.u(str, " encodedPayload"); } if (this.d == null) { @@ -42,7 +42,7 @@ public final class a extends f { str = c.d.b.a.a.u(str, " autoMetadata"); } if (str.isEmpty()) { - return new a(this.a, this.b, this.f616c, this.d.longValue(), this.e.longValue(), this.f, null); + return new a(this.a, this.b, this.f617c, this.d.longValue(), this.e.longValue(), this.f, null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -58,7 +58,7 @@ public final class a extends f { public f.a d(e eVar) { Objects.requireNonNull(eVar, "Null encodedPayload"); - this.f616c = eVar; + this.f617c = eVar; return this; } @@ -82,7 +82,7 @@ public final class a extends f { public a(String str, Integer num, e eVar, long j, long j2, Map map, C0079a aVar) { this.a = str; this.b = num; - this.f615c = eVar; + this.f616c = eVar; this.d = j; this.e = j2; this.f = map; @@ -101,7 +101,7 @@ public final class a extends f { @Override // c.i.a.b.j.f public e d() { - return this.f615c; + return this.f616c; } @Override // c.i.a.b.j.f @@ -118,7 +118,7 @@ public final class a extends f { return false; } f fVar = (f) obj; - return this.a.equals(fVar.g()) && ((num = this.b) != null ? num.equals(fVar.c()) : fVar.c() == null) && this.f615c.equals(fVar.d()) && this.d == fVar.e() && this.e == fVar.h() && this.f.equals(fVar.b()); + return this.a.equals(fVar.g()) && ((num = this.b) != null ? num.equals(fVar.c()) : fVar.c() == null) && this.f616c.equals(fVar.d()) && this.d == fVar.e() && this.e == fVar.h() && this.f.equals(fVar.b()); } @Override // c.i.a.b.j.f @@ -137,21 +137,21 @@ public final class a extends f { int hashCode2 = num == null ? 0 : num.hashCode(); long j = this.d; long j2 = this.e; - return ((((((((hashCode ^ hashCode2) * 1000003) ^ this.f615c.hashCode()) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32)))) * 1000003) ^ this.f.hashCode(); + return ((((((((hashCode ^ hashCode2) * 1000003) ^ this.f616c.hashCode()) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32)))) * 1000003) ^ this.f.hashCode(); } public String toString() { - StringBuilder P = c.d.b.a.a.P("EventInternal{transportName="); - P.append(this.a); - P.append(", code="); - P.append(this.b); - P.append(", encodedPayload="); - P.append(this.f615c); - P.append(", eventMillis="); - P.append(this.d); - P.append(", uptimeMillis="); - P.append(this.e); - P.append(", autoMetadata="); - return c.d.b.a.a.K(P, this.f, "}"); + StringBuilder O = c.d.b.a.a.O("EventInternal{transportName="); + O.append(this.a); + O.append(", code="); + O.append(this.b); + O.append(", encodedPayload="); + O.append(this.f616c); + O.append(", eventMillis="); + O.append(this.d); + O.append(", uptimeMillis="); + O.append(this.e); + O.append(", autoMetadata="); + return c.d.b.a.a.J(O, this.f, "}"); } } diff --git a/app/src/main/java/c/i/a/b/j/b.java b/app/src/main/java/c/i/a/b/j/b.java index 22faa10d9b..22967db36f 100644 --- a/app/src/main/java/c/i/a/b/j/b.java +++ b/app/src/main/java/c/i/a/b/j/b.java @@ -12,7 +12,7 @@ public final class b extends i { public final byte[] b; /* renamed from: c reason: collision with root package name */ - public final d f617c; + public final d f618c; /* compiled from: AutoValue_TransportContext */ /* renamed from: c.i.a.b.j.b$b reason: collision with other inner class name */ @@ -21,16 +21,16 @@ public final class b extends i { public byte[] b; /* renamed from: c reason: collision with root package name */ - public d f618c; + public d f619c; @Override // c.i.a.b.j.i.a public i a() { String str = this.a == null ? " backendName" : ""; - if (this.f618c == null) { + if (this.f619c == null) { str = c.d.b.a.a.u(str, " priority"); } if (str.isEmpty()) { - return new b(this.a, this.b, this.f618c, null); + return new b(this.a, this.b, this.f619c, null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -45,7 +45,7 @@ public final class b extends i { @Override // c.i.a.b.j.i.a public i.a c(d dVar) { Objects.requireNonNull(dVar, "Null priority"); - this.f618c = dVar; + this.f619c = dVar; return this; } } @@ -53,7 +53,7 @@ public final class b extends i { public b(String str, byte[] bArr, d dVar, a aVar) { this.a = str; this.b = bArr; - this.f617c = dVar; + this.f618c = dVar; } @Override // c.i.a.b.j.i @@ -70,7 +70,7 @@ public final class b extends i { @Override // c.i.a.b.j.i @RestrictTo({RestrictTo.Scope.LIBRARY_GROUP}) public d d() { - return this.f617c; + return this.f618c; } public boolean equals(Object obj) { @@ -82,7 +82,7 @@ public final class b extends i { } i iVar = (i) obj; if (this.a.equals(iVar.b())) { - if (Arrays.equals(this.b, iVar instanceof b ? ((b) iVar).b : iVar.c()) && this.f617c.equals(iVar.d())) { + if (Arrays.equals(this.b, iVar instanceof b ? ((b) iVar).b : iVar.c()) && this.f618c.equals(iVar.d())) { return true; } } @@ -90,6 +90,6 @@ public final class b extends i { } public int hashCode() { - return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ Arrays.hashCode(this.b)) * 1000003) ^ this.f617c.hashCode(); + return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ Arrays.hashCode(this.b)) * 1000003) ^ this.f618c.hashCode(); } } diff --git a/app/src/main/java/c/i/a/b/j/c.java b/app/src/main/java/c/i/a/b/j/c.java index 0e138d893c..63020f47e4 100644 --- a/app/src/main/java/c/i/a/b/j/c.java +++ b/app/src/main/java/c/i/a/b/j/c.java @@ -35,7 +35,7 @@ public final class c extends o { public c0.a.a r; /* renamed from: s reason: collision with root package name */ - public c0.a.a

f619s; + public c0.a.a

f620s; public c0.a.a t; public c(Context context, a aVar) { @@ -68,7 +68,7 @@ public final class c extends o { m mVar = new m(aVar4, aVar6, aVar3, gVar, aVar5, aVar3, bVar2); this.r = mVar; q qVar = new q(aVar5, aVar3, gVar, aVar3); - this.f619s = qVar; + this.f620s = qVar; c0.a.a pVar = new p(bVar2, cVar, dVar, mVar, qVar); this.t = !(pVar instanceof c.i.a.b.j.r.a.a) ? new c.i.a.b.j.r.a.a(pVar) : pVar; } diff --git a/app/src/main/java/c/i/a/b/j/e.java b/app/src/main/java/c/i/a/b/j/e.java index 6f98902bb2..0222595000 100644 --- a/app/src/main/java/c/i/a/b/j/e.java +++ b/app/src/main/java/c/i/a/b/j/e.java @@ -36,9 +36,9 @@ public final class e { } public String toString() { - StringBuilder P = a.P("EncodedPayload{encoding="); - P.append(this.a); - P.append(", bytes=[...]}"); - return P.toString(); + StringBuilder O = a.O("EncodedPayload{encoding="); + O.append(this.a); + O.append(", bytes=[...]}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/j/h.java b/app/src/main/java/c/i/a/b/j/h.java index 55d4114d15..161b5ef9a8 100644 --- a/app/src/main/java/c/i/a/b/j/h.java +++ b/app/src/main/java/c/i/a/b/j/h.java @@ -1,6 +1,6 @@ package c.i.a.b.j; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.concurrent.Executor; /* compiled from: SafeLoggingExecutor */ public class h implements Executor { @@ -19,7 +19,7 @@ public class h implements Executor { try { this.i.run(); } catch (Exception e) { - AnimatableValueParser.e0("Executor", "Background execution failure.", e); + d.e0("Executor", "Background execution failure.", e); } } } diff --git a/app/src/main/java/c/i/a/b/j/j.java b/app/src/main/java/c/i/a/b/j/j.java index cff0c4f7c0..14b97e6581 100644 --- a/app/src/main/java/c/i/a/b/j/j.java +++ b/app/src/main/java/c/i/a/b/j/j.java @@ -11,18 +11,18 @@ public final class j implements g { public final i b; /* renamed from: c reason: collision with root package name */ - public final m f620c; + public final m f621c; public j(Set set, i iVar, m mVar) { this.a = set; this.b = iVar; - this.f620c = mVar; + this.f621c = mVar; } @Override // c.i.a.b.g public f a(String str, Class cls, b bVar, e eVar) { if (this.a.contains(bVar)) { - return new l(this.b, str, bVar, eVar, this.f620c); + return new l(this.b, str, bVar, eVar, this.f621c); } throw new IllegalArgumentException(String.format("%s is not supported byt this factory. Supported encodings are: %s.", bVar, this.a)); } diff --git a/app/src/main/java/c/i/a/b/j/l.java b/app/src/main/java/c/i/a/b/j/l.java index 15ad0b7346..3772d533e4 100644 --- a/app/src/main/java/c/i/a/b/j/l.java +++ b/app/src/main/java/c/i/a/b/j/l.java @@ -17,14 +17,14 @@ public final class l implements f { public final String b; /* renamed from: c reason: collision with root package name */ - public final b f621c; + public final b f622c; public final e d; public final m e; public l(i iVar, String str, b bVar, e eVar, m mVar) { this.a = iVar; this.b = str; - this.f621c = bVar; + this.f622c = bVar; this.d = eVar; this.e = mVar; } @@ -44,7 +44,7 @@ public final class l implements f { Objects.requireNonNull(str, "Null transportName"); e eVar = this.d; Objects.requireNonNull(eVar, "Null transformer"); - b bVar = this.f621c; + b bVar = this.f622c; Objects.requireNonNull(bVar, "Null encoding"); n nVar = (n) mVar; c.i.a.b.j.t.e eVar2 = nVar.d; @@ -58,7 +58,7 @@ public final class l implements f { a.b bVar3 = new a.b(); bVar3.f = new HashMap(); bVar3.e(nVar.b.a()); - bVar3.g(nVar.f622c.a()); + bVar3.g(nVar.f623c.a()); bVar3.f(str); bVar3.d(new e(bVar, eVar.apply(cVar.b()))); bVar3.b = cVar.a(); diff --git a/app/src/main/java/c/i/a/b/j/n.java b/app/src/main/java/c/i/a/b/j/n.java index 6a447ba4a4..abced6cfde 100644 --- a/app/src/main/java/c/i/a/b/j/n.java +++ b/app/src/main/java/c/i/a/b/j/n.java @@ -18,13 +18,13 @@ public class n implements m { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f622c; + public final a f623c; public final e d; public final l e; public n(a aVar, a aVar2, e eVar, l lVar, p pVar) { this.b = aVar; - this.f622c = aVar2; + this.f623c = aVar2; this.d = eVar; this.e = lVar; pVar.a.execute(new c.i.a.b.j.t.h.n(pVar)); diff --git a/app/src/main/java/c/i/a/b/j/p.java b/app/src/main/java/c/i/a/b/j/p.java index a467079719..7aed6448b9 100644 --- a/app/src/main/java/c/i/a/b/j/p.java +++ b/app/src/main/java/c/i/a/b/j/p.java @@ -9,20 +9,20 @@ public final class p implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f623c; + public final a f624c; public final a d; public final a e; public p(a aVar, a aVar2, a aVar3, a aVar4, a aVar5) { this.a = aVar; this.b = aVar2; - this.f623c = aVar3; + this.f624c = aVar3; this.d = aVar4; this.e = aVar5; } @Override // c0.a.a public Object get() { - return new n(this.a.get(), this.b.get(), this.f623c.get(), this.d.get(), this.e.get()); + return new n(this.a.get(), this.b.get(), this.f624c.get(), this.d.get(), this.e.get()); } } diff --git a/app/src/main/java/c/i/a/b/j/q/a.java b/app/src/main/java/c/i/a/b/j/q/a.java index ad1207c01f..46452b6618 100644 --- a/app/src/main/java/c/i/a/b/j/q/a.java +++ b/app/src/main/java/c/i/a/b/j/q/a.java @@ -45,11 +45,11 @@ public final class a extends f { } public String toString() { - StringBuilder P = c.d.b.a.a.P("BackendRequest{events="); - P.append(this.a); - P.append(", extras="); - P.append(Arrays.toString(this.b)); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("BackendRequest{events="); + O.append(this.a); + O.append(", extras="); + O.append(Arrays.toString(this.b)); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/j/q/b.java b/app/src/main/java/c/i/a/b/j/q/b.java index 76528687c3..1582e28b9e 100644 --- a/app/src/main/java/c/i/a/b/j/q/b.java +++ b/app/src/main/java/c/i/a/b/j/q/b.java @@ -41,9 +41,9 @@ public final class b extends g { } public String toString() { - StringBuilder P = a.P("BackendResponse{status="); - P.append(this.a); - P.append(", nextRequestWaitMillis="); - return a.A(P, this.b, "}"); + StringBuilder O = a.O("BackendResponse{status="); + O.append(this.a); + O.append(", nextRequestWaitMillis="); + return a.A(O, this.b, "}"); } } diff --git a/app/src/main/java/c/i/a/b/j/q/c.java b/app/src/main/java/c/i/a/b/j/q/c.java index 77f9a2b477..143a3ed86a 100644 --- a/app/src/main/java/c/i/a/b/j/q/c.java +++ b/app/src/main/java/c/i/a/b/j/q/c.java @@ -10,7 +10,7 @@ public final class c extends h { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f624c; + public final a f625c; public final String d; public c(Context context, a aVar, a aVar2, String str) { @@ -19,7 +19,7 @@ public final class c extends h { Objects.requireNonNull(aVar, "Null wallClock"); this.b = aVar; Objects.requireNonNull(aVar2, "Null monotonicClock"); - this.f624c = aVar2; + this.f625c = aVar2; Objects.requireNonNull(str, "Null backendName"); this.d = str; } @@ -37,7 +37,7 @@ public final class c extends h { @Override // c.i.a.b.j.q.h public a c() { - return this.f624c; + return this.f625c; } @Override // c.i.a.b.j.q.h @@ -53,21 +53,21 @@ public final class c extends h { return false; } h hVar = (h) obj; - return this.a.equals(hVar.a()) && this.b.equals(hVar.d()) && this.f624c.equals(hVar.c()) && this.d.equals(hVar.b()); + return this.a.equals(hVar.a()) && this.b.equals(hVar.d()) && this.f625c.equals(hVar.c()) && this.d.equals(hVar.b()); } public int hashCode() { - return ((((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f624c.hashCode()) * 1000003) ^ this.d.hashCode(); + return ((((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f625c.hashCode()) * 1000003) ^ this.d.hashCode(); } public String toString() { - StringBuilder P = c.d.b.a.a.P("CreationContext{applicationContext="); - P.append(this.a); - P.append(", wallClock="); - P.append(this.b); - P.append(", monotonicClock="); - P.append(this.f624c); - P.append(", backendName="); - return c.d.b.a.a.H(P, this.d, "}"); + StringBuilder O = c.d.b.a.a.O("CreationContext{applicationContext="); + O.append(this.a); + O.append(", wallClock="); + O.append(this.b); + O.append(", monotonicClock="); + O.append(this.f625c); + O.append(", backendName="); + return c.d.b.a.a.G(O, this.d, "}"); } } diff --git a/app/src/main/java/c/i/a/b/j/q/i.java b/app/src/main/java/c/i/a/b/j/q/i.java index 326a87625c..ca3c8d7fe9 100644 --- a/app/src/main/java/c/i/a/b/j/q/i.java +++ b/app/src/main/java/c/i/a/b/j/q/i.java @@ -8,11 +8,11 @@ public class i { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f625c; + public final a f626c; public i(Context context, a aVar, a aVar2) { this.a = context; this.b = aVar; - this.f625c = aVar2; + this.f626c = aVar2; } } diff --git a/app/src/main/java/c/i/a/b/j/q/j.java b/app/src/main/java/c/i/a/b/j/q/j.java index 2a281a90bb..e852715d2d 100644 --- a/app/src/main/java/c/i/a/b/j/q/j.java +++ b/app/src/main/java/c/i/a/b/j/q/j.java @@ -8,16 +8,16 @@ public final class j implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f626c; + public final a f627c; public j(a aVar, a aVar2, a aVar3) { this.a = aVar; this.b = aVar2; - this.f626c = aVar3; + this.f627c = aVar3; } @Override // c0.a.a public Object get() { - return new i(this.a.get(), this.b.get(), this.f626c.get()); + return new i(this.a.get(), this.b.get(), this.f627c.get()); } } diff --git a/app/src/main/java/c/i/a/b/j/q/k.java b/app/src/main/java/c/i/a/b/j/q/k.java index 4e2d4d23e1..ce534bdaed 100644 --- a/app/src/main/java/c/i/a/b/j/q/k.java +++ b/app/src/main/java/c/i/a/b/j/q/k.java @@ -18,7 +18,7 @@ public class k implements e { public final i b; /* renamed from: c reason: collision with root package name */ - public final Map f627c = new HashMap(); + public final Map f628c = new HashMap(); /* compiled from: MetadataBackendRegistry */ public static class a { @@ -110,16 +110,16 @@ public class k implements e { @Override // c.i.a.b.j.q.e @Nullable public synchronized m get(String str) { - if (this.f627c.containsKey(str)) { - return this.f627c.get(str); + if (this.f628c.containsKey(str)) { + return this.f628c.get(str); } d a2 = this.a.a(str); if (a2 == null) { return null; } i iVar = this.b; - m create = a2.create(new c(iVar.a, iVar.b, iVar.f625c, str)); - this.f627c.put(str, create); + m create = a2.create(new c(iVar.a, iVar.b, iVar.f626c, str)); + this.f628c.put(str, create); return create; } } diff --git a/app/src/main/java/c/i/a/b/j/r/a/a.java b/app/src/main/java/c/i/a/b/j/r/a/a.java index 3406338172..d7d8fbbe3d 100644 --- a/app/src/main/java/c/i/a/b/j/r/a/a.java +++ b/app/src/main/java/c/i/a/b/j/r/a/a.java @@ -5,7 +5,7 @@ public final class a implements c0.a.a { public volatile c0.a.a b; /* renamed from: c reason: collision with root package name */ - public volatile Object f628c = a; + public volatile Object f629c = a; public a(c0.a.a aVar) { this.b = aVar; @@ -20,15 +20,15 @@ public final class a implements c0.a.a { @Override // c0.a.a public T get() { - T t = (T) this.f628c; + T t = (T) this.f629c; Object obj = a; if (t == obj) { synchronized (this) { - t = this.f628c; + t = this.f629c; if (t == obj) { t = this.b.get(); - a(this.f628c, t); - this.f628c = t; + a(this.f629c, t); + this.f629c = t; this.b = null; } } diff --git a/app/src/main/java/c/i/a/b/j/t/a.java b/app/src/main/java/c/i/a/b/j/t/a.java index a38d97ca0f..050b5506e9 100644 --- a/app/src/main/java/c/i/a/b/j/t/a.java +++ b/app/src/main/java/c/i/a/b/j/t/a.java @@ -38,9 +38,9 @@ public final /* synthetic */ class a implements Runnable { hVar.a(null); } catch (Exception e) { Logger logger2 = c.a; - StringBuilder P = c.d.b.a.a.P("Error scheduling event "); - P.append(e.getMessage()); - logger2.warning(P.toString()); + StringBuilder O = c.d.b.a.a.O("Error scheduling event "); + O.append(e.getMessage()); + logger2.warning(O.toString()); hVar.a(e); } } diff --git a/app/src/main/java/c/i/a/b/j/t/b.java b/app/src/main/java/c/i/a/b/j/t/b.java index 74b91ae0d9..fdaa73d1e2 100644 --- a/app/src/main/java/c/i/a/b/j/t/b.java +++ b/app/src/main/java/c/i/a/b/j/t/b.java @@ -9,19 +9,19 @@ public final /* synthetic */ class b implements a.AbstractC0084a { public final i b; /* renamed from: c reason: collision with root package name */ - public final f f629c; + public final f f630c; public b(c cVar, i iVar, f fVar) { this.a = cVar; this.b = iVar; - this.f629c = fVar; + this.f630c = fVar; } @Override // c.i.a.b.j.u.a.AbstractC0084a public Object execute() { c cVar = this.a; i iVar = this.b; - cVar.e.Z(iVar, this.f629c); + cVar.e.Z(iVar, this.f630c); cVar.b.a(iVar, 1); return null; } diff --git a/app/src/main/java/c/i/a/b/j/t/c.java b/app/src/main/java/c/i/a/b/j/t/c.java index 0741a40627..28a4d42423 100644 --- a/app/src/main/java/c/i/a/b/j/t/c.java +++ b/app/src/main/java/c/i/a/b/j/t/c.java @@ -15,13 +15,13 @@ public class c implements e { public final r b; /* renamed from: c reason: collision with root package name */ - public final Executor f630c; + public final Executor f631c; public final e d; public final c.i.a.b.j.t.i.c e; public final a f; public c(Executor executor, e eVar, r rVar, c.i.a.b.j.t.i.c cVar, a aVar) { - this.f630c = executor; + this.f631c = executor; this.d = eVar; this.b = rVar; this.e = cVar; @@ -30,6 +30,6 @@ public class c implements e { @Override // c.i.a.b.j.t.e public void a(i iVar, f fVar, h hVar) { - this.f630c.execute(new a(this, iVar, hVar, fVar)); + this.f631c.execute(new a(this, iVar, hVar, fVar)); } } diff --git a/app/src/main/java/c/i/a/b/j/t/d.java b/app/src/main/java/c/i/a/b/j/t/d.java index 365a499ceb..cc77efd5f8 100644 --- a/app/src/main/java/c/i/a/b/j/t/d.java +++ b/app/src/main/java/c/i/a/b/j/t/d.java @@ -11,20 +11,20 @@ public final class d implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f631c; + public final a f632c; public final a d; public final a e; public d(a aVar, a aVar2, a aVar3, a aVar4, a aVar5) { this.a = aVar; this.b = aVar2; - this.f631c = aVar3; + this.f632c = aVar3; this.d = aVar4; this.e = aVar5; } @Override // c0.a.a public Object get() { - return new c(this.a.get(), this.b.get(), this.f631c.get(), this.d.get(), this.e.get()); + return new c(this.a.get(), this.b.get(), this.f632c.get(), this.d.get(), this.e.get()); } } diff --git a/app/src/main/java/c/i/a/b/j/t/f.java b/app/src/main/java/c/i/a/b/j/t/f.java index 9aa4fea09e..7592cd09d8 100644 --- a/app/src/main/java/c/i/a/b/j/t/f.java +++ b/app/src/main/java/c/i/a/b/j/t/f.java @@ -40,7 +40,7 @@ public final class f implements a { Set unmodifiableSet = Collections.unmodifiableSet(new HashSet(Arrays.asList(f.b.NETWORK_UNMETERED, f.b.DEVICE_IDLE))); c.b bVar = (c.b) a3; Objects.requireNonNull(unmodifiableSet, "Null flags"); - bVar.f634c = unmodifiableSet; + bVar.f635c = unmodifiableSet; hashMap.put(dVar3, bVar.a()); Objects.requireNonNull(aVar, "missing required property: clock"); int size = hashMap.keySet().size(); diff --git a/app/src/main/java/c/i/a/b/j/t/g.java b/app/src/main/java/c/i/a/b/j/t/g.java index 77f9263b11..c5ceb94eff 100644 --- a/app/src/main/java/c/i/a/b/j/t/g.java +++ b/app/src/main/java/c/i/a/b/j/t/g.java @@ -11,19 +11,19 @@ public final class g implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f632c; + public final a f633c; public final a d; public g(a aVar, a aVar2, a aVar3, a aVar4) { this.a = aVar; this.b = aVar2; - this.f632c = aVar3; + this.f633c = aVar3; this.d = aVar4; } @Override // c0.a.a public Object get() { this.d.get(); - return new d(this.a.get(), this.b.get(), this.f632c.get()); + return new d(this.a.get(), this.b.get(), this.f633c.get()); } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/b.java b/app/src/main/java/c/i/a/b/j/t/h/b.java index 82bc5a11a9..a8fd9e2653 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/b.java +++ b/app/src/main/java/c/i/a/b/j/t/h/b.java @@ -43,9 +43,9 @@ public final class b extends f { } public String toString() { - StringBuilder P = c.d.b.a.a.P("SchedulerConfig{clock="); - P.append(this.a); - P.append(", values="); - return c.d.b.a.a.K(P, this.b, "}"); + StringBuilder O = c.d.b.a.a.O("SchedulerConfig{clock="); + O.append(this.a); + O.append(", values="); + return c.d.b.a.a.J(O, this.b, "}"); } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/c.java b/app/src/main/java/c/i/a/b/j/t/h/c.java index 7a009295eb..334fa86c18 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/c.java +++ b/app/src/main/java/c/i/a/b/j/t/h/c.java @@ -8,7 +8,7 @@ public final class c extends f.a { public final long b; /* renamed from: c reason: collision with root package name */ - public final Set f633c; + public final Set f634c; /* compiled from: AutoValue_SchedulerConfig_ConfigValue */ public static final class b extends f.a.AbstractC0082a { @@ -16,7 +16,7 @@ public final class c extends f.a { public Long b; /* renamed from: c reason: collision with root package name */ - public Set f634c; + public Set f635c; @Override // c.i.a.b.j.t.h.f.a.AbstractC0082a public f.a a() { @@ -24,11 +24,11 @@ public final class c extends f.a { if (this.b == null) { str = c.d.b.a.a.u(str, " maxAllowedDelay"); } - if (this.f634c == null) { + if (this.f635c == null) { str = c.d.b.a.a.u(str, " flags"); } if (str.isEmpty()) { - return new c(this.a.longValue(), this.b.longValue(), this.f634c, null); + return new c(this.a.longValue(), this.b.longValue(), this.f635c, null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -49,7 +49,7 @@ public final class c extends f.a { public c(long j, long j2, Set set, a aVar) { this.a = j; this.b = j2; - this.f633c = set; + this.f634c = set; } @Override // c.i.a.b.j.t.h.f.a @@ -59,7 +59,7 @@ public final class c extends f.a { @Override // c.i.a.b.j.t.h.f.a public Set c() { - return this.f633c; + return this.f634c; } @Override // c.i.a.b.j.t.h.f.a @@ -75,23 +75,23 @@ public final class c extends f.a { return false; } f.a aVar = (f.a) obj; - return this.a == aVar.b() && this.b == aVar.d() && this.f633c.equals(aVar.c()); + return this.a == aVar.b() && this.b == aVar.d() && this.f634c.equals(aVar.c()); } public int hashCode() { long j = this.a; long j2 = this.b; - return this.f633c.hashCode() ^ ((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003); + return this.f634c.hashCode() ^ ((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003); } public String toString() { - StringBuilder P = c.d.b.a.a.P("ConfigValue{delta="); - P.append(this.a); - P.append(", maxAllowedDelay="); - P.append(this.b); - P.append(", flags="); - P.append(this.f633c); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("ConfigValue{delta="); + O.append(this.a); + O.append(", maxAllowedDelay="); + O.append(this.b); + O.append(", flags="); + O.append(this.f634c); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/d.java b/app/src/main/java/c/i/a/b/j/t/h/d.java index 7c6fe1bf1f..1115203ae2 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/d.java +++ b/app/src/main/java/c/i/a/b/j/t/h/d.java @@ -13,7 +13,6 @@ import c.i.a.b.j.t.h.f; import c.i.a.b.j.t.i.c; import c.i.a.b.j.w.a; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSchedulerService; import java.nio.ByteBuffer; import java.nio.charset.Charset; @@ -27,12 +26,12 @@ public class d implements r { public final c b; /* renamed from: c reason: collision with root package name */ - public final f f635c; + public final f f636c; public d(Context context, c cVar, f fVar) { this.a = context; this.b = cVar; - this.f635c = fVar; + this.f636c = fVar; } /* JADX WARNING: Code restructure failed: missing block: B:10:0x0092, code lost: @@ -67,11 +66,11 @@ public class d implements r { } } if (z2) { - AnimatableValueParser.Z("JobInfoScheduler", "Upload for context %s is already scheduled. Returning...", iVar); + c.c.a.a0.d.Z("JobInfoScheduler", "Upload for context %s is already scheduled. Returning...", iVar); return; } long g02 = this.b.g0(iVar); - f fVar = this.f635c; + f fVar = this.f636c; JobInfo.Builder builder = new JobInfo.Builder(value, componentName); c.i.a.b.d d = iVar.d(); builder.setMinimumLatency(fVar.b(d, g02, i)); @@ -103,10 +102,10 @@ public class d implements r { Object[] objArr = new Object[5]; objArr[c2] = iVar; objArr[1] = Integer.valueOf(value); - objArr[2] = Long.valueOf(this.f635c.b(iVar.d(), g02, i)); + objArr[2] = Long.valueOf(this.f636c.b(iVar.d(), g02, i)); objArr[3] = Long.valueOf(g02); objArr[4] = Integer.valueOf(i); - AnimatableValueParser.a0("JobInfoScheduler", "Scheduling upload for context %s with jobId=%d in %dms(Backend next call timestamp %d). Attempt %d", objArr); + c.c.a.a0.d.a0("JobInfoScheduler", "Scheduling upload for context %s with jobId=%d in %dms(Backend next call timestamp %d). Attempt %d", objArr); jobScheduler.schedule(builder.build()); } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/f.java b/app/src/main/java/c/i/a/b/j/t/h/f.java index de176a31da..0fd5e5df6b 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/f.java +++ b/app/src/main/java/c/i/a/b/j/t/h/f.java @@ -30,7 +30,7 @@ public abstract class f { c.b bVar = new c.b(); Set emptySet = Collections.emptySet(); Objects.requireNonNull(emptySet, "Null flags"); - bVar.f634c = emptySet; + bVar.f635c = emptySet; return bVar; } diff --git a/app/src/main/java/c/i/a/b/j/t/h/g.java b/app/src/main/java/c/i/a/b/j/t/h/g.java index f00256e5f6..61b54b7bb8 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/g.java +++ b/app/src/main/java/c/i/a/b/j/t/h/g.java @@ -28,7 +28,7 @@ public final /* synthetic */ class g implements Runnable { Runnable runnable = this.l; try { a aVar = lVar.f; - c cVar = lVar.f638c; + c cVar = lVar.f639c; cVar.getClass(); aVar.a(new j(cVar)); NetworkInfo activeNetworkInfo = ((ConnectivityManager) lVar.a.getSystemService("connectivity")).getActiveNetworkInfo(); diff --git a/app/src/main/java/c/i/a/b/j/t/h/h.java b/app/src/main/java/c/i/a/b/j/t/h/h.java index 2f2b495fa3..33f77c0db0 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/h.java +++ b/app/src/main/java/c/i/a/b/j/t/h/h.java @@ -15,6 +15,6 @@ public final /* synthetic */ class h implements a.AbstractC0084a { @Override // c.i.a.b.j.u.a.AbstractC0084a public Object execute() { l lVar = this.a; - return lVar.f638c.q(this.b); + return lVar.f639c.q(this.b); } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/i.java b/app/src/main/java/c/i/a/b/j/t/h/i.java index b1a95e8e90..90ad176927 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/i.java +++ b/app/src/main/java/c/i/a/b/j/t/h/i.java @@ -9,14 +9,14 @@ public final /* synthetic */ class i implements a.AbstractC0084a { public final g b; /* renamed from: c reason: collision with root package name */ - public final Iterable f636c; + public final Iterable f637c; public final c.i.a.b.j.i d; public final int e; public i(l lVar, g gVar, Iterable iterable, c.i.a.b.j.i iVar, int i) { this.a = lVar; this.b = gVar; - this.f636c = iterable; + this.f637c = iterable; this.d = iVar; this.e = i; } @@ -25,19 +25,19 @@ public final /* synthetic */ class i implements a.AbstractC0084a { public Object execute() { l lVar = this.a; g gVar = this.b; - Iterable iterable = this.f636c; + Iterable iterable = this.f637c; c.i.a.b.j.i iVar = this.d; int i = this.e; if (gVar.c() == g.a.TRANSIENT_ERROR) { - lVar.f638c.m0(iterable); + lVar.f639c.m0(iterable); lVar.d.a(iVar, i + 1); return null; } - lVar.f638c.m(iterable); + lVar.f639c.m(iterable); if (gVar.c() == g.a.OK) { - lVar.f638c.u(iVar, gVar.b() + lVar.g.a()); + lVar.f639c.u(iVar, gVar.b() + lVar.g.a()); } - if (!lVar.f638c.k0(iVar)) { + if (!lVar.f639c.k0(iVar)) { return null; } lVar.d.a(iVar, 1); diff --git a/app/src/main/java/c/i/a/b/j/t/h/k.java b/app/src/main/java/c/i/a/b/j/t/h/k.java index 3e99f4deeb..d3e454b734 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/k.java +++ b/app/src/main/java/c/i/a/b/j/t/h/k.java @@ -8,18 +8,18 @@ public final /* synthetic */ class k implements a.AbstractC0084a { public final i b; /* renamed from: c reason: collision with root package name */ - public final int f637c; + public final int f638c; public k(l lVar, i iVar, int i) { this.a = lVar; this.b = iVar; - this.f637c = i; + this.f638c = i; } @Override // c.i.a.b.j.u.a.AbstractC0084a public Object execute() { l lVar = this.a; - lVar.d.a(this.b, this.f637c + 1); + lVar.d.a(this.b, this.f638c + 1); return null; } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/l.java b/app/src/main/java/c/i/a/b/j/t/h/l.java index fa28a8c5ff..7ea06e461f 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/l.java +++ b/app/src/main/java/c/i/a/b/j/t/h/l.java @@ -1,6 +1,7 @@ package c.i.a.b.j.t.h; import android.content.Context; +import c.c.a.a0.d; import c.i.a.b.j.i; import c.i.a.b.j.q.e; import c.i.a.b.j.q.g; @@ -8,7 +9,6 @@ import c.i.a.b.j.q.m; import c.i.a.b.j.t.i.c; import c.i.a.b.j.t.i.h; import c.i.a.b.j.u.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.ArrayList; import java.util.concurrent.Executor; /* compiled from: Uploader */ @@ -17,7 +17,7 @@ public class l { public final e b; /* renamed from: c reason: collision with root package name */ - public final c f638c; + public final c f639c; public final r d; public final Executor e; public final a f; @@ -26,7 +26,7 @@ public class l { public l(Context context, e eVar, c cVar, r rVar, Executor executor, a aVar, c.i.a.b.j.v.a aVar2) { this.a = context; this.b = eVar; - this.f638c = cVar; + this.f639c = cVar; this.d = rVar; this.e = executor; this.f = aVar; @@ -39,7 +39,7 @@ public class l { Iterable iterable = (Iterable) this.f.a(new h(this, iVar)); if (iterable.iterator().hasNext()) { if (mVar == null) { - AnimatableValueParser.Z("Uploader", "Unknown backend for %s, deleting event batch for it...", iVar); + d.Z("Uploader", "Unknown backend for %s, deleting event batch for it...", iVar); a = g.a(); } else { ArrayList arrayList = new ArrayList(); diff --git a/app/src/main/java/c/i/a/b/j/t/h/m.java b/app/src/main/java/c/i/a/b/j/t/h/m.java index 241df937e0..79cc477c14 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/m.java +++ b/app/src/main/java/c/i/a/b/j/t/h/m.java @@ -11,7 +11,7 @@ public final class m implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f639c; + public final a f640c; public final a d; public final a e; public final a f; @@ -20,7 +20,7 @@ public final class m implements a { public m(a aVar, a aVar2, a aVar3, a aVar4, a aVar5, a aVar6, a aVar7) { this.a = aVar; this.b = aVar2; - this.f639c = aVar3; + this.f640c = aVar3; this.d = aVar4; this.e = aVar5; this.f = aVar6; @@ -29,6 +29,6 @@ public final class m implements a { @Override // c0.a.a public Object get() { - return new l(this.a.get(), this.b.get(), this.f639c.get(), this.d.get(), this.e.get(), this.f.get(), this.g.get()); + return new l(this.a.get(), this.b.get(), this.f640c.get(), this.d.get(), this.e.get(), this.f.get(), this.g.get()); } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/o.java b/app/src/main/java/c/i/a/b/j/t/h/o.java index 8bb660454d..0a71b48a25 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/o.java +++ b/app/src/main/java/c/i/a/b/j/t/h/o.java @@ -14,7 +14,7 @@ public final /* synthetic */ class o implements a.AbstractC0084a { public Object execute() { p pVar = this.a; for (i iVar : pVar.b.y()) { - pVar.f640c.a(iVar, 1); + pVar.f641c.a(iVar, 1); } return null; } diff --git a/app/src/main/java/c/i/a/b/j/t/h/p.java b/app/src/main/java/c/i/a/b/j/t/h/p.java index b522c44543..be56abf67f 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/p.java +++ b/app/src/main/java/c/i/a/b/j/t/h/p.java @@ -9,13 +9,13 @@ public class p { public final c b; /* renamed from: c reason: collision with root package name */ - public final r f640c; + public final r f641c; public final a d; public p(Executor executor, c cVar, r rVar, a aVar) { this.a = executor; this.b = cVar; - this.f640c = rVar; + this.f641c = rVar; this.d = aVar; } } diff --git a/app/src/main/java/c/i/a/b/j/t/h/q.java b/app/src/main/java/c/i/a/b/j/t/h/q.java index 112152dfcb..7d17d31c58 100644 --- a/app/src/main/java/c/i/a/b/j/t/h/q.java +++ b/app/src/main/java/c/i/a/b/j/t/h/q.java @@ -9,18 +9,18 @@ public final class q implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f641c; + public final a f642c; public final a d; public q(a aVar, a aVar2, a aVar3, a aVar4) { this.a = aVar; this.b = aVar2; - this.f641c = aVar3; + this.f642c = aVar3; this.d = aVar4; } @Override // c0.a.a public Object get() { - return new p(this.a.get(), this.b.get(), this.f641c.get(), this.d.get()); + return new p(this.a.get(), this.b.get(), this.f642c.get(), this.d.get()); } } diff --git a/app/src/main/java/c/i/a/b/j/t/i/a.java b/app/src/main/java/c/i/a/b/j/t/i/a.java index 041c6de341..486911ce90 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/a.java +++ b/app/src/main/java/c/i/a/b/j/t/i/a.java @@ -4,14 +4,14 @@ public final class a extends d { public final long b; /* renamed from: c reason: collision with root package name */ - public final int f642c; + public final int f643c; public final int d; public final long e; public final int f; public a(long j, int i, int i2, long j2, int i3, C0083a aVar) { this.b = j; - this.f642c = i; + this.f643c = i; this.d = i2; this.e = j2; this.f = i3; @@ -29,7 +29,7 @@ public final class a extends d { @Override // c.i.a.b.j.t.i.d public int c() { - return this.f642c; + return this.f643c; } @Override // c.i.a.b.j.t.i.d @@ -50,25 +50,25 @@ public final class a extends d { return false; } d dVar = (d) obj; - return this.b == dVar.e() && this.f642c == dVar.c() && this.d == dVar.a() && this.e == dVar.b() && this.f == dVar.d(); + return this.b == dVar.e() && this.f643c == dVar.c() && this.d == dVar.a() && this.e == dVar.b() && this.f == dVar.d(); } public int hashCode() { long j = this.b; long j2 = this.e; - return this.f ^ ((((((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ this.f642c) * 1000003) ^ this.d) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003); + return this.f ^ ((((((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ this.f643c) * 1000003) ^ this.d) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003); } public String toString() { - StringBuilder P = c.d.b.a.a.P("EventStoreConfig{maxStorageSizeInBytes="); - P.append(this.b); - P.append(", loadBatchSize="); - P.append(this.f642c); - P.append(", criticalSectionEnterTimeoutMs="); - P.append(this.d); - P.append(", eventCleanUpAge="); - P.append(this.e); - P.append(", maxBlobByteSizePerRow="); - return c.d.b.a.a.z(P, this.f, "}"); + StringBuilder O = c.d.b.a.a.O("EventStoreConfig{maxStorageSizeInBytes="); + O.append(this.b); + O.append(", loadBatchSize="); + O.append(this.f643c); + O.append(", criticalSectionEnterTimeoutMs="); + O.append(this.d); + O.append(", eventCleanUpAge="); + O.append(this.e); + O.append(", maxBlobByteSizePerRow="); + return c.d.b.a.a.z(O, this.f, "}"); } } diff --git a/app/src/main/java/c/i/a/b/j/t/i/a0.java b/app/src/main/java/c/i/a/b/j/t/i/a0.java index 7b9b641a86..e0ffed93ee 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/a0.java +++ b/app/src/main/java/c/i/a/b/j/t/i/a0.java @@ -8,16 +8,16 @@ public final class a0 implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f643c; + public final a f644c; public a0(a aVar, a aVar2, a aVar3) { this.a = aVar; this.b = aVar2; - this.f643c = aVar3; + this.f644c = aVar3; } @Override // c0.a.a public Object get() { - return new z(this.a.get(), this.b.get(), this.f643c.get().intValue()); + return new z(this.a.get(), this.b.get(), this.f644c.get().intValue()); } } diff --git a/app/src/main/java/c/i/a/b/j/t/i/b.java b/app/src/main/java/c/i/a/b/j/t/i/b.java index 387568e587..03cff96ad3 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/b.java +++ b/app/src/main/java/c/i/a/b/j/t/i/b.java @@ -10,19 +10,19 @@ public final class b extends h { public final i b; /* renamed from: c reason: collision with root package name */ - public final f f644c; + public final f f645c; public b(long j, i iVar, f fVar) { this.a = j; Objects.requireNonNull(iVar, "Null transportContext"); this.b = iVar; Objects.requireNonNull(fVar, "Null event"); - this.f644c = fVar; + this.f645c = fVar; } @Override // c.i.a.b.j.t.i.h public f a() { - return this.f644c; + return this.f645c; } @Override // c.i.a.b.j.t.i.h @@ -43,22 +43,22 @@ public final class b extends h { return false; } h hVar = (h) obj; - return this.a == hVar.b() && this.b.equals(hVar.c()) && this.f644c.equals(hVar.a()); + return this.a == hVar.b() && this.b.equals(hVar.c()) && this.f645c.equals(hVar.a()); } public int hashCode() { long j = this.a; - return this.f644c.hashCode() ^ ((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003); + return this.f645c.hashCode() ^ ((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003); } public String toString() { - StringBuilder P = a.P("PersistedEvent{id="); - P.append(this.a); - P.append(", transportContext="); - P.append(this.b); - P.append(", event="); - P.append(this.f644c); - P.append("}"); - return P.toString(); + StringBuilder O = a.O("PersistedEvent{id="); + O.append(this.a); + O.append(", transportContext="); + O.append(this.b); + O.append(", event="); + O.append(this.f645c); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/b/j/t/i/k.java b/app/src/main/java/c/i/a/b/j/t/i/k.java index d6bc06dea1..9beae315f5 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/k.java +++ b/app/src/main/java/c/i/a/b/j/t/i/k.java @@ -14,19 +14,19 @@ public final /* synthetic */ class k implements t.b { public final List b; /* renamed from: c reason: collision with root package name */ - public final i f645c; + public final i f646c; public k(t tVar, List list, i iVar) { this.a = tVar; this.b = list; - this.f645c = iVar; + this.f646c = iVar; } @Override // c.i.a.b.j.t.i.t.b public Object apply(Object obj) { t tVar = this.a; List list = this.b; - i iVar = this.f645c; + i iVar = this.f646c; Cursor cursor = (Cursor) obj; b bVar = t.i; while (cursor.moveToNext()) { diff --git a/app/src/main/java/c/i/a/b/j/t/i/s.java b/app/src/main/java/c/i/a/b/j/t/i/s.java index a9a25782b9..8bf755960d 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/s.java +++ b/app/src/main/java/c/i/a/b/j/t/i/s.java @@ -19,12 +19,12 @@ public final /* synthetic */ class s implements t.b { public final i b; /* renamed from: c reason: collision with root package name */ - public final f f646c; + public final f f647c; public s(t tVar, i iVar, f fVar) { this.a = tVar; this.b = iVar; - this.f646c = fVar; + this.f647c = fVar; } @Override // c.i.a.b.j.t.i.t.b @@ -32,7 +32,7 @@ public final /* synthetic */ class s implements t.b { long j; t tVar = this.a; i iVar = this.b; - f fVar = this.f646c; + f fVar = this.f647c; SQLiteDatabase sQLiteDatabase = (SQLiteDatabase) obj; b bVar = t.i; if (tVar.b().compileStatement("PRAGMA page_size").simpleQueryForLong() * tVar.b().compileStatement("PRAGMA page_count").simpleQueryForLong() >= tVar.m.e()) { diff --git a/app/src/main/java/c/i/a/b/j/t/i/t.java b/app/src/main/java/c/i/a/b/j/t/i/t.java index da4b546fa8..1cb67c68af 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/t.java +++ b/app/src/main/java/c/i/a/b/j/t/i/t.java @@ -11,7 +11,6 @@ import androidx.annotation.WorkerThread; import c.i.a.b.j.f; import c.i.a.b.j.i; import c.i.a.b.j.u.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.ArrayList; import java.util.Arrays; import java.util.Iterator; @@ -77,7 +76,7 @@ public class t implements c, c.i.a.b.j.u.a { @Override // c.i.a.b.j.t.i.c @Nullable public h Z(i iVar, f fVar) { - AnimatableValueParser.a0("SQLiteEventStore", "Storing event with priority=%s, name=%s for destination %s", iVar.d(), fVar.g(), iVar.b()); + c.c.a.a0.d.a0("SQLiteEventStore", "Storing event with priority=%s, name=%s for destination %s", iVar.d(), fVar.g(), iVar.b()); long longValue = ((Long) d(new s(this, iVar, fVar))).longValue(); if (longValue < 1) { return null; @@ -203,18 +202,18 @@ public class t implements c, c.i.a.b.j.u.a { @Override // c.i.a.b.j.t.i.c public void m(Iterable iterable) { if (iterable.iterator().hasNext()) { - StringBuilder P = c.d.b.a.a.P("DELETE FROM events WHERE _id in "); - P.append(f(iterable)); - b().compileStatement(P.toString()).execute(); + StringBuilder O = c.d.b.a.a.O("DELETE FROM events WHERE _id in "); + O.append(f(iterable)); + b().compileStatement(O.toString()).execute(); } } @Override // c.i.a.b.j.t.i.c public void m0(Iterable iterable) { if (iterable.iterator().hasNext()) { - StringBuilder P = c.d.b.a.a.P("UPDATE events SET num_attempts = num_attempts + 1 WHERE _id in "); - P.append(f(iterable)); - String sb = P.toString(); + StringBuilder O = c.d.b.a.a.O("UPDATE events SET num_attempts = num_attempts + 1 WHERE _id in "); + O.append(f(iterable)); + String sb = O.toString(); SQLiteDatabase b2 = b(); b2.beginTransaction(); try { diff --git a/app/src/main/java/c/i/a/b/j/t/i/u.java b/app/src/main/java/c/i/a/b/j/t/i/u.java index b73c783360..ab729538ef 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/u.java +++ b/app/src/main/java/c/i/a/b/j/t/i/u.java @@ -7,18 +7,18 @@ public final class u implements a { public final a b; /* renamed from: c reason: collision with root package name */ - public final a f647c; + public final a f648c; public final a d; public u(a aVar, a aVar2, a aVar3, a aVar4) { this.a = aVar; this.b = aVar2; - this.f647c = aVar3; + this.f648c = aVar3; this.d = aVar4; } @Override // c0.a.a public Object get() { - return new t(this.a.get(), this.b.get(), this.f647c.get(), this.d.get()); + return new t(this.a.get(), this.b.get(), this.f648c.get(), this.d.get()); } } diff --git a/app/src/main/java/c/i/a/b/j/t/i/z.java b/app/src/main/java/c/i/a/b/j/t/i/z.java index ac085a4e79..b1ea0a6544 100644 --- a/app/src/main/java/c/i/a/b/j/t/i/z.java +++ b/app/src/main/java/c/i/a/b/j/t/i/z.java @@ -30,10 +30,10 @@ public final class z extends SQLiteOpenHelper { } return; } - StringBuilder R = c.d.b.a.a.R("Migration from ", i2, " to ", i3, " was requested, but cannot be performed. Only "); - R.append(list.size()); - R.append(" migrations are provided"); - throw new IllegalArgumentException(R.toString()); + StringBuilder Q = c.d.b.a.a.Q("Migration from ", i2, " to ", i3, " was requested, but cannot be performed. Only "); + Q.append(list.size()); + Q.append(" migrations are provided"); + throw new IllegalArgumentException(Q.toString()); } @Override // android.database.sqlite.SQLiteOpenHelper diff --git a/app/src/main/java/c/i/a/c/a2/a.java b/app/src/main/java/c/i/a/c/a2/a.java index 32d914b1c2..6fa8180c17 100644 --- a/app/src/main/java/c/i/a/c/a2/a.java +++ b/app/src/main/java/c/i/a/c/a2/a.java @@ -3,7 +3,6 @@ package c.i.a.c.a2; import androidx.annotation.Nullable; import c.i.a.c.a2.t; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.api.permission.Permission; import java.io.IOException; /* compiled from: BinarySearchSeeker */ @@ -13,7 +12,7 @@ public abstract class a { @Nullable /* renamed from: c reason: collision with root package name */ - public c f648c; + public c f649c; public final int d; /* compiled from: BinarySearchSeeker */ @@ -23,7 +22,7 @@ public abstract class a { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f649c; + public final long f650c; public final long d; public final long e; public final long f; @@ -32,7 +31,7 @@ public abstract class a { public C0085a(d dVar, long j, long j2, long j3, long j4, long j5, long j6) { this.a = dVar; this.b = j; - this.f649c = j2; + this.f650c = j2; this.d = j3; this.e = j4; this.f = j5; @@ -46,7 +45,7 @@ public abstract class a { @Override // c.i.a.c.a2.t public t.a h(long j) { - return new t.a(new u(j, c.a(this.a.a(j), this.f649c, this.d, this.e, this.f, this.g))); + return new t.a(new u(j, c.a(this.a.a(j), this.f650c, this.d, this.e, this.f, this.g))); } @Override // c.i.a.c.a2.t @@ -69,7 +68,7 @@ public abstract class a { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f650c; + public final long f651c; public long d; public long e; public long f; @@ -83,7 +82,7 @@ public abstract class a { this.e = j4; this.f = j5; this.g = j6; - this.f650c = j7; + this.f651c = j7; this.h = a(j2, j3, j4, j5, j6, j7); } @@ -107,12 +106,12 @@ public abstract class a { public final int b; /* renamed from: c reason: collision with root package name */ - public final long f651c; + public final long f652c; public final long d; public e(int i, long j, long j2) { this.b = i; - this.f651c = j; + this.f652c = j; this.d = j2; } @@ -144,8 +143,8 @@ public abstract class a { public int a(i iVar, s sVar) throws IOException { while (true) { - c cVar = this.f648c; - AnimatableValueParser.H(cVar); + c cVar = this.f649c; + c.c.a.a0.d.H(cVar); long j = cVar.f; long j2 = cVar.g; long j3 = cVar.h; @@ -162,17 +161,17 @@ public abstract class a { c(false, j3); return d(iVar, j3, sVar); } else if (i == -2) { - long j4 = b2.f651c; + long j4 = b2.f652c; long j5 = b2.d; cVar.d = j4; cVar.f = j5; - cVar.h = c.a(cVar.b, j4, cVar.e, j5, cVar.g, cVar.f650c); + cVar.h = c.a(cVar.b, j4, cVar.e, j5, cVar.g, cVar.f651c); } else if (i == -1) { - long j6 = b2.f651c; + long j6 = b2.f652c; long j7 = b2.d; cVar.e = j6; cVar.g = j7; - cVar.h = c.a(cVar.b, cVar.d, j6, cVar.f, j7, cVar.f650c); + cVar.h = c.a(cVar.b, cVar.d, j6, cVar.f, j7, cVar.f651c); } else if (i == 0) { f(iVar, b2.d); c(true, b2.d); @@ -185,11 +184,11 @@ public abstract class a { } public final boolean b() { - return this.f648c != null; + return this.f649c != null; } public final void c(boolean z2, long j) { - this.f648c = null; + this.f649c = null; this.b.a(); } @@ -202,11 +201,11 @@ public abstract class a { } public final void e(long j) { - c cVar = this.f648c; + c cVar = this.f649c; if (cVar == null || cVar.a != j) { long a = this.a.a.a(j); C0085a aVar = this.a; - this.f648c = new c(j, a, aVar.f649c, aVar.d, aVar.e, aVar.f, aVar.g); + this.f649c = new c(j, a, aVar.f650c, aVar.d, aVar.e, aVar.f, aVar.g); } } diff --git a/app/src/main/java/c/i/a/c/a2/a0.java b/app/src/main/java/c/i/a/c/a2/a0.java index 4cb6f1074b..703eff5d89 100644 --- a/app/src/main/java/c/i/a/c/a2/a0.java +++ b/app/src/main/java/c/i/a/c/a2/a0.java @@ -5,7 +5,7 @@ public final class a0 { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f652c; + public final int f653c; public final int d; public final int e; public final int f; @@ -14,7 +14,7 @@ public final class a0 { public a0(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, boolean z2, byte[] bArr) { this.a = i2; this.b = i3; - this.f652c = i4; + this.f653c = i4; this.d = i5; this.e = i7; this.f = i8; diff --git a/app/src/main/java/c/i/a/c/a2/b0/b.java b/app/src/main/java/c/i/a/c/a2/b0/b.java index 712d2d5267..b24ac11d7d 100644 --- a/app/src/main/java/c/i/a/c/a2/b0/b.java +++ b/app/src/main/java/c/i/a/c/a2/b0/b.java @@ -1,7 +1,7 @@ package c.i.a.c.a2.b0; +import c.c.a.a0.d; import c.d.b.a.a; -import c.i.a.c.a2.d; import c.i.a.c.a2.h; import c.i.a.c.a2.i; import c.i.a.c.a2.j; @@ -9,7 +9,6 @@ import c.i.a.c.a2.s; import c.i.a.c.a2.t; import c.i.a.c.a2.w; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import java.io.EOFException; @@ -21,7 +20,7 @@ public final class b implements h { public static final int[] b; /* renamed from: c reason: collision with root package name */ - public static final byte[] f653c = f0.w("#!AMR\n"); + public static final byte[] f654c = f0.w("#!AMR\n"); public static final byte[] d = f0.w("#!AMR-WB\n"); public static final int e; public final byte[] f; @@ -39,7 +38,7 @@ public final class b implements h { public t r; /* renamed from: s reason: collision with root package name */ - public boolean f654s; + public boolean f655s; static { a aVar = a.a; @@ -77,11 +76,11 @@ public final class b implements h { if (z2) { return this.g ? b[i] : a[i]; } - StringBuilder P = a.P("Illegal AMR "); - P.append(this.g ? "WB" : "NB"); - P.append(" frame type "); - P.append(i); - throw new ParserException(P.toString()); + StringBuilder O = a.O("Illegal AMR "); + O.append(this.g ? "WB" : "NB"); + O.append(" frame type "); + O.append(i); + throw new ParserException(O.toString()); } throw new ParserException(a.l("Invalid padding bits for frame header ", b2)); } @@ -92,7 +91,7 @@ public final class b implements h { } public final boolean c(i iVar) throws IOException { - byte[] bArr = f653c; + byte[] bArr = f654c; iVar.k(); byte[] bArr2 = new byte[bArr.length]; iVar.n(bArr2, 0, bArr.length); @@ -115,10 +114,10 @@ public final class b implements h { @Override // c.i.a.c.a2.h public int e(i iVar, s sVar) throws IOException { - AnimatableValueParser.H(this.q); + d.H(this.q); if (iVar.getPosition() != 0 || c(iVar)) { - if (!this.f654s) { - this.f654s = true; + if (!this.f655s) { + this.f655s = true; boolean z2 = this.g; String str = z2 ? "audio/amr-wb" : "audio/3gpp"; int i = z2 ? 16000 : 8000; @@ -126,8 +125,8 @@ public final class b implements h { Format.b bVar = new Format.b(); bVar.k = str; bVar.l = e; - bVar.f2280x = 1; - bVar.f2281y = i; + bVar.f2283x = 1; + bVar.f2284y = i; wVar.e(bVar.a()); } int i2 = -1; @@ -182,9 +181,9 @@ public final class b implements h { this.j = 0; if (j != 0) { t tVar = this.r; - if (tVar instanceof d) { - d dVar = (d) tVar; - this.o = d.e(j, dVar.b, dVar.e); + if (tVar instanceof c.i.a.c.a2.d) { + c.i.a.c.a2.d dVar = (c.i.a.c.a2.d) tVar; + this.o = c.i.a.c.a2.d.e(j, dVar.b, dVar.e); return; } } diff --git a/app/src/main/java/c/i/a/c/a2/c.java b/app/src/main/java/c/i/a/c/a2/c.java index a157937645..35de054359 100644 --- a/app/src/main/java/c/i/a/c/a2/c.java +++ b/app/src/main/java/c/i/a/c/a2/c.java @@ -10,14 +10,14 @@ public final class c implements t { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final long[] f655c; + public final long[] f656c; public final long[] d; public final long[] e; public final long f; public c(int[] iArr, long[] jArr, long[] jArr2, long[] jArr3) { this.b = iArr; - this.f655c = jArr; + this.f656c = jArr; this.d = jArr2; this.e = jArr3; int length = iArr.length; @@ -39,7 +39,7 @@ public final class c implements t { int e = f0.e(this.e, j, true, true); long[] jArr = this.e; long j2 = jArr[e]; - long[] jArr2 = this.f655c; + long[] jArr2 = this.f656c; u uVar = new u(j2, jArr2[e]); if (j2 >= j || e == this.a - 1) { return new t.a(uVar); @@ -54,17 +54,17 @@ public final class c implements t { } public String toString() { - StringBuilder P = a.P("ChunkIndex(length="); - P.append(this.a); - P.append(", sizes="); - P.append(Arrays.toString(this.b)); - P.append(", offsets="); - P.append(Arrays.toString(this.f655c)); - P.append(", timeUs="); - P.append(Arrays.toString(this.e)); - P.append(", durationsUs="); - P.append(Arrays.toString(this.d)); - P.append(")"); - return P.toString(); + StringBuilder O = a.O("ChunkIndex(length="); + O.append(this.a); + O.append(", sizes="); + O.append(Arrays.toString(this.b)); + O.append(", offsets="); + O.append(Arrays.toString(this.f656c)); + O.append(", timeUs="); + O.append(Arrays.toString(this.e)); + O.append(", durationsUs="); + O.append(Arrays.toString(this.d)); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/c/a2/c0/c.java b/app/src/main/java/c/i/a/c/a2/c0/c.java index f72bf6f246..a383f379a2 100644 --- a/app/src/main/java/c/i/a/c/a2/c0/c.java +++ b/app/src/main/java/c/i/a/c/a2/c0/c.java @@ -1,11 +1,11 @@ package c.i.a.c.a2.c0; +import c.c.a.a0.d; import c.i.a.c.a2.a; import c.i.a.c.a2.i; import c.i.a.c.a2.m; import c.i.a.c.a2.o; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.api.permission.Permission; import java.io.IOException; import java.util.Objects; @@ -18,7 +18,7 @@ public final class c extends c.i.a.c.a2.a { public final int b; /* renamed from: c reason: collision with root package name */ - public final m.a f656c = new m.a(); + public final m.a f657c = new m.a(); public b(o oVar, int i, a aVar) { this.a = oVar; @@ -35,7 +35,7 @@ public final class c extends c.i.a.c.a2.a { long position = iVar.getPosition(); long c2 = c(iVar); long f = iVar.f(); - iVar.g(Math.max(6, this.a.f762c)); + iVar.g(Math.max(6, this.a.f763c)); long c3 = c(iVar); return (c2 > j || c3 <= j) ? c3 <= j ? a.e.c(c3, iVar.f()) : a.e.a(c2, position) : a.e.b(f); } @@ -44,7 +44,7 @@ public final class c extends c.i.a.c.a2.a { while (iVar.f() < iVar.b() - 6) { o oVar = this.a; int i = this.b; - m.a aVar = this.f656c; + m.a aVar = this.f657c; long f = iVar.f(); byte[] bArr = new byte[2]; boolean z2 = false; @@ -55,7 +55,7 @@ public final class c extends c.i.a.c.a2.a { } else { w wVar = new w(16); System.arraycopy(bArr, 0, wVar.a, 0, 2); - wVar.C(AnimatableValueParser.c2(iVar, wVar.a, 2, 14)); + wVar.C(d.z1(iVar, wVar.a, 2, 14)); iVar.k(); iVar.g((int) (f - iVar.getPosition())); z2 = m.b(wVar, oVar, i, aVar); @@ -66,7 +66,7 @@ public final class c extends c.i.a.c.a2.a { iVar.g(1); } if (iVar.f() < iVar.b() - 6) { - return this.f656c.a; + return this.f657c.a; } iVar.g((int) (iVar.b() - iVar.f())); return this.a.j; @@ -75,7 +75,7 @@ public final class c extends c.i.a.c.a2.a { /* JADX WARNING: Illegal instructions before constructor call */ public c(o oVar, int i, long j, long j2) { - super(r1, r2, r3, 0, r7, j, j2, r5 + r9, Math.max(6, oVar.f762c)); + super(r1, r2, r3, 0, r7, j, j2, r5 + r9, Math.max(6, oVar.f763c)); long j3; long j4; Objects.requireNonNull(oVar); @@ -85,7 +85,7 @@ public final class c extends c.i.a.c.a2.a { long j5 = oVar.j; int i2 = oVar.d; if (i2 > 0) { - j4 = (((long) i2) + ((long) oVar.f762c)) / 2; + j4 = (((long) i2) + ((long) oVar.f763c)) / 2; j3 = 1; } else { int i3 = oVar.a; diff --git a/app/src/main/java/c/i/a/c/a2/c0/d.java b/app/src/main/java/c/i/a/c/a2/c0/d.java index c2e1fbad79..38312ef2b3 100644 --- a/app/src/main/java/c/i/a/c/a2/c0/d.java +++ b/app/src/main/java/c/i/a/c/a2/c0/d.java @@ -13,7 +13,6 @@ import c.i.a.c.i2.f0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; import c.i.b.a.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ParserException; import com.google.android.exoplayer2.metadata.Metadata; import com.google.android.exoplayer2.metadata.flac.PictureFrame; @@ -27,7 +26,7 @@ public final class d implements h { public final w b = new w(new byte[32768], 0); /* renamed from: c reason: collision with root package name */ - public final boolean f657c; + public final boolean f658c; public final m.a d; public j e; public c.i.a.c.a2.w f; @@ -46,7 +45,7 @@ public final class d implements h { } public d(int i) { - this.f657c = (i & 1) == 0 ? false : true; + this.f658c = (i & 1) == 0 ? false : true; this.d = new m.a(); this.g = 0; } @@ -59,7 +58,7 @@ public final class d implements h { @Override // c.i.a.c.a2.h public boolean b(i iVar) throws IOException { - AnimatableValueParser.b2(iVar, false); + c.c.a.a0.d.y1(iVar, false); byte[] bArr = new byte[4]; iVar.n(bArr, 0, 4); return (((((((long) bArr[0]) & 255) << 24) | ((((long) bArr[1]) & 255) << 16)) | ((((long) bArr[2]) & 255) << 8)) | (255 & ((long) bArr[3]))) == 1716281667; @@ -82,9 +81,9 @@ public final class d implements h { if (i == 0) { iVar.k(); long f = iVar.f(); - Metadata b2 = AnimatableValueParser.b2(iVar, !this.f657c); + Metadata y1 = c.c.a.a0.d.y1(iVar, !this.f658c); iVar.l((int) (iVar.f() - f)); - this.h = b2; + this.h = y1; this.g = 1; return 0; } else if (i != 1) { @@ -143,7 +142,7 @@ public final class d implements h { i5 = 6; } w wVar = new w(i5); - wVar.C(AnimatableValueParser.c2(iVar, wVar.a, 0, i5)); + wVar.C(c.c.a.a0.d.z1(iVar, wVar.a, 0, i5)); iVar.k(); try { long y2 = wVar.y(); @@ -161,7 +160,7 @@ public final class d implements h { throw new ParserException(); } w wVar2 = this.b; - int i8 = wVar2.f920c; + int i8 = wVar2.f921c; if (i8 < 32768) { int read = iVar.read(wVar2.a, i8, 32768 - i8); if (read != -1) { @@ -187,7 +186,7 @@ public final class d implements h { Objects.requireNonNull(this.i); int i12 = wVar4.b; while (true) { - if (i12 <= wVar4.f920c - 16) { + if (i12 <= wVar4.f921c - 16) { wVar4.D(i12); if (m.b(wVar4, this.i, this.k, this.d)) { wVar4.D(i12); @@ -198,7 +197,7 @@ public final class d implements h { } else { if (z4) { while (true) { - int i13 = wVar4.f920c; + int i13 = wVar4.f921c; if (i12 > i13 - this.j) { wVar4.D(i13); break; @@ -209,7 +208,7 @@ public final class d implements h { } catch (IndexOutOfBoundsException unused2) { z3 = false; } - if (wVar4.b > wVar4.f920c) { + if (wVar4.b > wVar4.f921c) { z3 = false; } if (z3) { @@ -271,13 +270,13 @@ public final class d implements h { } else if (g == i4) { w wVar7 = new w(g2); iVar.readFully(wVar7.a, r4, g2); - oVar4 = oVar4.b(AnimatableValueParser.o2(wVar7)); + oVar4 = oVar4.b(c.c.a.a0.d.L1(wVar7)); } else { if (g == i3) { w wVar8 = new w(g2); iVar.readFully(wVar8.a, r4, g2); wVar8.E(i3); - oVar = new o(oVar4.a, oVar4.b, oVar4.f762c, oVar4.d, oVar4.e, oVar4.g, oVar4.h, oVar4.j, oVar4.k, oVar4.f(o.a(Arrays.asList(AnimatableValueParser.q2(wVar8, r4, r4).a), Collections.emptyList()))); + oVar = new o(oVar4.a, oVar4.b, oVar4.f763c, oVar4.d, oVar4.e, oVar4.g, oVar4.h, oVar4.j, oVar4.k, oVar4.f(o.a(Arrays.asList(c.c.a.a0.d.N1(wVar8, r4, r4).a), Collections.emptyList()))); z2 = f2; } else if (g == 6) { w wVar9 = new w(g2); @@ -295,7 +294,7 @@ public final class d implements h { System.arraycopy(wVar9.a, wVar9.b, bArr6, r4, f8); wVar9.b += f8; z2 = f2; - oVar = new o(oVar4.a, oVar4.b, oVar4.f762c, oVar4.d, oVar4.e, oVar4.g, oVar4.h, oVar4.j, oVar4.k, oVar4.f(o.a(Collections.emptyList(), Collections.singletonList(new PictureFrame(f3, q, p, f4, f5, f6, f7, bArr6))))); + oVar = new o(oVar4.a, oVar4.b, oVar4.f763c, oVar4.d, oVar4.e, oVar4.g, oVar4.h, oVar4.j, oVar4.k, oVar4.f(o.a(Collections.emptyList(), Collections.singletonList(new PictureFrame(f3, q, p, f4, f5, f6, f7, bArr6))))); } else { z2 = f2; iVar.l(g2); @@ -329,7 +328,7 @@ public final class d implements h { i5 = 7; } Objects.requireNonNull(this.i); - this.j = Math.max(this.i.f762c, 6); + this.j = Math.max(this.i.f763c, 6); c.i.a.c.a2.w wVar10 = this.f; int i19 = f0.a; wVar10.e(this.i.e(this.a, this.h)); diff --git a/app/src/main/java/c/i/a/c/a2/d.java b/app/src/main/java/c/i/a/c/a2/d.java index d744656ee7..b9cc134bc8 100644 --- a/app/src/main/java/c/i/a/c/a2/d.java +++ b/app/src/main/java/c/i/a/c/a2/d.java @@ -8,7 +8,7 @@ public class d implements t { public final long b; /* renamed from: c reason: collision with root package name */ - public final int f658c; + public final int f659c; public final long d; public final int e; public final long f; @@ -16,7 +16,7 @@ public class d implements t { public d(long j, long j2, int i, int i2) { this.a = j; this.b = j2; - this.f658c = i2 == -1 ? 1 : i2; + this.f659c = i2 == -1 ? 1 : i2; this.e = i; if (j == -1) { this.d = -1; @@ -46,12 +46,12 @@ public class d implements t { if (j2 == -1) { return new t.a(new u(0, this.b)); } - long j3 = (long) this.f658c; + long j3 = (long) this.f659c; long i = this.b + f0.i((((((long) this.e) * j) / 8000000) / j3) * j3, 0, j2 - j3); long b = b(i); u uVar = new u(b, i); if (b < j) { - int i2 = this.f658c; + int i2 = this.f659c; if (((long) i2) + i < this.a) { long j4 = i + ((long) i2); return new t.a(uVar, new u(b(j4), j4)); diff --git a/app/src/main/java/c/i/a/c/a2/d0/b.java b/app/src/main/java/c/i/a/c/a2/d0/b.java index 13a00662dd..d05e09c130 100644 --- a/app/src/main/java/c/i/a/c/a2/d0/b.java +++ b/app/src/main/java/c/i/a/c/a2/d0/b.java @@ -13,7 +13,7 @@ public final class b extends TagPayloadReader { public static final int[] b = {5512, 11025, 22050, 44100}; /* renamed from: c reason: collision with root package name */ - public boolean f659c; + public boolean f660c; public boolean d; public int e; @@ -23,7 +23,7 @@ public final class b extends TagPayloadReader { @Override // com.google.android.exoplayer2.extractor.flv.TagPayloadReader public boolean b(c.i.a.c.i2.w wVar) throws TagPayloadReader.UnsupportedFormatException { - if (!this.f659c) { + if (!this.f660c) { int s2 = wVar.s(); int i = (s2 >> 4) & 15; this.e = i; @@ -31,24 +31,24 @@ public final class b extends TagPayloadReader { int i2 = b[(s2 >> 2) & 3]; Format.b bVar = new Format.b(); bVar.k = "audio/mpeg"; - bVar.f2280x = 1; - bVar.f2281y = i2; + bVar.f2283x = 1; + bVar.f2284y = i2; this.a.e(bVar.a()); this.d = true; } else if (i == 7 || i == 8) { String str = i == 7 ? "audio/g711-alaw" : "audio/g711-mlaw"; Format.b bVar2 = new Format.b(); bVar2.k = str; - bVar2.f2280x = 1; - bVar2.f2281y = 8000; + bVar2.f2283x = 1; + bVar2.f2284y = 8000; this.a.e(bVar2.a()); this.d = true; } else if (i != 10) { - StringBuilder P = a.P("Audio format not supported: "); - P.append(this.e); - throw new TagPayloadReader.UnsupportedFormatException(P.toString()); + StringBuilder O = a.O("Audio format not supported: "); + O.append(this.e); + throw new TagPayloadReader.UnsupportedFormatException(O.toString()); } - this.f659c = true; + this.f660c = true; } else { wVar.E(1); } @@ -72,9 +72,9 @@ public final class b extends TagPayloadReader { k.b c2 = k.c(new v(bArr), false); Format.b bVar = new Format.b(); bVar.k = "audio/mp4a-latm"; - bVar.h = c2.f998c; - bVar.f2280x = c2.b; - bVar.f2281y = c2.a; + bVar.h = c2.f999c; + bVar.f2283x = c2.b; + bVar.f2284y = c2.a; bVar.m = Collections.singletonList(bArr); this.a.e(bVar.a()); this.d = true; diff --git a/app/src/main/java/c/i/a/c/a2/d0/c.java b/app/src/main/java/c/i/a/c/a2/d0/c.java index 390d41a58c..fb62c35e79 100644 --- a/app/src/main/java/c/i/a/c/a2/d0/c.java +++ b/app/src/main/java/c/i/a/c/a2/d0/c.java @@ -1,5 +1,6 @@ package c.i.a.c.a2.d0; +import c.c.a.a0.d; import c.i.a.c.a2.h; import c.i.a.c.a2.i; import c.i.a.c.a2.j; @@ -7,7 +8,6 @@ import c.i.a.c.a2.r; import c.i.a.c.a2.s; import c.i.a.c.a2.t; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import org.checkerframework.checker.nullness.qual.RequiresNonNull; /* compiled from: FlvExtractor */ @@ -16,7 +16,7 @@ public final class c implements h { public final w b = new w(9); /* renamed from: c reason: collision with root package name */ - public final w f660c = new w(11); + public final w f661c = new w(11); public final w d = new w(); public final d e = new d(); public j f; @@ -71,7 +71,7 @@ public final class c implements h { byte[] bArr = wVar.a; if (i > bArr.length) { wVar.a = new byte[Math.max(bArr.length * 2, i)]; - wVar.f920c = 0; + wVar.f921c = 0; wVar.b = 0; } else { wVar.D(0); @@ -89,7 +89,7 @@ public final class c implements h { public int e(i iVar, s sVar) throws IOException { boolean z2; boolean z3; - AnimatableValueParser.H(this.f); + d.H(this.f); while (true) { int i = this.g; boolean z4 = false; @@ -121,13 +121,13 @@ public final class c implements h { this.j = 0; this.g = 3; } else if (i == 3) { - if (iVar.c(this.f660c.a, 0, 11, true)) { - this.f660c.D(0); - this.k = this.f660c.s(); - this.l = this.f660c.u(); - this.m = (long) this.f660c.u(); - this.m = (((long) (this.f660c.s() << 24)) | this.m) * 1000; - this.f660c.E(3); + if (iVar.c(this.f661c.a, 0, 11, true)) { + this.f661c.D(0); + this.k = this.f661c.s(); + this.l = this.f661c.u(); + this.m = (long) this.f661c.u(); + this.m = (((long) (this.f661c.s() << 24)) | this.m) * 1000; + this.f661c.E(3); this.g = 4; z4 = true; } @@ -161,7 +161,7 @@ public final class c implements h { d dVar = this.e; long j2 = dVar.b; if (j2 != -9223372036854775807L) { - this.f.a(new r(dVar.d, dVar.f661c, j2)); + this.f.a(new r(dVar.d, dVar.f662c, j2)); this.n = true; } } diff --git a/app/src/main/java/c/i/a/c/a2/d0/d.java b/app/src/main/java/c/i/a/c/a2/d0/d.java index de87c8c420..867c7547cd 100644 --- a/app/src/main/java/c/i/a/c/a2/d0/d.java +++ b/app/src/main/java/c/i/a/c/a2/d0/d.java @@ -15,7 +15,7 @@ public final class d extends TagPayloadReader { public long b = -9223372036854775807L; /* renamed from: c reason: collision with root package name */ - public long[] f661c = new long[0]; + public long[] f662c = new long[0]; public long[] d = new long[0]; public d() { @@ -120,7 +120,7 @@ public final class d extends TagPayloadReader { List list = (List) obj3; List list2 = (List) obj4; int size = list2.size(); - this.f661c = new long[size]; + this.f662c = new long[size]; this.d = new long[size]; int i = 0; while (true) { @@ -132,11 +132,11 @@ public final class d extends TagPayloadReader { if (!(obj6 instanceof Double) || !(obj5 instanceof Double)) { break; } - this.f661c[i] = (long) (((Double) obj6).doubleValue() * 1000000.0d); + this.f662c[i] = (long) (((Double) obj6).doubleValue() * 1000000.0d); this.d[i] = ((Double) obj5).longValue(); i++; } - this.f661c = new long[0]; + this.f662c = new long[0]; this.d = new long[0]; } } diff --git a/app/src/main/java/c/i/a/c/a2/d0/e.java b/app/src/main/java/c/i/a/c/a2/d0/e.java index b6aa6d8ef2..a403a2319a 100644 --- a/app/src/main/java/c/i/a/c/a2/d0/e.java +++ b/app/src/main/java/c/i/a/c/a2/d0/e.java @@ -12,7 +12,7 @@ public final class e extends TagPayloadReader { public final w b = new w(u.a); /* renamed from: c reason: collision with root package name */ - public final w f662c = new w(4); + public final w f663c = new w(4); public int d; public boolean e; public boolean f; @@ -54,7 +54,7 @@ public final class e extends TagPayloadReader { Format.b bVar = new Format.b(); bVar.k = "video/avc"; bVar.h = b.f; - bVar.p = b.f925c; + bVar.p = b.f926c; bVar.q = b.d; bVar.t = b.e; bVar.m = b.a; @@ -68,16 +68,16 @@ public final class e extends TagPayloadReader { if (!this.f && i5 == 0) { return false; } - byte[] bArr2 = this.f662c.a; + byte[] bArr2 = this.f663c.a; bArr2[0] = 0; bArr2[1] = 0; bArr2[2] = 0; int i6 = 4 - this.d; int i7 = 0; while (wVar.a() > 0) { - wVar.e(this.f662c.a, i6, this.d); - this.f662c.D(0); - int v = this.f662c.v(); + wVar.e(this.f663c.a, i6, this.d); + this.f663c.D(0); + int v = this.f663c.v(); this.b.D(0); this.a.c(this.b, 4); this.a.c(wVar, v); diff --git a/app/src/main/java/c/i/a/c/a2/e.java b/app/src/main/java/c/i/a/c/a2/e.java index 7d314d90e1..dacd8f4857 100644 --- a/app/src/main/java/c/i/a/c/a2/e.java +++ b/app/src/main/java/c/i/a/c/a2/e.java @@ -12,7 +12,7 @@ public final class e implements i { public final f b; /* renamed from: c reason: collision with root package name */ - public final long f663c; + public final long f664c; public long d; public byte[] e = new byte[65536]; public int f; @@ -21,12 +21,12 @@ public final class e implements i { public e(f fVar, long j, long j2) { this.b = fVar; this.d = j; - this.f663c = j2; + this.f664c = j2; } @Override // c.i.a.c.a2.i public long b() { - return this.f663c; + return this.f664c; } @Override // c.i.a.c.a2.i diff --git a/app/src/main/java/c/i/a/c/a2/e0/a.java b/app/src/main/java/c/i/a/c/a2/e0/a.java index c8401308b5..edee152e23 100644 --- a/app/src/main/java/c/i/a/c/a2/e0/a.java +++ b/app/src/main/java/c/i/a/c/a2/e0/a.java @@ -24,7 +24,7 @@ public final class a implements h { public j b; /* renamed from: c reason: collision with root package name */ - public int f664c; + public int f665c; public int d; public int e; public long f = -1; @@ -41,7 +41,7 @@ public final class a implements h { Objects.requireNonNull(jVar); jVar.j(); this.b.a(new t.b(-9223372036854775807L, 0)); - this.f664c = 6; + this.f665c = 6; } @Override // c.i.a.c.a2.h @@ -88,7 +88,7 @@ public final class a implements h { String str2; b bVar; long j; - int i2 = this.f664c; + int i2 = this.f665c; if (i2 == 0) { this.a.z(2); iVar.readFully(this.a.a, 0, 2); @@ -96,19 +96,19 @@ public final class a implements h { this.d = x2; if (x2 == 65498) { if (this.f != -1) { - this.f664c = 4; + this.f665c = 4; } else { a(); } } else if ((x2 < 65488 || x2 > 65497) && x2 != 65281) { - this.f664c = 1; + this.f665c = 1; } return 0; } else if (i2 == 1) { this.a.z(2); iVar.readFully(this.a.a, 0, 2); this.e = this.a.x() - 2; - this.f664c = 2; + this.f665c = 2; return 0; } else if (i2 == 2) { if (this.d == 65505) { @@ -159,7 +159,7 @@ public final class a implements h { b.a aVar = bVar.b.get(size); z2 |= "video/mp4".equals(aVar.a); if (size == 0) { - j = b - aVar.f665c; + j = b - aVar.f666c; b = 0; } else { long j6 = b - aVar.b; @@ -191,7 +191,7 @@ public final class a implements h { } else { iVar.l(this.e); } - this.f664c = 0; + this.f665c = 0; return 0; } else if (i2 == 4) { long position = iVar.getPosition(); @@ -214,11 +214,11 @@ public final class a implements h { long j8 = this.f; j jVar = this.b; Objects.requireNonNull(jVar); - iVar2.f703s = new d(j8, jVar); + iVar2.f704s = new d(j8, jVar); MotionPhotoMetadata motionPhotoMetadata2 = this.g; Objects.requireNonNull(motionPhotoMetadata2); c(motionPhotoMetadata2); - this.f664c = 5; + this.f665c = 5; } else { a(); } @@ -251,9 +251,9 @@ public final class a implements h { @Override // c.i.a.c.a2.h public void g(long j, long j2) { if (j == 0) { - this.f664c = 0; + this.f665c = 0; this.j = null; - } else if (this.f664c == 5) { + } else if (this.f665c == 5) { c.i.a.c.a2.h0.i iVar = this.j; Objects.requireNonNull(iVar); iVar.g(j, j2); diff --git a/app/src/main/java/c/i/a/c/a2/e0/b.java b/app/src/main/java/c/i/a/c/a2/e0/b.java index eede79435d..0f6c8b29e8 100644 --- a/app/src/main/java/c/i/a/c/a2/e0/b.java +++ b/app/src/main/java/c/i/a/c/a2/e0/b.java @@ -12,12 +12,12 @@ public final class b { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f665c; + public final long f666c; public a(String str, String str2, long j, long j2) { this.a = str; this.b = j; - this.f665c = j2; + this.f666c = j2; } } diff --git a/app/src/main/java/c/i/a/c/a2/e0/c.java b/app/src/main/java/c/i/a/c/a2/e0/c.java index 8179960f00..e9f957b05b 100644 --- a/app/src/main/java/c/i/a/c/a2/e0/c.java +++ b/app/src/main/java/c/i/a/c/a2/e0/c.java @@ -1,7 +1,7 @@ package c.i.a.c.a2.e0; +import c.c.a.a0.d; import c.i.a.c.a2.i; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: StartOffsetExtractorInput */ public final class c implements i { public final i a; @@ -9,7 +9,7 @@ public final class c implements i { public c(i iVar, long j) { this.a = iVar; - AnimatableValueParser.k(iVar.getPosition() >= j); + d.k(iVar.getPosition() >= j); this.b = j; } diff --git a/app/src/main/java/c/i/a/c/a2/e0/d.java b/app/src/main/java/c/i/a/c/a2/e0/d.java index 7f4ede4bc8..83d6fa8a46 100644 --- a/app/src/main/java/c/i/a/c/a2/e0/d.java +++ b/app/src/main/java/c/i/a/c/a2/e0/d.java @@ -27,11 +27,11 @@ public final class d implements j { t.a h = this.a.h(j); u uVar = h.a; long j2 = uVar.b; - long j3 = uVar.f765c; + long j3 = uVar.f766c; long j4 = d.this.i; u uVar2 = new u(j2, j3 + j4); u uVar3 = h.b; - return new t.a(uVar2, new u(uVar3.b, uVar3.f765c + j4)); + return new t.a(uVar2, new u(uVar3.b, uVar3.f766c + j4)); } @Override // c.i.a.c.a2.t diff --git a/app/src/main/java/c/i/a/c/a2/e0/e.java b/app/src/main/java/c/i/a/c/a2/e0/e.java index 489e7db00b..09377d0746 100644 --- a/app/src/main/java/c/i/a/c/a2/e0/e.java +++ b/app/src/main/java/c/i/a/c/a2/e0/e.java @@ -1,13 +1,13 @@ package c.i.a.c.a2.e0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.e0.b; import c.i.a.f.e.o.c; import c.i.b.b.a; import c.i.b.b.q0; import c.i.b.b.s; import c.i.b.b.u; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ParserException; import java.io.IOException; import java.io.StringReader; @@ -21,7 +21,7 @@ public final class e { public static final String[] b = {"Camera:MotionPhotoPresentationTimestampUs", "GCamera:MotionPhotoPresentationTimestampUs", "Camera:MicroVideoPresentationTimestampUs", "GCamera:MicroVideoPresentationTimestampUs"}; /* renamed from: c reason: collision with root package name */ - public static final String[] f666c = {"Camera:MicroVideoOffset", "GCamera:MicroVideoOffset"}; + public static final String[] f667c = {"Camera:MicroVideoOffset", "GCamera:MicroVideoOffset"}; /* JADX WARNING: Code restructure failed: missing block: B:22:0x0069, code lost: if (r10 == -1) goto L_0x006b; @@ -36,13 +36,13 @@ public final class e { XmlPullParser newPullParser = XmlPullParserFactory.newInstance().newPullParser(); newPullParser.setInput(new StringReader(str)); newPullParser.next(); - if (AnimatableValueParser.z1(newPullParser, "x:xmpmeta")) { + if (d.b1(newPullParser, "x:xmpmeta")) { a aVar = u.j; u uVar = q0.k; long j2 = -9223372036854775807L; do { newPullParser.next(); - if (AnimatableValueParser.z1(newPullParser, "rdf:Description")) { + if (d.b1(newPullParser, "rdf:Description")) { String[] strArr = a; int length = strArr.length; int i = 0; @@ -50,7 +50,7 @@ public final class e { if (i >= length) { break; } - String t0 = AnimatableValueParser.t0(newPullParser, strArr[i]); + String t0 = d.t0(newPullParser, strArr[i]); if (t0 == null) { i++; } else if (Integer.parseInt(t0) == 1) { @@ -68,14 +68,14 @@ public final class e { if (i2 >= length2) { break; } - String t02 = AnimatableValueParser.t0(newPullParser, strArr2[i2]); + String t02 = d.t0(newPullParser, strArr2[i2]); if (t02 != null) { j = Long.parseLong(t02); } else { i2++; } } - String[] strArr3 = f666c; + String[] strArr3 = f667c; int length3 = strArr3.length; int i3 = 0; while (true) { @@ -84,7 +84,7 @@ public final class e { uVar = q0.k; break; } - String t03 = AnimatableValueParser.t0(newPullParser, strArr3[i3]); + String t03 = d.t0(newPullParser, strArr3[i3]); if (t03 != null) { long parseLong = Long.parseLong(t03); b.a aVar3 = new b.a("image/jpeg", "Primary", 0, 0); @@ -96,12 +96,12 @@ public final class e { i3++; } j2 = j; - } else if (AnimatableValueParser.z1(newPullParser, "Container:Directory")) { + } else if (d.b1(newPullParser, "Container:Directory")) { uVar = b(newPullParser, "Container", "Item"); - } else if (AnimatableValueParser.z1(newPullParser, "GContainer:Directory")) { + } else if (d.b1(newPullParser, "GContainer:Directory")) { uVar = b(newPullParser, "GContainer", "GContainerItem"); } - } while (!AnimatableValueParser.k1(newPullParser, "x:xmpmeta")); + } while (!d.U0(newPullParser, "x:xmpmeta")); if (uVar.isEmpty()) { return null; } @@ -120,15 +120,15 @@ public final class e { int i = 0; do { xmlPullParser.next(); - if (AnimatableValueParser.z1(xmlPullParser, u)) { + if (d.b1(xmlPullParser, u)) { String u3 = c.d.b.a.a.u(str2, ":Mime"); String u4 = c.d.b.a.a.u(str2, ":Semantic"); String u5 = c.d.b.a.a.u(str2, ":Length"); String u6 = c.d.b.a.a.u(str2, ":Padding"); - String t0 = AnimatableValueParser.t0(xmlPullParser, u3); - String t02 = AnimatableValueParser.t0(xmlPullParser, u4); - String t03 = AnimatableValueParser.t0(xmlPullParser, u5); - String t04 = AnimatableValueParser.t0(xmlPullParser, u6); + String t0 = d.t0(xmlPullParser, u3); + String t02 = d.t0(xmlPullParser, u4); + String t03 = d.t0(xmlPullParser, u5); + String t04 = d.t0(xmlPullParser, u6); if (t0 == null || t02 == null) { return q0.k; } @@ -140,7 +140,7 @@ public final class e { objArr[i] = aVar2; i = i2; } - } while (!AnimatableValueParser.k1(xmlPullParser, u2)); + } while (!d.U0(xmlPullParser, u2)); return u.l(objArr, i); } } diff --git a/app/src/main/java/c/i/a/c/a2/f.java b/app/src/main/java/c/i/a/c/a2/f.java index b9bb8636b6..25ffc03137 100644 --- a/app/src/main/java/c/i/a/c/a2/f.java +++ b/app/src/main/java/c/i/a/c/a2/f.java @@ -2,8 +2,8 @@ package c.i.a.c.a2; import android.net.Uri; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.b0.b; -import c.i.a.c.a2.c0.d; import c.i.a.c.a2.d0.c; import c.i.a.c.a2.e0.a; import c.i.a.c.a2.f0.e; @@ -13,7 +13,6 @@ import c.i.a.c.a2.j0.b0; import c.i.a.c.a2.j0.h; import c.i.a.c.a2.j0.h0; import c.i.a.c.a2.j0.j; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.lang.reflect.Constructor; import java.util.ArrayList; import java.util.HashMap; @@ -47,17 +46,17 @@ public final class f implements l { public synchronized h[] b(Uri uri, Map> map) { ArrayList arrayList; arrayList = new ArrayList(14); - int a1 = AnimatableValueParser.a1(map); - if (a1 != -1) { - c(a1, arrayList); + int R0 = d.R0(map); + if (R0 != -1) { + c(R0, arrayList); } - int b1 = AnimatableValueParser.b1(uri); - if (!(b1 == -1 || b1 == a1)) { - c(b1, arrayList); + int S0 = d.S0(uri); + if (!(S0 == -1 || S0 == R0)) { + c(S0, arrayList); } int[] iArr = a; for (int i : iArr) { - if (!(i == a1 || i == b1)) { + if (!(i == R0 || i == S0)) { c(i, arrayList); } } @@ -88,7 +87,7 @@ public final class f implements l { throw new IllegalStateException("Unexpected error creating FLAC extractor", e); } } else { - list.add(new d(0)); + list.add(new c.i.a.c.a2.c0.d(0)); return; } case 5: diff --git a/app/src/main/java/c/i/a/c/a2/f0/b.java b/app/src/main/java/c/i/a/c/a2/f0/b.java index c7aad6e1b5..7e58c104c9 100644 --- a/app/src/main/java/c/i/a/c/a2/f0/b.java +++ b/app/src/main/java/c/i/a/c/a2/f0/b.java @@ -9,7 +9,7 @@ public final class b implements d { public final ArrayDeque b = new ArrayDeque<>(); /* renamed from: c reason: collision with root package name */ - public final g f667c = new g(); + public final g f668c = new g(); public c d; public int e; public int f; diff --git a/app/src/main/java/c/i/a/c/a2/f0/e.java b/app/src/main/java/c/i/a/c/a2/f0/e.java index 0108d6c21d..9c929ba99a 100644 --- a/app/src/main/java/c/i/a/c/a2/f0/e.java +++ b/app/src/main/java/c/i/a/c/a2/f0/e.java @@ -21,7 +21,6 @@ import c.i.a.c.i2.w; import c.i.a.c.j2.k; import c.i.a.c.j2.m; import c.i.a.c.v1.k; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.api.permission.Permission; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; @@ -49,7 +48,7 @@ public class e implements h { public static final byte[] b = f0.w("Format: Start, End, ReadOrder, Layer, Style, Name, MarginL, MarginR, MarginV, Effect, Text"); /* renamed from: c reason: collision with root package name */ - public static final byte[] f668c = {68, 105, 97, 108, 111, 103, 117, 101, 58, 32, 48, 58, 48, 48, 58, 48, 48, 58, 48, 48, 44, 48, 58, 48, 48, 58, 48, 48, 58, 48, 48, 44}; + public static final byte[] f669c = {68, 105, 97, 108, 111, 103, 117, 101, 58, 32, 48, 58, 48, 48, 58, 48, 48, 58, 48, 48, 44, 48, 58, 48, 48, 58, 48, 48, 58, 48, 48, 44}; public static final UUID d = new UUID(72057594037932032L, -9223371306706625679L); public static final Map e; public boolean A; @@ -82,23 +81,23 @@ public class e implements h { public boolean Z; /* renamed from: a0 reason: collision with root package name */ - public boolean f669a0; + public boolean f670a0; /* renamed from: b0 reason: collision with root package name */ - public boolean f670b0; + public boolean f671b0; /* renamed from: c0 reason: collision with root package name */ - public int f671c0; + public int f672c0; /* renamed from: d0 reason: collision with root package name */ - public byte f672d0; + public byte f673d0; /* renamed from: e0 reason: collision with root package name */ - public boolean f673e0; + public boolean f674e0; public final d f; /* renamed from: f0 reason: collision with root package name */ - public j f674f0; + public j f675f0; public final g g; public final SparseArray h; public final boolean i; @@ -113,21 +112,21 @@ public class e implements h { public final w r; /* renamed from: s reason: collision with root package name */ - public final w f675s; + public final w f676s; public ByteBuffer t; public long u; public long v = -1; public long w = -9223372036854775807L; /* renamed from: x reason: collision with root package name */ - public long f676x = -9223372036854775807L; + public long f677x = -9223372036854775807L; /* renamed from: y reason: collision with root package name */ - public long f677y = -9223372036854775807L; + public long f678y = -9223372036854775807L; @Nullable /* renamed from: z reason: collision with root package name */ - public c f678z; + public c f679z; /* compiled from: MatroskaExtractor */ public final class b implements c { @@ -166,7 +165,7 @@ public class e implements h { public String b; /* renamed from: c reason: collision with root package name */ - public int f679c; + public int f680c; public int d; public int e; public int f; @@ -184,20 +183,20 @@ public class e implements h { public int r = -1; /* renamed from: s reason: collision with root package name */ - public float f680s = 0.0f; + public float f681s = 0.0f; public float t = 0.0f; public float u = 0.0f; public byte[] v = null; public int w = -1; /* renamed from: x reason: collision with root package name */ - public boolean f681x = false; + public boolean f682x = false; /* renamed from: y reason: collision with root package name */ - public int f682y = -1; + public int f683y = -1; /* renamed from: z reason: collision with root package name */ - public int f683z = -1; + public int f684z = -1; public c() { } @@ -221,7 +220,7 @@ public class e implements h { public boolean b; /* renamed from: c reason: collision with root package name */ - public int f684c; + public int f685c; public long d; public int e; public int f; @@ -229,9 +228,9 @@ public class e implements h { @RequiresNonNull({"#1.output"}) public void a(c cVar) { - if (this.f684c > 0) { + if (this.f685c > 0) { cVar.X.d(this.d, this.e, this.f, this.g, cVar.j); - this.f684c = 0; + this.f685c = 0; } } } @@ -262,7 +261,7 @@ public class e implements h { this.p = new c.i.a.c.i2.w(); this.q = new c.i.a.c.i2.w(8); this.r = new c.i.a.c.i2.w(); - this.f675s = new c.i.a.c.i2.w(); + this.f676s = new c.i.a.c.i2.w(); this.Q = new int[1]; } @@ -271,7 +270,7 @@ public class e implements h { } public static byte[] j(long j, String str, long j2) { - AnimatableValueParser.k(j != -9223372036854775807L); + c.c.a.a0.d.k(j != -9223372036854775807L); int i = (int) (j / 3600000000L); long j3 = j - (((long) (i * 3600)) * 1000000); int i2 = (int) (j3 / 60000000); @@ -335,7 +334,7 @@ public class e implements h { @EnsuresNonNull({"currentTrack"}) public final void c(int i) throws ParserException { - if (this.f678z == null) { + if (this.f679z == null) { throw new ParserException(c.d.b.a.a.n("Element ", i, " must be in a TrackEntry")); } } @@ -373,7 +372,7 @@ public class e implements h { int i7 = this.p.b; while (true) { c.i.a.c.i2.w wVar = this.p; - if (i7 >= wVar.f920c) { + if (i7 >= wVar.f921c) { break; } else if (wVar.a[i7] == 0) { wVar.C(i7); @@ -384,14 +383,14 @@ public class e implements h { } c.i.a.c.a2.w wVar2 = cVar.X; c.i.a.c.i2.w wVar3 = this.p; - wVar2.c(wVar3, wVar3.f920c); - i4 = i2 + this.p.f920c; + wVar2.c(wVar3, wVar3.f921c); + i4 = i2 + this.p.f921c; if ((268435456 & i6) != 0) { if (this.P > 1) { i6 &= -268435457; } else { - c.i.a.c.i2.w wVar4 = this.f675s; - int i8 = wVar4.f920c; + c.i.a.c.i2.w wVar4 = this.f676s; + int i8 = wVar4.f921c; cVar.X.f(wVar4, i8, 2); i4 += i8; } @@ -405,9 +404,9 @@ public class e implements h { } cVar.X.d(j, i6, i4, i3, cVar.j); } else if (dVar.b) { - int i9 = dVar.f684c; + int i9 = dVar.f685c; int i10 = i9 + 1; - dVar.f684c = i10; + dVar.f685c = i10; if (i9 == 0) { dVar.d = j; dVar.e = i6; @@ -450,14 +449,14 @@ public class e implements h { boolean z5 = true; while (z5 && !this.K) { b bVar = (b) this.f; - AnimatableValueParser.H(bVar.d); + c.c.a.a0.d.H(bVar.d); ?? r3 = z3; ?? r4 = z4; while (true) { b.C0086b peek = bVar.b.peek(); if (peek == null || iVar.getPosition() < peek.b) { if (bVar.e == 0) { - long c2 = bVar.f667c.c(iVar, r4, r3, 4); + long c2 = bVar.f668c.c(iVar, r4, r3, 4); if (c2 == -2) { iVar.k(); while (true) { @@ -482,7 +481,7 @@ public class e implements h { } } if (bVar.e == r4) { - bVar.g = bVar.f667c.c(iVar, r3, r4, 8); + bVar.g = bVar.f668c.c(iVar, r3, r4, 8); bVar.e = 2; } c cVar = bVar.d; @@ -606,23 +605,23 @@ public class e implements h { int i5 = bVar.f; long j2 = bVar.g; e eVar = e.this; - AnimatableValueParser.H(eVar.f674f0); + c.c.a.a0.d.H(eVar.f675f0); if (i5 == 160) { i2 = 0; eVar.V = false; } else if (i5 == 174) { i2 = 0; - eVar.f678z = new c(null); + eVar.f679z = new c(null); } else if (i5 != 187) { if (i5 == 19899) { eVar.B = -1; eVar.C = -1; } else if (i5 == 20533) { eVar.c(i5); - eVar.f678z.h = true; + eVar.f679z.h = true; } else if (i5 == 21968) { eVar.c(i5); - eVar.f678z.f681x = true; + eVar.f679z.f682x = true; } else if (i5 == 408125543) { long j3 = eVar.v; if (j3 == -1 || j3 == position) { @@ -636,7 +635,7 @@ public class e implements h { eVar.I = new q(); } else if (i5 == 524531317 && !eVar.A) { if (!eVar.i || eVar.E == -1) { - eVar.f674f0.a(new t.b(eVar.f677y, 0)); + eVar.f675f0.a(new t.b(eVar.f678y, 0)); eVar.A = true; } else { eVar.D = true; @@ -661,22 +660,22 @@ public class e implements h { switch (i6) { case 131: eVar2.c(i6); - eVar2.f678z.d = (int) a3; + eVar2.f679z.d = (int) a3; break; case 136: eVar2.c(i6); - eVar2.f678z.V = a3 == 1; + eVar2.f679z.V = a3 == 1; break; case 155: eVar2.N = eVar2.m(a3); break; case 159: eVar2.c(i6); - eVar2.f678z.O = (int) a3; + eVar2.f679z.O = (int) a3; break; case 176: eVar2.c(i6); - eVar2.f678z.m = (int) a3; + eVar2.f679z.m = (int) a3; break; case 179: eVar2.a(i6); @@ -684,11 +683,11 @@ public class e implements h { break; case 186: eVar2.c(i6); - eVar2.f678z.n = (int) a3; + eVar2.f679z.n = (int) a3; break; case 215: eVar2.c(i6); - eVar2.f678z.f679c = (int) a3; + eVar2.f679z.f680c = (int) a3; break; case 231: eVar2.G = eVar2.m(a3); @@ -709,7 +708,7 @@ public class e implements h { break; case 16871: eVar2.c(i6); - eVar2.f678z.g = (int) a3; + eVar2.f679z.g = (int) a3; break; case 16980: if (a3 != 3) { @@ -745,53 +744,53 @@ public class e implements h { if (i7 != 1) { if (i7 != 3) { if (i7 == 15) { - eVar2.f678z.w = 3; + eVar2.f679z.w = 3; break; } } else { - eVar2.f678z.w = 1; + eVar2.f679z.w = 1; break; } } else { - eVar2.f678z.w = 2; + eVar2.f679z.w = 2; break; } } else { - eVar2.f678z.w = 0; + eVar2.f679z.w = 0; break; } break; case 21680: eVar2.c(i6); - eVar2.f678z.o = (int) a3; + eVar2.f679z.o = (int) a3; break; case 21682: eVar2.c(i6); - eVar2.f678z.q = (int) a3; + eVar2.f679z.q = (int) a3; break; case 21690: eVar2.c(i6); - eVar2.f678z.p = (int) a3; + eVar2.f679z.p = (int) a3; break; case 21930: eVar2.c(i6); - eVar2.f678z.U = a3 == 1; + eVar2.f679z.U = a3 == 1; break; case 21998: eVar2.c(i6); - eVar2.f678z.f = (int) a3; + eVar2.f679z.f = (int) a3; break; case 22186: eVar2.c(i6); - eVar2.f678z.R = a3; + eVar2.f679z.R = a3; break; case 22203: eVar2.c(i6); - eVar2.f678z.S = a3; + eVar2.f679z.S = a3; break; case 25188: eVar2.c(i6); - eVar2.f678z.P = (int) a3; + eVar2.f679z.P = (int) a3; break; case 30321: eVar2.c(i6); @@ -800,25 +799,25 @@ public class e implements h { if (i8 != 1) { if (i8 != 2) { if (i8 == 3) { - eVar2.f678z.r = 3; + eVar2.f679z.r = 3; break; } } else { - eVar2.f678z.r = 2; + eVar2.f679z.r = 2; break; } } else { - eVar2.f678z.r = 1; + eVar2.f679z.r = 1; break; } } else { - eVar2.f678z.r = 0; + eVar2.f679z.r = 0; break; } break; case 2352003: eVar2.c(i6); - eVar2.f678z.e = (int) a3; + eVar2.f679z.e = (int) a3; break; case 2807729: eVar2.w = a3; @@ -830,11 +829,11 @@ public class e implements h { int i9 = (int) a3; if (i9 != 1) { if (i9 == 2) { - eVar2.f678z.A = 1; + eVar2.f679z.A = 1; break; } } else { - eVar2.f678z.A = 2; + eVar2.f679z.A = 2; break; } break; @@ -843,42 +842,42 @@ public class e implements h { int i10 = (int) a3; if (i10 != 1) { if (i10 == 16) { - eVar2.f678z.f683z = 6; + eVar2.f679z.f684z = 6; break; } else if (i10 == 18) { - eVar2.f678z.f683z = 7; + eVar2.f679z.f684z = 7; break; } else if (i10 != 6) { } } - eVar2.f678z.f683z = 3; + eVar2.f679z.f684z = 3; break; case 21947: eVar2.c(i6); - c cVar4 = eVar2.f678z; - cVar4.f681x = true; + c cVar4 = eVar2.f679z; + cVar4.f682x = true; int i11 = (int) a3; if (i11 != 1) { if (i11 != 9) { if (i11 == 4 || i11 == 5 || i11 == 6 || i11 == 7) { - cVar4.f682y = 2; + cVar4.f683y = 2; break; } } else { - cVar4.f682y = 6; + cVar4.f683y = 6; break; } } else { - cVar4.f682y = 1; + cVar4.f683y = 1; break; } case 21948: eVar2.c(i6); - eVar2.f678z.B = (int) a3; + eVar2.f679z.B = (int) a3; break; case 21949: eVar2.c(i6); - eVar2.f678z.C = (int) a3; + eVar2.f679z.C = (int) a3; break; } break; @@ -891,9 +890,9 @@ public class e implements h { } bVar.e = 0; } else { - StringBuilder P = c.d.b.a.a.P("Invalid integer size: "); - P.append(bVar.g); - throw new ParserException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Invalid integer size: "); + O.append(bVar.g); + throw new ParserException(O.toString()); } } else if (i == 3) { long j5 = bVar.g; @@ -920,23 +919,23 @@ public class e implements h { Objects.requireNonNull(eVar3); if (i12 == 134) { eVar3.c(i12); - eVar3.f678z.b = str; + eVar3.f679z.b = str; } else if (i12 != 17026) { if (i12 == 21358) { eVar3.c(i12); - eVar3.f678z.a = str; + eVar3.f679z.a = str; } else if (i12 == 2274716) { eVar3.c(i12); - eVar3.f678z.W = str; + eVar3.f679z.W = str; } } else if (!"webm".equals(str) && !"matroska".equals(str)) { throw new ParserException(c.d.b.a.a.v("DocType ", str, " not supported")); } bVar.e = 0; } else { - StringBuilder P2 = c.d.b.a.a.P("String element size: "); - P2.append(bVar.g); - throw new ParserException(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("String element size: "); + O2.append(bVar.g); + throw new ParserException(O2.toString()); } } else if (i == 4) { c cVar6 = bVar.d; @@ -1118,7 +1117,7 @@ public class e implements h { } else if (i15 != 165) { if (i15 == 16877) { eVar4.c(i15); - c cVar8 = eVar4.f678z; + c cVar8 = eVar4.f679z; int i57 = cVar8.g; if (i57 == 1685485123 || i57 == 1685480259) { byte[] bArr3 = new byte[i16]; @@ -1130,13 +1129,13 @@ public class e implements h { } else if (i15 == 16981) { eVar4.c(i15); byte[] bArr4 = new byte[i16]; - eVar4.f678z.i = bArr4; + eVar4.f679z.i = bArr4; iVar.readFully(bArr4, r3, i16); } else if (i15 == 18402) { byte[] bArr5 = new byte[i16]; iVar.readFully(bArr5, r3, i16); eVar4.c(i15); - eVar4.f678z.j = new w.a(r4, bArr5, r3, r3); + eVar4.f679z.j = new w.a(r4, bArr5, r3, r3); } else if (i15 == 21419) { byte[] bArr6 = eVar4.n.a; byte b4 = r3 == true ? (byte) 1 : 0; @@ -1151,12 +1150,12 @@ public class e implements h { } else if (i15 == 25506) { eVar4.c(i15); byte[] bArr7 = new byte[i16]; - eVar4.f678z.k = bArr7; + eVar4.f679z.k = bArr7; iVar.readFully(bArr7, r3, i16); } else if (i15 == 30322) { eVar4.c(i15); byte[] bArr8 = new byte[i16]; - eVar4.f678z.v = bArr8; + eVar4.f679z.v = bArr8; iVar.readFully(bArr8, r3, i16); } else { throw new ParserException(c.d.b.a.a.l("Unexpected id: ", i15)); @@ -1166,13 +1165,13 @@ public class e implements h { if (eVar4.U != 4 || !"V_VP9".equals(cVar9.b)) { iVar.l(i16); } else { - c.i.a.c.i2.w wVar = eVar4.f675s; + c.i.a.c.i2.w wVar = eVar4.f676s; byte[] bArr9 = wVar.a; if (bArr9.length < i16) { bArr9 = new byte[i16]; } wVar.B(bArr9, i16); - iVar.readFully(eVar4.f675s.a, r3, i16); + iVar.readFully(eVar4.f676s.a, r3, i16); } } bVar.e = 0; @@ -1188,73 +1187,73 @@ public class e implements h { Objects.requireNonNull(eVar5); if (i58 == 181) { eVar5.c(i58); - eVar5.f678z.Q = (int) intBitsToFloat; + eVar5.f679z.Q = (int) intBitsToFloat; } else if (i58 != 17545) { switch (i58) { case 21969: eVar5.c(i58); - eVar5.f678z.D = (float) intBitsToFloat; + eVar5.f679z.D = (float) intBitsToFloat; break; case 21970: eVar5.c(i58); - eVar5.f678z.E = (float) intBitsToFloat; + eVar5.f679z.E = (float) intBitsToFloat; break; case 21971: eVar5.c(i58); - eVar5.f678z.F = (float) intBitsToFloat; + eVar5.f679z.F = (float) intBitsToFloat; break; case 21972: eVar5.c(i58); - eVar5.f678z.G = (float) intBitsToFloat; + eVar5.f679z.G = (float) intBitsToFloat; break; case 21973: eVar5.c(i58); - eVar5.f678z.H = (float) intBitsToFloat; + eVar5.f679z.H = (float) intBitsToFloat; break; case 21974: eVar5.c(i58); - eVar5.f678z.I = (float) intBitsToFloat; + eVar5.f679z.I = (float) intBitsToFloat; break; case 21975: eVar5.c(i58); - eVar5.f678z.J = (float) intBitsToFloat; + eVar5.f679z.J = (float) intBitsToFloat; break; case 21976: eVar5.c(i58); - eVar5.f678z.K = (float) intBitsToFloat; + eVar5.f679z.K = (float) intBitsToFloat; break; case 21977: eVar5.c(i58); - eVar5.f678z.L = (float) intBitsToFloat; + eVar5.f679z.L = (float) intBitsToFloat; break; case 21978: eVar5.c(i58); - eVar5.f678z.M = (float) intBitsToFloat; + eVar5.f679z.M = (float) intBitsToFloat; break; default: switch (i58) { case 30323: eVar5.c(i58); - eVar5.f678z.f680s = (float) intBitsToFloat; + eVar5.f679z.f681s = (float) intBitsToFloat; break; case 30324: eVar5.c(i58); - eVar5.f678z.t = (float) intBitsToFloat; + eVar5.f679z.t = (float) intBitsToFloat; break; case 30325: eVar5.c(i58); - eVar5.f678z.u = (float) intBitsToFloat; + eVar5.f679z.u = (float) intBitsToFloat; break; } } } else { - eVar5.f676x = (long) intBitsToFloat; + eVar5.f677x = (long) intBitsToFloat; } bVar.e = r3; } else { - StringBuilder P3 = c.d.b.a.a.P("Invalid float size: "); - P3.append(bVar.g); - throw new ParserException(P3.toString()); + StringBuilder O3 = c.d.b.a.a.O("Invalid float size: "); + O3.append(bVar.g); + throw new ParserException(O3.toString()); } } else { throw new ParserException(c.d.b.a.a.l("Invalid element type ", i)); @@ -1306,7 +1305,7 @@ public class e implements h { @Override // c.i.a.c.a2.h public final void f(j jVar) { - this.f674f0 = jVar; + this.f675f0 = jVar; } @Override // c.i.a.c.a2.h @@ -1317,18 +1316,18 @@ public class e implements h { b bVar = (b) this.f; bVar.e = 0; bVar.b.clear(); - g gVar = bVar.f667c; - gVar.f685c = 0; + g gVar = bVar.f668c; + gVar.f686c = 0; gVar.d = 0; g gVar2 = this.g; - gVar2.f685c = 0; + gVar2.f686c = 0; gVar2.d = 0; l(); for (int i = 0; i < this.h.size(); i++) { d dVar = this.h.valueAt(i).T; if (dVar != null) { dVar.b = false; - dVar.f684c = 0; + dVar.f685c = 0; } } } @@ -1384,12 +1383,12 @@ public class e implements h { int i10; int i11; e eVar = this; - AnimatableValueParser.H(eVar.f674f0); + c.c.a.a0.d.H(eVar.f675f0); int i12 = 0; if (i != 160) { if (i == 174) { - c cVar = eVar.f678z; - AnimatableValueParser.H(cVar); + c cVar = eVar.f679z; + c.c.a.a0.d.H(cVar); String str8 = cVar.b; if (str8 != null) { switch (str8.hashCode()) { @@ -1661,8 +1660,8 @@ public class e implements h { break; } if (z2) { - j jVar = eVar.f674f0; - int i13 = cVar.f679c; + j jVar = eVar.f675f0; + int i13 = cVar.f680c; String str9 = cVar.b; str9.hashCode(); switch (str9.hashCode()) { @@ -1923,9 +1922,9 @@ public class e implements h { int i14 = (cVar.V ? 1 : 0) | 0 | (!cVar.U ? 2 : 0); bVar = new Format.b(); if (!c.i.a.c.i2.s.h(str12)) { - bVar.f2280x = cVar.O; - bVar.f2281y = cVar.Q; - bVar.f2282z = i3; + bVar.f2283x = cVar.O; + bVar.f2284y = cVar.Q; + bVar.f2285z = i3; i4 = 1; } else if (c.i.a.c.i2.s.j(str12)) { if (cVar.q == 0) { @@ -1948,7 +1947,7 @@ public class e implements h { if (!(i17 == i5 || (i7 = cVar.p) == i5)) { f = ((float) (cVar.n * i17)) / ((float) (cVar.m * i7)); } - if (cVar.f681x) { + if (cVar.f682x) { if (cVar.D == -1.0f || cVar.E == -1.0f || cVar.F == -1.0f || cVar.G == -1.0f || cVar.H == -1.0f || cVar.I == -1.0f || cVar.J == -1.0f || cVar.K == -1.0f || cVar.L == -1.0f || cVar.M == -1.0f) { bArr = null; } else { @@ -1968,7 +1967,7 @@ public class e implements h { order.putShort((short) cVar.B); order.putShort((short) cVar.C); } - colorInfo = new ColorInfo(cVar.f682y, cVar.A, cVar.f683z, bArr); + colorInfo = new ColorInfo(cVar.f683y, cVar.A, cVar.f684z, bArr); } else { colorInfo = null; } @@ -1977,7 +1976,7 @@ public class e implements h { Map map = e; if (map.containsKey(str13)) { i6 = map.get(cVar.a).intValue(); - if (cVar.r == 0 && Float.compare(cVar.f680s, 0.0f) == 0 && Float.compare(cVar.t, 0.0f) == 0) { + if (cVar.r == 0 && Float.compare(cVar.f681s, 0.0f) == 0 && Float.compare(cVar.t, 0.0f) == 0) { if (Float.compare(cVar.u, 0.0f) != 0) { i6 = 0; } else if (Float.compare(cVar.t, 90.0f) == 0) { @@ -1991,7 +1990,7 @@ public class e implements h { bVar.p = cVar.m; bVar.q = cVar.n; bVar.t = f; - bVar.f2279s = i6; + bVar.f2282s = i6; bVar.u = cVar.v; bVar.v = cVar.w; bVar.w = colorInfo; @@ -2004,7 +2003,7 @@ public class e implements h { bVar.p = cVar.m; bVar.q = cVar.n; bVar.t = f; - bVar.f2279s = i6; + bVar.f2282s = i6; bVar.u = cVar.v; bVar.v = cVar.w; bVar.w = colorInfo; @@ -2021,17 +2020,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 2: c.i.a.c.i2.w wVar = new c.i.a.c.i2.w(cVar.a(cVar.b)); @@ -2050,11 +2049,11 @@ public class e implements h { if (!z3) { i3 = f0.r(cVar.P); if (i3 == 0) { - StringBuilder P = c.d.b.a.a.P("Unsupported PCM bit depth: "); - P.append(cVar.P); - P.append(". Setting mimeType to "); - P.append(str11); - Log.w("MatroskaExtractor", P.toString()); + StringBuilder O = c.d.b.a.a.O("Unsupported PCM bit depth: "); + O.append(cVar.P); + O.append(". Setting mimeType to "); + O.append(str11); + Log.w("MatroskaExtractor", O.toString()); } i2 = -1; list = null; @@ -2071,20 +2070,20 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; } else { - c.d.b.a.a.l0("Non-PCM MS/ACM is unsupported. Setting mimeType to ", str11, "MatroskaExtractor"); + c.d.b.a.a.k0("Non-PCM MS/ACM is unsupported. Setting mimeType to ", str11, "MatroskaExtractor"); } list3 = null; list2 = list3; @@ -2110,17 +2109,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); } z3 = true; if (!z3) { @@ -2149,17 +2148,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); } catch (ArrayIndexOutOfBoundsException unused) { throw new ParserException("Error parsing MS/ACM codec private"); } @@ -2188,17 +2187,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 4: byte[] a4 = cVar.a(cVar.b); @@ -2253,17 +2252,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; } else { throw new ParserException("Error parsing vorbis codec private"); @@ -2305,17 +2304,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 6: str6 = "audio/mpeg"; @@ -2342,22 +2341,22 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 7: byte[] a5 = cVar.a(cVar.b); try { - AnimatableValueParser.k(16 <= a5.length); + c.c.a.a0.d.k(16 <= a5.length); long j = ((((long) a5[17]) & 255) << 8) | (((long) a5[16]) & 255) | ((((long) a5[18]) & 255) << 16) | ((((long) a5[19]) & 255) << 24); if (j == 1482049860) { pair = new Pair("video/divx", null); @@ -2399,17 +2398,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; } catch (ArrayIndexOutOfBoundsException unused3) { throw new ParserException("Error parsing FourCC private data"); @@ -2443,17 +2442,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case '\n': c.i.a.c.j2.j b2 = c.i.a.c.j2.j.b(new c.i.a.c.i2.w(cVar.a(cVar.b))); @@ -2481,17 +2480,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 11: str7 = "application/vobsub"; @@ -2519,17 +2518,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case '\f': str10 = "audio/vnd.dts.hd"; @@ -2557,24 +2556,24 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case '\r': List singletonList = Collections.singletonList(cVar.a(cVar.b)); k.b d2 = c.i.a.c.v1.k.d(cVar.k); cVar.Q = d2.a; cVar.O = d2.b; - str2 = d2.f998c; + str2 = d2.f999c; str5 = "audio/mp4a-latm"; list5 = singletonList; i8 = -1; @@ -2596,17 +2595,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 14: str10 = "audio/ac3"; @@ -2634,17 +2633,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 15: case 21: @@ -2673,17 +2672,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 16: str10 = "video/av01"; @@ -2711,17 +2710,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 17: str10 = "video/x-vnd.on2.vp8"; @@ -2749,17 +2748,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 18: str10 = "video/x-vnd.on2.vp9"; @@ -2787,17 +2786,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 19: str10 = "application/pgs"; @@ -2825,17 +2824,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 20: str11 = str10; @@ -2862,17 +2861,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 22: if (cVar.P == 32) { @@ -2892,24 +2891,24 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; } else { - StringBuilder P2 = c.d.b.a.a.P("Unsupported floating point PCM bit depth: "); - P2.append(cVar.P); - P2.append(". Setting mimeType to "); - P2.append(str11); - Log.w("MatroskaExtractor", P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Unsupported floating point PCM bit depth: "); + O2.append(cVar.P); + O2.append(". Setting mimeType to "); + O2.append(str11); + Log.w("MatroskaExtractor", O2.toString()); list6 = null; str5 = str11; str2 = null; @@ -2933,17 +2932,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); } break; case 23: @@ -2951,11 +2950,11 @@ public class e implements h { if (i28 == 8) { i3 = 3; } else if (i28 != 16) { - StringBuilder P3 = c.d.b.a.a.P("Unsupported big endian PCM bit depth: "); - P3.append(cVar.P); - P3.append(". Setting mimeType to "); - P3.append(str11); - Log.w("MatroskaExtractor", P3.toString()); + StringBuilder O3 = c.d.b.a.a.O("Unsupported big endian PCM bit depth: "); + O3.append(cVar.P); + O3.append(". Setting mimeType to "); + O3.append(str11); + Log.w("MatroskaExtractor", O3.toString()); list6 = null; str5 = str11; str2 = null; @@ -2979,17 +2978,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; } else { i3 = 268435456; @@ -3009,26 +3008,26 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 24: i3 = f0.r(cVar.P); if (i3 == 0) { - StringBuilder P4 = c.d.b.a.a.P("Unsupported little endian PCM bit depth: "); - P4.append(cVar.P); - P4.append(". Setting mimeType to "); - P4.append(str11); - Log.w("MatroskaExtractor", P4.toString()); + StringBuilder O4 = c.d.b.a.a.O("Unsupported little endian PCM bit depth: "); + O4.append(cVar.P); + O4.append(". Setting mimeType to "); + O4.append(str11); + Log.w("MatroskaExtractor", O4.toString()); list6 = null; str5 = str11; str2 = null; @@ -3052,17 +3051,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; } i2 = -1; @@ -3080,17 +3079,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 25: byte[] bArr7 = b; @@ -3122,23 +3121,23 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 26: m a7 = m.a(new c.i.a.c.i2.w(cVar.a(cVar.b))); list2 = a7.a; cVar.Y = a7.b; - str4 = a7.f928c; + str4 = a7.f929c; str3 = "video/hevc"; i8 = -1; str12 = str3; @@ -3160,17 +3159,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 27: str10 = "application/x-subrip"; @@ -3198,17 +3197,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 28: str10 = "video/mpeg2"; @@ -3236,17 +3235,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 29: str10 = "audio/eac3"; @@ -3274,17 +3273,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 30: str7 = "audio/flac"; @@ -3312,17 +3311,17 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; case 31: ArrayList arrayList4 = new ArrayList(3); @@ -3354,23 +3353,23 @@ public class e implements h { bVar.b(i13); bVar.k = str12; bVar.l = i2; - bVar.f2278c = cVar.W; + bVar.f2281c = cVar.W; bVar.d = i14; bVar.m = list; bVar.h = str; bVar.n = cVar.l; Format a3 = bVar.a(); - c.i.a.c.a2.w p = jVar.p(cVar.f679c, i4); + c.i.a.c.a2.w p = jVar.p(cVar.f680c, i4); cVar.X = p; p.e(a3); eVar = this; - eVar.h.put(cVar.f679c, cVar); + eVar.h.put(cVar.f680c, cVar); break; default: throw new ParserException("Unrecognized codec identifier."); } } - eVar.f678z = null; + eVar.f679z = null; return; } throw new ParserException("CodecId is missing in TrackEntry element"); @@ -3389,7 +3388,7 @@ public class e implements h { throw new ParserException("Mandatory element SeekID or SeekPosition not found"); } else if (i == 25152) { c(i); - c cVar2 = eVar.f678z; + c cVar2 = eVar.f679z; if (cVar2.h) { w.a aVar2 = cVar2.j; if (aVar2 != null) { @@ -3400,7 +3399,7 @@ public class e implements h { } } else if (i == 28032) { c(i); - c cVar3 = eVar.f678z; + c cVar3 = eVar.f679z; if (cVar3.h && cVar3.i != null) { throw new ParserException("Combining encryption and compression is not supported"); } @@ -3408,18 +3407,18 @@ public class e implements h { if (eVar.w == -9223372036854775807L) { eVar.w = 1000000; } - long j3 = eVar.f676x; + long j3 = eVar.f677x; if (j3 != -9223372036854775807L) { - eVar.f677y = eVar.m(j3); + eVar.f678y = eVar.m(j3); } } else if (i != 374648427) { if (i == 475249515) { if (!eVar.A) { - j jVar2 = eVar.f674f0; + j jVar2 = eVar.f675f0; q qVar = eVar.H; q qVar2 = eVar.I; - if (eVar.v == -1 || eVar.f677y == -9223372036854775807L || qVar == null || (i10 = qVar.a) == 0 || qVar2 == null || qVar2.a != i10) { - tVar = new t.b(eVar.f677y, 0); + if (eVar.v == -1 || eVar.f678y == -9223372036854775807L || qVar == null || (i10 = qVar.a) == 0 || qVar2 == null || qVar2.a != i10) { + tVar = new t.b(eVar.f678y, 0); } else { int[] iArr = new int[i10]; long[] jArr = new long[i10]; @@ -3440,7 +3439,7 @@ public class e implements h { i12 = i31; } iArr[i11] = (int) ((eVar.v + eVar.u) - jArr[i11]); - jArr2[i11] = eVar.f677y - jArr3[i11]; + jArr2[i11] = eVar.f678y - jArr3[i11]; long j4 = jArr2[i11]; if (j4 <= 0) { Log.w("MatroskaExtractor", "Discarding last cue point with unexpected duration: " + j4); @@ -3458,7 +3457,7 @@ public class e implements h { eVar.I = null; } } else if (eVar.h.size() != 0) { - eVar.f674f0.j(); + eVar.f675f0.j(); } else { throw new ParserException("No valid tracks were found"); } @@ -3488,14 +3487,14 @@ public class e implements h { public final void k(i iVar, int i) throws IOException { c.i.a.c.i2.w wVar = this.l; - if (wVar.f920c < i) { + if (wVar.f921c < i) { byte[] bArr = wVar.a; if (bArr.length < i) { wVar.b(Math.max(bArr.length * 2, i)); } c.i.a.c.i2.w wVar2 = this.l; byte[] bArr2 = wVar2.a; - int i2 = wVar2.f920c; + int i2 = wVar2.f921c; iVar.readFully(bArr2, i2, i - i2); this.l.C(i); } @@ -3506,11 +3505,11 @@ public class e implements h { this.X = 0; this.Y = 0; this.Z = false; - this.f669a0 = false; - this.f670b0 = false; - this.f671c0 = 0; - this.f672d0 = 0; - this.f673e0 = false; + this.f670a0 = false; + this.f671b0 = false; + this.f672c0 = 0; + this.f673d0 = 0; + this.f674e0 = false; this.o.z(0); } @@ -3532,7 +3531,7 @@ public class e implements h { l(); return i4; } else if ("S_TEXT/ASS".equals(cVar.b)) { - o(iVar, f668c, i); + o(iVar, f669c, i); int i5 = this.X; l(); return i5; @@ -3543,25 +3542,25 @@ public class e implements h { if (cVar.h) { this.T &= -1073741825; int i6 = 128; - if (!this.f669a0) { + if (!this.f670a0) { iVar.readFully(this.l.a, 0, 1); this.W++; byte[] bArr = this.l.a; if ((bArr[0] & 128) != 128) { - this.f672d0 = bArr[0]; - this.f669a0 = true; + this.f673d0 = bArr[0]; + this.f670a0 = true; } else { throw new ParserException("Extension bit is set in signal byte"); } } - byte b2 = this.f672d0; + byte b2 = this.f673d0; if ((b2 & 1) == 1) { boolean z2 = (b2 & 2) == 2; this.T |= BasicMeasure.EXACTLY; - if (!this.f673e0) { + if (!this.f674e0) { iVar.readFully(this.q.a, 0, 8); this.W += 8; - this.f673e0 = true; + this.f674e0 = true; c.i.a.c.i2.w wVar2 = this.l; byte[] bArr2 = wVar2.a; if (!z2) { @@ -3576,18 +3575,18 @@ public class e implements h { this.X += 8; } if (z2) { - if (!this.f670b0) { + if (!this.f671b0) { iVar.readFully(this.l.a, 0, 1); this.W++; this.l.D(0); - this.f671c0 = this.l.s(); - this.f670b0 = true; + this.f672c0 = this.l.s(); + this.f671b0 = true; } - int i7 = this.f671c0 * 4; + int i7 = this.f672c0 * 4; this.l.z(i7); iVar.readFully(this.l.a, 0, i7); this.W += i7; - short s2 = (short) ((this.f671c0 / 2) + 1); + short s2 = (short) ((this.f672c0 / 2) + 1); int i8 = (s2 * 6) + 2; ByteBuffer byteBuffer = this.t; if (byteBuffer == null || byteBuffer.capacity() < i8) { @@ -3598,7 +3597,7 @@ public class e implements h { int i9 = 0; int i10 = 0; while (true) { - i3 = this.f671c0; + i3 = this.f672c0; if (i9 >= i3) { break; } @@ -3629,13 +3628,13 @@ public class e implements h { c.i.a.c.i2.w wVar3 = this.o; int length = bArr3.length; wVar3.a = bArr3; - wVar3.f920c = length; + wVar3.f921c = length; wVar3.b = 0; } } if (cVar.f > 0) { this.T |= 268435456; - this.f675s.z(0); + this.f676s.z(0); this.l.z(4); c.i.a.c.i2.w wVar4 = this.l; byte[] bArr4 = wVar4.a; @@ -3648,10 +3647,10 @@ public class e implements h { } this.Z = true; } - int i12 = i + this.o.f920c; + int i12 = i + this.o.f921c; if (!"V_MPEG4/ISO/AVC".equals(cVar.b) && !"V_MPEGH/ISO/HEVC".equals(cVar.b)) { if (cVar.T != null) { - AnimatableValueParser.D(this.o.f920c == 0); + c.c.a.a0.d.D(this.o.f921c == 0); d dVar = cVar.T; if (!dVar.b) { iVar.n(dVar.a, 0, 10); diff --git a/app/src/main/java/c/i/a/c/a2/f0/g.java b/app/src/main/java/c/i/a/c/a2/f0/g.java index 9dda6dadc1..08317c2d0a 100644 --- a/app/src/main/java/c/i/a/c/a2/f0/g.java +++ b/app/src/main/java/c/i/a/c/a2/f0/g.java @@ -8,7 +8,7 @@ public final class g { public final byte[] b = new byte[8]; /* renamed from: c reason: collision with root package name */ - public int f685c; + public int f686c; public int d; public static long a(byte[] bArr, int i, boolean z2) { @@ -37,27 +37,27 @@ public final class g { } public long c(i iVar, boolean z2, boolean z3, int i) throws IOException { - if (this.f685c == 0) { + if (this.f686c == 0) { if (!iVar.c(this.b, 0, 1, z2)) { return -1; } int b = b(this.b[0] & 255); this.d = b; if (b != -1) { - this.f685c = 1; + this.f686c = 1; } else { throw new IllegalStateException("No valid varint length mask found"); } } int i2 = this.d; if (i2 > i) { - this.f685c = 0; + this.f686c = 0; return -2; } if (i2 != 1) { iVar.readFully(this.b, 1, i2 - 1); } - this.f685c = 0; + this.f686c = 0; return a(this.b, this.d, z3); } } diff --git a/app/src/main/java/c/i/a/c/a2/g0/c.java b/app/src/main/java/c/i/a/c/a2/g0/c.java index e149a46f35..3187884571 100644 --- a/app/src/main/java/c/i/a/c/a2/g0/c.java +++ b/app/src/main/java/c/i/a/c/a2/g0/c.java @@ -5,7 +5,7 @@ import c.i.a.c.v1.z; /* compiled from: ConstantBitrateSeeker */ public final class c extends d implements g { public c(long j, long j2, z.a aVar) { - super(j, j2, aVar.f, aVar.f1013c); + super(j, j2, aVar.f, aVar.f1014c); } @Override // c.i.a.c.a2.g0.g diff --git a/app/src/main/java/c/i/a/c/a2/g0/d.java b/app/src/main/java/c/i/a/c/a2/g0/d.java index 3097c4d49b..b4f0e75961 100644 --- a/app/src/main/java/c/i/a/c/a2/g0/d.java +++ b/app/src/main/java/c/i/a/c/a2/g0/d.java @@ -10,7 +10,7 @@ public final class d implements g { public final q b; /* renamed from: c reason: collision with root package name */ - public final q f686c; + public final q f687c; public long d; public d(long j, long j2, long j3) { @@ -19,7 +19,7 @@ public final class d implements g { q qVar = new q(); this.b = qVar; q qVar2 = new q(); - this.f686c = qVar2; + this.f687c = qVar2; qVar.a(0); qVar2.a(j2); } @@ -41,19 +41,19 @@ public final class d implements g { @Override // c.i.a.c.a2.g0.g public long d(long j) { - return this.b.b(f0.c(this.f686c, j, true, true)); + return this.b.b(f0.c(this.f687c, j, true, true)); } @Override // c.i.a.c.a2.t public t.a h(long j) { int c2 = f0.c(this.b, j, true, true); long b = this.b.b(c2); - u uVar = new u(b, this.f686c.b(c2)); + u uVar = new u(b, this.f687c.b(c2)); if (b != j) { q qVar = this.b; if (c2 != qVar.a - 1) { int i = c2 + 1; - return new t.a(uVar, new u(qVar.b(i), this.f686c.b(i))); + return new t.a(uVar, new u(qVar.b(i), this.f687c.b(i))); } } return new t.a(uVar); diff --git a/app/src/main/java/c/i/a/c/a2/g0/e.java b/app/src/main/java/c/i/a/c/a2/g0/e.java index c6797b08d8..39a9905eef 100644 --- a/app/src/main/java/c/i/a/c/a2/g0/e.java +++ b/app/src/main/java/c/i/a/c/a2/g0/e.java @@ -12,12 +12,12 @@ public final class e implements g { public final long[] b; /* renamed from: c reason: collision with root package name */ - public final long f687c; + public final long f688c; public e(long[] jArr, long[] jArr2, long j) { this.a = jArr; this.b = jArr2; - this.f687c = j == -9223372036854775807L ? h0.a(jArr2[jArr2.length - 1]) : j; + this.f688c = j == -9223372036854775807L ? h0.a(jArr2[jArr2.length - 1]) : j; } public static Pair b(long j, long[] jArr, long[] jArr2) { @@ -49,12 +49,12 @@ public final class e implements g { @Override // c.i.a.c.a2.t public t.a h(long j) { - Pair b = b(h0.b(f0.i(j, 0, this.f687c)), this.b, this.a); + Pair b = b(h0.b(f0.i(j, 0, this.f688c)), this.b, this.a); return new t.a(new u(h0.a(((Long) b.first).longValue()), ((Long) b.second).longValue())); } @Override // c.i.a.c.a2.t public long i() { - return this.f687c; + return this.f688c; } } diff --git a/app/src/main/java/c/i/a/c/a2/g0/f.java b/app/src/main/java/c/i/a/c/a2/g0/f.java index f0e5ca77f5..c2b551e852 100644 --- a/app/src/main/java/c/i/a/c/a2/g0/f.java +++ b/app/src/main/java/c/i/a/c/a2/g0/f.java @@ -2,6 +2,7 @@ package c.i.a.c.a2.g0; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.c.a2.g; import c.i.a.c.a2.g0.g; @@ -16,7 +17,6 @@ import c.i.a.c.h0; import c.i.a.c.i2.f0; import c.i.a.c.i2.w; import c.i.a.c.v1.z; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import com.google.android.exoplayer2.metadata.Metadata; @@ -31,7 +31,7 @@ public final class f implements h { public final int b; /* renamed from: c reason: collision with root package name */ - public final long f688c; + public final long f689c; public final w d; public final z.a e; public final p f; @@ -50,7 +50,7 @@ public final class f implements h { public g r; /* renamed from: s reason: collision with root package name */ - public boolean f689s; + public boolean f690s; public boolean t; public long u; @@ -64,7 +64,7 @@ public final class f implements h { public f(int i) { this.b = i; - this.f688c = -9223372036854775807L; + this.f689c = -9223372036854775807L; this.d = new w(10); this.e = new z.a(); this.f = new p(); @@ -150,7 +150,7 @@ public final class f implements h { h hVar3; int i4; i iVar5 = iVar; - AnimatableValueParser.H(this.j); + d.H(this.j); int i5 = f0.a; if (this.l == 0) { try { @@ -161,8 +161,8 @@ public final class f implements h { } } if (this.r == null) { - w wVar = new w(this.e.f1013c); - iVar5.n(wVar.a, 0, this.e.f1013c); + w wVar = new w(this.e.f1014c); + iVar5.n(wVar.a, 0, this.e.f1014c); z.a aVar = this.e; int i6 = 21; if ((aVar.a & 1) != 0) { @@ -172,7 +172,7 @@ public final class f implements h { } else if (aVar.e == 1) { i6 = 13; } - if (wVar.f920c >= i6 + 4) { + if (wVar.f921c >= i6 + 4) { wVar.D(i6); i2 = wVar.f(); if (i2 != 1483304551) { @@ -193,7 +193,7 @@ public final class f implements h { i3 = i6; long E = f0.E((long) v, ((long) i7) * 1000000, (long) i8); if ((f & 6) != 6) { - iVar4 = new i(position, aVar2.f1013c, E, -1, null); + iVar4 = new i(position, aVar2.f1014c, E, -1, null); } else { long t = wVar.t(); long[] jArr = new long[100]; @@ -203,18 +203,18 @@ public final class f implements h { if (b != -1) { long j3 = position + t; if (b != j3) { - StringBuilder S = a.S("XING data size mismatch: ", b, str); - S.append(j3); - Log.w("XingSeeker", S.toString()); + StringBuilder R = a.R("XING data size mismatch: ", b, str); + R.append(j3); + Log.w("XingSeeker", R.toString()); } } - iVar4 = new i(position, aVar2.f1013c, E, t, jArr); + iVar4 = new i(position, aVar2.f1014c, E, t, jArr); } iVar3 = iVar4; } if (iVar3 != null) { p pVar = fVar.f; - if (!((pVar.b == -1 || pVar.f763c == -1) ? false : true)) { + if (!((pVar.b == -1 || pVar.f764c == -1) ? false : true)) { iVar.k(); iVar5 = iVar; iVar5.g(i3 + 141); @@ -227,9 +227,9 @@ public final class f implements h { int i11 = u & 4095; if (i10 > 0 || i11 > 0) { pVar2.b = i10; - pVar2.f763c = i11; + pVar2.f764c = i11; } - iVar5.l(fVar.e.f1013c); + iVar5.l(fVar.e.f1014c); hVar = iVar3; if (iVar3 != null) { boolean c2 = iVar3.c(); @@ -244,7 +244,7 @@ public final class f implements h { } } iVar5 = iVar; - iVar5.l(fVar.e.f1013c); + iVar5.l(fVar.e.f1014c); hVar = iVar3; if (iVar3 != null) { } @@ -262,7 +262,7 @@ public final class f implements h { int x3 = wVar.x(); int x4 = wVar.x(); wVar.E(2); - long j4 = position2 + ((long) aVar3.f1013c); + long j4 = position2 + ((long) aVar3.f1014c); long[] jArr2 = new long[x2]; long[] jArr3 = new long[x2]; int i13 = 0; @@ -288,21 +288,21 @@ public final class f implements h { b2 = b2; } else { if (!(b2 == -1 || b2 == j5)) { - StringBuilder S2 = a.S("VBRI data size mismatch: ", b2, str); - S2.append(j5); - Log.w("VbriSeeker", S2.toString()); + StringBuilder R2 = a.R("VBRI data size mismatch: ", b2, str); + R2.append(j5); + Log.w("VbriSeeker", R2.toString()); } hVar3 = new h(jArr2, jArr3, E2, j5); } } fVar = this; - iVar.l(fVar.e.f1013c); + iVar.l(fVar.e.f1014c); iVar5 = iVar; hVar2 = hVar3; } hVar3 = null; fVar = this; - iVar.l(fVar.e.f1013c); + iVar.l(fVar.e.f1014c); iVar5 = iVar; hVar2 = hVar3; } else { @@ -344,13 +344,13 @@ public final class f implements h { i14++; } } - if (!fVar.f689s) { + if (!fVar.f690s) { iVar2 = new g.a(); } else { i iVar6 = hVar; if ((fVar.b & 2) != 0) { if (eVar != null) { - d = eVar.f687c; + d = eVar.f688c; } else if (hVar != null) { j2 = hVar.i(); j = hVar.a(); @@ -382,17 +382,17 @@ public final class f implements h { z.a aVar4 = fVar.e; bVar.k = aVar4.b; bVar.l = 4096; - bVar.f2280x = aVar4.e; - bVar.f2281y = aVar4.d; + bVar.f2283x = aVar4.e; + bVar.f2284y = aVar4.d; p pVar3 = fVar.f; bVar.A = pVar3.b; - bVar.B = pVar3.f763c; + bVar.B = pVar3.f764c; bVar.i = (fVar.b & 4) == 0 ? null : fVar.m; wVar2.e(bVar.a()); fVar.p = iVar.getPosition(); } eVar = null; - if (!fVar.f689s) { + if (!fVar.f690s) { } fVar.r = iVar2; fVar.i.a(iVar2); @@ -401,16 +401,16 @@ public final class f implements h { z.a aVar4 = fVar.e; bVar.k = aVar4.b; bVar.l = 4096; - bVar.f2280x = aVar4.e; - bVar.f2281y = aVar4.d; + bVar.f2283x = aVar4.e; + bVar.f2284y = aVar4.d; p pVar3 = fVar.f; bVar.A = pVar3.b; - bVar.B = pVar3.f763c; + bVar.B = pVar3.f764c; bVar.i = (fVar.b & 4) == 0 ? null : fVar.m; wVar2.e(bVar.a()); fVar.p = iVar.getPosition(); } - if (wVar.f920c >= 40) { + if (wVar.f921c >= 40) { wVar.D(36); if (wVar.f() == 1447187017) { i2 = 1447187017; @@ -431,7 +431,7 @@ public final class f implements h { if (iVar3 != null) { } iVar5 = iVar; - iVar5.l(fVar.e.f1013c); + iVar5.l(fVar.e.f1014c); hVar = iVar3; if (iVar3 != null) { } @@ -440,7 +440,7 @@ public final class f implements h { if (metadata != null) { } eVar = null; - if (!fVar.f689s) { + if (!fVar.f690s) { } fVar.r = iVar2; fVar.i.a(iVar2); @@ -449,11 +449,11 @@ public final class f implements h { z.a aVar4 = fVar.e; bVar.k = aVar4.b; bVar.l = 4096; - bVar.f2280x = aVar4.e; - bVar.f2281y = aVar4.d; + bVar.f2283x = aVar4.e; + bVar.f2284y = aVar4.d; p pVar3 = fVar.f; bVar.A = pVar3.b; - bVar.B = pVar3.f763c; + bVar.B = pVar3.f764c; bVar.i = (fVar.b & 4) == 0 ? null : fVar.m; wVar2.e(bVar.a()); fVar.p = iVar.getPosition(); @@ -477,7 +477,7 @@ public final class f implements h { if (iVar3 != null) { } iVar5 = iVar; - iVar5.l(fVar.e.f1013c); + iVar5.l(fVar.e.f1014c); hVar = iVar3; if (iVar3 != null) { } @@ -486,7 +486,7 @@ public final class f implements h { if (metadata != null) { } eVar = null; - if (!fVar.f689s) { + if (!fVar.f690s) { } fVar.r = iVar2; fVar.i.a(iVar2); @@ -495,11 +495,11 @@ public final class f implements h { z.a aVar4 = fVar.e; bVar.k = aVar4.b; bVar.l = 4096; - bVar.f2280x = aVar4.e; - bVar.f2281y = aVar4.d; + bVar.f2283x = aVar4.e; + bVar.f2284y = aVar4.d; p pVar3 = fVar.f; bVar.A = pVar3.b; - bVar.B = pVar3.f763c; + bVar.B = pVar3.f764c; bVar.i = (fVar.b & 4) == 0 ? null : fVar.m; wVar2.e(bVar.a()); fVar.p = iVar.getPosition(); @@ -535,20 +535,20 @@ public final class f implements h { fVar.e.a(f3); if (fVar.n == -9223372036854775807L) { fVar.n = fVar.r.d(iVar.getPosition()); - if (fVar.f688c != -9223372036854775807L) { - fVar.n = (fVar.f688c - fVar.r.d(0)) + fVar.n; + if (fVar.f689c != -9223372036854775807L) { + fVar.n = (fVar.f689c - fVar.r.d(0)) + fVar.n; } } z.a aVar5 = fVar.e; - fVar.q = aVar5.f1013c; + fVar.q = aVar5.f1014c; g gVar2 = fVar.r; if (gVar2 instanceof d) { d dVar = (d) gVar2; long a3 = fVar.a(fVar.o + ((long) aVar5.g)); - long position5 = iVar.getPosition() + ((long) fVar.e.f1013c); + long position5 = iVar.getPosition() + ((long) fVar.e.f1014c); if (!dVar.b(a3)) { dVar.b.a(a3); - dVar.f686c.a(position5); + dVar.f687c.a(position5); } if (fVar.t && dVar.b(fVar.u)) { fVar.t = false; @@ -567,7 +567,7 @@ public final class f implements h { int i18 = fVar.q - b3; fVar.q = i18; if (i18 <= 0) { - fVar.k.d(fVar.a(fVar.o), 1, fVar.e.f1013c, 0, null); + fVar.k.d(fVar.a(fVar.o), 1, fVar.e.f1014c, 0, null); fVar.o += (long) fVar.e.g; fVar.q = 0; } diff --git a/app/src/main/java/c/i/a/c/a2/g0/h.java b/app/src/main/java/c/i/a/c/a2/g0/h.java index 26a7d01a3f..e9c64e4442 100644 --- a/app/src/main/java/c/i/a/c/a2/g0/h.java +++ b/app/src/main/java/c/i/a/c/a2/g0/h.java @@ -9,13 +9,13 @@ public final class h implements g { public final long[] b; /* renamed from: c reason: collision with root package name */ - public final long f690c; + public final long f691c; public final long d; public h(long[] jArr, long[] jArr2, long j, long j2) { this.a = jArr; this.b = jArr2; - this.f690c = j; + this.f691c = j; this.d = j2; } @@ -50,6 +50,6 @@ public final class h implements g { @Override // c.i.a.c.a2.t public long i() { - return this.f690c; + return this.f691c; } } diff --git a/app/src/main/java/c/i/a/c/a2/g0/i.java b/app/src/main/java/c/i/a/c/a2/g0/i.java index 632756cb97..39f9558a4a 100644 --- a/app/src/main/java/c/i/a/c/a2/g0/i.java +++ b/app/src/main/java/c/i/a/c/a2/g0/i.java @@ -1,10 +1,10 @@ package c.i.a.c.a2.g0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.t; import c.i.a.c.a2.u; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.material.shadow.ShadowDrawableWrapper; /* compiled from: XingSeeker */ public final class i implements g { @@ -12,7 +12,7 @@ public final class i implements g { public final int b; /* renamed from: c reason: collision with root package name */ - public final long f691c; + public final long f692c; public final long d; public final long e; @Nullable @@ -21,7 +21,7 @@ public final class i implements g { public i(long j, int i, long j2, long j3, @Nullable long[] jArr) { this.a = j; this.b = i; - this.f691c = j2; + this.f692c = j2; this.f = jArr; this.d = j3; this.e = j3 != -1 ? j + j3 : -1; @@ -44,10 +44,10 @@ public final class i implements g { return 0; } long[] jArr = this.f; - AnimatableValueParser.H(jArr); + d.H(jArr); double d = (((double) j2) * 256.0d) / ((double) this.d); int e = f0.e(jArr, (long) d, true, true); - long j3 = this.f691c; + long j3 = this.f692c; long j4 = (((long) e) * j3) / 100; long j5 = jArr[e]; int i = e + 1; @@ -61,8 +61,8 @@ public final class i implements g { if (!c()) { return new t.a(new u(0, this.a + ((long) this.b))); } - long i = f0.i(j, 0, this.f691c); - double d = (((double) i) * 100.0d) / ((double) this.f691c); + long i = f0.i(j, 0, this.f692c); + double d = (((double) i) * 100.0d) / ((double) this.f692c); double d2 = ShadowDrawableWrapper.COS_45; if (d > ShadowDrawableWrapper.COS_45) { if (d >= 100.0d) { @@ -70,7 +70,7 @@ public final class i implements g { } else { int i2 = (int) d; long[] jArr = this.f; - AnimatableValueParser.H(jArr); + d.H(jArr); long[] jArr2 = jArr; double d3 = (double) jArr2[i2]; d2 = d3 + (((i2 == 99 ? 256.0d : (double) jArr2[i2 + 1]) - d3) * (d - ((double) i2))); @@ -81,6 +81,6 @@ public final class i implements g { @Override // c.i.a.c.a2.t public long i() { - return this.f691c; + return this.f692c; } } diff --git a/app/src/main/java/c/i/a/c/a2/h0/d.java b/app/src/main/java/c/i/a/c/a2/h0/d.java index d979589112..01a959176b 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/d.java +++ b/app/src/main/java/c/i/a/c/a2/h0/d.java @@ -14,7 +14,7 @@ public abstract class d { public final long b; /* renamed from: c reason: collision with root package name */ - public final List f692c = new ArrayList(); + public final List f693c = new ArrayList(); public final List d = new ArrayList(); public a(int i, long j) { @@ -36,9 +36,9 @@ public abstract class d { @Nullable public b c(int i) { - int size = this.f692c.size(); + int size = this.f693c.size(); for (int i2 = 0; i2 < size; i2++) { - b bVar = this.f692c.get(i2); + b bVar = this.f693c.get(i2); if (bVar.a == i) { return bVar; } @@ -48,7 +48,7 @@ public abstract class d { @Override // c.i.a.c.a2.h0.d public String toString() { - return d.a(this.a) + " leaves: " + Arrays.toString(this.f692c.toArray()) + " containers: " + Arrays.toString(this.d.toArray()); + return d.a(this.a) + " leaves: " + Arrays.toString(this.f693c.toArray()) + " containers: " + Arrays.toString(this.d.toArray()); } } @@ -67,12 +67,12 @@ public abstract class d { } public static String a(int i) { - StringBuilder P = c.d.b.a.a.P(""); - P.append((char) ((i >> 24) & 255)); - P.append((char) ((i >> 16) & 255)); - P.append((char) ((i >> 8) & 255)); - P.append((char) (i & 255)); - return P.toString(); + StringBuilder O = c.d.b.a.a.O(""); + O.append((char) ((i >> 24) & 255)); + O.append((char) ((i >> 16) & 255)); + O.append((char) ((i >> 8) & 255)); + O.append((char) (i & 255)); + return O.toString(); } public String toString() { diff --git a/app/src/main/java/c/i/a/c/a2/h0/e.java b/app/src/main/java/c/i/a/c/a2/h0/e.java index 58a1434d06..2c3c337c30 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/e.java +++ b/app/src/main/java/c/i/a/c/a2/h0/e.java @@ -16,7 +16,6 @@ import c.i.a.c.j2.m; import c.i.a.c.v1.k; import c.i.a.c.v1.l; import c.i.b.b.u; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import com.google.android.exoplayer2.drm.DrmInitData; @@ -44,11 +43,11 @@ public final class e { public final int b; /* renamed from: c reason: collision with root package name */ - public final w f693c; + public final w f694c; public b(d.b bVar, Format format) { w wVar = bVar.b; - this.f693c = wVar; + this.f694c = wVar; wVar.D(12); int v = wVar.v(); if ("audio/raw".equals(format.t)) { @@ -75,7 +74,7 @@ public final class e { @Override // c.i.a.c.a2.h0.e.a public int c() { int i = this.a; - return i == -1 ? this.f693c.v() : i; + return i == -1 ? this.f694c.v() : i; } } @@ -85,7 +84,7 @@ public final class e { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f694c; + public final int f695c; public int d; public int e; @@ -93,7 +92,7 @@ public final class e { w wVar = bVar.b; this.a = wVar; wVar.D(12); - this.f694c = wVar.v() & 255; + this.f695c = wVar.v() & 255; this.b = wVar.v(); } @@ -109,7 +108,7 @@ public final class e { @Override // c.i.a.c.a2.h0.e.a public int c() { - int i = this.f694c; + int i = this.f695c; if (i == 8) { return this.a.s(); } @@ -179,7 +178,7 @@ public final class e { while (i5 - i < i2) { wVar.D(i5); int f = wVar.f(); - AnimatableValueParser.E(f > 0, "childAtomSize should be positive"); + c.c.a.a0.d.E(f > 0, "childAtomSize should be positive"); if (wVar.f() == 1936289382) { int i6 = i5 + 8; int i7 = -1; @@ -202,8 +201,8 @@ public final class e { i6 += f2; } if ("cenc".equals(str) || "cbc1".equals(str) || "cens".equals(str) || "cbcs".equals(str)) { - AnimatableValueParser.I(num2, "frma atom is mandatory"); - AnimatableValueParser.E(i7 != -1, "schi atom is mandatory"); + c.c.a.a0.d.I(num2, "frma atom is mandatory"); + c.c.a.a0.d.E(i7 != -1, "schi atom is mandatory"); int i9 = i7 + 8; while (true) { if (i9 - i7 >= i8) { @@ -245,7 +244,7 @@ public final class e { i9 += f4; } } - AnimatableValueParser.I(nVar, "tenc atom is mandatory"); + c.c.a.a0.d.I(nVar, "tenc atom is mandatory"); pair = Pair.create(num, nVar); } else { pair = null; @@ -331,7 +330,7 @@ public final class e { int v = wVar.v(); wVar2.D(12); int v2 = wVar2.v(); - AnimatableValueParser.E(wVar2.f() == 1, "first_chunk must be 1"); + c.c.a.a0.d.E(wVar2.f() == 1, "first_chunk must be 1"); wVar3.D(12); int v3 = wVar3.v() - 1; int v4 = wVar3.v(); @@ -556,20 +555,20 @@ public final class e { } else { i6 = i32; } - StringBuilder P = c.d.b.a.a.P("Inconsistent stbl box for track "); + StringBuilder O = c.d.b.a.a.O("Inconsistent stbl box for track "); mVar2 = mVar; - P.append(mVar2.a); - P.append(": remainingSynchronizationSamples "); - P.append(i30); - P.append(", remainingSamplesAtTimestampDelta "); - P.append(i33); - P.append(", remainingSamplesInChunk "); - P.append(i27); - P.append(", remainingTimestampDeltaChanges "); - P.append(i34); - P.append(", remainingSamplesAtTimestampOffset "); - P.append(i6); - c.d.b.a.a.n0(P, z3 ? ", ctts invalid" : "", "AtomParsers"); + O.append(mVar2.a); + O.append(": remainingSynchronizationSamples "); + O.append(i30); + O.append(", remainingSamplesAtTimestampDelta "); + O.append(i33); + O.append(", remainingSamplesInChunk "); + O.append(i27); + O.append(", remainingTimestampDeltaChanges "); + O.append(i34); + O.append(", remainingSamplesAtTimestampOffset "); + O.append(i6); + c.d.b.a.a.m0(O, z3 ? ", ctts invalid" : "", "AtomParsers"); i4 = b2; iArr = iArr9; i5 = i37; @@ -579,46 +578,46 @@ public final class e { if (i30 != 0) { } i6 = i32; - StringBuilder P = c.d.b.a.a.P("Inconsistent stbl box for track "); + StringBuilder O = c.d.b.a.a.O("Inconsistent stbl box for track "); mVar2 = mVar; - P.append(mVar2.a); - P.append(": remainingSynchronizationSamples "); - P.append(i30); - P.append(", remainingSamplesAtTimestampDelta "); - P.append(i33); - P.append(", remainingSamplesInChunk "); - P.append(i27); - P.append(", remainingTimestampDeltaChanges "); - P.append(i34); - P.append(", remainingSamplesAtTimestampOffset "); - P.append(i6); - c.d.b.a.a.n0(P, z3 ? ", ctts invalid" : "", "AtomParsers"); + O.append(mVar2.a); + O.append(": remainingSynchronizationSamples "); + O.append(i30); + O.append(", remainingSamplesAtTimestampDelta "); + O.append(i33); + O.append(", remainingSamplesInChunk "); + O.append(i27); + O.append(", remainingTimestampDeltaChanges "); + O.append(i34); + O.append(", remainingSamplesAtTimestampOffset "); + O.append(i6); + c.d.b.a.a.m0(O, z3 ? ", ctts invalid" : "", "AtomParsers"); i4 = b2; iArr = iArr9; i5 = i37; iArr2 = iArr10; } - long E = f0.E(j, 1000000, mVar2.f709c); + long E = f0.E(j, 1000000, mVar2.f710c); jArr3 = mVar2.h; if (jArr3 != null) { - f0.F(jArr2, 1000000, mVar2.f709c); + f0.F(jArr2, 1000000, mVar2.f710c); return new p(mVar, jArr, iArr, i5, jArr2, iArr2, E); } if (jArr3.length == 1 && mVar2.b == 1 && jArr2.length >= 2) { long[] jArr7 = mVar2.i; Objects.requireNonNull(jArr7); long j8 = jArr7[0]; - long E2 = f0.E(mVar2.h[0], mVar2.f709c, mVar2.d) + j8; + long E2 = f0.E(mVar2.h[0], mVar2.f710c, mVar2.d) + j8; int length = jArr2.length - 1; i10 = i4; if (jArr2[0] <= j8 && j8 < jArr2[f0.h(4, 0, length)] && jArr2[f0.h(jArr2.length - 4, 0, length)] < E2 && E2 <= j) { long j9 = j - E2; - long E3 = f0.E(j8 - jArr2[0], (long) mVar2.f.H, mVar2.f709c); - long E4 = f0.E(j9, (long) mVar2.f.H, mVar2.f709c); + long E3 = f0.E(j8 - jArr2[0], (long) mVar2.f.H, mVar2.f710c); + long E4 = f0.E(j9, (long) mVar2.f.H, mVar2.f710c); if (!(E3 == 0 && E4 == 0) && E3 <= 2147483647L && E4 <= 2147483647L) { pVar.b = (int) E3; - pVar.f763c = (int) E4; - f0.F(jArr2, 1000000, mVar2.f709c); + pVar.f764c = (int) E4; + f0.F(jArr2, 1000000, mVar2.f710c); return new p(mVar, jArr, iArr, i5, jArr2, iArr2, f0.E(mVar2.h[0], 1000000, mVar2.d)); } } @@ -631,9 +630,9 @@ public final class e { Objects.requireNonNull(jArr9); long j10 = jArr9[0]; for (int i41 = 0; i41 < jArr2.length; i41++) { - jArr2[i41] = f0.E(jArr2[i41] - j10, 1000000, mVar2.f709c); + jArr2[i41] = f0.E(jArr2[i41] - j10, 1000000, mVar2.f710c); } - return new p(mVar, jArr, iArr, i5, jArr2, iArr2, f0.E(j - j10, 1000000, mVar2.f709c)); + return new p(mVar, jArr, iArr, i5, jArr2, iArr2, f0.E(j - j10, 1000000, mVar2.f710c)); } boolean z6 = mVar2.b == 1; int[] iArr11 = new int[jArr8.length]; @@ -652,7 +651,7 @@ public final class e { long j11 = jArr10[i42]; if (j11 != -1) { iArr5 = iArr; - long E5 = f0.E(jArr11[i42], mVar2.f709c, mVar2.d); + long E5 = f0.E(jArr11[i42], mVar2.f710c, mVar2.d); iArr11[i42] = f0.e(jArr2, j11, true, true); iArr12[i42] = f0.b(jArr2, j11 + E5, z6, false); while (iArr11[i42] < iArr12[i42] && (iArr2[iArr11[i42]] & 1) == 0) { @@ -704,7 +703,7 @@ public final class e { } int i51 = i11; while (i48 < i49) { - jArr13[i47] = f0.E(j12, 1000000, mVar2.d) + f0.E(Math.max(0L, jArr2[i48] - j13), 1000000, mVar2.f709c); + jArr13[i47] = f0.E(j12, 1000000, mVar2.d) + f0.E(Math.max(0L, jArr2[i48] - j13), 1000000, mVar2.f710c); if (z9 && iArr14[i47] > i51) { i51 = iArr4[i48]; } @@ -736,7 +735,7 @@ public final class e { str = mVar.f.t; if (!(a2 == -1 && ("audio/raw".equals(str) || "audio/g711-mlaw".equals(str) || "audio/g711-alaw".equals(str)) && v3 == 0 && i == 0 && i3 == 0)) { } - long E = f0.E(j, 1000000, mVar2.f709c); + long E = f0.E(j, 1000000, mVar2.f710c); jArr3 = mVar2.h; if (jArr3 != null) { } @@ -893,11 +892,11 @@ public final class e { long t2 = wVar4.t(); wVar4.E(f8 == 0 ? 4 : 8); int x2 = wVar4.x(); - StringBuilder P = c.d.b.a.a.P(""); - P.append((char) (((x2 >> 10) & 31) + 96)); - P.append((char) (((x2 >> 5) & 31) + 96)); - P.append((char) ((x2 & 31) + 96)); - Pair create = Pair.create(Long.valueOf(t2), P.toString()); + StringBuilder O = c.d.b.a.a.O(""); + O.append((char) (((x2 >> 10) & 31) + 96)); + O.append((char) (((x2 >> 5) & 31) + 96)); + O.append((char) ((x2 & 31) + 96)); + Pair create = Pair.create(Long.valueOf(t2), O.toString()); d.b c6 = b4.c(1937011556); Objects.requireNonNull(c6); w wVar5 = c6.b; @@ -922,7 +921,7 @@ public final class e { z5 = false; } String str12 = "childAtomSize should be positive"; - AnimatableValueParser.E(z5, str12); + c.c.a.a0.d.E(z5, str12); int f11 = wVar5.f(); if (f11 == 1635148593 || f11 == 1635148595 || f11 == 1701733238 || f11 == 1831958048 || f11 == 1836070006 || f11 == 1752589105 || f11 == 1751479857 || f11 == 1932670515 || f11 == 1987063864 || f11 == 1987063865 || f11 == 1635135537 || f11 == 1685479798 || f11 == 1685479729 || f11 == 1685481573 || f11 == 1685481521) { aVar2 = aVar6; @@ -975,10 +974,10 @@ public final class e { if (f13 == 0 && wVar5.b - i6 == i5) { break; } - AnimatableValueParser.E(f13 > 0, str12); + c.c.a.a0.d.E(f13 > 0, str12); int f14 = wVar5.f(); if (f14 == 1635148611) { - AnimatableValueParser.D(str13 == null); + c.c.a.a0.d.D(str13 == null); wVar5.D(i36 + 8); j b5 = j.b(wVar5); list3 = b5.a; @@ -989,12 +988,12 @@ public final class e { str3 = b5.f; str2 = "video/avc"; } else if (f14 == 1752589123) { - AnimatableValueParser.D(str13 == null); + c.c.a.a0.d.D(str13 == null); wVar5.D(i36 + 8); m a2 = m.a(wVar5); list3 = a2.a; i9 = a2.b; - str3 = a2.f928c; + str3 = a2.f929c; str2 = "video/hevc"; } else if (f14 == 1685480259 || f14 == 1685485123) { i8 = f11; @@ -1010,16 +1009,16 @@ public final class e { f11 = i8; } else { if (f14 == 1987076931) { - AnimatableValueParser.D(str13 == null); + c.c.a.a0.d.D(str13 == null); str4 = f11 == 1987063864 ? "video/x-vnd.on2.vp8" : "video/x-vnd.on2.vp9"; } else if (f14 == 1635135811) { - AnimatableValueParser.D(str13 == null); + c.c.a.a0.d.D(str13 == null); str4 = "video/av01"; } else if (f14 == 1681012275) { - AnimatableValueParser.D(str13 == null); + c.c.a.a0.d.D(str13 == null); str4 = "video/3gpp"; } else if (f14 == 1702061171) { - AnimatableValueParser.D(str13 == null); + c.c.a.a0.d.D(str13 == null); Pair a4 = a(wVar5, i36); str13 = (String) a4.first; byte[] bArr2 = (byte[]) a4.second; @@ -1108,19 +1107,19 @@ public final class e { if (str13 == null) { i29 = i29; } else { - Format.b s0 = c.d.b.a.a.s0(f3); - s0.k = str13; - s0.h = str14; - s0.p = x3; - s0.q = x4; - s0.t = f12; + Format.b r0 = c.d.b.a.a.r0(f3); + r0.k = str13; + r0.h = str14; + r0.p = x3; + r0.q = x4; + r0.t = f12; i29 = i29; - s0.f2279s = i29; - s0.u = bArr; - s0.v = i7; - s0.m = list; - s0.n = drmInitData2; - format2 = s0.a(); + r0.f2282s = i29; + r0.u = bArr; + r0.v = i7; + r0.m = list; + r0.n = drmInitData2; + format2 = r0.a(); } } else { i4 = i25; @@ -1213,7 +1212,7 @@ public final class e { i20 = f10; z6 = false; } - AnimatableValueParser.E(z6, str12); + c.c.a.a0.d.E(z6, str12); int f17 = wVar5.f(); if (f17 == 1702061171) { str8 = str5; @@ -1235,10 +1234,10 @@ public final class e { Format.b bVar = new Format.b(); bVar.a = num; bVar.k = str15; - bVar.f2280x = i43; - bVar.f2281y = i42; + bVar.f2283x = i43; + bVar.f2284y = i42; bVar.n = drmInitData3; - bVar.f2278c = str11; + bVar.f2281c = str11; format = bVar.a(); str7 = str15; } else { @@ -1267,10 +1266,10 @@ public final class e { Format.b bVar2 = new Format.b(); bVar2.a = num2; bVar2.k = str9; - bVar2.f2280x = i45; - bVar2.f2281y = i44; + bVar2.f2283x = i45; + bVar2.f2284y = i44; bVar2.n = drmInitData3; - bVar2.f2278c = str11; + bVar2.f2281c = str11; format = bVar2.a(); } else { str7 = str15; @@ -1282,19 +1281,19 @@ public final class e { Format.b bVar3 = new Format.b(); bVar3.a = num3; bVar3.k = "audio/ac4"; - bVar3.f2280x = 2; - bVar3.f2281y = i46; + bVar3.f2283x = 2; + bVar3.f2284y = i46; bVar3.n = drmInitData3; - bVar3.f2278c = str11; + bVar3.f2281c = str11; format = bVar3.a(); } else if (f17 == 1684305011) { - Format.b s02 = c.d.b.a.a.s0(f3); - s02.k = str6; - s02.f2280x = i19; - s02.f2281y = i18; - s02.n = drmInitData3; - s02.f2278c = str11; - format = s02.a(); + Format.b r02 = c.d.b.a.a.r0(f3); + r02.k = str6; + r02.f2283x = i19; + r02.f2284y = i18; + r02.n = drmInitData3; + r02.f2281c = str11; + format = r02.a(); } else { if (f17 == 1682927731) { int i47 = f16 - 8; @@ -1302,7 +1301,7 @@ public final class e { byte[] copyOf = Arrays.copyOf(bArr4, bArr4.length + i47); wVar5.D(i17 + 8); wVar5.e(copyOf, bArr4.length, i47); - list4 = AnimatableValueParser.h(copyOf); + list4 = c.c.a.a0.d.h(copyOf); } else if (f17 == 1684425825) { int i48 = f16 - 12; byte[] bArr5 = new byte[(i48 + 4)]; @@ -1370,7 +1369,7 @@ public final class e { } wVar5.D(i23); int f18 = wVar5.f(); - AnimatableValueParser.E(f18 > 0, str12); + c.c.a.a0.d.E(f18 > 0, str12); if (wVar5.f() == 1702061171) { break; } @@ -1388,7 +1387,7 @@ public final class e { k.b c9 = c.i.a.c.v1.k.c(new v(bArr7), false); i18 = c9.a; i19 = c9.b; - str8 = c9.f998c; + str8 = c9.f999c; } uVar = u.t(bArr7); } @@ -1410,16 +1409,16 @@ public final class e { i10 = f10; i11 = i33; if (format2 == null && str6 != null) { - Format.b s03 = c.d.b.a.a.s0(f3); - s03.k = str6; - s03.h = str5; - s03.f2280x = i19; - s03.f2281y = i18; - s03.f2282z = i16; - s03.m = uVar; - s03.n = drmInitData3; - s03.f2278c = str11; - format2 = s03.a(); + Format.b r03 = c.d.b.a.a.r0(f3); + r03.k = str6; + r03.h = str5; + r03.f2283x = i19; + r03.f2284y = i18; + r03.f2285z = i16; + r03.m = uVar; + r03.n = drmInitData3; + r03.f2281c = str11; + format2 = r03.a(); } str = str11; i29 = i12; @@ -1440,16 +1439,16 @@ public final class e { } i10 = f10; i11 = i33; - Format.b s03 = c.d.b.a.a.s0(f3); - s03.k = str6; - s03.h = str5; - s03.f2280x = i19; - s03.f2281y = i18; - s03.f2282z = i16; - s03.m = uVar; - s03.n = drmInitData3; - s03.f2278c = str11; - format2 = s03.a(); + Format.b r03 = c.d.b.a.a.r0(f3); + r03.k = str6; + r03.h = str5; + r03.f2283x = i19; + r03.f2284y = i18; + r03.f2285z = i16; + r03.m = uVar; + r03.n = drmInitData3; + r03.f2281c = str11; + format2 = r03.a(); str = str11; i29 = i12; i6 = i11; @@ -1473,16 +1472,16 @@ public final class e { } i10 = f10; i11 = i33; - Format.b s03 = c.d.b.a.a.s0(f3); - s03.k = str6; - s03.h = str5; - s03.f2280x = i19; - s03.f2281y = i18; - s03.f2282z = i16; - s03.m = uVar; - s03.n = drmInitData3; - s03.f2278c = str11; - format2 = s03.a(); + Format.b r03 = c.d.b.a.a.r0(f3); + r03.k = str6; + r03.h = str5; + r03.f2283x = i19; + r03.f2284y = i18; + r03.f2285z = i16; + r03.m = uVar; + r03.n = drmInitData3; + r03.f2281c = str11; + format2 = r03.a(); str = str11; i29 = i12; i6 = i11; @@ -1500,12 +1499,12 @@ public final class e { str18 = "application/x-quicktime-tx3g"; j3 = RecyclerView.FOREVER_NS; aVar4 = aVar6; - Format.b s04 = c.d.b.a.a.s0(f3); - s04.k = str18; - s04.f2278c = str11; - s04.o = j3; - s04.m = uVar2; - format2 = s04.a(); + Format.b r04 = c.d.b.a.a.r0(f3); + r04.k = str18; + r04.f2281c = str11; + r04.o = j3; + r04.m = uVar2; + format2 = r04.a(); } else if (f11 == 2004251764) { str18 = "application/x-mp4-vtt"; } else { @@ -1521,23 +1520,23 @@ public final class e { throw new IllegalStateException(); } aVar4 = aVar6; - Format.b s04 = c.d.b.a.a.s0(f3); - s04.k = str18; - s04.f2278c = str11; - s04.o = j3; - s04.m = uVar2; - format2 = s04.a(); + Format.b r04 = c.d.b.a.a.r0(f3); + r04.k = str18; + r04.f2281c = str11; + r04.o = j3; + r04.m = uVar2; + format2 = r04.a(); } } uVar2 = null; j3 = RecyclerView.FOREVER_NS; aVar4 = aVar6; - Format.b s04 = c.d.b.a.a.s0(f3); - s04.k = str18; - s04.f2278c = str11; - s04.o = j3; - s04.m = uVar2; - format2 = s04.a(); + Format.b r04 = c.d.b.a.a.r0(f3); + r04.k = str18; + r04.f2281c = str11; + r04.o = j3; + r04.m = uVar2; + format2 = r04.a(); } else { if (f11 == 1835365492) { wVar5.D(i33 + 8 + 8); @@ -1545,15 +1544,15 @@ public final class e { wVar5.n(); String n = wVar5.n(); if (n != null) { - Format.b s05 = c.d.b.a.a.s0(f3); - s05.k = n; - format2 = s05.a(); + Format.b r05 = c.d.b.a.a.r0(f3); + r05.k = n; + format2 = r05.a(); } } } else if (f11 == 1667329389) { - Format.b s06 = c.d.b.a.a.s0(f3); - s06.k = "application/x-camera-motion"; - format2 = s06.a(); + Format.b r06 = c.d.b.a.a.r0(f3); + r06.k = "application/x-camera-motion"; + format2 = r06.a(); } aVar3 = aVar6; i12 = i29; diff --git a/app/src/main/java/c/i/a/c/a2/h0/f.java b/app/src/main/java/c/i/a/c/a2/h0/f.java index a996d80a30..c137b898b6 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/f.java +++ b/app/src/main/java/c/i/a/c/a2/h0/f.java @@ -5,13 +5,13 @@ public final class f { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f695c; + public final int f696c; public final int d; public f(int i, int i2, int i3, int i4) { this.a = i; this.b = i2; - this.f695c = i3; + this.f696c = i3; this.d = i4; } } diff --git a/app/src/main/java/c/i/a/c/a2/h0/g.java b/app/src/main/java/c/i/a/c/a2/h0/g.java index 6b17481684..dc146a1c10 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/g.java +++ b/app/src/main/java/c/i/a/c/a2/h0/g.java @@ -19,7 +19,6 @@ import c.i.a.c.a2.w; import c.i.a.c.i2.f0; import c.i.a.c.i2.u; import c.i.a.c.v1.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import com.google.android.exoplayer2.drm.DrmInitData; @@ -45,7 +44,7 @@ public class g implements h { public boolean G; /* renamed from: c reason: collision with root package name */ - public final int f696c; + public final int f697c; public final List d; public final SparseArray e; public final c.i.a.c.i2.w f = new c.i.a.c.i2.w(u.a); @@ -64,21 +63,21 @@ public class g implements h { @Nullable /* renamed from: s reason: collision with root package name */ - public c.i.a.c.i2.w f697s; + public c.i.a.c.i2.w f698s; public long t; public int u; public long v; public long w; /* renamed from: x reason: collision with root package name */ - public long f698x; + public long f699x; @Nullable /* renamed from: y reason: collision with root package name */ - public b f699y; + public b f700y; /* renamed from: z reason: collision with root package name */ - public int f700z; + public int f701z; /* compiled from: FragmentedMp4Extractor */ public static final class a { @@ -97,7 +96,7 @@ public class g implements h { public final o b = new o(); /* renamed from: c reason: collision with root package name */ - public final c.i.a.c.i2.w f701c = new c.i.a.c.i2.w(); + public final c.i.a.c.i2.w f702c = new c.i.a.c.i2.w(); public p d; public f e; public int f; @@ -119,7 +118,7 @@ public class g implements h { } public long a() { - return !this.l ? this.d.f712c[this.f] : this.b.f[this.h]; + return !this.l ? this.d.f713c[this.f] : this.b.f[this.h]; } @Nullable @@ -173,7 +172,7 @@ public class g implements h { c.i.a.c.i2.w wVar2 = this.k; int length = bArr.length; wVar2.a = bArr; - wVar2.f920c = length; + wVar2.f921c = length; wVar2.b = 0; i3 = bArr.length; wVar = wVar2; @@ -190,8 +189,8 @@ public class g implements h { return i3 + 1; } if (!z2) { - this.f701c.z(8); - c.i.a.c.i2.w wVar4 = this.f701c; + this.f702c.z(8); + c.i.a.c.i2.w wVar4 = this.f702c; byte[] bArr2 = wVar4.a; bArr2[0] = 0; bArr2[1] = 1; @@ -209,13 +208,13 @@ public class g implements h { wVar5.E(-2); int i5 = (x2 * 6) + 2; if (i2 != 0) { - this.f701c.z(i5); - byte[] bArr3 = this.f701c.a; + this.f702c.z(i5); + byte[] bArr3 = this.f702c.a; wVar5.e(bArr3, 0, i5); int i6 = (((bArr3[2] & 255) << 8) | (bArr3[3] & 255)) + i2; bArr3[2] = (byte) ((i6 >> 8) & 255); bArr3[3] = (byte) (i6 & 255); - wVar5 = this.f701c; + wVar5 = this.f702c; } this.a.f(wVar5, i5, 1); return i3 + 1 + i5; @@ -245,7 +244,7 @@ public class g implements h { public g(int i) { List emptyList = Collections.emptyList(); - this.f696c = i; + this.f697c = i; this.d = Collections.unmodifiableList(emptyList); byte[] bArr = new byte[16]; this.i = bArr; @@ -255,7 +254,7 @@ public class g implements h { this.e = new SparseArray<>(); this.w = -9223372036854775807L; this.v = -9223372036854775807L; - this.f698x = -9223372036854775807L; + this.f699x = -9223372036854775807L; this.D = j.d; this.E = new w[0]; this.F = new w[0]; @@ -279,8 +278,8 @@ public class g implements h { arrayList = new ArrayList(); } byte[] bArr = bVar.b.a; - j Y1 = AnimatableValueParser.Y1(bArr); - UUID uuid = Y1 == null ? null : Y1.a; + j v1 = c.c.a.a0.d.v1(bArr); + UUID uuid = v1 == null ? null : v1.a; if (uuid == null) { Log.w("FragmentedMp4Extractor", "Skipped pssh atom (failed to extract uuid)"); } else { @@ -311,7 +310,7 @@ public class g implements h { bArr = new byte[a2]; } wVar2.a = bArr; - wVar2.f920c = a2; + wVar2.f921c = a2; wVar2.b = 0; oVar.l = true; oVar.p = true; @@ -319,9 +318,9 @@ public class g implements h { oVar.o.D(0); oVar.p = false; } else { - StringBuilder Q = c.d.b.a.a.Q("Senc sample count ", v, " is different from fragment sample count"); - Q.append(oVar.e); - throw new ParserException(Q.toString()); + StringBuilder P = c.d.b.a.a.P("Senc sample count ", v, " is different from fragment sample count"); + P.append(oVar.e); + throw new ParserException(P.toString()); } } else { throw new ParserException("Overriding TrackEncryptionBox parameters is unsupported."); @@ -410,13 +409,13 @@ public class g implements h { for (int i5 = 0; i5 < size; i5++) { o oVar = this.e.valueAt(i5).b; Objects.requireNonNull(oVar); - oVar.f711c = position; + oVar.f712c = position; oVar.b = position; } } int i6 = this.p; if (i6 == 1835295092) { - this.f699y = null; + this.f700y = null; this.t = position + this.q; this.o = 2; } else if (i6 == 1836019574 || i6 == 1953653099 || i6 == 1835297121 || i6 == 1835626086 || i6 == 1937007212 || i6 == 1836019558 || i6 == 1953653094 || i6 == 1836475768 || i6 == 1701082227) { @@ -433,7 +432,7 @@ public class g implements h { if (j8 <= 2147483647L) { c.i.a.c.i2.w wVar = new c.i.a.c.i2.w((int) j8); System.arraycopy(this.l.a, 0, wVar.a, 0, 8); - this.f697s = wVar; + this.f698s = wVar; this.o = 1; } else { throw new ParserException("Leaf atom with length > 2147483647 (unsupported)."); @@ -442,7 +441,7 @@ public class g implements h { throw new ParserException("Leaf atom defines extended atom size (unsupported)."); } } else if (this.q <= 2147483647L) { - this.f697s = null; + this.f698s = null; this.o = 1; } else { throw new ParserException("Skipping atom with length > 2147483647 (unsupported)."); @@ -456,7 +455,7 @@ public class g implements h { } else if (i2 != 1) { long j9 = RecyclerView.FOREVER_NS; if (i2 != 2) { - b bVar = this.f699y; + b bVar = this.f700y; if (bVar == null) { SparseArray sparseArray = this.e; int size2 = sparseArray.size(); @@ -492,14 +491,14 @@ public class g implements h { a3 = 0; } iVar2.l(a3); - this.f699y = bVar2; + this.f700y = bVar2; bVar = bVar2; } } char c2 = 6; if (this.o == 3) { int i8 = !bVar.l ? bVar.d.d[bVar.f] : bVar.b.h[bVar.f]; - this.f700z = i8; + this.f701z = i8; if (bVar.f < bVar.i) { iVar2.l(i8); n b3 = bVar.b(); @@ -515,25 +514,25 @@ public class g implements h { } } if (!bVar.c()) { - this.f699y = null; + this.f700y = null; } this.o = 3; if (i3 != 0) { } } else { if (bVar.d.a.g == 1) { - this.f700z = i8 - 8; + this.f701z = i8 - 8; iVar2.l(8); } if ("audio/ac4".equals(bVar.d.a.f.t)) { - this.A = bVar.d(this.f700z, 7); - m.a(this.f700z, this.j); + this.A = bVar.d(this.f701z, 7); + m.a(this.f701z, this.j); bVar.a.c(this.j, 7); this.A += 7; } else { - this.A = bVar.d(this.f700z, 0); + this.A = bVar.d(this.f701z, 0); } - this.f700z += this.A; + this.f701z += this.A; this.o = 4; this.B = 0; } @@ -552,7 +551,7 @@ public class g implements h { if (i11 == 0) { while (true) { int i12 = this.A; - int i13 = this.f700z; + int i13 = this.f701z; if (i12 >= i13) { break; } @@ -565,7 +564,7 @@ public class g implements h { bArr[2] = 0; int i14 = i11 + 1; int i15 = 4 - i11; - while (this.A < this.f700z) { + while (this.A < this.f701z) { int i16 = this.B; if (i16 == 0) { iVar2.readFully(bArr, i15, i14); @@ -584,13 +583,13 @@ public class g implements h { z2 = true; this.C = z2; this.A += 5; - this.f700z += i15; + this.f701z += i15; } } z2 = false; this.C = z2; this.A += 5; - this.f700z += i15; + this.f701z += i15; } else { throw new ParserException("Invalid NAL length"); } @@ -601,10 +600,10 @@ public class g implements h { wVar3.c(this.h, this.B); i = this.B; c.i.a.c.i2.w wVar4 = this.h; - int e = u.e(wVar4.a, wVar4.f920c); + int e = u.e(wVar4.a, wVar4.f921c); this.h.D("video/hevc".equals(mVar.f.t) ? 1 : 0); this.h.C(e); - AnimatableValueParser.L(j, this.h, this.F); + c.c.a.a0.d.L(j, this.h, this.F); } else { i = wVar3.b(iVar2, i16, false); } @@ -620,7 +619,7 @@ public class g implements h { i17 |= BasicMeasure.EXACTLY; } n b5 = bVar.b(); - wVar3.d(j, i17, this.f700z, 0, b5 != null ? b5.f710c : null); + wVar3.d(j, i17, this.f701z, 0, b5 != null ? b5.f711c : null); while (!this.n.isEmpty()) { a removeFirst = this.n.removeFirst(); this.u -= removeFirst.b; @@ -633,7 +632,7 @@ public class g implements h { } } if (!bVar.c()) { - this.f699y = null; + this.f700y = null; } this.o = 3; i3 = 1; @@ -645,7 +644,7 @@ public class g implements h { for (int i19 = 0; i19 < size3; i19++) { o oVar4 = this.e.valueAt(i19).b; if (oVar4.p) { - long j12 = oVar4.f711c; + long j12 = oVar4.f712c; if (j12 < j9) { bVar3 = this.e.valueAt(i19); j9 = j12; @@ -660,7 +659,7 @@ public class g implements h { iVar2.l(position4); o oVar5 = bVar3.b; c.i.a.c.i2.w wVar5 = oVar5.o; - iVar2.readFully(wVar5.a, 0, wVar5.f920c); + iVar2.readFully(wVar5.a, 0, wVar5.f921c); oVar5.o.D(0); oVar5.p = false; } else { @@ -670,14 +669,14 @@ public class g implements h { } } else { int i20 = ((int) this.q) - this.r; - c.i.a.c.i2.w wVar6 = this.f697s; + c.i.a.c.i2.w wVar6 = this.f698s; if (wVar6 != null) { iVar2.readFully(wVar6.a, 8, i20); int i21 = this.p; d.b bVar4 = new d.b(i21, wVar6); long position5 = iVar.getPosition(); if (!this.m.isEmpty()) { - this.m.peek().f692c.add(bVar4); + this.m.peek().f693c.add(bVar4); } else { if (i21 == 1936286840) { wVar6.D(8); @@ -723,7 +722,7 @@ public class g implements h { } } Pair create = Pair.create(Long.valueOf(E), new c(iArr, jArr, jArr2, jArr3)); - this.f698x = ((Long) create.first).longValue(); + this.f699x = ((Long) create.first).longValue(); this.D.a((t) create.second); this.G = true; } else if (i21 == 1701671783 && this.E.length != 0) { @@ -737,7 +736,7 @@ public class g implements h { Objects.requireNonNull(str); long t3 = wVar6.t(); long E2 = f0.E(wVar6.t(), 1000000, t3); - long j17 = this.f698x; + long j17 = this.f699x; if (j17 != -9223372036854775807L) { j16 = j17 + E2; } @@ -746,7 +745,7 @@ public class g implements h { j2 = j16; j16 = E2; } else if (f4 != 1) { - c.d.b.a.a.j0("Skipping unsupported emsg version: ", f4, "FragmentedMp4Extractor"); + c.d.b.a.a.i0("Skipping unsupported emsg version: ", f4, "FragmentedMp4Extractor"); } else { long t4 = wVar6.t(); long E3 = f0.E(wVar6.w(), 1000000, t4); @@ -813,7 +812,7 @@ public class g implements h { this.E = wVarArr; int i2 = 100; int i3 = 0; - if ((this.f696c & 4) != 0) { + if ((this.f697c & 4) != 0) { wVarArr[0] = this.D.p(100, 5); i2 = 101; i = 1; @@ -895,16 +894,16 @@ public class g implements h { int i17 = pop.a; int i18 = 12; if (i17 == 1836019574) { - AnimatableValueParser.E(true, "Unexpected moov box."); - DrmInitData h = h(pop.f692c); + c.c.a.a0.d.E(true, "Unexpected moov box."); + DrmInitData h = h(pop.f693c); d.a b2 = pop.b(1836475768); Objects.requireNonNull(b2); SparseArray sparseArray2 = new SparseArray<>(); - int size = b2.f692c.size(); + int size = b2.f693c.size(); long j3 = -9223372036854775807L; int i19 = 0; while (i19 < size) { - d.b bVar3 = b2.f692c.get(i19); + d.b bVar3 = b2.f693c.get(i19); int i20 = bVar3.a; if (i20 == 1953654136) { c.i.a.c.i2.w wVar2 = bVar3.b; @@ -921,7 +920,7 @@ public class g implements h { i19++; i18 = 12; } - ArrayList arrayList = (ArrayList) e.e(pop, new p(), j3, h, (gVar3.f696c & 16) != 0, false, new c(gVar3)); + ArrayList arrayList = (ArrayList) e.e(pop, new p(), j3, h, (gVar3.f697c & 16) != 0, false, new c(gVar3)); int size2 = arrayList.size(); if (gVar3.e.size() == 0) { for (int i21 = 0; i21 < size2; i21++) { @@ -932,7 +931,7 @@ public class g implements h { } gVar3.D.j(); } else { - AnimatableValueParser.D(gVar3.e.size() == size2); + c.c.a.a0.d.D(gVar3.e.size() == size2); for (int i22 = 0; i22 < size2; i22++) { p pVar2 = (p) arrayList.get(i22); m mVar2 = pVar2.a; @@ -949,7 +948,7 @@ public class g implements h { int i23 = 8; if (i17 == 1836019558) { SparseArray sparseArray3 = gVar3.e; - int i24 = gVar3.f696c; + int i24 = gVar3.f697c; byte[] bArr5 = gVar3.i; int size3 = pop.d.size(); int i25 = 0; @@ -969,10 +968,10 @@ public class g implements h { long w = wVar4.w(); o oVar2 = valueAt.b; oVar2.b = w; - oVar2.f711c = w; + oVar2.f712c = w; } f fVar2 = valueAt.e; - valueAt.b.a = new f((f & 2) != 0 ? wVar4.f() - 1 : fVar2.a, (f & 8) != 0 ? wVar4.f() : fVar2.b, (f & 16) != 0 ? wVar4.f() : fVar2.f695c, (f & 32) != 0 ? wVar4.f() : fVar2.d); + valueAt.b.a = new f((f & 2) != 0 ? wVar4.f() - 1 : fVar2.a, (f & 8) != 0 ? wVar4.f() : fVar2.b, (f & 16) != 0 ? wVar4.f() : fVar2.f696c, (f & 32) != 0 ? wVar4.f() : fVar2.d); } if (valueAt != null) { o oVar3 = valueAt.b; @@ -990,7 +989,7 @@ public class g implements h { oVar3.q = ((wVar5.f() >> 24) & 255) == 1 ? wVar5.w() : wVar5.t(); oVar3.r = true; } - List list2 = aVar4.f692c; + List list2 = aVar4.f693c; int size4 = list2.size(); int i26 = 0; int i27 = 0; @@ -1080,7 +1079,7 @@ public class g implements h { oVar = oVar3; if (jArr2.length == 1 && jArr2[0] == 0) { z2 = z12; - j2 = f0.E(mVar3.i[0], 1000000, mVar3.f709c); + j2 = f0.E(mVar3.i[0], 1000000, mVar3.f710c); int[] iArr2 = oVar5.h; int[] iArr3 = oVar5.i; long[] jArr3 = oVar5.j; @@ -1088,7 +1087,7 @@ public class g implements h { b bVar7 = valueAt; boolean z13 = (mVar3.b == 2 || (i24 & 1) == 0) ? false : true; i11 = oVar5.g[i31] + i32; - long j5 = mVar3.f709c; + long j5 = mVar3.f710c; int[] iArr4 = iArr3; long j6 = oVar5.q; i6 = i24; @@ -1107,7 +1106,7 @@ public class g implements h { i14 = wVar7.f(); } else { z4 = z10; - i14 = fVar3.f695c; + i14 = fVar3.f696c; } a(i14); if (z11) { @@ -1177,7 +1176,7 @@ public class g implements h { if (mVar3.b == 2) { } i11 = oVar5.g[i31] + i32; - long j5 = mVar3.f709c; + long j5 = mVar3.f710c; int[] iArr4 = iArr3; long j6 = oVar5.q; i6 = i24; @@ -1256,9 +1255,9 @@ public class g implements h { oVar3.p = true; } } else { - StringBuilder Q = c.d.b.a.a.Q("Saiz sample count ", v2, " is greater than fragment sample count"); - Q.append(oVar3.e); - throw new ParserException(Q.toString()); + StringBuilder P = c.d.b.a.a.P("Saiz sample count ", v2, " is greater than fragment sample count"); + P.append(oVar3.e); + throw new ParserException(P.toString()); } } d.b c5 = aVar4.c(1935763823); @@ -1271,7 +1270,7 @@ public class g implements h { } int v3 = wVar10.v(); if (v3 == 1) { - oVar3.f711c += ((f3 >> 24) & 255) == 0 ? wVar10.t() : wVar10.w(); + oVar3.f712c += ((f3 >> 24) & 255) == 0 ? wVar10.t() : wVar10.w(); } else { throw new ParserException(c.d.b.a.a.l("Unexpected saio entry count: ", v3)); } @@ -1283,8 +1282,8 @@ public class g implements h { String str = a2 != null ? a2.b : null; c.i.a.c.i2.w wVar11 = null; c.i.a.c.i2.w wVar12 = null; - for (int i38 = 0; i38 < aVar4.f692c.size(); i38++) { - d.b bVar8 = aVar4.f692c.get(i38); + for (int i38 = 0; i38 < aVar4.f693c.size(); i38++) { + d.b bVar8 = aVar4.f693c.get(i38); c.i.a.c.i2.w wVar13 = bVar8.b; int i39 = bVar8.a; if (i39 == 1935828848) { @@ -1347,10 +1346,10 @@ public class g implements h { throw new ParserException("Entry count in sbgp != 1 (unsupported)."); } } - int size5 = aVar4.f692c.size(); + int size5 = aVar4.f693c.size(); int i42 = 0; while (i42 < size5) { - d.b bVar9 = aVar4.f692c.get(i42); + d.b bVar9 = aVar4.f693c.get(i42); if (bVar9.a == 1970628964) { c.i.a.c.i2.w wVar14 = bVar9.b; wVar14.D(8); @@ -1390,7 +1389,7 @@ public class g implements h { pop = aVar; i24 = i; } - DrmInitData h2 = h(pop.f692c); + DrmInitData h2 = h(pop.f693c); gVar = this; if (h2 != null) { int size6 = gVar.e.size(); diff --git a/app/src/main/java/c/i/a/c/a2/h0/h.java b/app/src/main/java/c/i/a/c/a2/h0/h.java index b6670c1fda..bded70337e 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/h.java +++ b/app/src/main/java/c/i/a/c/a2/h0/h.java @@ -24,9 +24,9 @@ public final class h { String o = wVar.o(f - 16); return new CommentFrame("und", o, o); } - StringBuilder P = a.P("Failed to parse comment attribute: "); - P.append(d.a(i)); - Log.w("MetadataUtil", P.toString()); + StringBuilder O = a.O("Failed to parse comment attribute: "); + O.append(d.a(i)); + Log.w("MetadataUtil", O.toString()); return null; } @@ -37,7 +37,7 @@ public final class h { int f2 = wVar.f() & ViewCompat.MEASURED_SIZE_MASK; String str = f2 == 13 ? "image/jpeg" : f2 == 14 ? "image/png" : null; if (str == null) { - a.j0("Unrecognized cover art flags: ", f2, "MetadataUtil"); + a.i0("Unrecognized cover art flags: ", f2, "MetadataUtil"); return null; } wVar.E(4); @@ -66,9 +66,9 @@ public final class h { return new TextInformationFrame(str, null, l); } } - StringBuilder P = a.P("Failed to parse index/count attribute: "); - P.append(d.a(i)); - Log.w("MetadataUtil", P.toString()); + StringBuilder O = a.O("Failed to parse index/count attribute: "); + O.append(d.a(i)); + Log.w("MetadataUtil", O.toString()); return null; } @@ -79,9 +79,9 @@ public final class h { wVar.E(8); return new TextInformationFrame(str, null, wVar.o(f - 16)); } - StringBuilder P = a.P("Failed to parse text attribute: "); - P.append(d.a(i)); - Log.w("MetadataUtil", P.toString()); + StringBuilder O = a.O("Failed to parse text attribute: "); + O.append(d.a(i)); + Log.w("MetadataUtil", O.toString()); return null; } @@ -94,9 +94,9 @@ public final class h { if (f >= 0) { return z2 ? new TextInformationFrame(str, null, Integer.toString(f)) : new CommentFrame("und", str, Integer.toString(f)); } - StringBuilder P = a.P("Failed to parse uint8 attribute: "); - P.append(d.a(i)); - Log.w("MetadataUtil", P.toString()); + StringBuilder O = a.O("Failed to parse uint8 attribute: "); + O.append(d.a(i)); + Log.w("MetadataUtil", O.toString()); return null; } diff --git a/app/src/main/java/c/i/a/c/a2/h0/i.java b/app/src/main/java/c/i/a/c/a2/h0/i.java index 14c0cde10e..5a00d83fbe 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/i.java +++ b/app/src/main/java/c/i/a/c/a2/h0/i.java @@ -15,7 +15,6 @@ import c.i.a.c.i2.f0; import c.i.a.c.i2.u; import c.i.a.c.i2.w; import c.i.a.c.v1.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.api.permission.Permission; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; @@ -37,7 +36,7 @@ public final class i implements h, t { public final int b; /* renamed from: c reason: collision with root package name */ - public final w f702c; + public final w f703c; public final w d; public final w e; public final w f; @@ -56,18 +55,18 @@ public final class i implements h, t { public int r; /* renamed from: s reason: collision with root package name */ - public j f703s; + public j f704s; public a[] t; public long[][] u; public int v; public long w; /* renamed from: x reason: collision with root package name */ - public int f704x; + public int f705x; @Nullable /* renamed from: y reason: collision with root package name */ - public MotionPhotoMetadata f705y; + public MotionPhotoMetadata f706y; /* compiled from: Mp4Extractor */ public static final class a { @@ -75,13 +74,13 @@ public final class i implements h, t { public final p b; /* renamed from: c reason: collision with root package name */ - public final c.i.a.c.a2.w f706c; + public final c.i.a.c.a2.w f707c; public int d; public a(m mVar, p pVar, c.i.a.c.a2.w wVar) { this.a = mVar; this.b = pVar; - this.f706c = wVar; + this.f707c = wVar; } } @@ -96,7 +95,7 @@ public final class i implements h, t { this.i = new ArrayList(); this.f = new w(16); this.g = new ArrayDeque<>(); - this.f702c = new w(u.a); + this.f703c = new w(u.a); this.d = new w(4); this.e = new w(); this.o = -1; @@ -107,7 +106,7 @@ public final class i implements h, t { if (a2 == -1) { a2 = pVar.b(j); } - return a2 == -1 ? j2 : Math.min(pVar.f712c[a2], j2); + return a2 == -1 ? j2 : Math.min(pVar.f713c[a2], j2); } @Override // c.i.a.c.a2.h @@ -140,11 +139,11 @@ public final class i implements h, t { Metadata metadata = null; if (this.m == 0) { if (!iVar.c(this.f.a, 0, 8, true)) { - if (this.f704x == 2 && (this.b & 2) != 0) { - j jVar = this.f703s; + if (this.f705x == 2 && (this.b & 2) != 0) { + j jVar = this.f704s; Objects.requireNonNull(jVar); c.i.a.c.a2.w p = jVar.p(0, 4); - MotionPhotoMetadata motionPhotoMetadata = this.f705y; + MotionPhotoMetadata motionPhotoMetadata = this.f706y; if (motionPhotoMetadata != null) { metadata = new Metadata(motionPhotoMetadata); } @@ -209,8 +208,8 @@ public final class i implements h, t { j(); } } else if (i6 == 1835296868 || i6 == 1836476516 || i6 == 1751411826 || i6 == 1937011556 || i6 == 1937011827 || i6 == 1937011571 || i6 == 1668576371 || i6 == 1701606260 || i6 == 1937011555 || i6 == 1937011578 || i6 == 1937013298 || i6 == 1937007471 || i6 == 1668232756 || i6 == 1953196132 || i6 == 1718909296 || i6 == 1969517665 || i6 == 1801812339 || i6 == 1768715124) { - AnimatableValueParser.D(i5 == 8); - AnimatableValueParser.D(this.l <= 2147483647L); + c.c.a.a0.d.D(i5 == 8); + c.c.a.a0.d.D(this.l <= 2147483647L); w wVar2 = new w((int) this.l); System.arraycopy(this.f.a, 0, wVar2.a, 0, 8); this.n = wVar2; @@ -220,7 +219,7 @@ public final class i implements h, t { long j6 = (long) this.m; long j7 = position2 - j6; if (this.k == 1836086884) { - this.f705y = new MotionPhotoMetadata(0, j7, -9223372036854775807L, j7 + j6, this.l - j6); + this.f706y = new MotionPhotoMetadata(0, j7, -9223372036854775807L, j7 + j6, this.l - j6); } this.n = null; this.j = 1; @@ -264,9 +263,9 @@ public final class i implements h, t { } } } - this.f704x = i8; + this.f705x = i8; } else if (!this.g.isEmpty()) { - this.g.peek().f692c.add(new d.b(this.k, wVar3)); + this.g.peek().f693c.add(new d.b(this.k, wVar3)); } } else if (j8 < Permission.USE_EXTERNAL_EMOJIS) { iVar.l((int) j8); @@ -303,7 +302,7 @@ public final class i implements h, t { int i13 = aVar.d; p pVar = aVar.b; if (i13 != pVar.b) { - long j12 = pVar.f712c[i13]; + long j12 = pVar.f713c[i13]; long j13 = this.u[i11][i13]; long j14 = j12 - position4; boolean z6 = j14 < 0 || j14 >= Permission.USE_EXTERNAL_EMOJIS; @@ -332,10 +331,10 @@ public final class i implements h, t { a[] aVarArr2 = this.t; int i14 = f0.a; a aVar2 = aVarArr2[this.o]; - c.i.a.c.a2.w wVar4 = aVar2.f706c; + c.i.a.c.a2.w wVar4 = aVar2.f707c; int i15 = aVar2.d; p pVar2 = aVar2.b; - long j15 = pVar2.f712c[i15]; + long j15 = pVar2.f713c[i15]; int i16 = pVar2.d[i15]; long j16 = (j15 - position4) + ((long) this.p); if (j16 < 0 || j16 >= Permission.USE_EXTERNAL_EMOJIS) { @@ -383,8 +382,8 @@ public final class i implements h, t { int f3 = this.d.f(); if (f3 >= 0) { this.r = f3; - this.f702c.D(0); - wVar4.c(this.f702c, 4); + this.f703c.D(0); + wVar4.c(this.f703c, 4); this.q += 4; i16 += i19; } else { @@ -433,16 +432,16 @@ public final class i implements h, t { i4 = 2; } } - kVar.f708c.add(new k.a(i24, (b5 - ((long) kVar.e)) - ((long) wVar5.h()), wVar5.h())); + kVar.f709c.add(new k.a(i24, (b5 - ((long) kVar.e)) - ((long) wVar5.h()), wVar5.h())); i23++; s2 = 2816; i4 = 2; } - if (kVar.f708c.isEmpty()) { + if (kVar.f709c.isEmpty()) { sVar.a = 0; } else { kVar.d = 3; - sVar.a = kVar.f708c.get(0).a; + sVar.a = kVar.f709c.get(0).a; } } else if (i21 == 3) { long position5 = iVar.getPosition(); @@ -450,8 +449,8 @@ public final class i implements h, t { w wVar6 = new w(b6); iVar.readFully(wVar6.a, 0, b6); int i25 = 0; - while (i25 < kVar.f708c.size()) { - k.a aVar3 = kVar.f708c.get(i25); + while (i25 < kVar.f709c.size()) { + k.a aVar3 = kVar.f709c.get(i25); wVar6.D((int) (aVar3.a - position5)); wVar6.E(i3); int h = wVar6.h(); @@ -559,7 +558,7 @@ public final class i implements h, t { @Override // c.i.a.c.a2.h public void f(j jVar) { - this.f703s = jVar; + this.f704s = jVar; } @Override // c.i.a.c.a2.h @@ -586,7 +585,7 @@ public final class i implements h, t { j(); } else { k kVar = this.h; - kVar.f708c.clear(); + kVar.f709c.clear(); kVar.d = 0; this.i.clear(); } @@ -617,12 +616,12 @@ public final class i implements h, t { return new t.a(c.i.a.c.a2.u.a); } long j8 = pVar.f[a2]; - j2 = pVar.f712c[a2]; + j2 = pVar.f713c[a2]; if (j8 >= j6 || a2 >= pVar.b - 1 || (b = pVar.b(j6)) == -1 || b == a2) { j5 = -9223372036854775807L; } else { long j9 = pVar.f[b]; - long j10 = pVar.f712c[b]; + long j10 = pVar.f713c[b]; j5 = j9; j7 = j10; } @@ -719,7 +718,7 @@ public final class i implements h, t { d.a pop = iVar3.g.pop(); if (pop.a == 1836019574) { ArrayList arrayList5 = new ArrayList(); - boolean z5 = iVar3.f704x == 1; + boolean z5 = iVar3.f705x == 1; p pVar = new p(); d.b c2 = pop.c(1969517665); int i9 = 1768715124; @@ -1040,7 +1039,7 @@ public final class i implements h, t { i8 = f11; strArr = strArr3; metadata6 = metadata10; - c.d.b.a.a.j0("Skipped metadata with unknown key index: ", f14, "AtomParsers"); + c.d.b.a.a.i0("Skipped metadata with unknown key index: ", f14, "AtomParsers"); } else { String str4 = strArr3[f14]; int i31 = i30 + f13; @@ -1084,7 +1083,7 @@ public final class i implements h, t { if (!arrayList7.isEmpty()) { metadata4 = new Metadata(arrayList7); List

e = e.e(pop, pVar, -9223372036854775807L, null, (iVar3.b & 1) != 0, z2, a.a); - j jVar = iVar3.f703s; + j jVar = iVar3.f704s; Objects.requireNonNull(jVar); ArrayList arrayList8 = (ArrayList) e; size = arrayList8.size(); @@ -1118,9 +1117,9 @@ public final class i implements h, t { } if (i35 == 1) { int i36 = pVar.b; - if ((i36 == -1 || pVar.f763c == -1) ? false : true) { + if ((i36 == -1 || pVar.f764c == -1) ? false : true) { a2.A = i36; - a2.B = pVar.f763c; + a2.B = pVar.f764c; } } Metadata[] metadataArr = new Metadata[2]; @@ -1141,7 +1140,7 @@ public final class i implements h, t { if (metadata11.i.length > 0) { a2.i = metadata11; } - aVar.f706c.e(a2.a()); + aVar.f707c.e(a2.a()); if (mVar.b == 2 && i34 == -1) { i34 = arrayList.size(); } @@ -1174,7 +1173,7 @@ public final class i implements h, t { } if (metadata11.i.length > 0) { } - aVar.f706c.e(a2.a()); + aVar.f707c.e(a2.a()); i34 = arrayList.size(); arrayList3 = arrayList; arrayList3.add(aVar); @@ -1185,7 +1184,7 @@ public final class i implements h, t { } if (metadata11.i.length > 0) { } - aVar.f706c.e(a2.a()); + aVar.f707c.e(a2.a()); i34 = arrayList.size(); arrayList3 = arrayList; arrayList3.add(aVar); @@ -1243,7 +1242,7 @@ public final class i implements h, t { } metadata4 = null; List

e = e.e(pop, pVar, -9223372036854775807L, null, (iVar3.b & 1) != 0, z2, a.a); - j jVar = iVar3.f703s; + j jVar = iVar3.f704s; Objects.requireNonNull(jVar); ArrayList arrayList8 = (ArrayList) e; size = arrayList8.size(); @@ -1279,7 +1278,7 @@ public final class i implements h, t { metadata3 = metadata10; metadata4 = null; List

e = e.e(pop, pVar, -9223372036854775807L, null, (iVar3.b & 1) != 0, z2, a.a); - j jVar = iVar3.f703s; + j jVar = iVar3.f704s; Objects.requireNonNull(jVar); ArrayList arrayList8 = (ArrayList) e; size = arrayList8.size(); diff --git a/app/src/main/java/c/i/a/c/a2/h0/j.java b/app/src/main/java/c/i/a/c/a2/h0/j.java index a62dee41ab..718c677215 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/j.java +++ b/app/src/main/java/c/i/a/c/a2/h0/j.java @@ -7,11 +7,11 @@ public class j { public final int b; /* renamed from: c reason: collision with root package name */ - public final byte[] f707c; + public final byte[] f708c; public j(UUID uuid, int i, byte[] bArr) { this.a = uuid; this.b = i; - this.f707c = bArr; + this.f708c = bArr; } } diff --git a/app/src/main/java/c/i/a/c/a2/h0/k.java b/app/src/main/java/c/i/a/c/a2/h0/k.java index 1cf8b44114..cc67379de0 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/k.java +++ b/app/src/main/java/c/i/a/c/a2/h0/k.java @@ -11,7 +11,7 @@ public final class k { public static final c.i.b.a.k b = new c.i.b.a.k(new j(new b.C0125b('*'))); /* renamed from: c reason: collision with root package name */ - public final List f708c = new ArrayList(); + public final List f709c = new ArrayList(); public int d = 0; public int e; diff --git a/app/src/main/java/c/i/a/c/a2/h0/m.java b/app/src/main/java/c/i/a/c/a2/h0/m.java index 7b7624da97..7ecec6ec51 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/m.java +++ b/app/src/main/java/c/i/a/c/a2/h0/m.java @@ -8,7 +8,7 @@ public final class m { public final int b; /* renamed from: c reason: collision with root package name */ - public final long f709c; + public final long f710c; public final long d; public final long e; public final Format f; @@ -24,7 +24,7 @@ public final class m { public m(int i, int i2, long j, long j2, long j3, Format format, int i3, @Nullable n[] nVarArr, int i4, @Nullable long[] jArr, @Nullable long[] jArr2) { this.a = i; this.b = i2; - this.f709c = j; + this.f710c = j; this.d = j2; this.e = j3; this.f = format; diff --git a/app/src/main/java/c/i/a/c/a2/h0/n.java b/app/src/main/java/c/i/a/c/a2/h0/n.java index d88dbe862a..15e53d118c 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/n.java +++ b/app/src/main/java/c/i/a/c/a2/h0/n.java @@ -2,8 +2,8 @@ package c.i.a.c.a2.h0; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: TrackEncryptionBox */ public final class n { public final boolean a; @@ -11,7 +11,7 @@ public final class n { public final String b; /* renamed from: c reason: collision with root package name */ - public final w.a f710c; + public final w.a f711c; public final int d; @Nullable public final byte[] e; @@ -23,7 +23,7 @@ public final class n { public n(boolean z2, @Nullable String str, int i, byte[] bArr, int i2, int i3, @Nullable byte[] bArr2) { char c2 = 0; int i4 = 1; - AnimatableValueParser.k((i == 0) ^ (bArr2 == null)); + d.k((i == 0) ^ (bArr2 == null)); this.a = z2; this.b = str; this.d = i; @@ -63,6 +63,6 @@ public final class n { Log.w("TrackEncryptionBox", "Unsupported protection scheme type '" + str + "'. Assuming AES-CTR crypto mode."); } } - this.f710c = new w.a(i4, bArr, i2, i3); + this.f711c = new w.a(i4, bArr, i2, i3); } } diff --git a/app/src/main/java/c/i/a/c/a2/h0/o.java b/app/src/main/java/c/i/a/c/a2/h0/o.java index 60eb4b508b..f8cae89a11 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/o.java +++ b/app/src/main/java/c/i/a/c/a2/h0/o.java @@ -8,7 +8,7 @@ public final class o { public long b; /* renamed from: c reason: collision with root package name */ - public long f711c; + public long f712c; public int d; public int e; public long[] f = new long[0]; diff --git a/app/src/main/java/c/i/a/c/a2/h0/p.java b/app/src/main/java/c/i/a/c/a2/h0/p.java index 496c725928..bae21fafad 100644 --- a/app/src/main/java/c/i/a/c/a2/h0/p.java +++ b/app/src/main/java/c/i/a/c/a2/h0/p.java @@ -1,14 +1,14 @@ package c.i.a.c.a2.h0; +import c.c.a.a0.d; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: TrackSampleTable */ public final class p { public final m a; public final int b; /* renamed from: c reason: collision with root package name */ - public final long[] f712c; + public final long[] f713c; public final int[] d; public final int e; public final long[] f; @@ -17,11 +17,11 @@ public final class p { public p(m mVar, long[] jArr, int[] iArr, int i, long[] jArr2, int[] iArr2, long j) { boolean z2 = false; - AnimatableValueParser.k(iArr.length == jArr2.length); - AnimatableValueParser.k(jArr.length == jArr2.length); - AnimatableValueParser.k(iArr2.length == jArr2.length ? true : z2); + d.k(iArr.length == jArr2.length); + d.k(jArr.length == jArr2.length); + d.k(iArr2.length == jArr2.length ? true : z2); this.a = mVar; - this.f712c = jArr; + this.f713c = jArr; this.d = iArr; this.e = i; this.f = jArr2; diff --git a/app/src/main/java/c/i/a/c/a2/i0/b.java b/app/src/main/java/c/i/a/c/a2/i0/b.java index 8c57091236..00d0aa9eca 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/b.java +++ b/app/src/main/java/c/i/a/c/a2/i0/b.java @@ -1,11 +1,11 @@ package c.i.a.c.a2.i0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.i; import c.i.a.c.a2.t; import c.i.a.c.a2.u; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.EOFException; import java.io.IOException; /* compiled from: DefaultOggSeeker */ @@ -14,7 +14,7 @@ public final class b implements g { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f713c; + public final long f714c; public final i d; public int e; public long f; @@ -40,7 +40,7 @@ public final class b implements g { public t.a h(long j) { b bVar = b.this; long j2 = bVar.b; - long j3 = bVar.f713c; + long j3 = bVar.f714c; return new t.a(new u(j, f0.i(((((j3 - j2) * ((((long) bVar.d.i) * j) / 1000000)) / bVar.f) + j2) - 30000, j2, j3 - 1))); } @@ -52,10 +52,10 @@ public final class b implements g { } public b(i iVar, long j, long j2, long j3, long j4, boolean z2) { - AnimatableValueParser.k(j >= 0 && j2 > j); + d.k(j >= 0 && j2 > j); this.d = iVar; this.b = j; - this.f713c = j2; + this.f714c = j2; if (j3 == j2 - j || z2) { this.f = j4; this.e = 4; @@ -85,7 +85,7 @@ public final class b implements g { long position = iVar.getPosition(); this.g = position; this.e = 1; - long j3 = this.f713c - 65307; + long j3 = this.f714c - 65307; if (j3 > position) { return j3; } @@ -103,7 +103,7 @@ public final class b implements g { iVar.k(); long j4 = this.h; f fVar = this.a; - long j5 = fVar.f717c; + long j5 = fVar.f718c; long j6 = j4 - j5; int i2 = fVar.e + fVar.f; if (0 > j6 || j6 >= 72000) { @@ -113,7 +113,7 @@ public final class b implements g { this.l = j5; } else { this.i = iVar.getPosition() + ((long) i2); - this.k = this.a.f717c; + this.k = this.a.f718c; } long j7 = this.j; long j8 = this.i; @@ -149,14 +149,14 @@ public final class b implements g { this.a.c(iVar, j); this.a.a(iVar, false); f fVar2 = this.a; - if (fVar2.f717c > this.h) { + if (fVar2.f718c > this.h) { iVar.k(); this.e = 4; return -(this.k + 2); } iVar.l(fVar2.e + fVar2.f); this.i = iVar.getPosition(); - this.k = this.a.f717c; + this.k = this.a.f718c; j = -1; } } @@ -170,8 +170,8 @@ public final class b implements g { if ((fVar4.b & 4) == 4 || !fVar4.c(iVar, -1)) { break; } - } while (iVar.getPosition() < this.f713c); - this.f = this.a.f717c; + } while (iVar.getPosition() < this.f714c); + this.f = this.a.f718c; this.e = 4; return this.g; } @@ -183,7 +183,7 @@ public final class b implements g { this.h = f0.i(j, 0, this.f - 1); this.e = 2; this.i = this.b; - this.j = this.f713c; + this.j = this.f714c; this.k = 0; this.l = this.f; } diff --git a/app/src/main/java/c/i/a/c/a2/i0/c.java b/app/src/main/java/c/i/a/c/a2/i0/c.java index 52a09050d2..a612f441f7 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/c.java +++ b/app/src/main/java/c/i/a/c/a2/i0/c.java @@ -1,6 +1,7 @@ package c.i.a.c.a2.i0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.i; import c.i.a.c.a2.i0.i; import c.i.a.c.a2.m; @@ -9,7 +10,6 @@ import c.i.a.c.a2.o; import c.i.a.c.a2.t; import c.i.a.c.i2.f0; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; import java.util.Objects; import org.checkerframework.checker.nullness.qual.EnsuresNonNullIf; @@ -26,7 +26,7 @@ public final class c extends i { public o.a b; /* renamed from: c reason: collision with root package name */ - public long f714c = -1; + public long f715c = -1; public long d = -1; public a(o oVar, o.a aVar) { @@ -36,8 +36,8 @@ public final class c extends i { @Override // c.i.a.c.a2.i0.g public t a() { - AnimatableValueParser.D(this.f714c != -1); - return new n(this.a, this.f714c); + d.D(this.f715c != -1); + return new n(this.a, this.f715c); } @Override // c.i.a.c.a2.i0.g @@ -82,13 +82,13 @@ public final class c extends i { if (oVar == null) { o oVar2 = new o(bArr, 17); this.n = oVar2; - bVar.a = oVar2.e(Arrays.copyOfRange(bArr, 9, wVar.f920c), null); + bVar.a = oVar2.e(Arrays.copyOfRange(bArr, 9, wVar.f921c), null); return true; } else if ((bArr[0] & Byte.MAX_VALUE) == 3) { - o.a o2 = AnimatableValueParser.o2(wVar); - o b = oVar.b(o2); + o.a L1 = d.L1(wVar); + o b = oVar.b(L1); this.n = b; - this.o = new a(b, o2); + this.o = new a(b, L1); return true; } else { if (!(bArr[0] == -1)) { @@ -96,7 +96,7 @@ public final class c extends i { } a aVar = this.o; if (aVar != null) { - aVar.f714c = j; + aVar.f715c = j; bVar.b = aVar; } Objects.requireNonNull(bVar.a); diff --git a/app/src/main/java/c/i/a/c/a2/i0/d.java b/app/src/main/java/c/i/a/c/a2/i0/d.java index 3a5f744d3e..d6384a6aa7 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/d.java +++ b/app/src/main/java/c/i/a/c/a2/i0/d.java @@ -8,7 +8,6 @@ import c.i.a.c.a2.s; import c.i.a.c.a2.t; import c.i.a.c.i2.f0; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.utilities.auth.GoogleSmartLockManager; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; @@ -21,7 +20,7 @@ public class d implements h { public i b; /* renamed from: c reason: collision with root package name */ - public boolean f715c; + public boolean f716c; static { a aVar = a.a; @@ -42,7 +41,7 @@ public class d implements h { } else { wVar.D(0); try { - z2 = AnimatableValueParser.Q2(1, wVar, true); + z2 = c.c.a.a0.d.m2(1, wVar, true); } catch (ParserException unused) { z2 = false; } @@ -87,7 +86,7 @@ public class d implements h { boolean z2; int i; byte[] bArr; - AnimatableValueParser.H(this.a); + c.c.a.a0.d.H(this.a); if (this.b == null) { if (a(iVar)) { iVar.k(); @@ -95,17 +94,17 @@ public class d implements h { throw new ParserException("Failed to determine bitstream type"); } } - if (!this.f715c) { + if (!this.f716c) { c.i.a.c.a2.w p = this.a.p(0, 1); this.a.j(); i iVar2 = this.b; - iVar2.f718c = this.a; + iVar2.f719c = this.a; iVar2.b = p; iVar2.e(true); - this.f715c = true; + this.f716c = true; } i iVar3 = this.b; - AnimatableValueParser.H(iVar3.b); + c.c.a.a0.d.H(iVar3.b); int i2 = f0.a; int i3 = iVar3.h; if (i3 == 0) { @@ -140,7 +139,7 @@ public class d implements h { } else { f fVar = iVar3.a.a; i = 2; - iVar3.d = new b(iVar3, iVar3.f, iVar.b(), (long) (fVar.e + fVar.f), fVar.f717c, (fVar.b & 4) != 0); + iVar3.d = new b(iVar3, iVar3.f, iVar.b(), (long) (fVar.e + fVar.f), fVar.f718c, (fVar.b & 4) != 0); iVar3.h = i; e eVar = iVar3.a; w wVar = eVar.b; @@ -148,7 +147,7 @@ public class d implements h { if (bArr.length != 65025) { return 0; } - wVar.B(Arrays.copyOf(bArr, Math.max(65025, wVar.f920c)), eVar.b.f920c); + wVar.B(Arrays.copyOf(bArr, Math.max(65025, wVar.f921c)), eVar.b.f921c); return 0; } i = 2; @@ -174,8 +173,8 @@ public class d implements h { } if (!iVar3.l) { t a = iVar3.d.a(); - AnimatableValueParser.H(a); - iVar3.f718c.a(a); + c.c.a.a0.d.H(a); + iVar3.f719c.a(a); iVar3.l = true; } if (iVar3.k > 0 || iVar3.a.b(iVar)) { @@ -186,8 +185,8 @@ public class d implements h { long j2 = iVar3.g; if (j2 + c2 >= iVar3.e) { long j3 = (j2 * 1000000) / ((long) iVar3.i); - iVar3.b.c(wVar2, wVar2.f920c); - iVar3.b.d(j3, 1, wVar2.f920c, 0, null); + iVar3.b.c(wVar2, wVar2.f921c); + iVar3.b.d(j3, 1, wVar2.f921c, 0, null); iVar3.e = -1; } } @@ -213,7 +212,7 @@ public class d implements h { e eVar = iVar.a; eVar.a.b(); eVar.b.z(0); - eVar.f716c = -1; + eVar.f717c = -1; eVar.e = false; if (j == 0) { iVar.e(!iVar.l); diff --git a/app/src/main/java/c/i/a/c/a2/i0/e.java b/app/src/main/java/c/i/a/c/a2/i0/e.java index 74b8b73a57..d3fd232854 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/e.java +++ b/app/src/main/java/c/i/a/c/a2/i0/e.java @@ -1,8 +1,8 @@ package c.i.a.c.a2.i0; +import c.c.a.a0.d; import c.i.a.c.a2.i; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; /* compiled from: OggPacket */ public final class e { @@ -10,7 +10,7 @@ public final class e { public final w b = new w(new byte[65025], 0); /* renamed from: c reason: collision with root package name */ - public int f716c = -1; + public int f717c = -1; public int d; public boolean e; @@ -35,42 +35,42 @@ public final class e { public boolean b(i iVar) throws IOException { int i; - AnimatableValueParser.D(iVar != null); + d.D(iVar != null); if (this.e) { this.e = false; this.b.z(0); } while (!this.e) { - if (this.f716c < 0) { + if (this.f717c < 0) { if (!this.a.c(iVar, -1) || !this.a.a(iVar, true)) { return false; } f fVar = this.a; int i2 = fVar.e; - if ((fVar.b & 1) == 1 && this.b.f920c == 0) { + if ((fVar.b & 1) == 1 && this.b.f921c == 0) { i2 += a(0); i = this.d + 0; } else { i = 0; } iVar.l(i2); - this.f716c = i; + this.f717c = i; } - int a = a(this.f716c); - int i3 = this.f716c + this.d; + int a = a(this.f717c); + int i3 = this.f717c + this.d; if (a > 0) { w wVar = this.b; - wVar.b(wVar.f920c + a); + wVar.b(wVar.f921c + a); w wVar2 = this.b; - iVar.readFully(wVar2.a, wVar2.f920c, a); + iVar.readFully(wVar2.a, wVar2.f921c, a); w wVar3 = this.b; - wVar3.C(wVar3.f920c + a); + wVar3.C(wVar3.f921c + a); this.e = this.a.g[i3 + -1] != 255; } if (i3 == this.a.d) { i3 = -1; } - this.f716c = i3; + this.f717c = i3; } return true; } diff --git a/app/src/main/java/c/i/a/c/a2/i0/f.java b/app/src/main/java/c/i/a/c/a2/i0/f.java index 8a9c962d90..e92dfcc706 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/f.java +++ b/app/src/main/java/c/i/a/c/a2/i0/f.java @@ -1,8 +1,8 @@ package c.i.a.c.a2.i0; +import c.c.a.a0.d; import c.i.a.c.a2.i; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ParserException; import java.io.EOFException; import java.io.IOException; @@ -12,7 +12,7 @@ public final class f { public int b; /* renamed from: c reason: collision with root package name */ - public long f717c; + public long f718c; public int d; public int e; public int f; @@ -57,7 +57,7 @@ public final class f { int i8 = i7 + 1; wVar.b = i8; wVar.b = i8 + 1; - this.f717c = ((((long) bArr[i8]) & 255) << 56) | (((long) bArr[i]) & 255) | ((((long) bArr[i2]) & 255) << 8) | ((((long) bArr[i3]) & 255) << 16) | ((((long) bArr[i4]) & 255) << 24) | ((((long) bArr[i5]) & 255) << 32) | ((((long) bArr[i6]) & 255) << 40) | ((((long) bArr[i7]) & 255) << 48); + this.f718c = ((((long) bArr[i8]) & 255) << 56) | (((long) bArr[i]) & 255) | ((((long) bArr[i2]) & 255) << 8) | ((((long) bArr[i3]) & 255) << 16) | ((((long) bArr[i4]) & 255) << 24) | ((((long) bArr[i5]) & 255) << 32) | ((((long) bArr[i6]) & 255) << 40) | ((((long) bArr[i7]) & 255) << 48); wVar.j(); this.h.j(); this.h.j(); @@ -81,7 +81,7 @@ public final class f { public void b() { this.a = 0; this.b = 0; - this.f717c = 0; + this.f718c = 0; this.d = 0; this.e = 0; this.f = 0; @@ -90,7 +90,7 @@ public final class f { public boolean c(i iVar, long j) throws IOException { int i; boolean z2; - AnimatableValueParser.k(iVar.getPosition() == iVar.f()); + d.k(iVar.getPosition() == iVar.f()); this.h.z(4); while (true) { i = (j > -1 ? 1 : (j == -1 ? 0 : -1)); diff --git a/app/src/main/java/c/i/a/c/a2/i0/h.java b/app/src/main/java/c/i/a/c/a2/i0/h.java index d1411b3db1..913f97037e 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/h.java +++ b/app/src/main/java/c/i/a/c/a2/i0/h.java @@ -1,8 +1,8 @@ package c.i.a.c.a2.i0; +import c.c.a.a0.d; import c.i.a.c.a2.i0.i; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.utilities.guilds.GuildConstantsKt; import com.google.android.exoplayer2.Format; import java.util.Arrays; @@ -35,12 +35,12 @@ public final class h extends i { public boolean d(w wVar, long j, i.b bVar) { boolean z2 = true; if (!this.o) { - byte[] copyOf = Arrays.copyOf(wVar.a, wVar.f920c); - List h = AnimatableValueParser.h(copyOf); + byte[] copyOf = Arrays.copyOf(wVar.a, wVar.f921c); + List h = d.h(copyOf); Format.b bVar2 = new Format.b(); bVar2.k = "audio/opus"; - bVar2.f2280x = copyOf[9] & 255; - bVar2.f2281y = 48000; + bVar2.f2283x = copyOf[9] & 255; + bVar2.f2284y = 48000; bVar2.m = h; bVar.a = bVar2.a(); this.o = true; diff --git a/app/src/main/java/c/i/a/c/a2/i0/i.java b/app/src/main/java/c/i/a/c/a2/i0/i.java index c6225eb3c3..7903003438 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/i.java +++ b/app/src/main/java/c/i/a/c/a2/i0/i.java @@ -12,7 +12,7 @@ public abstract class i { public w b; /* renamed from: c reason: collision with root package name */ - public j f718c; + public j f719c; public g d; public long e; public long f; diff --git a/app/src/main/java/c/i/a/c/a2/i0/j.java b/app/src/main/java/c/i/a/c/a2/i0/j.java index ffc6259884..5d5ad53d31 100644 --- a/app/src/main/java/c/i/a/c/a2/i0/j.java +++ b/app/src/main/java/c/i/a/c/a2/i0/j.java @@ -2,13 +2,13 @@ package c.i.a.c.a2.i0; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.a0; import c.i.a.c.a2.i0.i; import c.i.a.c.a2.x; import c.i.a.c.a2.y; import c.i.a.c.a2.z; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import java.io.IOException; @@ -33,13 +33,13 @@ public final class j extends i { public final byte[] b; /* renamed from: c reason: collision with root package name */ - public final z[] f719c; + public final z[] f720c; public final int d; public a(a0 a0Var, y yVar, byte[] bArr, z[] zVarArr, int i) { this.a = a0Var; this.b = bArr; - this.f719c = zVarArr; + this.f720c = zVarArr; this.d = i; } } @@ -65,23 +65,23 @@ public final class j extends i { } byte b = bArr[0]; a aVar = this.n; - AnimatableValueParser.H(aVar); + d.H(aVar); a aVar2 = aVar; - int i2 = !aVar2.f719c[(b >> 1) & (255 >>> (8 - aVar2.d))].a ? aVar2.a.e : aVar2.a.f; + int i2 = !aVar2.f720c[(b >> 1) & (255 >>> (8 - aVar2.d))].a ? aVar2.a.e : aVar2.a.f; if (this.p) { i = (this.o + i2) / 4; } long j = (long) i; byte[] bArr2 = wVar.a; int length = bArr2.length; - int i3 = wVar.f920c + 4; + int i3 = wVar.f921c + 4; if (length < i3) { wVar.A(Arrays.copyOf(bArr2, i3)); } else { wVar.C(i3); } byte[] bArr3 = wVar.a; - int i4 = wVar.f920c; + int i4 = wVar.f921c; bArr3[i4 - 4] = (byte) ((int) (j & 255)); bArr3[i4 - 3] = (byte) ((int) ((j >>> 8) & 255)); bArr3[i4 - 2] = (byte) ((int) ((j >>> 16) & 255)); @@ -108,7 +108,7 @@ public final class j extends i { } a0 a0Var = this.q; if (a0Var == null) { - AnimatableValueParser.Q2(1, wVar, false); + d.m2(1, wVar, false); int k = wVar.k(); int s2 = wVar.s(); int k2 = wVar.k(); @@ -119,18 +119,18 @@ public final class j extends i { int h3 = wVar.h(); int i6 = h3 <= 0 ? -1 : h3; int s3 = wVar.s(); - this.q = new a0(k, s2, k2, i4, i5, i6, (int) Math.pow(2.0d, (double) (s3 & 15)), (int) Math.pow(2.0d, (double) ((s3 & 240) >> 4)), (1 & wVar.s()) > 0, Arrays.copyOf(wVar.a, wVar.f920c)); + this.q = new a0(k, s2, k2, i4, i5, i6, (int) Math.pow(2.0d, (double) (s3 & 15)), (int) Math.pow(2.0d, (double) ((s3 & 240) >> 4)), (1 & wVar.s()) > 0, Arrays.copyOf(wVar.a, wVar.f921c)); } else { y yVar = this.r; if (yVar == null) { - this.r = AnimatableValueParser.q2(wVar, true, true); + this.r = d.N1(wVar, true, true); } else { - int i7 = wVar.f920c; + int i7 = wVar.f921c; byte[] bArr3 = new byte[i7]; System.arraycopy(wVar.a, 0, bArr3, 0, i7); int i8 = a0Var.a; int i9 = 5; - AnimatableValueParser.Q2(5, wVar, false); + d.m2(5, wVar, false); int s4 = wVar.s() + 1; x xVar = new x(wVar.a); xVar.c(wVar.b * 8); @@ -260,8 +260,8 @@ public final class j extends i { int b13 = xVar.b(8) + 1; for (int i34 = 0; i34 < b13; i34++) { int i35 = i8 - 1; - xVar.c(AnimatableValueParser.Y0(i35)); - xVar.c(AnimatableValueParser.Y0(i35)); + xVar.c(d.P0(i35)); + xVar.c(d.P0(i35)); } } if (xVar.b(2) == 0) { @@ -286,7 +286,7 @@ public final class j extends i { zVarArr[i38] = new z(xVar.a(), xVar.b(16), xVar.b(16), xVar.b(8)); } if (xVar.a()) { - aVar = new a(a0Var, yVar, bArr3, zVarArr, AnimatableValueParser.Y0(b14 - 1)); + aVar = new a(a0Var, yVar, bArr3, zVarArr, d.P0(b14 - 1)); } else { throw new ParserException("framing bit after modes not set as expected"); } @@ -326,7 +326,7 @@ public final class j extends i { int b17 = xVar.b(5) + 1; int i40 = 0; while (i40 < b16) { - int b18 = xVar.b(AnimatableValueParser.Y0(b16 - i40)); + int b18 = xVar.b(d.P0(b16 - i40)); int i41 = 0; while (i41 < b18 && i40 < b16) { jArr[i40] = (long) b17; @@ -356,9 +356,9 @@ public final class j extends i { throw new ParserException(c.d.b.a.a.l("lookup type greater than 2 not decodable: ", b19)); } } else { - StringBuilder P = c.d.b.a.a.P("expected code book to start with [0x56, 0x43, 0x42] at "); - P.append((xVar.f767c * 8) + xVar.d); - throw new ParserException(P.toString()); + StringBuilder O = c.d.b.a.a.O("expected code book to start with [0x56, 0x43, 0x42] at "); + O.append((xVar.f768c * 8) + xVar.d); + throw new ParserException(O.toString()); } } this.n = aVar; @@ -372,9 +372,9 @@ public final class j extends i { Format.b bVar2 = new Format.b(); bVar2.k = "audio/vorbis"; bVar2.f = a0Var2.d; - bVar2.g = a0Var2.f652c; - bVar2.f2280x = a0Var2.a; - bVar2.f2281y = a0Var2.b; + bVar2.g = a0Var2.f653c; + bVar2.f2283x = a0Var2.a; + bVar2.f2284y = a0Var2.b; bVar2.m = arrayList; bVar.a = bVar2.a(); return true; diff --git a/app/src/main/java/c/i/a/c/a2/j0/a0.java b/app/src/main/java/c/i/a/c/a2/j0/a0.java index 6a12b858d9..ae4598c33a 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/a0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/a0.java @@ -10,7 +10,7 @@ public final class a0 { public final w b = new w(); /* renamed from: c reason: collision with root package name */ - public boolean f720c; + public boolean f721c; public boolean d; public boolean e; public long f = -9223372036854775807L; @@ -34,7 +34,7 @@ public final class a0 { public final int a(i iVar) { this.b.A(f0.f); - this.f720c = true; + this.f721c = true; iVar.k(); return 0; } diff --git a/app/src/main/java/c/i/a/c/a2/j0/b0.java b/app/src/main/java/c/i/a/c/a2/j0/b0.java index 17011aed17..662bed0735 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/b0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/b0.java @@ -3,6 +3,7 @@ package c.i.a.c.a2.j0; import android.util.SparseArray; import androidx.annotation.Nullable; import androidx.core.view.InputDeviceCompat; +import c.c.a.a0.d; import c.i.a.c.a2.h; import c.i.a.c.a2.i; import c.i.a.c.a2.j; @@ -12,7 +13,6 @@ import c.i.a.c.a2.t; import c.i.a.c.i2.e0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.api.permission.Permission; import java.io.IOException; /* compiled from: PsExtractor */ @@ -21,7 +21,7 @@ public final class b0 implements h { public final SparseArray b = new SparseArray<>(); /* renamed from: c reason: collision with root package name */ - public final w f721c = new w(4096); + public final w f722c = new w(4096); public final a0 d = new a0(); public boolean e; public boolean f; @@ -38,7 +38,7 @@ public final class b0 implements h { public final e0 b; /* renamed from: c reason: collision with root package name */ - public final v f722c = new v(new byte[64]); + public final v f723c = new v(new byte[64]); public boolean d; public boolean e; public boolean f; @@ -71,13 +71,13 @@ public final class b0 implements h { @Override // c.i.a.c.a2.h public int e(i iVar, s sVar) throws IOException { o pVar; - AnimatableValueParser.H(this.j); + d.H(this.j); long b = iVar.b(); int i = (b > -1 ? 1 : (b == -1 ? 0 : -1)); long j = -9223372036854775807L; if (i != 0) { a0 a0Var = this.d; - if (!a0Var.f720c) { + if (!a0Var.f721c) { if (!a0Var.e) { long b2 = iVar.b(); int min = (int) Math.min(20000L, b2); @@ -90,7 +90,7 @@ public final class b0 implements h { iVar.n(a0Var.b.a, 0, min); w wVar = a0Var.b; int i2 = wVar.b; - int i3 = wVar.f920c - 4; + int i3 = wVar.f921c - 4; while (true) { if (i3 < i2) { break; @@ -123,7 +123,7 @@ public final class b0 implements h { iVar.n(a0Var.b.a, 0, min2); w wVar2 = a0Var.b; int i4 = wVar2.b; - int i5 = wVar2.f920c; + int i5 = wVar2.f921c; while (true) { if (i4 >= i5 - 3) { break; @@ -173,23 +173,23 @@ public final class b0 implements h { } iVar.k(); long f = i != 0 ? b - iVar.f() : -1; - if ((f != -1 && f < 4) || !iVar.e(this.f721c.a, 0, 4, true)) { + if ((f != -1 && f < 4) || !iVar.e(this.f722c.a, 0, 4, true)) { return -1; } - this.f721c.D(0); - int f2 = this.f721c.f(); + this.f722c.D(0); + int f2 = this.f722c.f(); if (f2 == 441) { return -1; } if (f2 == 442) { - iVar.n(this.f721c.a, 0, 10); - this.f721c.D(9); - iVar.l((this.f721c.s() & 7) + 14); + iVar.n(this.f722c.a, 0, 10); + this.f722c.D(9); + iVar.l((this.f722c.s() & 7) + 14); return 0; } else if (f2 == 443) { - iVar.n(this.f721c.a, 0, 2); - this.f721c.D(0); - iVar.l(this.f721c.x() + 6); + iVar.n(this.f722c.a, 0, 2); + this.f722c.D(0); + iVar.l(this.f722c.x() + 6); return 0; } else if (((f2 & InputDeviceCompat.SOURCE_ANY) >> 8) != 1) { iVar.l(1); @@ -229,40 +229,40 @@ public final class b0 implements h { this.j.j(); } } - iVar.n(this.f721c.a, 0, 2); - this.f721c.D(0); - int x2 = this.f721c.x() + 6; + iVar.n(this.f722c.a, 0, 2); + this.f722c.D(0); + int x2 = this.f722c.x() + 6; if (aVar == null) { iVar.l(x2); return 0; } - this.f721c.z(x2); - iVar.readFully(this.f721c.a, 0, x2); - this.f721c.D(6); - w wVar3 = this.f721c; - wVar3.e(aVar.f722c.a, 0, 3); - aVar.f722c.k(0); - aVar.f722c.m(8); - aVar.d = aVar.f722c.f(); - aVar.e = aVar.f722c.f(); - aVar.f722c.m(6); - int g = aVar.f722c.g(8); + this.f722c.z(x2); + iVar.readFully(this.f722c.a, 0, x2); + this.f722c.D(6); + w wVar3 = this.f722c; + wVar3.e(aVar.f723c.a, 0, 3); + aVar.f723c.k(0); + aVar.f723c.m(8); + aVar.d = aVar.f723c.f(); + aVar.e = aVar.f723c.f(); + aVar.f723c.m(6); + int g = aVar.f723c.g(8); aVar.g = g; - wVar3.e(aVar.f722c.a, 0, g); - aVar.f722c.k(0); + wVar3.e(aVar.f723c.a, 0, g); + aVar.f723c.k(0); aVar.h = 0; if (aVar.d) { - aVar.f722c.m(4); - aVar.f722c.m(1); - aVar.f722c.m(1); - long g2 = (((long) aVar.f722c.g(3)) << 30) | ((long) (aVar.f722c.g(15) << 15)) | ((long) aVar.f722c.g(15)); - aVar.f722c.m(1); + aVar.f723c.m(4); + aVar.f723c.m(1); + aVar.f723c.m(1); + long g2 = (((long) aVar.f723c.g(3)) << 30) | ((long) (aVar.f723c.g(15) << 15)) | ((long) aVar.f723c.g(15)); + aVar.f723c.m(1); if (!aVar.f && aVar.e) { - aVar.f722c.m(4); - aVar.f722c.m(1); - aVar.f722c.m(1); - aVar.f722c.m(1); - aVar.b.b((((long) aVar.f722c.g(3)) << 30) | ((long) (aVar.f722c.g(15) << 15)) | ((long) aVar.f722c.g(15))); + aVar.f723c.m(4); + aVar.f723c.m(1); + aVar.f723c.m(1); + aVar.f723c.m(1); + aVar.b.b((((long) aVar.f723c.g(3)) << 30) | ((long) (aVar.f723c.g(15) << 15)) | ((long) aVar.f723c.g(15))); aVar.f = true; } aVar.h = aVar.b.b(g2); @@ -270,7 +270,7 @@ public final class b0 implements h { aVar.a.f(aVar.h, 4); aVar.a.b(wVar3); aVar.a.d(); - w wVar4 = this.f721c; + w wVar4 = this.f722c; wVar4.C(wVar4.a.length); return 0; } @@ -287,7 +287,7 @@ public final class b0 implements h { e0 e0Var = this.a; synchronized (e0Var) { e0Var.a = j2; - e0Var.f910c = -9223372036854775807L; + e0Var.f911c = -9223372036854775807L; } } z zVar = this.i; diff --git a/app/src/main/java/c/i/a/c/a2/j0/d0.java b/app/src/main/java/c/i/a/c/a2/j0/d0.java index 2b359fcfa2..c9b27da4ae 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/d0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/d0.java @@ -12,7 +12,7 @@ public final class d0 implements i0 { public final w b = new w(32); /* renamed from: c reason: collision with root package name */ - public int f723c; + public int f724c; public int d; public boolean e; public boolean f; @@ -63,18 +63,18 @@ public final class d0 implements i0 { int s5 = this.b.s(); this.e = (s4 & 128) != 0; int i4 = (((s4 & 15) << 8) | s5) + 3; - this.f723c = i4; + this.f724c = i4; byte[] bArr = this.b.a; if (bArr.length < i4) { this.b.b(Math.min((int) InputDeviceCompat.SOURCE_TOUCHSCREEN, Math.max(i4, bArr.length * 2))); } } } else { - int min2 = Math.min(wVar.a(), this.f723c - this.d); + int min2 = Math.min(wVar.a(), this.f724c - this.d); wVar.e(this.b.a, this.d, min2); int i5 = this.d + min2; this.d = i5; - int i6 = this.f723c; + int i6 = this.f724c; if (i5 != i6) { continue; } else { @@ -89,7 +89,7 @@ public final class d0 implements i0 { this.f = true; return; } - this.b.C(this.f723c - 4); + this.b.C(this.f724c - 4); } else { this.b.C(i6); } diff --git a/app/src/main/java/c/i/a/c/a2/j0/e0.java b/app/src/main/java/c/i/a/c/a2/j0/e0.java index 5017409c07..6a6c325d5e 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/e0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/e0.java @@ -1,9 +1,9 @@ package c.i.a.c.a2.j0; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.a2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.List; /* compiled from: SeiReader */ @@ -23,7 +23,7 @@ public final class e0 { Format format = this.a.get(i); String str = format.t; boolean z2 = "application/cea-608".equals(str) || "application/cea-708".equals(str); - AnimatableValueParser.n(z2, "Invalid closed caption mime type provided: " + str); + d.n(z2, "Invalid closed caption mime type provided: " + str); String str2 = format.i; if (str2 == null) { str2 = dVar.b(); @@ -32,7 +32,7 @@ public final class e0 { bVar.a = str2; bVar.k = str; bVar.d = format.l; - bVar.f2278c = format.k; + bVar.f2281c = format.k; bVar.C = format.L; bVar.m = format.v; p.e(bVar.a()); diff --git a/app/src/main/java/c/i/a/c/a2/j0/f.java b/app/src/main/java/c/i/a/c/a2/j0/f.java index 1258cd939d..2866680cde 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/f.java +++ b/app/src/main/java/c/i/a/c/a2/j0/f.java @@ -15,7 +15,7 @@ public final class f implements h { public final w b = new w(2786); /* renamed from: c reason: collision with root package name */ - public boolean f724c; + public boolean f725c; static { a aVar = a.a; @@ -85,9 +85,9 @@ public final class f implements h { } this.b.D(0); this.b.C(read); - if (!this.f724c) { + if (!this.f725c) { this.a.l = 0; - this.f724c = true; + this.f725c = true; } this.a.b(this.b); return 0; @@ -102,7 +102,7 @@ public final class f implements h { @Override // c.i.a.c.a2.h public void g(long j, long j2) { - this.f724c = false; + this.f725c = false; this.a.c(); } diff --git a/app/src/main/java/c/i/a/c/a2/j0/f0.java b/app/src/main/java/c/i/a/c/a2/j0/f0.java index d3193b0f77..ea94ad9885 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/f0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/f0.java @@ -1,10 +1,10 @@ package c.i.a.c.a2.j0; +import c.c.a.a0.d; import c.i.a.c.a2.a; import c.i.a.c.a2.i; import c.i.a.c.i2.e0; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; /* compiled from: TsBinarySearchSeeker */ public final class f0 extends c.i.a.c.a2.a { @@ -15,11 +15,11 @@ public final class f0 extends c.i.a.c.a2.a { public final w b = new w(); /* renamed from: c reason: collision with root package name */ - public final int f725c; + public final int f726c; public final int d; public a(int i, e0 e0Var, int i2) { - this.f725c = i; + this.f726c = i; this.a = e0Var; this.d = i2; } @@ -36,7 +36,7 @@ public final class f0 extends c.i.a.c.a2.a { this.b.z(min); iVar.n(this.b.a, 0, min); w wVar = this.b; - int i = wVar.f920c; + int i = wVar.f921c; long j2 = -1; long j3 = -1; long j4 = -9223372036854775807L; @@ -50,9 +50,9 @@ public final class f0 extends c.i.a.c.a2.a { if (i3 > i) { break; } - long n2 = AnimatableValueParser.n2(wVar, i2, this.f725c); - if (n2 != -9223372036854775807L) { - long b = this.a.b(n2); + long K1 = d.K1(wVar, i2, this.f726c); + if (K1 != -9223372036854775807L) { + long b = this.a.b(K1); if (b > j) { return j4 == -9223372036854775807L ? a.e.a(b, position) : a.e.b(position + j3); } diff --git a/app/src/main/java/c/i/a/c/a2/j0/g.java b/app/src/main/java/c/i/a/c/a2/j0/g.java index f14c36b3a3..7f412e7e65 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/g.java +++ b/app/src/main/java/c/i/a/c/a2/j0/g.java @@ -1,13 +1,13 @@ package c.i.a.c.a2.j0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.f0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; import c.i.a.c.v1.l; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; /* compiled from: Ac3Reader */ public final class g implements o { @@ -16,7 +16,7 @@ public final class g implements o { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f726c; + public final String f727c; public String d; public c.i.a.c.a2.w e; public int f = 0; @@ -31,7 +31,7 @@ public final class g implements o { v vVar = new v(new byte[128]); this.a = vVar; this.b = new w(vVar.a); - this.f726c = str; + this.f727c = str; } /* JADX WARNING: Removed duplicated region for block: B:120:0x0209 */ @@ -52,7 +52,7 @@ public final class g implements o { int i11; int i12; boolean z2; - AnimatableValueParser.H(this.e); + d.H(this.e); while (wVar.a() > 0) { int i13 = this.f; if (i13 == 0) { @@ -108,7 +108,7 @@ public final class g implements o { i3 = (vVar.g(11) + 1) * 2; int g2 = vVar.g(2); if (g2 == 3) { - i5 = l.f999c[vVar.g(2)]; + i5 = l.f1000c[vVar.g(2)]; i7 = 6; i6 = 3; } else { @@ -313,9 +313,9 @@ public final class g implements o { Format.b bVar = new Format.b(); bVar.a = this.d; bVar.k = str; - bVar.f2280x = i; - bVar.f2281y = i15; - bVar.f2278c = this.f726c; + bVar.f2283x = i; + bVar.f2284y = i15; + bVar.f2281c = this.f727c; Format a2 = bVar.a(); this.j = a2; this.e.e(a2); diff --git a/app/src/main/java/c/i/a/c/a2/j0/g0.java b/app/src/main/java/c/i/a/c/a2/j0/g0.java index 0c3a37a268..ec4fe0453d 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/g0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/g0.java @@ -10,7 +10,7 @@ public final class g0 { public final e0 b = new e0(0); /* renamed from: c reason: collision with root package name */ - public final w f727c = new w(); + public final w f728c = new w(); public boolean d; public boolean e; public boolean f; @@ -23,7 +23,7 @@ public final class g0 { } public final int a(i iVar) { - this.f727c.A(f0.f); + this.f728c.A(f0.f); this.d = true; iVar.k(); return 0; diff --git a/app/src/main/java/c/i/a/c/a2/j0/h.java b/app/src/main/java/c/i/a/c/a2/j0/h.java index 1c32077f62..7eea1eef41 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/h.java +++ b/app/src/main/java/c/i/a/c/a2/j0/h.java @@ -13,7 +13,7 @@ public final class h implements c.i.a.c.a2.h { public final w b = new w(16384); /* renamed from: c reason: collision with root package name */ - public boolean f728c; + public boolean f729c; static { b bVar = b.a; @@ -94,9 +94,9 @@ public final class h implements c.i.a.c.a2.h { } this.b.D(0); this.b.C(read); - if (!this.f728c) { + if (!this.f729c) { this.a.m = 0; - this.f728c = true; + this.f729c = true; } this.a.b(this.b); return 0; @@ -111,7 +111,7 @@ public final class h implements c.i.a.c.a2.h { @Override // c.i.a.c.a2.h public void g(long j, long j2) { - this.f728c = false; + this.f729c = false; this.a.c(); } diff --git a/app/src/main/java/c/i/a/c/a2/j0/h0.java b/app/src/main/java/c/i/a/c/a2/j0/h0.java index 787c4e25a6..d036d6d958 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/h0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/h0.java @@ -3,6 +3,7 @@ package c.i.a.c.a2.j0; import android.util.SparseArray; import android.util.SparseBooleanArray; import android.util.SparseIntArray; +import c.c.a.a0.d; import c.i.a.c.a2.h; import c.i.a.c.a2.i; import c.i.a.c.a2.j; @@ -13,7 +14,6 @@ import c.i.a.c.i2.e0; import c.i.a.c.i2.f0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ParserException; import java.io.IOException; import java.util.ArrayList; @@ -26,7 +26,7 @@ public final class h0 implements h { public final int b; /* renamed from: c reason: collision with root package name */ - public final List f729c; + public final List f730c; public final w d; public final SparseIntArray e; public final i0.c f; @@ -44,7 +44,7 @@ public final class h0 implements h { public int r; /* renamed from: s reason: collision with root package name */ - public int f730s; + public int f731s; /* compiled from: TsExtractor */ public class a implements c0 { @@ -91,7 +91,7 @@ public final class h0 implements h { public final SparseArray b = new SparseArray<>(); /* renamed from: c reason: collision with root package name */ - public final SparseIntArray f731c = new SparseIntArray(); + public final SparseIntArray f732c = new SparseIntArray(); public final int d; public b(int i) { @@ -121,10 +121,10 @@ public final class h0 implements h { h0 h0Var = h0.this; int i5 = h0Var.a; if (i5 == 1 || i5 == 2 || h0Var.m == 1) { - e0Var = h0Var.f729c.get(0); + e0Var = h0Var.f730c.get(0); } else { - e0Var = new e0(h0Var.f729c.get(0).c()); - h0.this.f729c.add(e0Var); + e0Var = new e0(h0Var.f730c.get(0).c()); + h0.this.f730c.add(e0Var); } if ((wVar.s() & 128) != 0) { wVar.E(1); @@ -134,7 +134,7 @@ public final class h0 implements h { wVar.d(this.a, 2); this.a.m(3); int i7 = 13; - h0.this.f730s = this.a.g(13); + h0.this.f731s = this.a.g(13); wVar.d(this.a, 2); int i8 = 4; this.a.m(4); @@ -150,7 +150,7 @@ public final class h0 implements h { h0Var4.q.a(e0Var, h0Var4.l, new i0.d(x2, 21, 8192)); } this.b.clear(); - this.f731c.clear(); + this.f732c.clear(); int a = wVar.a(); while (a > 0) { int i11 = 5; @@ -311,19 +311,19 @@ public final class h0 implements h { i0Var = h0Var6.q; if (h0.this.a != 2) { i2 = g2; - if (i2 >= this.f731c.get(i16, 8192)) { + if (i2 >= this.f732c.get(i16, 8192)) { } } else { i2 = g2; } - this.f731c.put(i16, i2); + this.f732c.put(i16, i2); this.b.put(i16, i0Var); } } i0Var = h0Var6.f.a(g, bVar2); if (h0.this.a != 2) { } - this.f731c.put(i16, i2); + this.f732c.put(i16, i2); this.b.put(i16, i0Var); } e0Var = e0Var; @@ -336,11 +336,11 @@ public final class h0 implements h { } int i17 = x2; e0 e0Var4 = e0Var; - int size = this.f731c.size(); + int size = this.f732c.size(); int i18 = 0; while (i18 < size) { - int keyAt = this.f731c.keyAt(i18); - int valueAt = this.f731c.valueAt(i18); + int keyAt = this.f732c.keyAt(i18); + int valueAt = this.f732c.valueAt(i18); h0.this.h.put(keyAt, true); h0.this.i.put(valueAt, true); i0 valueAt2 = this.b.valueAt(i18); @@ -397,10 +397,10 @@ public final class h0 implements h { this.b = i3; this.a = i; if (i == 1 || i == 2) { - this.f729c = Collections.singletonList(e0Var); + this.f730c = Collections.singletonList(e0Var); } else { ArrayList arrayList = new ArrayList(); - this.f729c = arrayList; + this.f730c = arrayList; arrayList.add(e0Var); } this.d = new w(new byte[9400], 0); @@ -411,7 +411,7 @@ public final class h0 implements h { this.g = sparseArray; this.e = new SparseIntArray(); this.j = new g0(i3); - this.f730s = -1; + this.f731s = -1; sparseBooleanArray.clear(); sparseArray.clear(); SparseArray b2 = lVar.b(); @@ -466,7 +466,7 @@ public final class h0 implements h { if ((b2 == -1 || this.a == 2) ? false : true) { g0 g0Var = this.j; if (!g0Var.d) { - int i3 = this.f730s; + int i3 = this.f731s; if (i3 <= 0) { g0Var.a(iVar); return 0; @@ -478,20 +478,20 @@ public final class h0 implements h { if (iVar.getPosition() != j2) { sVar.a = j2; } else { - g0Var.f727c.z(min); + g0Var.f728c.z(min); iVar.k(); - iVar.n(g0Var.f727c.a, 0, min); - w wVar = g0Var.f727c; + iVar.n(g0Var.f728c.a, 0, min); + w wVar = g0Var.f728c; int i4 = wVar.b; - int i5 = wVar.f920c; + int i5 = wVar.f921c; while (true) { i5--; if (i5 < i4) { break; } else if (wVar.a[i5] == 71) { - long n2 = AnimatableValueParser.n2(wVar, i5, i3); - if (n2 != -9223372036854775807L) { - j = n2; + long K1 = d.K1(wVar, i5, i3); + if (K1 != -9223372036854775807L) { + j = K1; break; } } @@ -509,20 +509,20 @@ public final class h0 implements h { if (iVar.getPosition() != j3) { sVar.a = j3; } else { - g0Var.f727c.z(min2); + g0Var.f728c.z(min2); iVar.k(); - iVar.n(g0Var.f727c.a, 0, min2); - w wVar2 = g0Var.f727c; + iVar.n(g0Var.f728c.a, 0, min2); + w wVar2 = g0Var.f728c; int i6 = wVar2.b; - int i7 = wVar2.f920c; + int i7 = wVar2.f921c; while (true) { if (i6 >= i7) { break; } if (wVar2.a[i6] == 71) { - long n22 = AnimatableValueParser.n2(wVar2, i6, i3); - if (n22 != -9223372036854775807L) { - j = n22; + long K12 = d.K1(wVar2, i6, i3); + if (K12 != -9223372036854775807L) { + j = K12; break; } } @@ -550,7 +550,7 @@ public final class h0 implements h { g0 g0Var2 = this.j; long j5 = g0Var2.i; if (j5 != -9223372036854775807L) { - f0 f0Var = new f0(g0Var2.b, j5, b2, this.f730s, this.b); + f0 f0Var = new f0(g0Var2.b, j5, b2, this.f731s, this.b); this.k = f0Var; this.l.a(f0Var.a); } else { @@ -597,7 +597,7 @@ public final class h0 implements h { z2 = true; break; } - int i8 = this.d.f920c; + int i8 = this.d.f921c; int read = iVar.read(bArr, i8, 9400 - i8); i = -1; if (read == -1) { @@ -611,7 +611,7 @@ public final class h0 implements h { } w wVar4 = this.d; int i9 = wVar4.b; - int i10 = wVar4.f920c; + int i10 = wVar4.f921c; byte[] bArr2 = wVar4.a; int i11 = i9; while (i11 < i10 && bArr2[i11] != 71) { @@ -631,7 +631,7 @@ public final class h0 implements h { this.r = r3; } w wVar5 = this.d; - int i14 = wVar5.f920c; + int i14 = wVar5.f921c; if (i12 > i14) { return r3; } @@ -701,14 +701,14 @@ public final class h0 implements h { @Override // c.i.a.c.a2.h public void g(long j, long j2) { f0 f0Var; - AnimatableValueParser.D(this.a != 2); - int size = this.f729c.size(); + d.D(this.a != 2); + int size = this.f730c.size(); for (int i = 0; i < size; i++) { - e0 e0Var = this.f729c.get(i); + e0 e0Var = this.f730c.get(i); if ((e0Var.d() == -9223372036854775807L) || !(e0Var.d() == 0 || e0Var.c() == j2)) { synchronized (e0Var) { e0Var.a = j2; - e0Var.f910c = -9223372036854775807L; + e0Var.f911c = -9223372036854775807L; } } } diff --git a/app/src/main/java/c/i/a/c/a2/j0/i.java b/app/src/main/java/c/i/a/c/a2/j0/i.java index 4fa87c6e91..ab1b4b5f8b 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/i.java +++ b/app/src/main/java/c/i/a/c/a2/j0/i.java @@ -1,12 +1,12 @@ package c.i.a.c.a2.j0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; import c.i.a.c.v1.m; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; /* compiled from: Ac4Reader */ public final class i implements o { @@ -15,7 +15,7 @@ public final class i implements o { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f732c; + public final String f733c; public String d; public c.i.a.c.a2.w e; public int f = 0; @@ -31,7 +31,7 @@ public final class i implements o { v vVar = new v(new byte[16]); this.a = vVar; this.b = new w(vVar.a); - this.f732c = str; + this.f733c = str; } @Override // c.i.a.c.a2.j0.o @@ -39,7 +39,7 @@ public final class i implements o { int i; boolean z2; int s2; - AnimatableValueParser.H(this.e); + d.H(this.e); while (wVar.a() > 0) { int i2 = this.f; boolean z3 = true; @@ -89,15 +89,15 @@ public final class i implements o { Format.b bVar = new Format.b(); bVar.a = this.d; bVar.k = "audio/ac4"; - bVar.f2280x = 2; - bVar.f2281y = b.a; - bVar.f2278c = this.f732c; + bVar.f2283x = 2; + bVar.f2284y = b.a; + bVar.f2281c = this.f733c; Format a = bVar.a(); this.k = a; this.e.e(a); } this.l = b.b; - this.j = (((long) b.f1000c) * 1000000) / ((long) this.k.H); + this.j = (((long) b.f1001c) * 1000000) / ((long) this.k.H); this.b.D(0); this.e.c(this.b, 16); this.f = 2; diff --git a/app/src/main/java/c/i/a/c/a2/j0/i0.java b/app/src/main/java/c/i/a/c/a2/j0/i0.java index b96353c784..2a8384096e 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/i0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/i0.java @@ -29,13 +29,13 @@ public interface i0 { public final String b; /* renamed from: c reason: collision with root package name */ - public final List f733c; + public final List f734c; public final byte[] d; public b(int i, @Nullable String str, @Nullable List list, byte[] bArr) { this.a = i; this.b = str; - this.f733c = list == null ? Collections.emptyList() : Collections.unmodifiableList(list); + this.f734c = list == null ? Collections.emptyList() : Collections.unmodifiableList(list); this.d = bArr; } } @@ -52,7 +52,7 @@ public interface i0 { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f734c; + public final int f735c; public int d; public String e; @@ -65,14 +65,14 @@ public interface i0 { } this.a = str; this.b = i2; - this.f734c = i3; + this.f735c = i3; this.d = Integer.MIN_VALUE; this.e = ""; } public void a() { int i = this.d; - this.d = i == Integer.MIN_VALUE ? this.b : i + this.f734c; + this.d = i == Integer.MIN_VALUE ? this.b : i + this.f735c; this.e = this.a + this.d; } diff --git a/app/src/main/java/c/i/a/c/a2/j0/j.java b/app/src/main/java/c/i/a/c/a2/j0/j.java index aaeb294816..616714fdf2 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/j.java +++ b/app/src/main/java/c/i/a/c/a2/j0/j.java @@ -1,5 +1,6 @@ package c.i.a.c.a2.j0; +import c.c.a.a0.d; import c.i.a.c.a2.h; import c.i.a.c.a2.i; import c.i.a.c.a2.j0.i0; @@ -7,7 +8,6 @@ import c.i.a.c.a2.s; import c.i.a.c.a2.t; import c.i.a.c.i2.v; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; /* compiled from: AdtsExtractor */ public final class j implements h { @@ -15,7 +15,7 @@ public final class j implements h { public final w b = new w(2048); /* renamed from: c reason: collision with root package name */ - public final w f735c; + public final w f736c; public final v d; public c.i.a.c.a2.j e; public long f; @@ -30,20 +30,20 @@ public final class j implements h { public j(int i) { w wVar = new w(10); - this.f735c = wVar; + this.f736c = wVar; this.d = new v(wVar.a); } public final int a(i iVar) throws IOException { int i = 0; while (true) { - iVar.n(this.f735c.a, 0, 10); - this.f735c.D(0); - if (this.f735c.u() != 4801587) { + iVar.n(this.f736c.a, 0, 10); + this.f736c.D(0); + if (this.f736c.u() != 4801587) { break; } - this.f735c.E(3); - int r = this.f735c.r(); + this.f736c.E(3); + int r = this.f736c.r(); i += r + 10; iVar.g(r); } @@ -73,16 +73,16 @@ public final class j implements h { int i2 = 0; int i3 = 0; while (true) { - iVar.n(this.f735c.a, 0, 2); - this.f735c.D(0); - if (!k.g(this.f735c.x())) { + iVar.n(this.f736c.a, 0, 2); + this.f736c.D(0); + if (!k.g(this.f736c.x())) { break; } i2++; if (i2 >= 4 && i3 > 188) { return true; } - iVar.n(this.f735c.a, 0, 4); + iVar.n(this.f736c.a, 0, 4); this.d.k(14); int g = this.d.g(13); if (g <= 6) { @@ -97,7 +97,7 @@ public final class j implements h { @Override // c.i.a.c.a2.h public int e(i iVar, s sVar) throws IOException { - AnimatableValueParser.H(this.e); + d.H(this.e); iVar.b(); int read = iVar.read(this.b.a, 0, 2048); boolean z2 = read == -1; diff --git a/app/src/main/java/c/i/a/c/a2/j0/j0.java b/app/src/main/java/c/i/a/c/a2/j0/j0.java index 3a51798f68..7b896a3d88 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/j0.java +++ b/app/src/main/java/c/i/a/c/a2/j0/j0.java @@ -1,9 +1,9 @@ package c.i.a.c.a2.j0; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.a2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.List; /* compiled from: UserDataReader */ @@ -22,7 +22,7 @@ public final class j0 { int f2 = wVar.f(); int s2 = wVar.s(); if (f == 434 && f2 == 1195456820 && s2 == 3) { - AnimatableValueParser.M(j, wVar, this.b); + d.M(j, wVar, this.b); } } } @@ -34,12 +34,12 @@ public final class j0 { Format format = this.a.get(i); String str = format.t; boolean z2 = "application/cea-608".equals(str) || "application/cea-708".equals(str); - AnimatableValueParser.n(z2, "Invalid closed caption mime type provided: " + str); + d.n(z2, "Invalid closed caption mime type provided: " + str); Format.b bVar = new Format.b(); bVar.a = dVar.b(); bVar.k = str; bVar.d = format.l; - bVar.f2278c = format.k; + bVar.f2281c = format.k; bVar.C = format.L; bVar.m = format.v; p.e(bVar.a()); diff --git a/app/src/main/java/c/i/a/c/a2/j0/k.java b/app/src/main/java/c/i/a/c/a2/j0/k.java index 82a0b38e4a..674b176bff 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/k.java +++ b/app/src/main/java/c/i/a/c/a2/j0/k.java @@ -20,7 +20,7 @@ public final class k implements o { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final v f736c = new v(new byte[7]); + public final v f737c = new v(new byte[7]); public final w d = new w(Arrays.copyOf(a, 10)); @Nullable public final String e; @@ -39,7 +39,7 @@ public final class k implements o { public long r; /* renamed from: s reason: collision with root package name */ - public int f737s; + public int f738s; public long t; public c.i.a.c.a2.w u; public long v; @@ -81,7 +81,7 @@ public final class k implements o { if (i4 == 0) { byte[] bArr = wVar.a; int i7 = wVar.b; - int i8 = wVar.f920c; + int i8 = wVar.f921c; while (true) { if (i7 >= i8) { wVar.D(i7); @@ -95,15 +95,15 @@ public final class k implements o { } int i9 = i - 2; wVar.D(i9 + 1); - if (i(wVar, this.f736c.a, 1)) { - this.f736c.k(4); - int g = this.f736c.g(1); + if (i(wVar, this.f737c.a, 1)) { + this.f737c.k(4); + int g = this.f737c.g(1); int i10 = this.n; if (i10 == -1 || g == i10) { if (this.o != -1) { - if (i(wVar, this.f736c.a, 1)) { - this.f736c.k(i6); - if (this.f736c.g(4) == this.o) { + if (i(wVar, this.f737c.a, 1)) { + this.f737c.k(i6); + if (this.f737c.g(4) == this.o) { wVar.D(i9 + 2); } } @@ -112,12 +112,12 @@ public final class k implements o { break; } } - if (i(wVar, this.f736c.a, 4)) { - this.f736c.k(14); - int g2 = this.f736c.g(i5); + if (i(wVar, this.f737c.a, 4)) { + this.f737c.k(14); + int g2 = this.f737c.g(i5); if (g2 >= 7) { byte[] bArr2 = wVar.a; - int i11 = wVar.f920c; + int i11 = wVar.f921c; int i12 = i9 + g2; if (i12 < i11) { if (bArr2[i12] == -1) { @@ -144,7 +144,7 @@ public final class k implements o { if (i14 == 1075) { this.i = 2; this.j = a.length; - this.f737s = 0; + this.f738s = 0; this.d.D(0); wVar.D(i); break; @@ -174,36 +174,36 @@ public final class k implements o { } else if (i4 != 1) { if (i4 != 2) { if (i4 == 3) { - if (a(wVar, this.f736c.a, this.l ? 7 : 5)) { - this.f736c.k(0); + if (a(wVar, this.f737c.a, this.l ? 7 : 5)) { + this.f737c.k(0); if (!this.q) { - int g3 = this.f736c.g(2) + 1; + int g3 = this.f737c.g(2) + 1; if (g3 != 2) { Log.w("AdtsReader", "Detected audio object type: " + g3 + ", but assuming AAC LC."); g3 = 2; } - this.f736c.m(5); - int g4 = this.f736c.g(3); + this.f737c.m(5); + int g4 = this.f737c.g(3); int i15 = this.o; byte[] bArr3 = {(byte) (((g3 << 3) & 248) | ((i15 >> 1) & 7)), (byte) (((i15 << 7) & 128) | ((g4 << 3) & 120))}; k.b c2 = c.i.a.c.v1.k.c(new v(bArr3), false); Format.b bVar = new Format.b(); bVar.a = this.f; bVar.k = "audio/mp4a-latm"; - bVar.h = c2.f998c; - bVar.f2280x = c2.b; - bVar.f2281y = c2.a; + bVar.h = c2.f999c; + bVar.f2283x = c2.b; + bVar.f2284y = c2.a; bVar.m = Collections.singletonList(bArr3); - bVar.f2278c = this.e; + bVar.f2281c = this.e; Format a2 = bVar.a(); this.r = 1024000000 / ((long) a2.H); this.g.e(a2); this.q = true; } else { - this.f736c.m(10); + this.f737c.m(10); } - this.f736c.m(4); - int g5 = (this.f736c.g(13) - 2) - 5; + this.f737c.m(4); + int g5 = (this.f737c.g(13) - 2) - 5; if (this.l) { g5 -= 2; } @@ -213,14 +213,14 @@ public final class k implements o { this.j = 0; this.u = wVar2; this.v = j; - this.f737s = g5; + this.f738s = g5; } } else if (i4 == 4) { - int min = Math.min(wVar.a(), this.f737s - this.j); + int min = Math.min(wVar.a(), this.f738s - this.j); this.u.c(wVar, min); int i16 = this.j + min; this.j = i16; - int i17 = this.f737s; + int i17 = this.f738s; if (i16 == i17) { this.u.d(this.t, 1, i17, 0, null); this.t += this.v; @@ -237,13 +237,13 @@ public final class k implements o { this.j = 10; this.u = wVar3; this.v = 0; - this.f737s = this.d.r() + 10; + this.f738s = this.d.r() + 10; } } else if (wVar.a() != 0) { - v vVar = this.f736c; + v vVar = this.f737c; vVar.a[0] = wVar.a[wVar.b]; vVar.k(2); - int g6 = this.f736c.g(4); + int g6 = this.f737c.g(4); int i18 = this.o; if (i18 == -1 || g6 == i18) { if (!this.m) { diff --git a/app/src/main/java/c/i/a/c/a2/j0/l.java b/app/src/main/java/c/i/a/c/a2/j0/l.java index 38066c194c..e2497c1d07 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/l.java +++ b/app/src/main/java/c/i/a/c/a2/j0/l.java @@ -2,12 +2,12 @@ package c.i.a.c.a2.j0; import android.util.SparseArray; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j0.i0; import c.i.b.a.c; import c.i.b.b.a; import c.i.b.b.q0; import c.i.b.b.u; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.ArrayList; import java.util.Collections; @@ -41,7 +41,7 @@ public final class l implements i0.c { return new y(new s(new e0(c(bVar)))); } if (i == 89) { - return new y(new n(bVar.f733c)); + return new y(new n(bVar.f734c)); } if (i != 138) { if (i == 172) { @@ -122,7 +122,7 @@ public final class l implements i0.c { int i8 = bArr[i5] & 255 & 31; int i9 = 0; while (i9 < i8) { - String str2 = new String(bArr, i7, 3, c.f1276c); + String str2 = new String(bArr, i7, 3, c.f1277c); int i10 = i7 + 3; int i11 = i10 + 1; int i12 = bArr[i10] & 255; @@ -137,14 +137,14 @@ public final class l implements i0.c { int i13 = i11 + 1; byte b = (byte) (bArr[i11] & 255); int i14 = i13 + 1; - AnimatableValueParser.k(i14 >= 0 && i14 <= length); + d.k(i14 >= 0 && i14 <= length); List list = null; if (z3) { list = Collections.singletonList((b & 64) != 0 ? new byte[]{1} : new byte[]{0}); } Format.b bVar2 = new Format.b(); bVar2.k = str; - bVar2.f2278c = str2; + bVar2.f2281c = str2; bVar2.C = i; bVar2.m = list; arrayList.add(bVar2.a()); @@ -155,7 +155,7 @@ public final class l implements i0.c { if (i6 < 0 || i6 > length) { z2 = false; } - AnimatableValueParser.k(z2); + d.k(z2); i2 = i6; arrayList = arrayList; } diff --git a/app/src/main/java/c/i/a/c/a2/j0/m.java b/app/src/main/java/c/i/a/c/a2/j0/m.java index 8130993959..50ce54943c 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/m.java +++ b/app/src/main/java/c/i/a/c/a2/j0/m.java @@ -1,11 +1,11 @@ package c.i.a.c.a2.j0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.Arrays; /* compiled from: DtsReader */ @@ -15,7 +15,7 @@ public final class m implements o { public final String b; /* renamed from: c reason: collision with root package name */ - public String f738c; + public String f739c; public c.i.a.c.a2.w d; public int e = 0; public int f; @@ -51,7 +51,7 @@ public final class m implements o { int i8; boolean z3; boolean z4; - AnimatableValueParser.H(this.d); + d.H(this.d); while (wVar.a() > 0) { int i9 = this.e; int i10 = 8; @@ -98,7 +98,7 @@ public final class m implements o { if (i13 == 18) { byte[] bArr3 = this.a.a; if (this.i == null) { - String str = this.f738c; + String str = this.f739c; String str2 = this.b; if (bArr3[0] == Byte.MAX_VALUE) { vVar = new v(bArr3); @@ -118,8 +118,8 @@ public final class m implements o { while (vVar3.b() >= 16) { vVar3.m(i11); int g = vVar3.g(14) & 16383; - int min2 = Math.min(8 - vVar2.f919c, 14); - int i16 = vVar2.f919c; + int min2 = Math.min(8 - vVar2.f920c, 14); + int i16 = vVar2.f920c; int i17 = (8 - i16) - min2; byte[] bArr4 = vVar2.a; int i18 = vVar2.b; @@ -146,7 +146,7 @@ public final class m implements o { int length = copyOf.length; vVar2.a = copyOf; vVar2.b = 0; - vVar2.f919c = 0; + vVar2.f920c = 0; vVar2.d = length; vVar = vVar2; } @@ -154,7 +154,7 @@ public final class m implements o { int i22 = c.i.a.c.v1.w.a[vVar.g(6)]; int i23 = c.i.a.c.v1.w.b[vVar.g(4)]; int g2 = vVar.g(5); - int[] iArr = c.i.a.c.v1.w.f1011c; + int[] iArr = c.i.a.c.v1.w.f1012c; if (g2 >= iArr.length) { i8 = -1; i7 = 2; @@ -168,10 +168,10 @@ public final class m implements o { bVar.a = str; bVar.k = "audio/vnd.dts"; bVar.f = i8; - bVar.f2280x = i24; - bVar.f2281y = i23; + bVar.f2283x = i24; + bVar.f2284y = i23; bVar.n = null; - bVar.f2278c = str2; + bVar.f2281c = str2; Format a = bVar.a(); this.i = a; this.d.e(a); @@ -271,7 +271,7 @@ public final class m implements o { @Override // c.i.a.c.a2.j0.o public void e(j jVar, i0.d dVar) { dVar.a(); - this.f738c = dVar.b(); + this.f739c = dVar.b(); this.d = jVar.p(dVar.c(), 1); } diff --git a/app/src/main/java/c/i/a/c/a2/j0/n.java b/app/src/main/java/c/i/a/c/a2/j0/n.java index ecffbf0bbb..579712ef31 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/n.java +++ b/app/src/main/java/c/i/a/c/a2/j0/n.java @@ -12,7 +12,7 @@ public final class n implements o { public final w[] b; /* renamed from: c reason: collision with root package name */ - public boolean f739c; + public boolean f740c; public int d; public int e; public long f; @@ -27,15 +27,15 @@ public final class n implements o { return false; } if (wVar.s() != i) { - this.f739c = false; + this.f740c = false; } this.d--; - return this.f739c; + return this.f740c; } @Override // c.i.a.c.a2.j0.o public void b(c.i.a.c.i2.w wVar) { - if (!this.f739c) { + if (!this.f740c) { return; } if (this.d != 2 || a(wVar, 32)) { @@ -54,16 +54,16 @@ public final class n implements o { @Override // c.i.a.c.a2.j0.o public void c() { - this.f739c = false; + this.f740c = false; } @Override // c.i.a.c.a2.j0.o public void d() { - if (this.f739c) { + if (this.f740c) { for (w wVar : this.b) { wVar.d(this.f, 1, this.e, 0, null); } - this.f739c = false; + this.f740c = false; } } @@ -77,7 +77,7 @@ public final class n implements o { bVar.a = dVar.b(); bVar.k = "application/dvbsubs"; bVar.m = Collections.singletonList(aVar.b); - bVar.f2278c = aVar.a; + bVar.f2281c = aVar.a; p.e(bVar.a()); this.b[i] = p; } @@ -86,7 +86,7 @@ public final class n implements o { @Override // c.i.a.c.a2.j0.o public void f(long j, int i) { if ((i & 4) != 0) { - this.f739c = true; + this.f740c = true; this.f = j; this.e = 0; this.d = 2; diff --git a/app/src/main/java/c/i/a/c/a2/j0/p.java b/app/src/main/java/c/i/a/c/a2/j0/p.java index fc1fbaae7a..d4ae92240a 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/p.java +++ b/app/src/main/java/c/i/a/c/a2/j0/p.java @@ -2,12 +2,12 @@ package c.i.a.c.a2.j0; import android.util.Pair; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.a2.w; import c.i.a.c.i2.f0; import c.i.a.c.i2.u; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.Arrays; import java.util.Collections; @@ -18,7 +18,7 @@ public final class p implements o { public String b; /* renamed from: c reason: collision with root package name */ - public w f740c; + public w f741c; @Nullable public final j0 d; @Nullable @@ -43,7 +43,7 @@ public final class p implements o { public boolean b; /* renamed from: c reason: collision with root package name */ - public int f741c; + public int f742c; public int d; public byte[] e; @@ -56,12 +56,12 @@ public final class p implements o { int i3 = i2 - i; byte[] bArr2 = this.e; int length = bArr2.length; - int i4 = this.f741c; + int i4 = this.f742c; if (length < i4 + i3) { this.e = Arrays.copyOf(bArr2, (i4 + i3) * 2); } - System.arraycopy(bArr, i, this.e, this.f741c, i3); - this.f741c += i3; + System.arraycopy(bArr, i, this.e, this.f742c, i3); + this.f742c += i3; } } } @@ -101,12 +101,12 @@ public final class p implements o { long j2; int i6; float f2; - AnimatableValueParser.H(this.f740c); + d.H(this.f741c); int i7 = wVar.b; - int i8 = wVar.f920c; + int i8 = wVar.f921c; byte[] bArr = wVar.a; this.i += (long) wVar.a(); - this.f740c.c(wVar, wVar.a()); + this.f741c.c(wVar, wVar.a()); while (true) { int b = u.b(bArr, i7, i8, this.g); if (b == i8) { @@ -122,8 +122,8 @@ public final class p implements o { int i12 = i11 < 0 ? -i11 : 0; a aVar = this.h; if (aVar.b) { - int i13 = aVar.f741c - i12; - aVar.f741c = i13; + int i13 = aVar.f742c - i12; + aVar.f742c = i13; if (aVar.d == 0 && i10 == 181) { aVar.d = i13; } else { @@ -133,7 +133,7 @@ public final class p implements o { a aVar2 = this.h; String str = this.b; Objects.requireNonNull(str); - byte[] copyOf = Arrays.copyOf(aVar2.e, aVar2.f741c); + byte[] copyOf = Arrays.copyOf(aVar2.e, aVar2.f742c); int i14 = copyOf[5] & 255; int i15 = ((copyOf[4] & 255) << 4) | (i14 >> 4); int i16 = ((i14 & 15) << 8) | (copyOf[6] & 255); @@ -172,7 +172,7 @@ public final class p implements o { } j2 = (long) (1000000.0d / d); Pair create = Pair.create(a2, Long.valueOf(j2)); - this.f740c.e((Format) create.first); + this.f741c.e((Format) create.first); this.l = ((Long) create.second).longValue(); this.k = true; wVar2 = this.f; @@ -201,7 +201,7 @@ public final class p implements o { if (i3 != 0 || i3 == 179) { int i22 = i8 - b; if (this.j && this.q && this.k) { - this.f740c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); + this.f741c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); } z2 = this.j; if (z2 || this.q) { @@ -226,7 +226,7 @@ public final class p implements o { i2 = i9; j2 = 0; Pair create = Pair.create(a2, Long.valueOf(j2)); - this.f740c.e((Format) create.first); + this.f741c.e((Format) create.first); this.l = ((Long) create.second).longValue(); this.k = true; wVar2 = this.f; @@ -235,7 +235,7 @@ public final class p implements o { if (i3 != 0) { } int i22 = i8 - b; - this.f740c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); + this.f741c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); z2 = this.j; if (z2) { } @@ -269,7 +269,7 @@ public final class p implements o { i2 = i9; j2 = 0; Pair create = Pair.create(a2, Long.valueOf(j2)); - this.f740c.e((Format) create.first); + this.f741c.e((Format) create.first); this.l = ((Long) create.second).longValue(); this.k = true; wVar2 = this.f; @@ -278,7 +278,7 @@ public final class p implements o { if (i3 != 0) { } int i22 = i8 - b; - this.f740c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); + this.f741c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); z2 = this.j; if (z2) { } @@ -311,7 +311,7 @@ public final class p implements o { if (i3 != 0) { } int i22 = i8 - b; - this.f740c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); + this.f741c.d(this.o, this.p ? 1 : 0, ((int) (this.i - this.n)) - i22, i22, null); z2 = this.j; if (z2) { } @@ -340,7 +340,7 @@ public final class p implements o { u.a(this.g); a aVar = this.h; aVar.b = false; - aVar.f741c = 0; + aVar.f742c = 0; aVar.d = 0; w wVar = this.f; if (wVar != null) { @@ -358,7 +358,7 @@ public final class p implements o { public void e(j jVar, i0.d dVar) { dVar.a(); this.b = dVar.b(); - this.f740c = jVar.p(dVar.c(), 2); + this.f741c = jVar.p(dVar.c(), 2); j0 j0Var = this.d; if (j0Var != null) { j0Var.b(jVar, dVar); diff --git a/app/src/main/java/c/i/a/c/a2/j0/q.java b/app/src/main/java/c/i/a/c/a2/j0/q.java index 46f07a6cf6..f89af0922b 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/q.java +++ b/app/src/main/java/c/i/a/c/a2/j0/q.java @@ -2,13 +2,13 @@ package c.i.a.c.a2.j0; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.f0; import c.i.a.c.i2.u; import c.i.a.c.i2.v; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.Arrays; import java.util.Collections; @@ -21,7 +21,7 @@ public final class q implements o { @Nullable /* renamed from: c reason: collision with root package name */ - public final w f742c = new w(); + public final w f743c = new w(); public final boolean[] d = new boolean[4]; public final a e = new a(128); @Nullable @@ -39,7 +39,7 @@ public final class q implements o { public boolean b; /* renamed from: c reason: collision with root package name */ - public int f743c; + public int f744c; public int d; public int e; public byte[] f; @@ -65,7 +65,7 @@ public final class q implements o { public void b() { this.b = false; this.d = 0; - this.f743c = 0; + this.f744c = 0; } } @@ -75,7 +75,7 @@ public final class q implements o { public boolean b; /* renamed from: c reason: collision with root package name */ - public boolean f744c; + public boolean f745c; public boolean d; public int e; public int f; @@ -87,12 +87,12 @@ public final class q implements o { } public void a(byte[] bArr, int i, int i2) { - if (this.f744c) { + if (this.f745c) { int i3 = this.f; int i4 = (i + 1) - i3; if (i4 < i2) { this.d = ((bArr[i4] & 192) >> 6) == 0; - this.f744c = false; + this.f745c = false; return; } this.f = (i2 - i) + i3; @@ -123,10 +123,10 @@ public final class q implements o { int i3; boolean z2; float f; - AnimatableValueParser.H(this.g); - AnimatableValueParser.H(this.j); + d.H(this.g); + d.H(this.j); int i4 = wVar.b; - int i5 = wVar.f920c; + int i5 = wVar.f921c; byte[] bArr = wVar.a; this.h += (long) wVar.a(); this.j.c(wVar, wVar.a()); @@ -153,7 +153,7 @@ public final class q implements o { } int i9 = i8 < 0 ? -i8 : 0; a aVar = this.e; - int i10 = aVar.f743c; + int i10 = aVar.f744c; if (i10 != 0) { if (i10 != 1) { if (i10 != 2) { @@ -252,10 +252,10 @@ public final class q implements o { if (this.f.b(i3)) { w wVar5 = this.f; int e = u.e(wVar5.d, wVar5.e); - w wVar6 = this.f742c; + w wVar6 = this.f743c; int i14 = f0.a; wVar6.B(this.f.d, e); - this.b.a(this.l, this.f742c); + this.b.a(this.l, this.f743c); } if (i7 == 178) { if (wVar.a[b2 + 2] == 1) { @@ -276,7 +276,7 @@ public final class q implements o { bVar3.e = i7; bVar3.d = false; bVar3.b = i7 != 182 || i7 == 179; - bVar3.f744c = i7 == 182; + bVar3.f745c = i7 == 182; bVar3.f = 0; bVar3.h = j2; i5 = i2; @@ -295,7 +295,7 @@ public final class q implements o { bVar3.e = i7; bVar3.d = false; bVar3.b = i7 != 182 || i7 == 179; - bVar3.f744c = i7 == 182; + bVar3.f745c = i7 == 182; bVar3.f = 0; bVar3.h = j2; i5 = i2; @@ -346,7 +346,7 @@ public final class q implements o { bVar3.e = i7; bVar3.d = false; bVar3.b = i7 != 182 || i7 == 179; - bVar3.f744c = i7 == 182; + bVar3.f745c = i7 == 182; bVar3.f = 0; bVar3.h = j2; i5 = i2; @@ -396,7 +396,7 @@ public final class q implements o { bVar3.e = i7; bVar3.d = false; bVar3.b = i7 != 182 || i7 == 179; - bVar3.f744c = i7 == 182; + bVar3.f745c = i7 == 182; bVar3.f = 0; bVar3.h = j2; i5 = i2; @@ -408,22 +408,22 @@ public final class q implements o { aVar.b(); } else { aVar.e = aVar.d; - aVar.f743c = 4; + aVar.f744c = 4; } } else if (i7 > 31) { Log.w("H263Reader", "Unexpected start code value"); aVar.b(); } else { - aVar.f743c = 3; + aVar.f744c = 3; } } else if (i7 != 181) { Log.w("H263Reader", "Unexpected start code value"); aVar.b(); } else { - aVar.f743c = 2; + aVar.f744c = 2; } } else if (i7 == 176) { - aVar.f743c = 1; + aVar.f744c = 1; aVar.b = true; } byte[] bArr2 = a.a; @@ -450,7 +450,7 @@ public final class q implements o { bVar3.e = i7; bVar3.d = false; bVar3.b = i7 != 182 || i7 == 179; - bVar3.f744c = i7 == 182; + bVar3.f745c = i7 == 182; bVar3.f = 0; bVar3.h = j2; i5 = i2; @@ -465,7 +465,7 @@ public final class q implements o { b bVar = this.g; if (bVar != null) { bVar.b = false; - bVar.f744c = false; + bVar.f745c = false; bVar.d = false; bVar.e = -1; } diff --git a/app/src/main/java/c/i/a/c/a2/j0/r.java b/app/src/main/java/c/i/a/c/a2/j0/r.java index 56ff6c16cb..265926f4f1 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/r.java +++ b/app/src/main/java/c/i/a/c/a2/j0/r.java @@ -2,6 +2,7 @@ package c.i.a.c.a2.j0; import android.util.SparseArray; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.a2.w; @@ -9,7 +10,6 @@ import c.i.a.c.i2.f0; import c.i.a.c.i2.h; import c.i.a.c.i2.u; import c.i.a.c.i2.x; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.ArrayList; import java.util.Arrays; @@ -20,7 +20,7 @@ public final class r implements o { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final boolean f745c; + public final boolean f746c; public final w d = new w(7, 128); public final w e = new w(8, 128); public final w f = new w(6, 128); @@ -40,7 +40,7 @@ public final class r implements o { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final boolean f746c; + public final boolean f747c; public final SparseArray d = new SparseArray<>(); public final SparseArray e = new SparseArray<>(); public final x f; @@ -64,7 +64,7 @@ public final class r implements o { @Nullable /* renamed from: c reason: collision with root package name */ - public u.b f747c; + public u.b f748c; public int d; public int e; public int f; @@ -86,7 +86,7 @@ public final class r implements o { public b(w wVar, boolean z2, boolean z3) { this.a = wVar; this.b = z2; - this.f746c = z3; + this.f747c = z3; byte[] bArr = new byte[128]; this.g = bArr; this.f = new x(bArr, 0, 0); @@ -101,7 +101,7 @@ public final class r implements o { public r(e0 e0Var, boolean z2, boolean z3) { this.a = e0Var; this.b = z2; - this.f745c = z3; + this.f746c = z3; } /* JADX WARNING: Removed duplicated region for block: B:44:0x011e */ @@ -124,7 +124,7 @@ public final class r implements o { int i8; int i9; int i10; - if (!this.l || this.k.f746c) { + if (!this.l || this.k.f747c) { this.d.a(bArr, i, i2); this.e.a(bArr, i, i2); } @@ -150,7 +150,7 @@ public final class r implements o { bVar.f.f(); if (bVar.f.c()) { int f = bVar.f.f(); - if (!bVar.f746c) { + if (!bVar.f747c) { bVar.k = false; b.a aVar = bVar.n; aVar.e = f; @@ -194,7 +194,7 @@ public final class r implements o { i9 = 0; } else if (bVar.f.c()) { i9 = bVar.f.g(); - if (aVar2.f917c && !z4) { + if (aVar2.f918c && !z4) { if (bVar.f.c()) { i7 = bVar.f.g(); i5 = 0; @@ -213,7 +213,7 @@ public final class r implements o { i5 = 0; } else if (bVar.f.b(bVar2.l)) { i8 = bVar.f.e(bVar2.l); - if (!aVar2.f917c || z4) { + if (!aVar2.f918c || z4) { i10 = 0; } else if (bVar.f.c()) { i10 = bVar.f.g(); @@ -227,7 +227,7 @@ public final class r implements o { return; } b.a aVar3 = bVar.n; - aVar3.f747c = bVar2; + aVar3.f748c = bVar2; aVar3.d = e; aVar3.e = f; aVar3.f = e2; @@ -260,7 +260,7 @@ public final class r implements o { if (i4 == 0) { } b.a aVar3 = bVar.n; - aVar3.f747c = bVar2; + aVar3.f748c = bVar2; aVar3.d = e; aVar3.e = f; aVar3.f = e2; @@ -324,10 +324,10 @@ public final class r implements o { b bVar2; int i2; boolean z3; - AnimatableValueParser.H(this.j); + d.H(this.j); int i3 = f0.a; int i4 = wVar.b; - int i5 = wVar.f920c; + int i5 = wVar.f921c; byte[] bArr2 = wVar.a; this.g += (long) wVar.a(); this.j.c(wVar, wVar.a()); @@ -347,26 +347,26 @@ public final class r implements o { long j = this.g - ((long) i9); int i10 = i8 < 0 ? -i8 : 0; long j2 = this.m; - if (!this.l || this.k.f746c) { + if (!this.l || this.k.f747c) { this.d.b(i10); this.e.b(i10); if (this.l) { i = i5; bArr = bArr2; w wVar2 = this.d; - if (wVar2.f754c) { + if (wVar2.f755c) { u.b d = u.d(wVar2.d, 3, wVar2.e); this.k.d.append(d.d, d); this.d.c(); } else { w wVar3 = this.e; - if (wVar3.f754c) { + if (wVar3.f755c) { u.a c2 = u.c(wVar3.d, 3, wVar3.e); this.k.e.append(c2.a, c2); this.e.c(); } } - } else if (this.d.f754c && this.e.f754c) { + } else if (this.d.f755c && this.e.f755c) { ArrayList arrayList = new ArrayList(); w wVar4 = this.d; arrayList.add(Arrays.copyOf(wVar4.d, wVar4.e)); @@ -377,7 +377,7 @@ public final class r implements o { w wVar7 = this.e; u.a c3 = u.c(wVar7.d, 3, wVar7.e); i = i5; - String a2 = h.a(d2.a, d2.b, d2.f918c); + String a2 = h.a(d2.a, d2.b, d2.f919c); w wVar8 = this.j; Format.b bVar3 = new Format.b(); bArr = bArr2; @@ -399,21 +399,21 @@ public final class r implements o { w wVar9 = this.f; this.o.B(this.f.d, u.e(wVar9.d, wVar9.e)); this.o.D(4); - AnimatableValueParser.L(j2, this.o, this.a.b); + d.L(j2, this.o, this.a.b); } bVar = this.k; boolean z4 = this.l; boolean z5 = this.n; if (bVar.i != 9) { - if (bVar.f746c) { + if (bVar.f747c) { b.a aVar = bVar.n; b.a aVar2 = bVar.m; if (aVar.a) { if (aVar2.a) { - u.b bVar4 = aVar.f747c; - AnimatableValueParser.H(bVar4); - u.b bVar5 = aVar2.f747c; - AnimatableValueParser.H(bVar5); + u.b bVar4 = aVar.f748c; + d.H(bVar4); + u.b bVar5 = aVar2.f748c; + d.H(bVar5); if (aVar.f == aVar2.f) { if (aVar.g == aVar2.g) { if (aVar.h == aVar2.h) { @@ -465,7 +465,7 @@ public final class r implements o { this.n = false; } long j3 = this.m; - if (!this.l || this.k.f746c) { + if (!this.l || this.k.f747c) { this.d.d(i7); this.e.d(i7); } @@ -475,7 +475,7 @@ public final class r implements o { bVar2.l = j3; bVar2.j = j; int i15 = bVar2.b ? 1 : 1; - if (bVar2.f746c) { + if (bVar2.f747c) { if (!(i7 == 5 || i7 == i15 || i7 == 2)) { } b.a aVar4 = bVar2.m; @@ -516,7 +516,7 @@ public final class r implements o { bVar2.j = j; if (bVar2.b) { } - if (bVar2.f746c) { + if (bVar2.f747c) { } i4 = i6; i5 = i; @@ -555,7 +555,7 @@ public final class r implements o { bVar2.j = j; if (bVar2.b) { } - if (bVar2.f746c) { + if (bVar2.f747c) { } i4 = i6; i5 = i; @@ -591,7 +591,7 @@ public final class r implements o { this.i = dVar.b(); w p = jVar.p(dVar.c(), 2); this.j = p; - this.k = new b(p, this.b, this.f745c); + this.k = new b(p, this.b, this.f746c); this.a.a(jVar, dVar); } diff --git a/app/src/main/java/c/i/a/c/a2/j0/s.java b/app/src/main/java/c/i/a/c/a2/j0/s.java index 99b71efea7..ee8451deee 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/s.java +++ b/app/src/main/java/c/i/a/c/a2/j0/s.java @@ -1,5 +1,6 @@ package c.i.a.c.a2.j0; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.a2.w; @@ -7,7 +8,6 @@ import c.i.a.c.i2.f0; import c.i.a.c.i2.h; import c.i.a.c.i2.u; import c.i.a.c.i2.x; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.Collections; import org.checkerframework.checker.nullness.qual.RequiresNonNull; @@ -17,7 +17,7 @@ public final class s implements o { public String b; /* renamed from: c reason: collision with root package name */ - public w f748c; + public w f749c; public a d; public boolean e; public final boolean[] f = new boolean[3]; @@ -36,7 +36,7 @@ public final class s implements o { public long b; /* renamed from: c reason: collision with root package name */ - public boolean f749c; + public boolean f750c; public int d; public long e; public boolean f; @@ -103,13 +103,13 @@ public final class s implements o { int i5; long j4; c.i.a.c.i2.w wVar2 = wVar; - AnimatableValueParser.H(this.f748c); + d.H(this.f749c); int i6 = f0.a; while (wVar.a() > 0) { - int i7 = wVar2.f920c; + int i7 = wVar2.f921c; byte[] bArr2 = wVar2.a; this.l += (long) wVar.a(); - this.f748c.c(wVar2, wVar.a()); + this.f749c.c(wVar2, wVar.a()); for (int i8 = wVar2.b; i8 < i7; i8 = i3) { int b = u.b(bArr2, i8, i7, this.f); if (b == i7) { @@ -129,7 +129,7 @@ public final class s implements o { a aVar = this.d; boolean z2 = this.e; if (aVar.j && aVar.g) { - aVar.m = aVar.f749c; + aVar.m = aVar.f750c; aVar.j = false; } else if (aVar.h || aVar.g) { if (z2 && aVar.i) { @@ -137,7 +137,7 @@ public final class s implements o { } aVar.k = aVar.b; aVar.l = aVar.e; - aVar.m = aVar.f749c; + aVar.m = aVar.f750c; aVar.i = true; } if (!this.e) { @@ -145,12 +145,12 @@ public final class s implements o { this.h.b(i13); this.i.b(i13); w wVar3 = this.g; - if (wVar3.f754c) { + if (wVar3.f755c) { w wVar4 = this.h; - if (wVar4.f754c) { + if (wVar4.f755c) { w wVar5 = this.i; - if (wVar5.f754c) { - w wVar6 = this.f748c; + if (wVar5.f755c) { + w wVar6 = this.f749c; String str = this.b; i4 = i7; int i14 = wVar3.e; @@ -301,7 +301,7 @@ public final class s implements o { if (e2 < fArr.length) { f12 = fArr[e2]; } else { - c.d.b.a.a.j0("Unexpected aspect_ratio_idc value: ", e2, "H265Reader"); + c.d.b.a.a.i0("Unexpected aspect_ratio_idc value: ", e2, "H265Reader"); } } } @@ -341,7 +341,7 @@ public final class s implements o { this.n.B(this.j.d, u.e(wVar7.d, wVar7.e)); this.n.E(5); j3 = j2; - AnimatableValueParser.L(j3, this.n, this.a.b); + d.L(j3, this.n, this.a.b); } else { j3 = j2; } @@ -349,7 +349,7 @@ public final class s implements o { w wVar8 = this.k; this.n.B(this.k.d, u.e(wVar8.d, wVar8.e)); this.n.E(5); - AnimatableValueParser.L(j3, this.n, this.a.b); + d.L(j3, this.n, this.a.b); } long j7 = this.m; a aVar2 = this.d; @@ -372,7 +372,7 @@ public final class s implements o { } } boolean z5 = i < 16 && i <= 21; - aVar2.f749c = z5; + aVar2.f750c = z5; aVar2.f = !z5 || i <= 9; if (this.e) { this.g.d(i); @@ -410,7 +410,7 @@ public final class s implements o { } if (i < 16) { } - aVar2.f749c = z5; + aVar2.f750c = z5; aVar2.f = !z5 || i <= 9; if (this.e) { } @@ -451,7 +451,7 @@ public final class s implements o { dVar.a(); this.b = dVar.b(); w p = jVar.p(dVar.c(), 2); - this.f748c = p; + this.f749c = p; this.d = new a(p); this.a.a(jVar, dVar); } diff --git a/app/src/main/java/c/i/a/c/a2/j0/t.java b/app/src/main/java/c/i/a/c/a2/j0/t.java index d6fd30b076..ba094b34d4 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/t.java +++ b/app/src/main/java/c/i/a/c/a2/j0/t.java @@ -1,10 +1,10 @@ package c.i.a.c.a2.j0; import android.util.Log; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; /* compiled from: Id3Reader */ public final class t implements o { @@ -12,15 +12,15 @@ public final class t implements o { public c.i.a.c.a2.w b; /* renamed from: c reason: collision with root package name */ - public boolean f750c; + public boolean f751c; public long d; public int e; public int f; @Override // c.i.a.c.a2.j0.o public void b(w wVar) { - AnimatableValueParser.H(this.b); - if (this.f750c) { + d.H(this.b); + if (this.f751c) { int a = wVar.a(); int i = this.f; if (i < 10) { @@ -33,7 +33,7 @@ public final class t implements o { this.e = this.a.r() + 10; } else { Log.w("Id3Reader", "Discarding invalid ID3 tag"); - this.f750c = false; + this.f751c = false; return; } } @@ -46,16 +46,16 @@ public final class t implements o { @Override // c.i.a.c.a2.j0.o public void c() { - this.f750c = false; + this.f751c = false; } @Override // c.i.a.c.a2.j0.o public void d() { int i; - AnimatableValueParser.H(this.b); - if (this.f750c && (i = this.e) != 0 && this.f == i) { + d.H(this.b); + if (this.f751c && (i = this.e) != 0 && this.f == i) { this.b.d(this.d, 1, i, 0, null); - this.f750c = false; + this.f751c = false; } } @@ -73,7 +73,7 @@ public final class t implements o { @Override // c.i.a.c.a2.j0.o public void f(long j, int i) { if ((i & 4) != 0) { - this.f750c = true; + this.f751c = true; this.d = j; this.e = 0; this.f = 0; diff --git a/app/src/main/java/c/i/a/c/a2/j0/u.java b/app/src/main/java/c/i/a/c/a2/j0/u.java index 85a27e6abc..3039b2b258 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/u.java +++ b/app/src/main/java/c/i/a/c/a2/j0/u.java @@ -1,12 +1,12 @@ package c.i.a.c.a2.j0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; import c.i.a.c.v1.k; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import java.util.Collections; @@ -18,7 +18,7 @@ public final class u implements o { public final w b; /* renamed from: c reason: collision with root package name */ - public final v f751c; + public final v f752c; public c.i.a.c.a2.w d; public String e; public Format f; @@ -36,7 +36,7 @@ public final class u implements o { public int r; /* renamed from: s reason: collision with root package name */ - public long f752s; + public long f753s; public int t; @Nullable public String u; @@ -45,7 +45,7 @@ public final class u implements o { this.a = str; w wVar = new w(1024); this.b = wVar; - this.f751c = new v(wVar.a); + this.f752c = new v(wVar.a); } public static long a(v vVar) { @@ -59,7 +59,7 @@ public final class u implements o { public void b(w wVar) throws ParserException { int i; boolean f; - AnimatableValueParser.H(this.d); + d.H(this.d); while (wVar.a() > 0) { int i2 = this.g; if (i2 != 0) { @@ -81,25 +81,25 @@ public final class u implements o { bArr = new byte[s3]; } wVar2.B(bArr, s3); - v vVar = this.f751c; + v vVar = this.f752c; byte[] bArr2 = this.b.a; Objects.requireNonNull(vVar); int length = bArr2.length; vVar.a = bArr2; vVar.b = 0; - vVar.f919c = 0; + vVar.f920c = 0; vVar.d = length; } this.h = 0; this.g = 3; } else if (i2 == 3) { int min = Math.min(wVar.a(), this.i - this.h); - wVar.e(this.f751c.a, this.h, min); + wVar.e(this.f752c.a, this.h, min); int i3 = this.h + min; this.h = i3; if (i3 == this.i) { - this.f751c.k(0); - v vVar2 = this.f751c; + this.f752c.k(0); + v vVar2 = this.f752c; if (!vVar2.f()) { this.l = true; int g = vVar2.g(1); @@ -124,14 +124,14 @@ public final class u implements o { bVar.a = this.e; bVar.k = "audio/mp4a-latm"; bVar.h = this.u; - bVar.f2280x = this.t; - bVar.f2281y = this.r; + bVar.f2283x = this.t; + bVar.f2284y = this.r; bVar.m = Collections.singletonList(bArr3); - bVar.f2278c = this.a; + bVar.f2281c = this.a; Format a = bVar.a(); if (!a.equals(this.f)) { this.f = a; - this.f752s = 1024000000 / ((long) a.H); + this.f753s = 1024000000 / ((long) a.H); this.d.e(a); } } else { @@ -199,7 +199,7 @@ public final class u implements o { } this.d.c(this.b, i); this.d.d(this.k, 1, i, 0, null); - this.k += this.f752s; + this.k += this.f753s; if (this.p) { vVar2.m((int) this.q); } @@ -244,7 +244,7 @@ public final class u implements o { public final int g(v vVar) throws ParserException { int b = vVar.b(); k.b c2 = k.c(vVar, true); - this.u = c2.f998c; + this.u = c2.f999c; this.r = c2.a; this.t = c2.b; return b - vVar.b(); diff --git a/app/src/main/java/c/i/a/c/a2/j0/v.java b/app/src/main/java/c/i/a/c/a2/j0/v.java index 5bcd8d5ff4..a491c36ea7 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/v.java +++ b/app/src/main/java/c/i/a/c/a2/j0/v.java @@ -1,11 +1,11 @@ package c.i.a.c.a2.j0; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.w; import c.i.a.c.v1.z; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; /* compiled from: MpegAudioReader */ public final class v implements o { @@ -14,7 +14,7 @@ public final class v implements o { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f753c; + public final String f754c; public c.i.a.c.a2.w d; public String e; public int f = 0; @@ -30,18 +30,18 @@ public final class v implements o { this.a = wVar; wVar.a[0] = -1; this.b = new z.a(); - this.f753c = str; + this.f754c = str; } @Override // c.i.a.c.a2.j0.o public void b(w wVar) { - AnimatableValueParser.H(this.d); + d.H(this.d); while (wVar.a() > 0) { int i = this.f; if (i == 0) { byte[] bArr = wVar.a; int i2 = wVar.b; - int i3 = wVar.f920c; + int i3 = wVar.f921c; while (true) { if (i2 >= i3) { wVar.D(i3); @@ -72,7 +72,7 @@ public final class v implements o { this.f = 1; } else { z.a aVar = this.b; - this.k = aVar.f1013c; + this.k = aVar.f1014c; if (!this.h) { int i5 = aVar.d; this.j = (((long) aVar.g) * 1000000) / ((long) i5); @@ -80,9 +80,9 @@ public final class v implements o { bVar.a = this.e; bVar.k = aVar.b; bVar.l = 4096; - bVar.f2280x = aVar.e; - bVar.f2281y = i5; - bVar.f2278c = this.f753c; + bVar.f2283x = aVar.e; + bVar.f2284y = i5; + bVar.f2281c = this.f754c; this.d.e(bVar.a()); this.h = true; } diff --git a/app/src/main/java/c/i/a/c/a2/j0/w.java b/app/src/main/java/c/i/a/c/a2/j0/w.java index 2fe827ced8..e3b31ccec1 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/w.java +++ b/app/src/main/java/c/i/a/c/a2/j0/w.java @@ -1,6 +1,6 @@ package c.i.a.c.a2.j0; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Arrays; /* compiled from: NalUnitTargetBuffer */ public final class w { @@ -8,7 +8,7 @@ public final class w { public boolean b; /* renamed from: c reason: collision with root package name */ - public boolean f754c; + public boolean f755c; public byte[] d; public int e; @@ -39,25 +39,25 @@ public final class w { } this.e -= i; this.b = false; - this.f754c = true; + this.f755c = true; return true; } public void c() { this.b = false; - this.f754c = false; + this.f755c = false; } public void d(int i) { boolean z2 = true; - AnimatableValueParser.D(!this.b); + d.D(!this.b); if (i != this.a) { z2 = false; } this.b = z2; if (z2) { this.e = 3; - this.f754c = false; + this.f755c = false; } } } diff --git a/app/src/main/java/c/i/a/c/a2/j0/x.java b/app/src/main/java/c/i/a/c/a2/j0/x.java index ef9c0e9149..b9a5bc5ead 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/x.java +++ b/app/src/main/java/c/i/a/c/a2/j0/x.java @@ -1,12 +1,12 @@ package c.i.a.c.a2.j0; import androidx.recyclerview.widget.RecyclerView; +import c.c.a.a0.d; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.a2.w; import c.i.a.c.i2.e0; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; /* compiled from: PassthroughSectionPayloadReader */ public final class x implements c0 { @@ -14,7 +14,7 @@ public final class x implements c0 { public e0 b; /* renamed from: c reason: collision with root package name */ - public w f755c; + public w f756c; public x(String str) { Format.b bVar = new Format.b(); @@ -27,32 +27,32 @@ public final class x implements c0 { this.b = e0Var; dVar.a(); w p = jVar.p(dVar.c(), 5); - this.f755c = p; + this.f756c = p; p.e(this.a); } @Override // c.i.a.c.a2.j0.c0 public void b(c.i.a.c.i2.w wVar) { long j; - AnimatableValueParser.H(this.b); + d.H(this.b); int i = f0.a; long d = this.b.d(); long j2 = -9223372036854775807L; if (d != -9223372036854775807L) { Format format = this.a; - if (d != format.f2275x) { + if (d != format.f2278x) { Format.b a = format.a(); a.o = d; Format a2 = a.a(); this.a = a2; - this.f755c.e(a2); + this.f756c.e(a2); } int a3 = wVar.a(); - this.f755c.c(wVar, a3); - w wVar2 = this.f755c; + this.f756c.c(wVar, a3); + w wVar2 = this.f756c; e0 e0Var = this.b; synchronized (e0Var) { - long j3 = e0Var.f910c; + long j3 = e0Var.f911c; if (j3 != -9223372036854775807L) { j2 = e0Var.b + j3; } else { diff --git a/app/src/main/java/c/i/a/c/a2/j0/y.java b/app/src/main/java/c/i/a/c/a2/j0/y.java index b39fca49e4..b6236204d2 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/y.java +++ b/app/src/main/java/c/i/a/c/a2/j0/y.java @@ -2,13 +2,13 @@ package c.i.a.c.a2.j0; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.c.a2.j; import c.i.a.c.a2.j0.i0; import c.i.a.c.i2.e0; import c.i.a.c.i2.v; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ParserException; /* compiled from: PesReader */ public final class y implements i0 { @@ -16,7 +16,7 @@ public final class y implements i0 { public final v b = new v(new byte[10]); /* renamed from: c reason: collision with root package name */ - public int f756c = 0; + public int f757c = 0; public int d; public e0 e; public boolean f; @@ -40,20 +40,20 @@ public final class y implements i0 { @Override // c.i.a.c.a2.j0.i0 public final void b(w wVar, int i) throws ParserException { boolean z2; - AnimatableValueParser.H(this.e); + d.H(this.e); int i2 = -1; int i3 = 3; if ((i & 1) != 0) { - int i4 = this.f756c; + int i4 = this.f757c; if (!(i4 == 0 || i4 == 1)) { if (i4 == 2) { Log.w("PesReader", "Unexpected start indicator reading extended header"); } else if (i4 == 3) { if (this.j != -1) { - StringBuilder P = a.P("Unexpected start indicator: expected "); - P.append(this.j); - P.append(" more bytes"); - Log.w("PesReader", P.toString()); + StringBuilder O = a.O("Unexpected start indicator: expected "); + O.append(this.j); + O.append(" more bytes"); + Log.w("PesReader", O.toString()); } this.a.d(); } else { @@ -63,7 +63,7 @@ public final class y implements i0 { e(1); } while (wVar.a() > 0) { - int i5 = this.f756c; + int i5 = this.f757c; if (i5 != 0) { int i6 = 0; if (i5 != 1) { @@ -118,7 +118,7 @@ public final class y implements i0 { this.b.k(0); int g2 = this.b.g(24); if (g2 != 1) { - a.j0("Unexpected start code prefix: ", g2, "PesReader"); + a.i0("Unexpected start code prefix: ", g2, "PesReader"); this.j = -1; z2 = false; } else { @@ -138,9 +138,9 @@ public final class y implements i0 { int i10 = ((g3 + 6) - 9) - g4; this.j = i10; if (i10 < 0) { - StringBuilder P2 = a.P("Found negative packet payload size: "); - P2.append(this.j); - Log.w("PesReader", P2.toString()); + StringBuilder O2 = a.O("Found negative packet payload size: "); + O2.append(this.j); + Log.w("PesReader", O2.toString()); this.j = -1; } } @@ -158,7 +158,7 @@ public final class y implements i0 { @Override // c.i.a.c.a2.j0.i0 public final void c() { - this.f756c = 0; + this.f757c = 0; this.d = 0; this.h = false; this.a.c(); @@ -181,7 +181,7 @@ public final class y implements i0 { } public final void e(int i) { - this.f756c = i; + this.f757c = i; this.d = 0; } } diff --git a/app/src/main/java/c/i/a/c/a2/j0/z.java b/app/src/main/java/c/i/a/c/a2/j0/z.java index f681ae17e7..e81c57d4b7 100644 --- a/app/src/main/java/c/i/a/c/a2/j0/z.java +++ b/app/src/main/java/c/i/a/c/a2/j0/z.java @@ -51,7 +51,7 @@ public final class z extends c.i.a.c.a2.a { i2 = wVar.b; j2 = b; } - int i3 = wVar.f920c; + int i3 = wVar.f921c; if (wVar.a() >= 10) { wVar.E(9); int s2 = wVar.s() & 7; @@ -76,7 +76,7 @@ public final class z extends c.i.a.c.a2.a { wVar.D(i3); break; } - wVar.D(Math.min(wVar.f920c, wVar.b + wVar.x())); + wVar.D(Math.min(wVar.f921c, wVar.b + wVar.x())); } } else { wVar.D(i3); diff --git a/app/src/main/java/c/i/a/c/a2/k0/b.java b/app/src/main/java/c/i/a/c/a2/k0/b.java index 58362ce82e..dbc4a8e29b 100644 --- a/app/src/main/java/c/i/a/c/a2/k0/b.java +++ b/app/src/main/java/c/i/a/c/a2/k0/b.java @@ -2,13 +2,13 @@ package c.i.a.c.a2.k0; import android.util.Log; import android.util.Pair; +import c.c.a.a0.d; import c.i.a.c.a2.h; import c.i.a.c.a2.i; import c.i.a.c.a2.j; import c.i.a.c.a2.s; import c.i.a.c.a2.w; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import java.io.IOException; @@ -19,7 +19,7 @@ public final class b implements h { public w b; /* renamed from: c reason: collision with root package name */ - public AbstractC0088b f757c; + public AbstractC0088b f758c; public int d = -1; public long e = -1; @@ -29,7 +29,7 @@ public final class b implements h { public static final int[] b = {7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 23, 25, 28, 31, 34, 37, 41, 45, 50, 55, 60, 66, 73, 80, 88, 97, 107, 118, 130, 143, 157, 173, 190, 209, 230, 253, 279, 307, 337, 371, 408, 449, 494, 544, 598, 658, 724, 796, 876, 963, 1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066, 2272, 2499, 2749, 3024, 3327, 3660, 4026, 4428, 4871, 5358, 5894, 6484, 7132, 7845, 8630, 9493, 10442, 11487, 12635, 13899, 15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767}; /* renamed from: c reason: collision with root package name */ - public final j f758c; + public final j f759c; public final w d; public final c e; public final int f; @@ -43,10 +43,10 @@ public final class b implements h { public long n; public a(j jVar, w wVar, c cVar) throws ParserException { - this.f758c = jVar; + this.f759c = jVar; this.d = wVar; this.e = cVar; - int max = Math.max(1, cVar.f760c / 10); + int max = Math.max(1, cVar.f761c / 10); this.i = max; byte[] bArr = cVar.f; int length = bArr.length; @@ -60,16 +60,16 @@ public final class b implements h { int f = f0.f(max, i); this.g = new byte[(cVar.d * f)]; this.h = new c.i.a.c.i2.w(i * 2 * i2 * f); - int i4 = cVar.f760c; + int i4 = cVar.f761c; int i5 = ((cVar.d * i4) * 8) / i; Format.b bVar = new Format.b(); bVar.k = "audio/raw"; bVar.f = i5; bVar.g = i5; bVar.l = max * 2 * i2; - bVar.f2280x = cVar.b; - bVar.f2281y = i4; - bVar.f2282z = 2; + bVar.f2283x = cVar.b; + bVar.f2284y = i4; + bVar.f2285z = 2; this.j = bVar.a(); return; } @@ -86,7 +86,7 @@ public final class b implements h { @Override // c.i.a.c.a2.k0.b.AbstractC0088b public void b(int i, long j) { - this.f758c.a(new e(this.e, this.f, (long) i, j)); + this.f759c.a(new e(this.e, this.f, (long) i, j)); this.d.e(this.j); } @@ -111,7 +111,7 @@ public final class b implements h { } public final void e(int i) { - long E = this.l + f0.E(this.n, 1000000, (long) this.e.f760c); + long E = this.l + f0.E(this.n, 1000000, (long) this.e.f761c); int i2 = i * 2 * this.e.b; this.d.d(E, 1, i2, this.m - i2, null); this.n += (long) i; @@ -135,7 +135,7 @@ public final class b implements h { public final w b; /* renamed from: c reason: collision with root package name */ - public final c f759c; + public final c f760c; public final Format d; public final int e; public long f; @@ -145,10 +145,10 @@ public final class b implements h { public c(j jVar, w wVar, c cVar, String str, int i) throws ParserException { this.a = jVar; this.b = wVar; - this.f759c = cVar; + this.f760c = cVar; int i2 = (cVar.b * cVar.e) / 8; if (cVar.d == i2) { - int i3 = cVar.f760c * i2; + int i3 = cVar.f761c * i2; int i4 = i3 * 8; int max = Math.max(i2, i3 / 10); this.e = max; @@ -157,15 +157,15 @@ public final class b implements h { bVar.f = i4; bVar.g = i4; bVar.l = max; - bVar.f2280x = cVar.b; - bVar.f2281y = cVar.f760c; - bVar.f2282z = i; + bVar.f2283x = cVar.b; + bVar.f2284y = cVar.f761c; + bVar.f2285z = i; this.d = bVar.a(); return; } - StringBuilder Q = c.d.b.a.a.Q("Expected block size: ", i2, "; got: "); - Q.append(cVar.d); - throw new ParserException(Q.toString()); + StringBuilder P = c.d.b.a.a.P("Expected block size: ", i2, "; got: "); + P.append(cVar.d); + throw new ParserException(P.toString()); } @Override // c.i.a.c.a2.k0.b.AbstractC0088b @@ -177,7 +177,7 @@ public final class b implements h { @Override // c.i.a.c.a2.k0.b.AbstractC0088b public void b(int i, long j) { - this.a.a(new e(this.f759c, 1, (long) i, j)); + this.a.a(new e(this.f760c, 1, (long) i, j)); this.b.e(this.d); } @@ -200,13 +200,13 @@ public final class b implements h { j2 -= (long) b; } } - c cVar = this.f759c; + c cVar = this.f760c; int i4 = cVar.d; int i5 = this.g / i4; if (i5 > 0) { int i6 = i5 * i4; int i7 = this.g - i6; - this.b.d(this.f + f0.E(this.h, 1000000, (long) cVar.f760c), 1, i6, i7, null); + this.b.d(this.f + f0.E(this.h, 1000000, (long) cVar.f761c), 1, i6, i7, null); this.h += (long) i5; this.g = i7; } @@ -220,7 +220,7 @@ public final class b implements h { @Override // c.i.a.c.a2.h public boolean b(i iVar) throws IOException { - return AnimatableValueParser.a2(iVar) != null; + return d.x1(iVar) != null; } /* JADX WARNING: Removed duplicated region for block: B:27:0x006a */ @@ -229,21 +229,21 @@ public final class b implements h { public int e(i iVar, s sVar) throws IOException { int i; int i2; - AnimatableValueParser.H(this.b); + d.H(this.b); int i3 = f0.a; boolean z2 = true; - if (this.f757c == null) { - c a2 = AnimatableValueParser.a2(iVar); - if (a2 != null) { - int i4 = a2.a; + if (this.f758c == null) { + c x1 = d.x1(iVar); + if (x1 != null) { + int i4 = x1.a; if (i4 == 17) { - this.f757c = new a(this.a, this.b, a2); + this.f758c = new a(this.a, this.b, x1); } else if (i4 == 6) { - this.f757c = new c(this.a, this.b, a2, "audio/g711-alaw", -1); + this.f758c = new c(this.a, this.b, x1, "audio/g711-alaw", -1); } else if (i4 == 7) { - this.f757c = new c(this.a, this.b, a2, "audio/g711-mlaw", -1); + this.f758c = new c(this.a, this.b, x1, "audio/g711-mlaw", -1); } else { - int i5 = a2.e; + int i5 = x1.e; if (i4 != 1) { if (i4 == 3) { i2 = i5 == 32 ? 4 : 0; @@ -253,11 +253,11 @@ public final class b implements h { } else if (i4 != 65534) { i = 0; if (i != 0) { - this.f757c = new c(this.a, this.b, a2, "audio/raw", i); + this.f758c = new c(this.a, this.b, x1, "audio/raw", i); } else { - StringBuilder P = c.d.b.a.a.P("Unsupported WAV format type: "); - P.append(a2.a); - throw new ParserException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Unsupported WAV format type: "); + O.append(x1.a); + throw new ParserException(O.toString()); } } } @@ -274,43 +274,43 @@ public final class b implements h { Objects.requireNonNull(iVar); iVar.k(); c.i.a.c.i2.w wVar = new c.i.a.c.i2.w(8); - d a3 = d.a(iVar, wVar); + d a2 = d.a(iVar, wVar); while (true) { - int i6 = a3.a; + int i6 = a2.a; if (i6 != 1684108385) { if (!(i6 == 1380533830 || i6 == 1718449184)) { - StringBuilder P2 = c.d.b.a.a.P("Ignoring unknown WAV chunk: "); - P2.append(a3.a); - Log.w("WavHeaderReader", P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Ignoring unknown WAV chunk: "); + O2.append(a2.a); + Log.w("WavHeaderReader", O2.toString()); } - long j = a3.b + 8; - if (a3.a == 1380533830) { + long j = a2.b + 8; + if (a2.a == 1380533830) { j = 12; } if (j <= 2147483647L) { iVar.l((int) j); - a3 = d.a(iVar, wVar); + a2 = d.a(iVar, wVar); } else { - StringBuilder P3 = c.d.b.a.a.P("Chunk is too large (~2GB+) to skip; id: "); - P3.append(a3.a); - throw new ParserException(P3.toString()); + StringBuilder O3 = c.d.b.a.a.O("Chunk is too large (~2GB+) to skip; id: "); + O3.append(a2.a); + throw new ParserException(O3.toString()); } } else { iVar.l(8); long position = iVar.getPosition(); - long j2 = a3.b + position; + long j2 = a2.b + position; long b = iVar.b(); if (b != -1 && j2 > b) { - StringBuilder S = c.d.b.a.a.S("Data exceeds input length: ", j2, ", "); - S.append(b); - Log.w("WavHeaderReader", S.toString()); + StringBuilder R = c.d.b.a.a.R("Data exceeds input length: ", j2, ", "); + R.append(b); + Log.w("WavHeaderReader", R.toString()); j2 = b; } Pair create = Pair.create(Long.valueOf(position), Long.valueOf(j2)); this.d = ((Long) create.first).intValue(); long longValue = ((Long) create.second).longValue(); this.e = longValue; - this.f757c.b(this.d, longValue); + this.f758c.b(this.d, longValue); } } } else if (iVar.getPosition() == 0) { @@ -319,8 +319,8 @@ public final class b implements h { if (this.e == -1) { z2 = false; } - AnimatableValueParser.D(z2); - return this.f757c.c(iVar, this.e - iVar.getPosition()) ? -1 : 0; + d.D(z2); + return this.f758c.c(iVar, this.e - iVar.getPosition()) ? -1 : 0; } @Override // c.i.a.c.a2.h @@ -332,7 +332,7 @@ public final class b implements h { @Override // c.i.a.c.a2.h public void g(long j, long j2) { - AbstractC0088b bVar = this.f757c; + AbstractC0088b bVar = this.f758c; if (bVar != null) { bVar.a(j2); } diff --git a/app/src/main/java/c/i/a/c/a2/k0/c.java b/app/src/main/java/c/i/a/c/a2/k0/c.java index 4d902e980c..7a47637a19 100644 --- a/app/src/main/java/c/i/a/c/a2/k0/c.java +++ b/app/src/main/java/c/i/a/c/a2/k0/c.java @@ -5,7 +5,7 @@ public final class c { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f760c; + public final int f761c; public final int d; public final int e; public final byte[] f; @@ -13,7 +13,7 @@ public final class c { public c(int i, int i2, int i3, int i4, int i5, int i6, byte[] bArr) { this.a = i; this.b = i2; - this.f760c = i3; + this.f761c = i3; this.d = i5; this.e = i6; this.f = bArr; diff --git a/app/src/main/java/c/i/a/c/a2/k0/e.java b/app/src/main/java/c/i/a/c/a2/k0/e.java index ebda701064..6ede288848 100644 --- a/app/src/main/java/c/i/a/c/a2/k0/e.java +++ b/app/src/main/java/c/i/a/c/a2/k0/e.java @@ -9,21 +9,21 @@ public final class e implements t { public final int b; /* renamed from: c reason: collision with root package name */ - public final long f761c; + public final long f762c; public final long d; public final long e; public e(c cVar, int i, long j, long j2) { this.a = cVar; this.b = i; - this.f761c = j; + this.f762c = j; long j3 = (j2 - j) / ((long) cVar.d); this.d = j3; this.e = b(j3); } public final long b(long j) { - return f0.E(j * ((long) this.b), 1000000, (long) this.a.f760c); + return f0.E(j * ((long) this.b), 1000000, (long) this.a.f761c); } @Override // c.i.a.c.a2.t @@ -33,15 +33,15 @@ public final class e implements t { @Override // c.i.a.c.a2.t public t.a h(long j) { - long i = f0.i((((long) this.a.f760c) * j) / (((long) this.b) * 1000000), 0, this.d - 1); - long j2 = (((long) this.a.d) * i) + this.f761c; + long i = f0.i((((long) this.a.f761c) * j) / (((long) this.b) * 1000000), 0, this.d - 1); + long j2 = (((long) this.a.d) * i) + this.f762c; long b = b(i); u uVar = new u(b, j2); if (b >= j || i == this.d - 1) { return new t.a(uVar); } long j3 = i + 1; - return new t.a(uVar, new u(b(j3), (((long) this.a.d) * j3) + this.f761c)); + return new t.a(uVar, new u(b(j3), (((long) this.a.d) * j3) + this.f762c)); } @Override // c.i.a.c.a2.t diff --git a/app/src/main/java/c/i/a/c/a2/n.java b/app/src/main/java/c/i/a/c/a2/n.java index 114d136338..e4f708b2a1 100644 --- a/app/src/main/java/c/i/a/c/a2/n.java +++ b/app/src/main/java/c/i/a/c/a2/n.java @@ -1,9 +1,9 @@ package c.i.a.c.a2; +import c.c.a.a0.d; import c.i.a.c.a2.o; import c.i.a.c.a2.t; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: FlacSeekTableSeekMap */ public final class n implements t { public final o a; @@ -25,7 +25,7 @@ public final class n implements t { @Override // c.i.a.c.a2.t public t.a h(long j) { - AnimatableValueParser.H(this.a.k); + d.H(this.a.k); o oVar = this.a; o.a aVar = oVar.k; long[] jArr = aVar.a; diff --git a/app/src/main/java/c/i/a/c/a2/o.java b/app/src/main/java/c/i/a/c/a2/o.java index 67107610d9..2f452667e6 100644 --- a/app/src/main/java/c/i/a/c/a2/o.java +++ b/app/src/main/java/c/i/a/c/a2/o.java @@ -16,7 +16,7 @@ public final class o { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f762c; + public final int f763c; public final int d; public final int e; public final int f; @@ -43,7 +43,7 @@ public final class o { public o(int i, int i2, int i3, int i4, int i5, int i6, int i7, long j, @Nullable a aVar, @Nullable Metadata metadata) { this.a = i; this.b = i2; - this.f762c = i3; + this.f763c = i3; this.d = i4; this.e = i5; this.f = h(i5); @@ -60,7 +60,7 @@ public final class o { vVar.k(i * 8); this.a = vVar.g(16); this.b = vVar.g(16); - this.f762c = vVar.g(24); + this.f763c = vVar.g(24); this.d = vVar.g(24); int g = vVar.g(20); this.e = g; @@ -84,7 +84,7 @@ public final class o { String str = list.get(i); String[] H = f0.H(str, "="); if (H.length != 2) { - c.d.b.a.a.l0("Failed to parse Vorbis comment: ", str, "FlacStreamMetadata"); + c.d.b.a.a.k0("Failed to parse Vorbis comment: ", str, "FlacStreamMetadata"); } else { arrayList.add(new VorbisComment(H[0], H[1])); } @@ -142,7 +142,7 @@ public final class o { } public o b(@Nullable a aVar) { - return new o(this.a, this.b, this.f762c, this.d, this.e, this.g, this.h, this.j, aVar, this.l); + return new o(this.a, this.b, this.f763c, this.d, this.e, this.g, this.h, this.j, aVar, this.l); } public long d() { @@ -163,8 +163,8 @@ public final class o { Format.b bVar = new Format.b(); bVar.k = "audio/flac"; bVar.l = i; - bVar.f2280x = this.g; - bVar.f2281y = this.e; + bVar.f2283x = this.g; + bVar.f2284y = this.e; bVar.m = Collections.singletonList(bArr); bVar.i = f; return bVar.a(); diff --git a/app/src/main/java/c/i/a/c/a2/p.java b/app/src/main/java/c/i/a/c/a2/p.java index 112879ae6e..169fd321fb 100644 --- a/app/src/main/java/c/i/a/c/a2/p.java +++ b/app/src/main/java/c/i/a/c/a2/p.java @@ -12,7 +12,7 @@ public final class p { public int b = -1; /* renamed from: c reason: collision with root package name */ - public int f763c = -1; + public int f764c = -1; public final boolean a(String str) { Matcher matcher = a.matcher(str); @@ -28,7 +28,7 @@ public final class p { return false; } this.b = parseInt; - this.f763c = parseInt2; + this.f764c = parseInt2; return true; } catch (NumberFormatException unused) { return false; diff --git a/app/src/main/java/c/i/a/c/a2/r.java b/app/src/main/java/c/i/a/c/a2/r.java index f6c12ebb3a..ba299a4997 100644 --- a/app/src/main/java/c/i/a/c/a2/r.java +++ b/app/src/main/java/c/i/a/c/a2/r.java @@ -1,19 +1,19 @@ package c.i.a.c.a2; +import c.c.a.a0.d; import c.i.a.c.a2.t; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: IndexSeekMap */ public final class r implements t { public final long[] a; public final long[] b; /* renamed from: c reason: collision with root package name */ - public final long f764c; + public final long f765c; public final boolean d; public r(long[] jArr, long[] jArr2, long j) { - AnimatableValueParser.k(jArr.length == jArr2.length); + d.k(jArr.length == jArr2.length); int length = jArr2.length; boolean z2 = length > 0; this.d = z2; @@ -29,7 +29,7 @@ public final class r implements t { System.arraycopy(jArr, 0, jArr3, 1, length); System.arraycopy(jArr2, 0, jArr4, 1, length); } - this.f764c = j; + this.f765c = j; } @Override // c.i.a.c.a2.t @@ -56,6 +56,6 @@ public final class r implements t { @Override // c.i.a.c.a2.t public long i() { - return this.f764c; + return this.f765c; } } diff --git a/app/src/main/java/c/i/a/c/a2/t.java b/app/src/main/java/c/i/a/c/a2/t.java index bc23f36198..dc588c949c 100644 --- a/app/src/main/java/c/i/a/c/a2/t.java +++ b/app/src/main/java/c/i/a/c/a2/t.java @@ -36,16 +36,16 @@ public interface t { public String toString() { String str; - StringBuilder P = c.d.b.a.a.P("["); - P.append(this.a); + StringBuilder O = c.d.b.a.a.O("["); + O.append(this.a); if (this.a.equals(this.b)) { str = ""; } else { - StringBuilder P2 = c.d.b.a.a.P(", "); - P2.append(this.b); - str = P2.toString(); + StringBuilder O2 = c.d.b.a.a.O(", "); + O2.append(this.b); + str = O2.toString(); } - return c.d.b.a.a.H(P, str, "]"); + return c.d.b.a.a.G(O, str, "]"); } } diff --git a/app/src/main/java/c/i/a/c/a2/u.java b/app/src/main/java/c/i/a/c/a2/u.java index b33b8d1c5d..1a99a632ca 100644 --- a/app/src/main/java/c/i/a/c/a2/u.java +++ b/app/src/main/java/c/i/a/c/a2/u.java @@ -8,11 +8,11 @@ public final class u { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f765c; + public final long f766c; public u(long j, long j2) { this.b = j; - this.f765c = j2; + this.f766c = j2; } public boolean equals(@Nullable Object obj) { @@ -23,17 +23,17 @@ public final class u { return false; } u uVar = (u) obj; - return this.b == uVar.b && this.f765c == uVar.f765c; + return this.b == uVar.b && this.f766c == uVar.f766c; } public int hashCode() { - return (((int) this.b) * 31) + ((int) this.f765c); + return (((int) this.b) * 31) + ((int) this.f766c); } public String toString() { - StringBuilder P = a.P("[timeUs="); - P.append(this.b); - P.append(", position="); - return a.A(P, this.f765c, "]"); + StringBuilder O = a.O("[timeUs="); + O.append(this.b); + O.append(", position="); + return a.A(O, this.f766c, "]"); } } diff --git a/app/src/main/java/c/i/a/c/a2/w.java b/app/src/main/java/c/i/a/c/a2/w.java index ffeb4c327e..fadb8c738b 100644 --- a/app/src/main/java/c/i/a/c/a2/w.java +++ b/app/src/main/java/c/i/a/c/a2/w.java @@ -14,13 +14,13 @@ public interface w { public final byte[] b; /* renamed from: c reason: collision with root package name */ - public final int f766c; + public final int f767c; public final int d; public a(int i, byte[] bArr, int i2, int i3) { this.a = i; this.b = bArr; - this.f766c = i2; + this.f767c = i2; this.d = i3; } @@ -32,11 +32,11 @@ public interface w { return false; } a aVar = (a) obj; - return this.a == aVar.a && this.f766c == aVar.f766c && this.d == aVar.d && Arrays.equals(this.b, aVar.b); + return this.a == aVar.a && this.f767c == aVar.f767c && this.d == aVar.d && Arrays.equals(this.b, aVar.b); } public int hashCode() { - return ((((Arrays.hashCode(this.b) + (this.a * 31)) * 31) + this.f766c) * 31) + this.d; + return ((((Arrays.hashCode(this.b) + (this.a * 31)) * 31) + this.f767c) * 31) + this.d; } } diff --git a/app/src/main/java/c/i/a/c/a2/x.java b/app/src/main/java/c/i/a/c/a2/x.java index e3c6fa1494..6327d1396f 100644 --- a/app/src/main/java/c/i/a/c/a2/x.java +++ b/app/src/main/java/c/i/a/c/a2/x.java @@ -1,13 +1,13 @@ package c.i.a.c.a2; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: VorbisBitArray */ public final class x { public final byte[] a; public final int b; /* renamed from: c reason: collision with root package name */ - public int f767c; + public int f768c; public int d; public x(byte[] bArr) { @@ -16,13 +16,13 @@ public final class x { } public boolean a() { - boolean z2 = (((this.a[this.f767c] & 255) >> this.d) & 1) == 1; + boolean z2 = (((this.a[this.f768c] & 255) >> this.d) & 1) == 1; c(1); return z2; } public int b(int i) { - int i2 = this.f767c; + int i2 = this.f768c; int min = Math.min(i, 8 - this.d); int i3 = i2 + 1; int i4 = ((this.a[i2] & 255) >> this.d) & (255 >> (8 - min)); @@ -39,19 +39,19 @@ public final class x { public void c(int i) { int i2; int i3 = i / 8; - int i4 = this.f767c + i3; - this.f767c = i4; + int i4 = this.f768c + i3; + this.f768c = i4; int i5 = (i - (i3 * 8)) + this.d; this.d = i5; boolean z2 = true; if (i5 > 7) { - this.f767c = i4 + 1; + this.f768c = i4 + 1; this.d = i5 - 8; } - int i6 = this.f767c; + int i6 = this.f768c; if (i6 < 0 || (i6 >= (i2 = this.b) && !(i6 == i2 && this.d == 0))) { z2 = false; } - AnimatableValueParser.D(z2); + d.D(z2); } } diff --git a/app/src/main/java/c/i/a/c/b.java b/app/src/main/java/c/i/a/c/b.java index 5c33d8cadb..daed18b5c3 100644 --- a/app/src/main/java/c/i/a/c/b.java +++ b/app/src/main/java/c/i/a/c/b.java @@ -38,7 +38,7 @@ public final /* synthetic */ class b implements Runnable { e0Var.b(-1); e0Var.a(); } else if (i != 1) { - a.j0("Unknown focus change type: ", i, "AudioFocusManager"); + a.i0("Unknown focus change type: ", i, "AudioFocusManager"); } else { e0Var.c(1); e0Var.b(1); diff --git a/app/src/main/java/c/i/a/c/b1.java b/app/src/main/java/c/i/a/c/b1.java index 480186975a..8bc6cdd278 100644 --- a/app/src/main/java/c/i/a/c/b1.java +++ b/app/src/main/java/c/i/a/c/b1.java @@ -32,7 +32,7 @@ public final class b1 { public final IdentityHashMap b = new IdentityHashMap<>(); /* renamed from: c reason: collision with root package name */ - public final Map f768c = new HashMap(); + public final Map f769c = new HashMap(); public final d d; public final z.a e; public final q.a f; @@ -110,9 +110,9 @@ public final class b1 { c cVar = this.i; int i2 = 0; while (true) { - if (i2 >= cVar.f770c.size()) { + if (i2 >= cVar.f771c.size()) { break; - } else if (cVar.f770c.get(i2).d == aVar.d) { + } else if (cVar.f771c.get(i2).d == aVar.d) { aVar2 = aVar.b(Pair.create(cVar.b, aVar.a)); break; } else { @@ -171,12 +171,12 @@ public final class b1 { public final y.b b; /* renamed from: c reason: collision with root package name */ - public final z f769c; + public final z f770c; public b(y yVar, y.b bVar, z zVar) { this.a = yVar; this.b = bVar; - this.f769c = zVar; + this.f770c = zVar; } } @@ -186,7 +186,7 @@ public final class b1 { public final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public final List f770c = new ArrayList(); + public final List f771c = new ArrayList(); public int d; public boolean e; @@ -218,8 +218,8 @@ public final class b1 { this.g = new HashMap<>(); this.h = new HashSet(); if (c1Var != null) { - aVar.f818c.add(new z.a.C0091a(handler, c1Var)); - aVar2.f1024c.add(new q.a.C0099a(handler, c1Var)); + aVar.f819c.add(new z.a.C0091a(handler, c1Var)); + aVar2.f1025c.add(new q.a.C0099a(handler, c1Var)); } } @@ -233,15 +233,15 @@ public final class b1 { t.a aVar = cVar2.a.n; cVar.d = aVar.p() + cVar2.d; cVar.e = false; - cVar.f770c.clear(); + cVar.f771c.clear(); } else { cVar.d = 0; cVar.e = false; - cVar.f770c.clear(); + cVar.f771c.clear(); } b(i2, cVar.a.n.p()); this.a.add(i2, cVar); - this.f768c.put(cVar.b, cVar); + this.f769c.put(cVar.b, cVar); if (this.j) { g(cVar); if (this.b.isEmpty()) { @@ -282,7 +282,7 @@ public final class b1 { Iterator it = this.h.iterator(); while (it.hasNext()) { c next = it.next(); - if (next.f770c.isEmpty()) { + if (next.f771c.isEmpty()) { b bVar = this.g.get(next); if (bVar != null) { bVar.a.d(bVar.b); @@ -297,11 +297,11 @@ public final class b1 { } public final void f(c cVar) { - if (cVar.e && cVar.f770c.isEmpty()) { + if (cVar.e && cVar.f771c.isEmpty()) { b remove = this.g.remove(cVar); Objects.requireNonNull(remove); remove.a.a(remove.b); - remove.a.c(remove.f769c); + remove.a.c(remove.f770c); this.h.remove(cVar); } } @@ -313,13 +313,13 @@ public final class b1 { this.g.put(cVar, new b(tVar, zVar, aVar)); Handler handler = new Handler(f0.o(), null); Objects.requireNonNull(tVar); - z.a aVar2 = tVar.f807c; + z.a aVar2 = tVar.f808c; Objects.requireNonNull(aVar2); - aVar2.f818c.add(new z.a.C0091a(handler, aVar)); + aVar2.f819c.add(new z.a.C0091a(handler, aVar)); Handler handler2 = new Handler(f0.o(), null); q.a aVar3 = tVar.d; Objects.requireNonNull(aVar3); - aVar3.f1024c.add(new q.a.C0099a(handler2, aVar)); + aVar3.f1025c.add(new q.a.C0099a(handler2, aVar)); tVar.k(zVar, this.k); } @@ -327,7 +327,7 @@ public final class b1 { c remove = this.b.remove(vVar); Objects.requireNonNull(remove); remove.a.i(vVar); - remove.f770c.remove(((s) vVar).i); + remove.f771c.remove(((s) vVar).i); if (!this.b.isEmpty()) { d(); } @@ -337,7 +337,7 @@ public final class b1 { public final void i(int i, int i2) { for (int i3 = i2 - 1; i3 >= i; i3--) { c remove = this.a.remove(i3); - this.f768c.remove(remove.b); + this.f769c.remove(remove.b); b(i3, -remove.a.n.p()); remove.e = true; if (this.j) { diff --git a/app/src/main/java/c/i/a/c/b2/l.java b/app/src/main/java/c/i/a/c/b2/l.java index fdae8bc74e..71f9dd787f 100644 --- a/app/src/main/java/c/i/a/c/b2/l.java +++ b/app/src/main/java/c/i/a/c/b2/l.java @@ -9,11 +9,11 @@ import android.os.HandlerThread; import android.view.Surface; import androidx.annotation.Nullable; import androidx.annotation.RequiresApi; +import c.c.a.a0.d; import c.i.a.c.b2.n; import c.i.a.c.b2.r; import c.i.a.c.i2.f0; import c.i.a.c.x1.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.nio.ByteBuffer; import java.util.Objects; /* compiled from: AsynchronousMediaCodecAdapter */ @@ -23,7 +23,7 @@ public final class l implements r { public final o b; /* renamed from: c reason: collision with root package name */ - public final n f771c; + public final n f772c; public final boolean d; public boolean e; public int f = 0; @@ -31,7 +31,7 @@ public final class l implements r { public l(MediaCodec mediaCodec, HandlerThread handlerThread, HandlerThread handlerThread2, boolean z2, boolean z3, a aVar) { this.a = mediaCodec; this.b = new o(handlerThread); - this.f771c = new n(mediaCodec, handlerThread2, z2); + this.f772c = new n(mediaCodec, handlerThread2, z2); this.d = z3; } @@ -51,12 +51,12 @@ public final class l implements r { @Override // c.i.a.c.b2.r public void a(int i, int i2, b bVar, long j, int i3) { - n nVar = this.f771c; + n nVar = this.f772c; nVar.f(); n.a e = n.e(); e.a = i; e.b = i2; - e.f773c = 0; + e.f774c = 0; e.e = j; e.f = i3; MediaCodec.CryptoInfo cryptoInfo = e.d; @@ -69,7 +69,7 @@ public final class l implements r { byte[] b2 = n.b(bVar.a, cryptoInfo.iv); Objects.requireNonNull(b2); cryptoInfo.iv = b2; - cryptoInfo.mode = bVar.f1015c; + cryptoInfo.mode = bVar.f1016c; if (f0.a >= 24) { cryptoInfo.setPattern(new MediaCodec.CryptoInfo.Pattern(bVar.g, bVar.h)); } @@ -93,7 +93,7 @@ public final class l implements r { MediaCodec.CodecException codecException = oVar.j; if (codecException == null) { c.i.a.c.i2.n nVar = oVar.d; - if (!(nVar.f913c == 0)) { + if (!(nVar.f914c == 0)) { i = nVar.b(); } } else { @@ -113,11 +113,11 @@ public final class l implements r { public void configure(@Nullable MediaFormat mediaFormat, @Nullable Surface surface, @Nullable MediaCrypto mediaCrypto, int i) { o oVar = this.b; MediaCodec mediaCodec = this.a; - AnimatableValueParser.D(oVar.f774c == null); + d.D(oVar.f775c == null); oVar.b.start(); Handler handler = new Handler(oVar.b.getLooper()); mediaCodec.setCallback(oVar, handler); - oVar.f774c = handler; + oVar.f775c = handler; this.a.configure(mediaFormat, surface, mediaCrypto, i); this.f = 1; } @@ -134,10 +134,10 @@ public final class l implements r { MediaCodec.CodecException codecException = oVar.j; if (codecException == null) { c.i.a.c.i2.n nVar = oVar.e; - if (!(nVar.f913c == 0)) { + if (!(nVar.f914c == 0)) { i = nVar.b(); if (i >= 0) { - AnimatableValueParser.H(oVar.h); + d.H(oVar.h); MediaCodec.BufferInfo remove = oVar.f.remove(); bufferInfo.set(remove.offset, remove.size, remove.presentationTimeUs, remove.flags); } else if (i == -2) { @@ -171,7 +171,7 @@ public final class l implements r { @Override // c.i.a.c.b2.r public void flush() { - this.f771c.d(); + this.f772c.d(); this.a.flush(); o oVar = this.b; MediaCodec mediaCodec = this.a; @@ -179,7 +179,7 @@ public final class l implements r { j jVar = new j(mediaCodec); synchronized (oVar.a) { oVar.k++; - Handler handler = oVar.f774c; + Handler handler = oVar.f775c; int i = f0.a; handler.post(new d(oVar, jVar)); } @@ -219,7 +219,7 @@ public final class l implements r { public final void k() { if (this.d) { try { - this.f771c.a(); + this.f772c.a(); } catch (InterruptedException e) { Thread.currentThread().interrupt(); throw new IllegalStateException(e); @@ -229,12 +229,12 @@ public final class l implements r { @Override // c.i.a.c.b2.r public void queueInputBuffer(int i, int i2, int i3, long j, int i4) { - n nVar = this.f771c; + n nVar = this.f772c; nVar.f(); n.a e = n.e(); e.a = i; e.b = i2; - e.f773c = i3; + e.f774c = i3; e.e = j; e.f = i4; Handler handler = nVar.e; @@ -247,7 +247,7 @@ public final class l implements r { boolean z2 = true; try { if (this.f == 2) { - n nVar = this.f771c; + n nVar = this.f772c; if (nVar.i) { nVar.d(); nVar.d.quit(); @@ -285,7 +285,7 @@ public final class l implements r { @Override // c.i.a.c.b2.r public void start() { - n nVar = this.f771c; + n nVar = this.f772c; if (!nVar.i) { nVar.d.start(); nVar.e = new m(nVar, nVar.d.getLooper()); diff --git a/app/src/main/java/c/i/a/c/b2/m.java b/app/src/main/java/c/i/a/c/b2/m.java index 4ca028a323..300fab0b5e 100644 --- a/app/src/main/java/c/i/a/c/b2/m.java +++ b/app/src/main/java/c/i/a/c/b2/m.java @@ -26,7 +26,7 @@ public class m extends Handler { if (i == 0) { aVar = (n.a) message.obj; try { - nVar.f772c.queueInputBuffer(aVar.a, aVar.b, aVar.f773c, aVar.e, aVar.f); + nVar.f773c.queueInputBuffer(aVar.a, aVar.b, aVar.f774c, aVar.e, aVar.f); } catch (RuntimeException e) { nVar.f.set(e); } @@ -47,10 +47,10 @@ public class m extends Handler { try { if (nVar.h) { synchronized (n.b) { - nVar.f772c.queueSecureInputBuffer(i2, i3, cryptoInfo, j, i4); + nVar.f773c.queueSecureInputBuffer(i2, i3, cryptoInfo, j, i4); } } else { - nVar.f772c.queueSecureInputBuffer(i2, i3, cryptoInfo, j, i4); + nVar.f773c.queueSecureInputBuffer(i2, i3, cryptoInfo, j, i4); } } catch (RuntimeException e2) { nVar.f.set(e2); diff --git a/app/src/main/java/c/i/a/c/b2/n.java b/app/src/main/java/c/i/a/c/b2/n.java index 0f6d4f8567..ab9843212b 100644 --- a/app/src/main/java/c/i/a/c/b2/n.java +++ b/app/src/main/java/c/i/a/c/b2/n.java @@ -19,7 +19,7 @@ public class n { public static final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public final MediaCodec f772c; + public final MediaCodec f773c; public final HandlerThread d; public Handler e; public final AtomicReference f = new AtomicReference<>(); @@ -33,7 +33,7 @@ public class n { public int b; /* renamed from: c reason: collision with root package name */ - public int f773c; + public int f774c; public final MediaCodec.CryptoInfo d = new MediaCodec.CryptoInfo(); public long e; public int f; @@ -44,12 +44,12 @@ public class n { */ public n(MediaCodec mediaCodec, HandlerThread handlerThread, boolean z2) { j jVar = new j(); - this.f772c = mediaCodec; + this.f773c = mediaCodec; this.d = handlerThread; this.g = jVar; boolean z3 = false; if (!z2) { - String K = f0.K(f0.f911c); + String K = f0.K(f0.f912c); } z3 = true; this.h = z3; diff --git a/app/src/main/java/c/i/a/c/b2/o.java b/app/src/main/java/c/i/a/c/b2/o.java index e9636fa75b..7a4158f7b2 100644 --- a/app/src/main/java/c/i/a/c/b2/o.java +++ b/app/src/main/java/c/i/a/c/b2/o.java @@ -17,7 +17,7 @@ public final class o extends MediaCodec.Callback { public final HandlerThread b; /* renamed from: c reason: collision with root package name */ - public Handler f774c; + public Handler f775c; @GuardedBy("lock") public final n d; @GuardedBy("lock") @@ -59,11 +59,11 @@ public final class o extends MediaCodec.Callback { n nVar = this.d; nVar.a = 0; nVar.b = -1; - nVar.f913c = 0; + nVar.f914c = 0; n nVar2 = this.e; nVar2.a = 0; nVar2.b = -1; - nVar2.f913c = 0; + nVar2.f914c = 0; this.f.clear(); this.g.clear(); this.j = null; diff --git a/app/src/main/java/c/i/a/c/b2/p.java b/app/src/main/java/c/i/a/c/b2/p.java index a72f0f4e89..94f84041d2 100644 --- a/app/src/main/java/c/i/a/c/b2/p.java +++ b/app/src/main/java/c/i/a/c/b2/p.java @@ -1,6 +1,6 @@ package c.i.a.c.b2; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.exoplayer2.decoder.DecoderInputBuffer; import java.nio.ByteBuffer; /* compiled from: BatchBuffer */ @@ -9,7 +9,7 @@ public final class p extends DecoderInputBuffer { public int r; /* renamed from: s reason: collision with root package name */ - public int f775s = 32; + public int f776s = 32; public p() { super(2); @@ -28,11 +28,11 @@ public final class p extends DecoderInputBuffer { /* JADX WARNING: Removed duplicated region for block: B:16:0x004f */ public boolean u(DecoderInputBuffer decoderInputBuffer) { boolean z2; - AnimatableValueParser.k(!decoderInputBuffer.t()); - AnimatableValueParser.k(!decoderInputBuffer.l()); - AnimatableValueParser.k(!decoderInputBuffer.n()); + d.k(!decoderInputBuffer.t()); + d.k(!decoderInputBuffer.l()); + d.k(!decoderInputBuffer.n()); if (v()) { - if (this.r < this.f775s && decoderInputBuffer.m() == m()) { + if (this.r < this.f776s && decoderInputBuffer.m() == m()) { ByteBuffer byteBuffer = decoderInputBuffer.k; if (!(byteBuffer == null || (r3 = this.k) == null)) { } diff --git a/app/src/main/java/c/i/a/c/b2/q.java b/app/src/main/java/c/i/a/c/b2/q.java index 9c31363ff4..c270fbd1eb 100644 --- a/app/src/main/java/c/i/a/c/b2/q.java +++ b/app/src/main/java/c/i/a/c/b2/q.java @@ -5,5 +5,5 @@ public final class q { public long b; /* renamed from: c reason: collision with root package name */ - public boolean f776c; + public boolean f777c; } diff --git a/app/src/main/java/c/i/a/c/b2/s.java b/app/src/main/java/c/i/a/c/b2/s.java index 8e1153588f..fea32e8c94 100644 --- a/app/src/main/java/c/i/a/c/b2/s.java +++ b/app/src/main/java/c/i/a/c/b2/s.java @@ -19,7 +19,7 @@ public final class s { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f777c; + public final String f778c; @Nullable public final MediaCodecInfo.CodecCapabilities d; public final boolean e; @@ -31,7 +31,7 @@ public final class s { Objects.requireNonNull(str); this.a = str; this.b = str2; - this.f777c = str3; + this.f778c = str3; this.d = codecCapabilities; this.e = z5; this.f = z7; @@ -116,7 +116,7 @@ public final class s { if (format.B != format2.B) { i |= 1024; } - if (!this.e && !(format.f2276y == format2.f2276y && format.f2277z == format2.f2277z)) { + if (!this.e && !(format.f2279y == format2.f2279y && format.f2280z == format2.f2280z)) { i |= 512; } if (!f0.a(format.F, format2.F)) { @@ -188,11 +188,11 @@ public final class s { boolean z5 = false; if (!(str == null || this.b == null || (c2 = c.i.a.c.i2.s.c(str)) == null)) { if (!this.b.equals(c2)) { - StringBuilder P = a.P("codec.mime "); - P.append(format.q); - P.append(", "); - P.append(c2); - h(P.toString()); + StringBuilder O = a.O("codec.mime "); + O.append(format.q); + O.append(", "); + O.append(c2); + h(O.toString()); } else { Pair c3 = MediaCodecUtil.c(format); if (c3 != null) { @@ -213,11 +213,11 @@ public final class s { if (codecProfileLevel2.profile != intValue || codecProfileLevel2.level < intValue2) { } } - StringBuilder P2 = a.P("codec.profileLevel, "); - P2.append(format.q); - P2.append(", "); - P2.append(c2); - h(P2.toString()); + StringBuilder O2 = a.O("codec.profileLevel, "); + O2.append(format.q); + O2.append(", "); + O2.append(c2); + h(O2.toString()); } } } @@ -226,8 +226,8 @@ public final class s { return false; } if (this.g) { - int i4 = format.f2276y; - if (i4 <= 0 || (i = format.f2277z) <= 0) { + int i4 = format.f2279y; + if (i4 <= 0 || (i = format.f2280z) <= 0) { return true; } if (f0.a >= 21) { @@ -237,11 +237,11 @@ public final class s { z5 = true; } if (!z5) { - StringBuilder P3 = a.P("legacyFrameSize, "); - P3.append(format.f2276y); - P3.append("x"); - P3.append(format.f2277z); - h(P3.toString()); + StringBuilder O3 = a.O("legacyFrameSize, "); + O3.append(format.f2279y); + O3.append("x"); + O3.append(format.f2280z); + h(O3.toString()); } return z5; } @@ -336,35 +336,35 @@ public final class s { if (!b(videoCapabilities, i, i2, d)) { if (i < i2) { if ((!"OMX.MTK.VIDEO.DECODER.HEVC".equals(this.a) || !"mcv5a".equals(f0.b)) && b(videoCapabilities, i2, i, d)) { - StringBuilder R = a.R("sizeAndRate.rotated, ", i, "x", i2, "x"); - R.append(d); - StringBuilder V = a.V("AssumedSupport [", R.toString(), "] ["); - V.append(this.a); - V.append(", "); - V.append(this.b); - V.append("] ["); - V.append(f0.e); - V.append("]"); - Log.d("MediaCodecInfo", V.toString()); + StringBuilder Q = a.Q("sizeAndRate.rotated, ", i, "x", i2, "x"); + Q.append(d); + StringBuilder U = a.U("AssumedSupport [", Q.toString(), "] ["); + U.append(this.a); + U.append(", "); + U.append(this.b); + U.append("] ["); + U.append(f0.e); + U.append("]"); + Log.d("MediaCodecInfo", U.toString()); } } - StringBuilder R2 = a.R("sizeAndRate.support, ", i, "x", i2, "x"); - R2.append(d); - h(R2.toString()); + StringBuilder Q2 = a.Q("sizeAndRate.support, ", i, "x", i2, "x"); + Q2.append(d); + h(Q2.toString()); return false; } return true; } public final void h(String str) { - StringBuilder V = a.V("NoSupport [", str, "] ["); - V.append(this.a); - V.append(", "); - V.append(this.b); - V.append("] ["); - V.append(f0.e); - V.append("]"); - Log.d("MediaCodecInfo", V.toString()); + StringBuilder U = a.U("NoSupport [", str, "] ["); + U.append(this.a); + U.append(", "); + U.append(this.b); + U.append("] ["); + U.append(f0.e); + U.append("]"); + Log.d("MediaCodecInfo", U.toString()); } public String toString() { diff --git a/app/src/main/java/c/i/a/c/b2/u.java b/app/src/main/java/c/i/a/c/b2/u.java index f109a4cf92..37c521f9df 100644 --- a/app/src/main/java/c/i/a/c/b2/u.java +++ b/app/src/main/java/c/i/a/c/b2/u.java @@ -19,7 +19,7 @@ public final class u implements r { @Nullable /* renamed from: c reason: collision with root package name */ - public ByteBuffer[] f778c; + public ByteBuffer[] f779c; /* compiled from: SynchronousMediaCodecAdapter */ public static final class b implements r.a { @@ -60,7 +60,7 @@ public final class u implements r { do { dequeueOutputBuffer = this.a.dequeueOutputBuffer(bufferInfo, 0); if (dequeueOutputBuffer == -3 && f0.a < 21) { - this.f778c = this.a.getOutputBuffers(); + this.f779c = this.a.getOutputBuffers(); continue; } } while (dequeueOutputBuffer == -3); @@ -103,7 +103,7 @@ public final class u implements r { @Override // c.i.a.c.b2.r @Nullable public ByteBuffer i(int i) { - return f0.a >= 21 ? this.a.getOutputBuffer(i) : this.f778c[i]; + return f0.a >= 21 ? this.a.getOutputBuffer(i) : this.f779c[i]; } @Override // c.i.a.c.b2.r @@ -114,7 +114,7 @@ public final class u implements r { @Override // c.i.a.c.b2.r public void release() { this.b = null; - this.f778c = null; + this.f779c = null; this.a.release(); } @@ -134,7 +134,7 @@ public final class u implements r { this.a.start(); if (f0.a < 21) { this.b = this.a.getInputBuffers(); - this.f778c = this.a.getOutputBuffers(); + this.f779c = this.a.getOutputBuffers(); } } } diff --git a/app/src/main/java/c/i/a/c/c0.java b/app/src/main/java/c/i/a/c/c0.java index 85814ac6c5..0649fb288a 100644 --- a/app/src/main/java/c/i/a/c/c0.java +++ b/app/src/main/java/c/i/a/c/c0.java @@ -10,12 +10,12 @@ public abstract class c0 extends r1 { public final int b; /* renamed from: c reason: collision with root package name */ - public final h0 f779c; + public final h0 f780c; public final boolean d; public c0(boolean z2, h0 h0Var) { this.d = z2; - this.f779c = h0Var; + this.f780c = h0Var; this.b = h0Var.b(); } @@ -29,7 +29,7 @@ public abstract class c0 extends r1 { z2 = false; } if (z2) { - i = this.f779c.c(); + i = this.f780c.c(); } do { i1 i1Var = (i1) this; @@ -69,7 +69,7 @@ public abstract class c0 extends r1 { if (this.d) { z2 = false; } - int g = z2 ? this.f779c.g() : i - 1; + int g = z2 ? this.f780c.g() : i - 1; do { i1 i1Var = (i1) this; if (i1Var.i[g].q()) { @@ -121,7 +121,7 @@ public abstract class c0 extends r1 { int d = f0.d(i1Var.g, i + 1, false, false); int i2 = i1Var.h[d]; i1Var.i[d].g(i - i1Var.g[d], bVar, z2); - bVar.f959c += i2; + bVar.f960c += i2; if (z2) { Object obj = i1Var.j[d]; Object obj2 = bVar.b; @@ -141,7 +141,7 @@ public abstract class c0 extends r1 { int intValue = num == null ? -1 : num.intValue(); int i = i1Var.h[intValue]; i1Var.i[intValue].h(obj3, bVar); - bVar.f959c += i; + bVar.f960c += i; bVar.b = obj; return bVar; } @@ -195,10 +195,10 @@ public abstract class c0 extends r1 { int i3 = i1Var.g[d]; i1Var.i[d].o(i - i2, cVar, j); Object obj = i1Var.j[d]; - if (!r1.c.a.equals(cVar.f960c)) { - obj = Pair.create(obj, cVar.f960c); + if (!r1.c.a.equals(cVar.f961c)) { + obj = Pair.create(obj, cVar.f961c); } - cVar.f960c = obj; + cVar.f961c = obj; cVar.o += i3; cVar.p += i3; return cVar; @@ -206,7 +206,7 @@ public abstract class c0 extends r1 { public final int r(int i, boolean z2) { if (z2) { - return this.f779c.e(i); + return this.f780c.e(i); } if (i < this.b - 1) { return i + 1; @@ -216,7 +216,7 @@ public abstract class c0 extends r1 { public final int s(int i, boolean z2) { if (z2) { - return this.f779c.d(i); + return this.f780c.d(i); } if (i > 0) { return i - 1; diff --git a/app/src/main/java/c/i/a/c/c1.java b/app/src/main/java/c/i/a/c/c1.java index 920134d375..7f6135f4b6 100644 --- a/app/src/main/java/c/i/a/c/c1.java +++ b/app/src/main/java/c/i/a/c/c1.java @@ -17,7 +17,7 @@ public final class c1 { public final r1 b; /* renamed from: c reason: collision with root package name */ - public final y.a f780c; + public final y.a f781c; public final long d; public final int e; @Nullable @@ -36,11 +36,11 @@ public final class c1 { public volatile long r; /* renamed from: s reason: collision with root package name */ - public volatile long f781s; + public volatile long f782s; public c1(r1 r1Var, y.a aVar, long j, int i, @Nullable ExoPlaybackException exoPlaybackException, boolean z2, TrackGroupArray trackGroupArray, m mVar, List list, y.a aVar2, boolean z3, int i2, d1 d1Var, long j2, long j3, long j4, boolean z4, boolean z5) { this.b = r1Var; - this.f780c = aVar; + this.f781c = aVar; this.d = j; this.e = i; this.f = exoPlaybackException; @@ -54,7 +54,7 @@ public final class c1 { this.n = d1Var; this.q = j2; this.r = j3; - this.f781s = j4; + this.f782s = j4; this.o = z4; this.p = z5; } @@ -69,7 +69,7 @@ public final class c1 { @CheckResult public c1 a(y.a aVar) { - return new c1(this.b, this.f780c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, aVar, this.l, this.m, this.n, this.q, this.r, this.f781s, this.o, this.p); + return new c1(this.b, this.f781c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, aVar, this.l, this.m, this.n, this.q, this.r, this.f782s, this.o, this.p); } @CheckResult @@ -79,31 +79,31 @@ public final class c1 { @CheckResult public c1 c(boolean z2) { - return new c1(this.b, this.f780c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f781s, z2, this.p); + return new c1(this.b, this.f781c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f782s, z2, this.p); } @CheckResult public c1 d(boolean z2, int i) { - return new c1(this.b, this.f780c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, z2, i, this.n, this.q, this.r, this.f781s, this.o, this.p); + return new c1(this.b, this.f781c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, z2, i, this.n, this.q, this.r, this.f782s, this.o, this.p); } @CheckResult public c1 e(@Nullable ExoPlaybackException exoPlaybackException) { - return new c1(this.b, this.f780c, this.d, this.e, exoPlaybackException, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f781s, this.o, this.p); + return new c1(this.b, this.f781c, this.d, this.e, exoPlaybackException, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f782s, this.o, this.p); } @CheckResult public c1 f(d1 d1Var) { - return new c1(this.b, this.f780c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, d1Var, this.q, this.r, this.f781s, this.o, this.p); + return new c1(this.b, this.f781c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, d1Var, this.q, this.r, this.f782s, this.o, this.p); } @CheckResult public c1 g(int i) { - return new c1(this.b, this.f780c, this.d, i, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f781s, this.o, this.p); + return new c1(this.b, this.f781c, this.d, i, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f782s, this.o, this.p); } @CheckResult public c1 h(r1 r1Var) { - return new c1(r1Var, this.f780c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f781s, this.o, this.p); + return new c1(r1Var, this.f781c, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.q, this.r, this.f782s, this.o, this.p); } } diff --git a/app/src/main/java/c/i/a/c/c2/f.java b/app/src/main/java/c/i/a/c/c2/f.java index 9c203c33f9..4c40261d9d 100644 --- a/app/src/main/java/c/i/a/c/c2/f.java +++ b/app/src/main/java/c/i/a/c/c2/f.java @@ -29,13 +29,13 @@ public final class f extends g0 implements Handler.Callback { public final d w; /* renamed from: x reason: collision with root package name */ - public final Metadata[] f782x; + public final Metadata[] f783x; /* renamed from: y reason: collision with root package name */ - public final long[] f783y; + public final long[] f784y; /* renamed from: z reason: collision with root package name */ - public int f784z; + public int f785z; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public f(e eVar, @Nullable Looper looper) { @@ -53,22 +53,22 @@ public final class f extends g0 implements Handler.Callback { this.v = handler; this.t = cVar; this.w = new d(); - this.f782x = new Metadata[5]; - this.f783y = new long[5]; + this.f783x = new Metadata[5]; + this.f784y = new long[5]; } @Override // c.i.a.c.g0 public void B() { - Arrays.fill(this.f782x, (Object) null); - this.f784z = 0; + Arrays.fill(this.f783x, (Object) null); + this.f785z = 0; this.A = 0; this.B = null; } @Override // c.i.a.c.g0 public void D(long j, boolean z2) { - Arrays.fill(this.f782x, (Object) null); - this.f784z = 0; + Arrays.fill(this.f783x, (Object) null); + this.f785z = 0; this.A = 0; this.C = false; this.D = false; @@ -162,11 +162,11 @@ public final class f extends g0 implements Handler.Callback { J(a, arrayList); if (!arrayList.isEmpty()) { Metadata metadata = new Metadata(arrayList); - int i2 = this.f784z; + int i2 = this.f785z; int i3 = this.A; int i4 = (i2 + i3) % 5; - this.f782x[i4] = metadata; - this.f783y[i4] = this.w.m; + this.f783x[i4] = metadata; + this.f784y[i4] = this.w.m; this.A = i3 + 1; } } @@ -174,14 +174,14 @@ public final class f extends g0 implements Handler.Callback { } else if (I == -5) { Format format = A.b; Objects.requireNonNull(format); - this.E = format.f2275x; + this.E = format.f2278x; } } if (this.A > 0) { - long[] jArr = this.f783y; - int i5 = this.f784z; + long[] jArr = this.f784y; + int i5 = this.f785z; if (jArr[i5] <= j) { - Metadata metadata2 = this.f782x[i5]; + Metadata metadata2 = this.f783x[i5]; int i6 = f0.a; Handler handler = this.v; if (handler != null) { @@ -189,10 +189,10 @@ public final class f extends g0 implements Handler.Callback { } else { this.u.l(metadata2); } - Metadata[] metadataArr = this.f782x; - int i7 = this.f784z; + Metadata[] metadataArr = this.f783x; + int i7 = this.f785z; metadataArr[i7] = null; - this.f784z = (i7 + 1) % 5; + this.f785z = (i7 + 1) % 5; this.A--; } } diff --git a/app/src/main/java/c/i/a/c/c2/g.java b/app/src/main/java/c/i/a/c/c2/g.java index 0a7ea6c016..163479ccc1 100644 --- a/app/src/main/java/c/i/a/c/c2/g.java +++ b/app/src/main/java/c/i/a/c/c2/g.java @@ -1,7 +1,7 @@ package c.i.a.c.c2; import androidx.annotation.Nullable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.exoplayer2.metadata.Metadata; import java.nio.ByteBuffer; import java.util.Objects; @@ -12,7 +12,7 @@ public abstract class g implements b { public final Metadata a(d dVar) { ByteBuffer byteBuffer = dVar.k; Objects.requireNonNull(byteBuffer); - AnimatableValueParser.k(byteBuffer.position() == 0 && byteBuffer.hasArray() && byteBuffer.arrayOffset() == 0); + d.k(byteBuffer.position() == 0 && byteBuffer.hasArray() && byteBuffer.arrayOffset() == 0); if (dVar.m()) { return null; } diff --git a/app/src/main/java/c/i/a/c/c2/i/a.java b/app/src/main/java/c/i/a/c/c2/i/a.java index 7bb22f5c15..8c09338b38 100644 --- a/app/src/main/java/c/i/a/c/c2/i/a.java +++ b/app/src/main/java/c/i/a/c/c2/i/a.java @@ -17,6 +17,6 @@ public final class a extends g { Objects.requireNonNull(n); String n2 = wVar.n(); Objects.requireNonNull(n2); - return new Metadata(new EventMessage(n, n2, wVar.t(), wVar.t(), Arrays.copyOfRange(wVar.a, wVar.b, wVar.f920c))); + return new Metadata(new EventMessage(n, n2, wVar.t(), wVar.t(), Arrays.copyOfRange(wVar.a, wVar.b, wVar.f921c))); } } diff --git a/app/src/main/java/c/i/a/c/c2/j/a.java b/app/src/main/java/c/i/a/c/c2/j/a.java index 441c130656..4926eb2f45 100644 --- a/app/src/main/java/c/i/a/c/c2/j/a.java +++ b/app/src/main/java/c/i/a/c/c2/j/a.java @@ -14,10 +14,10 @@ import java.util.regex.Pattern; /* compiled from: IcyDecoder */ public final class a extends g { public static final Pattern a = Pattern.compile("(.+?)='(.*?)';", 32); - public final CharsetDecoder b = c.f1276c.newDecoder(); + public final CharsetDecoder b = c.f1277c.newDecoder(); /* renamed from: c reason: collision with root package name */ - public final CharsetDecoder f785c = c.b.newDecoder(); + public final CharsetDecoder f786c = c.b.newDecoder(); /* JADX INFO: finally extract failed */ @Override // c.i.a.c.c2.g @@ -28,15 +28,15 @@ public final class a extends g { str = this.b.decode(byteBuffer).toString(); } catch (CharacterCodingException unused) { try { - str = this.f785c.decode(byteBuffer).toString(); - this.f785c.reset(); + str = this.f786c.decode(byteBuffer).toString(); + this.f786c.reset(); byteBuffer.rewind(); } catch (CharacterCodingException unused2) { - this.f785c.reset(); + this.f786c.reset(); byteBuffer.rewind(); str = null; } catch (Throwable th) { - this.f785c.reset(); + this.f786c.reset(); byteBuffer.rewind(); throw th; } diff --git a/app/src/main/java/c/i/a/c/c2/k/b.java b/app/src/main/java/c/i/a/c/c2/k/b.java index 3abf8a0240..121548e2b9 100644 --- a/app/src/main/java/c/i/a/c/c2/k/b.java +++ b/app/src/main/java/c/i/a/c/c2/k/b.java @@ -43,12 +43,12 @@ public final class b extends g { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final int f786c; + public final int f787c; public C0089b(int i, boolean z2, int i2) { this.a = i; this.b = z2; - this.f786c = i2; + this.f787c = i2; } } @@ -74,9 +74,9 @@ public final class b extends g { System.arraycopy(wVar.a, wVar.b, bArr, 0, i4); wVar.b += i4; if (i2 == 2) { - StringBuilder P = c.d.b.a.a.P("image/"); - P.append(f0.K(new String(bArr, 0, 3, "ISO-8859-1"))); - str = P.toString(); + StringBuilder O = c.d.b.a.a.O("image/"); + O.append(f0.K(new String(bArr, 0, 3, "ISO-8859-1"))); + str = O.toString(); if ("image/jpg".equals(str)) { str = "image/jpeg"; } @@ -204,13 +204,13 @@ public final class b extends g { int i5 = v; int x2 = i >= 3 ? wVar.x() : 0; if (s2 == 0 && s3 == 0 && s4 == 0 && s5 == 0 && i5 == 0 && x2 == 0) { - wVar.D(wVar.f920c); + wVar.D(wVar.f921c); return null; } int i6 = wVar.b + i5; - if (i6 > wVar.f920c) { + if (i6 > wVar.f921c) { Log.w("Id3Decoder", "Frame size exceeds remaining tag data"); - wVar.D(wVar.f920c); + wVar.D(wVar.f921c); return null; } if (aVar != null) { @@ -333,7 +333,7 @@ public final class b extends g { int s2 = wVar.s(); int s3 = wVar.s(); v vVar = new v(); - vVar.j(wVar.a, wVar.f920c); + vVar.j(wVar.a, wVar.f921c); vVar.k(wVar.b * 8); int i2 = ((i - 10) * 8) / (s2 + s3); int[] iArr = new int[i2]; @@ -552,9 +552,9 @@ public final class b extends g { } else { int u = wVar.u(); if (u != 4801587) { - StringBuilder P = c.d.b.a.a.P("Unexpected first three bytes of ID3 tag header: 0x"); - P.append(String.format("%06X", Integer.valueOf(u))); - Log.w("Id3Decoder", P.toString()); + StringBuilder O = c.d.b.a.a.O("Unexpected first three bytes of ID3 tag header: 0x"); + O.append(String.format("%06X", Integer.valueOf(u))); + Log.w("Id3Decoder", O.toString()); } else { int s2 = wVar.s(); wVar.E(1); @@ -580,7 +580,7 @@ public final class b extends g { r -= 10; } } else { - c.d.b.a.a.j0("Skipped ID3 tag with unsupported majorVersion=", s2, "Id3Decoder"); + c.d.b.a.a.i0("Skipped ID3 tag with unsupported majorVersion=", s2, "Id3Decoder"); } bVar = new C0089b(s2, s2 < 4 && (s3 & 128) != 0, r); if (bVar != null) { @@ -590,16 +590,16 @@ public final class b extends g { if (bVar.a == 2) { i2 = 6; } - int i4 = bVar.f786c; + int i4 = bVar.f787c; if (bVar.b) { i4 = x(wVar, i4); } wVar.C(i3 + i4); if (!y(wVar, bVar.a, i2, false)) { if (bVar.a != 4 || !y(wVar, 4, i2, true)) { - StringBuilder P2 = c.d.b.a.a.P("Failed to validate ID3 tag with majorVersion="); - P2.append(bVar.a); - Log.w("Id3Decoder", P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Failed to validate ID3 tag with majorVersion="); + O2.append(bVar.a); + Log.w("Id3Decoder", O2.toString()); return null; } z2 = true; diff --git a/app/src/main/java/c/i/a/c/c2/l/a.java b/app/src/main/java/c/i/a/c/c2/l/a.java index fa03901b2d..cb14adb683 100644 --- a/app/src/main/java/c/i/a/c/c2/l/a.java +++ b/app/src/main/java/c/i/a/c/c2/l/a.java @@ -21,7 +21,7 @@ public final class a extends g { public final v b = new v(); /* renamed from: c reason: collision with root package name */ - public e0 f787c; + public e0 f788c; @Override // c.i.a.c.c2.g public Metadata b(d dVar, ByteBuffer byteBuffer) { @@ -50,11 +50,11 @@ public final class a extends g { long j6; long j7; boolean z10; - e0 e0Var = this.f787c; + e0 e0Var = this.f788c; if (e0Var == null || dVar.q != e0Var.d()) { long j8 = dVar.m; e0 e0Var2 = new e0(j8); - this.f787c = e0Var2; + this.f788c = e0Var2; e0Var2.a(j8 - dVar.q); } byte[] array = byteBuffer.array(); @@ -142,7 +142,7 @@ public final class a extends g { entry = new SpliceScheduleCommand(arrayList2); } else if (g3 == 5) { w wVar2 = this.a; - e0 e0Var3 = this.f787c; + e0 e0Var3 = this.f788c; long t3 = wVar2.t(); boolean z15 = (wVar2.s() & 128) != 0; List emptyList = Collections.emptyList(); @@ -198,7 +198,7 @@ public final class a extends g { entry = new SpliceInsertCommand(t3, z15, z9, z8, z7, j6, e0Var3.b(j6), list, z6, j5, i7, i6, i5); } else if (g3 == 6) { w wVar3 = this.a; - e0 e0Var4 = this.f787c; + e0 e0Var4 = this.f788c; long a3 = TimeSignalCommand.a(wVar3, g); entry = new TimeSignalCommand(a3, e0Var4.b(a3)); } diff --git a/app/src/main/java/c/i/a/c/d0.java b/app/src/main/java/c/i/a/c/d0.java index fcc71445c3..3e4ec72207 100644 --- a/app/src/main/java/c/i/a/c/d0.java +++ b/app/src/main/java/c/i/a/c/d0.java @@ -11,7 +11,7 @@ public final class d0 { public final a b; /* renamed from: c reason: collision with root package name */ - public boolean f788c; + public boolean f789c; /* compiled from: AudioBecomingNoisyManager */ public final class a extends BroadcastReceiver implements Runnable { @@ -32,7 +32,7 @@ public final class d0 { @Override // java.lang.Runnable public void run() { - if (d0.this.f788c) { + if (d0.this.f789c) { p1.this.Y(false, -1, 3); } } @@ -48,12 +48,12 @@ public final class d0 { } public void a(boolean z2) { - if (z2 && !this.f788c) { + if (z2 && !this.f789c) { this.a.registerReceiver(this.b, new IntentFilter("android.media.AUDIO_BECOMING_NOISY")); - this.f788c = true; - } else if (!z2 && this.f788c) { + this.f789c = true; + } else if (!z2 && this.f789c) { this.a.unregisterReceiver(this.b); - this.f788c = false; + this.f789c = false; } } } diff --git a/app/src/main/java/c/i/a/c/d1.java b/app/src/main/java/c/i/a/c/d1.java index 8d4498d518..5a055c2ef7 100644 --- a/app/src/main/java/c/i/a/c/d1.java +++ b/app/src/main/java/c/i/a/c/d1.java @@ -1,23 +1,23 @@ package c.i.a.c; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: PlaybackParameters */ public final class d1 { public static final d1 a = new d1(1.0f, 1.0f); public final float b; /* renamed from: c reason: collision with root package name */ - public final float f789c; + public final float f790c; public final int d; public d1(float f, float f2) { boolean z2 = true; - AnimatableValueParser.k(f > 0.0f); - AnimatableValueParser.k(f2 <= 0.0f ? false : z2); + d.k(f > 0.0f); + d.k(f2 <= 0.0f ? false : z2); this.b = f; - this.f789c = f2; + this.f790c = f2; this.d = Math.round(f * 1000.0f); } @@ -29,14 +29,14 @@ public final class d1 { return false; } d1 d1Var = (d1) obj; - return this.b == d1Var.b && this.f789c == d1Var.f789c; + return this.b == d1Var.b && this.f790c == d1Var.f790c; } public int hashCode() { - return Float.floatToRawIntBits(this.f789c) + ((Float.floatToRawIntBits(this.b) + 527) * 31); + return Float.floatToRawIntBits(this.f790c) + ((Float.floatToRawIntBits(this.b) + 527) * 31); } public String toString() { - return f0.k("PlaybackParameters(speed=%.2f, pitch=%.2f)", Float.valueOf(this.b), Float.valueOf(this.f789c)); + return f0.k("PlaybackParameters(speed=%.2f, pitch=%.2f)", Float.valueOf(this.b), Float.valueOf(this.f790c)); } } diff --git a/app/src/main/java/c/i/a/c/d2/a.java b/app/src/main/java/c/i/a/c/d2/a.java index d7e5a39ff1..8a5e48d07d 100644 --- a/app/src/main/java/c/i/a/c/d2/a.java +++ b/app/src/main/java/c/i/a/c/d2/a.java @@ -44,14 +44,14 @@ public final /* synthetic */ class a implements y.b { t.a aVar5 = tVar.n; aVar3 = new t.a(r1Var, aVar5.d, aVar5.e); } else { - aVar3 = new t.a(r1Var, r1.c.a, t.a.f815c); + aVar3 = new t.a(r1Var, r1.c.a, t.a.f816c); } tVar.n = aVar3; } else { r1Var.n(0, tVar.l); r1.c cVar = tVar.l; long j2 = cVar.q; - Object obj2 = cVar.f960c; + Object obj2 = cVar.f961c; s sVar3 = tVar.o; if (sVar3 != null) { long j3 = sVar3.j; @@ -74,7 +74,7 @@ public final /* synthetic */ class a implements y.b { tVar.u(longValue); y.a aVar7 = sVar.i; Object obj4 = aVar7.a; - if (tVar.n.e != null && obj4.equals(t.a.f815c)) { + if (tVar.n.e != null && obj4.equals(t.a.f816c)) { obj4 = tVar.n.e; } aVar = aVar7.b(obj4); diff --git a/app/src/main/java/c/i/a/c/d2/b0.java b/app/src/main/java/c/i/a/c/d2/b0.java index c4b0a97904..37797ff891 100644 --- a/app/src/main/java/c/i/a/c/d2/b0.java +++ b/app/src/main/java/c/i/a/c/d2/b0.java @@ -30,7 +30,6 @@ import c.i.a.c.s0; import c.i.a.c.x1.b; import c.i.a.c.z1.q; import c.i.a.c.z1.s; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.ParserException; import com.google.android.exoplayer2.decoder.DecoderInputBuffer; @@ -90,20 +89,20 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { @Nullable /* renamed from: s reason: collision with root package name */ - public final String f790s; + public final String f791s; public final long t; public final Loader u = new Loader("Loader:ProgressiveMediaPeriod"); public final k v; public final c.i.a.c.i2.j w; /* renamed from: x reason: collision with root package name */ - public final Runnable f791x; + public final Runnable f792x; /* renamed from: y reason: collision with root package name */ - public final Runnable f792y; + public final Runnable f793y; /* renamed from: z reason: collision with root package name */ - public final Handler f793z; + public final Handler f794z; /* compiled from: ProgressiveMediaPeriod */ public final class a implements Loader.e, q.a { @@ -111,7 +110,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { public final Uri b; /* renamed from: c reason: collision with root package name */ - public final c.i.a.c.h2.v f794c; + public final c.i.a.c.h2.v f795c; public final k d; public final j e; public final c.i.a.c.i2.j f; @@ -127,7 +126,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { public a(Uri uri, c.i.a.c.h2.j jVar, k kVar, j jVar2, c.i.a.c.i2.j jVar3) { this.b = uri; - this.f794c = new c.i.a.c.h2.v(jVar); + this.f795c = new c.i.a.c.h2.v(jVar); this.d = kVar; this.e = jVar2; this.f = jVar3; @@ -136,9 +135,9 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { public final l a(long j) { Collections.emptyMap(); Uri uri = this.b; - String str = b0.this.f790s; + String str = b0.this.f791s; Map map = b0.i; - AnimatableValueParser.I(uri, "The uri must be set."); + c.c.a.a0.d.I(uri, "The uri must be set."); return new l(uri, 0, 1, null, map, j, -1, str, 6, null); } @@ -151,13 +150,13 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { long j = this.g.a; l a = a(j); this.k = a; - long a2 = this.f794c.a(a); + long a2 = this.f795c.a(a); this.l = a2; if (a2 != -1) { this.l = a2 + j; } - b0.this.B = IcyHeaders.a(this.f794c.j()); - c.i.a.c.h2.v vVar = this.f794c; + b0.this.B = IcyHeaders.a(this.f795c.j()); + c.i.a.c.h2.v vVar = this.f795c; IcyHeaders icyHeaders = b0.this.B; if (icyHeaders == null || (i = icyHeaders.n) == -1) { fVar = vVar; @@ -168,11 +167,11 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { ((e0) B).e(b0.j); } long j2 = j; - this.d.b(fVar, this.b, this.f794c.j(), j, this.l, this.e); + this.d.b(fVar, this.b, this.f795c.j(), j, this.l, this.e); if (b0.this.B != null) { h hVar = this.d.b; if (hVar instanceof c.i.a.c.a2.g0.f) { - ((c.i.a.c.a2.g0.f) hVar).f689s = true; + ((c.i.a.c.a2.g0.f) hVar).f690s = true; } } if (this.i) { @@ -196,14 +195,14 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { c.i.a.c.a2.s sVar = this.g; h hVar3 = kVar2.b; Objects.requireNonNull(hVar3); - i iVar = kVar2.f810c; + i iVar = kVar2.f811c; Objects.requireNonNull(iVar); i2 = hVar3.e(iVar, sVar); j2 = this.d.a(); if (j2 > b0.this.t + j2) { this.f.a(); b0 b0Var = b0.this; - b0Var.f793z.post(b0Var.f792y); + b0Var.f794z.post(b0Var.f793y); } } catch (InterruptedException unused) { throw new InterruptedIOException(); @@ -215,7 +214,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { } else if (this.d.a() != -1) { this.g.a = this.d.a(); } - c.i.a.c.h2.v vVar2 = this.f794c; + c.i.a.c.h2.v vVar2 = this.f795c; if (vVar2 != null) { try { vVar2.a.close(); @@ -226,7 +225,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { if (!(i2 == 1 || this.d.a() == -1)) { this.g.a = this.d.a(); } - c.i.a.c.h2.v vVar3 = this.f794c; + c.i.a.c.h2.v vVar3 = this.f795c; int i3 = f0.a; if (vVar3 != null) { try { @@ -277,7 +276,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { i = -5; if (!e0Var.m()) { if (!z3) { - if (!e0Var.f801x) { + if (!e0Var.f802x) { Format format = e0Var.B; if (format != null && (z2 || format != e0Var.g)) { e0Var.p(format, s0Var); @@ -301,7 +300,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { } aVar2.a = e0Var.l[k]; aVar2.b = e0Var.k[k]; - aVar2.f804c = e0Var.o[k]; + aVar2.f805c = e0Var.o[k]; i = -4; } } @@ -312,7 +311,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { d0 d0Var2 = e0Var.a; e0.a aVar3 = e0Var.b; d0.a aVar4 = d0Var2.e; - c.i.a.c.i2.w wVar = d0Var2.f797c; + c.i.a.c.i2.w wVar = d0Var2.f798c; if (decoderInputBuffer.t()) { long j2 = aVar3.b; wVar.z(1); @@ -363,21 +362,21 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { iArr[0] = 0; iArr2[0] = aVar3.a - ((int) (j4 - aVar3.b)); } - w.a aVar5 = aVar3.f804c; + w.a aVar5 = aVar3.f805c; int i10 = f0.a; byte[] bArr2 = aVar5.b; byte[] bArr3 = bVar.a; i2 = i5; int i11 = aVar5.a; i3 = i; - int i12 = aVar5.f766c; + int i12 = aVar5.f767c; int i13 = aVar5.d; bVar.f = i4; bVar.d = iArr; bVar.e = iArr2; bVar.b = bArr2; bVar.a = bArr3; - bVar.f1015c = i11; + bVar.f1016c = i11; bVar.g = i12; bVar.h = i13; d0Var = d0Var2; @@ -491,7 +490,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { z2 = true; } } - AnimatableValueParser.k(z2); + c.c.a.a0.d.k(z2); e0Var.t += i; } if (i == 0) { @@ -539,14 +538,14 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { public final boolean[] b; /* renamed from: c reason: collision with root package name */ - public final boolean[] f795c; + public final boolean[] f796c; public final boolean[] d; public e(TrackGroupArray trackGroupArray, boolean[] zArr) { this.a = trackGroupArray; this.b = zArr; int i = trackGroupArray.j; - this.f795c = new boolean[i]; + this.f796c = new boolean[i]; this.d = new boolean[i]; } } @@ -570,13 +569,13 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { this.o = aVar2; this.q = bVar; this.r = mVar; - this.f790s = str; + this.f791s = str; this.t = (long) i2; this.v = new k(lVar); this.w = new c.i.a.c.i2.j(); - this.f791x = new g(this); - this.f792y = new i(this); - this.f793z = f0.j(); + this.f792x = new g(this); + this.f793y = new i(this); + this.f794z = f0.j(); this.D = new d[0]; this.C = new e0[0]; this.R = -9223372036854775807L; @@ -614,7 +613,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { } } m mVar = this.r; - Looper looper = this.f793z.getLooper(); + Looper looper = this.f794z.getLooper(); s sVar = this.m; q.a aVar = this.p; Objects.requireNonNull(looper); @@ -636,12 +635,12 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { public final void C() { a aVar = new a(this.k, this.l, this.v, this, this.w); if (this.F) { - AnimatableValueParser.D(w()); + c.c.a.a0.d.D(w()); long j2 = this.J; if (j2 == -9223372036854775807L || this.R <= j2) { t tVar = this.I; Objects.requireNonNull(tVar); - long j3 = tVar.h(this.R).a.f765c; + long j3 = tVar.h(this.R).a.f766c; long j4 = this.R; aVar.g.a = j3; aVar.j = j4; @@ -662,7 +661,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { int a2 = ((r) this.n).a(this.L); Objects.requireNonNull(loader); Looper myLooper = Looper.myLooper(); - AnimatableValueParser.H(myLooper); + c.c.a.a0.d.H(myLooper); loader.e = null; long elapsedRealtime = SystemClock.elapsedRealtime(); new Loader.d(myLooper, aVar, this, a2, elapsedRealtime).b(0); @@ -677,15 +676,15 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { @Override // c.i.a.c.a2.j public void a(t tVar) { - this.f793z.post(new h(this, tVar)); + this.f794z.post(new h(this, tVar)); } /* JADX DEBUG: Method arguments types fixed to match base method, original types: [com.google.android.exoplayer2.upstream.Loader$e, long, long, boolean] */ @Override // com.google.android.exoplayer2.upstream.Loader.b public void b(a aVar, long j2, long j3, boolean z2) { a aVar2 = aVar; - c.i.a.c.h2.v vVar = aVar2.f794c; - r rVar = new r(aVar2.a, aVar2.k, vVar.f898c, vVar.d, j2, j3, vVar.b); + c.i.a.c.h2.v vVar = aVar2.f795c; + r rVar = new r(aVar2.a, aVar2.k, vVar.f899c, vVar.d, j2, j3, vVar.b); Objects.requireNonNull(this.n); z.a aVar3 = this.o; aVar3.c(rVar, new u(1, -1, null, 0, null, aVar3.a(aVar2.j), aVar3.a(this.J))); @@ -724,8 +723,8 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { this.J = j4; ((c0) this.q).t(j4, c2, this.K); } - c.i.a.c.h2.v vVar = aVar2.f794c; - r rVar = new r(aVar2.a, aVar2.k, vVar.f898c, vVar.d, j2, j3, vVar.b); + c.i.a.c.h2.v vVar = aVar2.f795c; + r rVar = new r(aVar2.a, aVar2.k, vVar.f899c, vVar.d, j2, j3, vVar.b); Objects.requireNonNull(this.n); z.a aVar3 = this.o; aVar3.d(rVar, new u(1, -1, null, 0, null, aVar3.a(aVar2.j), aVar3.a(this.J))); @@ -784,7 +783,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { e0Var.h(); } Loader.d dVar = this.u.d; - AnimatableValueParser.H(dVar); + c.c.a.a0.d.H(dVar); dVar.a(false); } else { this.u.e = null; @@ -834,7 +833,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { t.a h = this.I.h(j2); long j3 = h.a.b; long j4 = h.b.b; - long j5 = o1Var.f943c; + long j5 = o1Var.f944c; if (j5 == 0 && o1Var.d == 0) { return j2; } @@ -871,7 +870,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { @Override // c.i.a.c.a2.j public void j() { this.E = true; - this.f793z.post(this.f791x); + this.f794z.post(this.f792x); } @Override // c.i.a.c.d2.v @@ -898,12 +897,12 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { t(); e eVar = this.H; TrackGroupArray trackGroupArray = eVar.a; - boolean[] zArr3 = eVar.f795c; + boolean[] zArr3 = eVar.f796c; int i2 = this.O; for (int i3 = 0; i3 < gVarArr.length; i3++) { if (f0VarArr[i3] != null && (gVarArr[i3] == null || !zArr[i3])) { int i4 = ((c) f0VarArr[i3]).a; - AnimatableValueParser.D(zArr3[i4]); + c.c.a.a0.d.D(zArr3[i4]); this.O--; zArr3[i4] = false; f0VarArr[i3] = null; @@ -913,10 +912,10 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { for (int i5 = 0; i5 < gVarArr.length; i5++) { if (f0VarArr[i5] == null && gVarArr[i5] != null) { g gVar = gVarArr[i5]; - AnimatableValueParser.D(gVar.length() == 1); - AnimatableValueParser.D(gVar.f(0) == 0); + c.c.a.a0.d.D(gVar.length() == 1); + c.c.a.a0.d.D(gVar.f(0) == 0); int a2 = trackGroupArray.a(gVar.a()); - AnimatableValueParser.D(!zArr3[a2]); + c.c.a.a0.d.D(!zArr3[a2]); this.O++; zArr3[a2] = true; f0VarArr[i5] = new c(a2); @@ -935,7 +934,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { e0Var2.h(); } Loader.d dVar = this.u.d; - AnimatableValueParser.H(dVar); + c.c.a.a0.d.H(dVar); dVar.a(false); } else { for (e0 e0Var3 : this.C) { @@ -972,8 +971,8 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { if (this.P == -1) { this.P = aVar2.l; } - c.i.a.c.h2.v vVar = aVar2.f794c; - r rVar = new r(aVar2.a, aVar2.k, vVar.f898c, vVar.d, j2, j3, vVar.b); + c.i.a.c.h2.v vVar = aVar2.f795c; + r rVar = new r(aVar2.a, aVar2.k, vVar.f899c, vVar.d, j2, j3, vVar.b); h0.b(aVar2.j); h0.b(this.J); r rVar2 = (r) this.n; @@ -1044,7 +1043,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { if (zArr[i2]) { e0 e0Var = this.C[i2]; synchronized (e0Var) { - z2 = e0Var.f801x; + z2 = e0Var.f802x; } if (!z2) { e0 e0Var2 = this.C[i2]; @@ -1072,7 +1071,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { int i2; t(); if (!w()) { - boolean[] zArr = this.H.f795c; + boolean[] zArr = this.H.f796c; int length = this.C.length; for (int i3 = 0; i3 < length; i3++) { e0 e0Var = this.C[i3]; @@ -1083,7 +1082,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { j3 = -1; if (i4 != 0) { long[] jArr = e0Var.n; - int i5 = e0Var.f800s; + int i5 = e0Var.f801s; if (j2 >= jArr[i5]) { int i6 = e0Var.i(i5, (!z3 || (i2 = e0Var.t) == i4) ? i4 : i2 + 1, j2, z2); if (i6 != -1) { @@ -1103,7 +1102,7 @@ public final class b0 implements v, j, Loader.b, Loader.f, e0.b { @EnsuresNonNull({"trackState", "seekMap"}) public final void t() { - AnimatableValueParser.D(this.F); + c.c.a.a0.d.D(this.F); Objects.requireNonNull(this.H); Objects.requireNonNull(this.I); } diff --git a/app/src/main/java/c/i/a/c/d2/c0.java b/app/src/main/java/c/i/a/c/d2/c0.java index 8f75f399d4..5a8e9b87be 100644 --- a/app/src/main/java/c/i/a/c/d2/c0.java +++ b/app/src/main/java/c/i/a/c/d2/c0.java @@ -53,7 +53,7 @@ public final class c0 extends j implements b0.b { public l b; /* renamed from: c reason: collision with root package name */ - public t f796c = new p(); + public t f797c = new p(); public u d = new r(); public int e = 1048576; @@ -104,9 +104,9 @@ public final class c0 extends j implements b0.b { if (dVar != null) { dVar.a(true); } - loader.f2348c.execute(new Loader.g(b0Var)); - loader.f2348c.shutdown(); - b0Var.f793z.removeCallbacksAndMessages(null); + loader.f2351c.execute(new Loader.g(b0Var)); + loader.f2351c.shutdown(); + b0Var.f794z.removeCallbacksAndMessages(null); b0Var.A = null; b0Var.V = true; } @@ -118,7 +118,7 @@ public final class c0 extends j implements b0.b { if (xVar != null) { a2.d(xVar); } - return new b0(this.h.a, a2, this.j, this.k, this.d.g(0, aVar), this.l, this.f807c.g(0, aVar, 0), this, mVar, this.h.f, this.m); + return new b0(this.h.a, a2, this.j, this.k, this.d.g(0, aVar), this.l, this.f808c.g(0, aVar, 0), this, mVar, this.h.f, this.m); } @Override // c.i.a.c.d2.j diff --git a/app/src/main/java/c/i/a/c/d2/d0.java b/app/src/main/java/c/i/a/c/d2/d0.java index c3d5c6bb8b..356327b0ed 100644 --- a/app/src/main/java/c/i/a/c/d2/d0.java +++ b/app/src/main/java/c/i/a/c/d2/d0.java @@ -12,7 +12,7 @@ public class d0 { public final int b; /* renamed from: c reason: collision with root package name */ - public final w f797c = new w(32); + public final w f798c = new w(32); public a d; public a e; public a f; @@ -24,7 +24,7 @@ public class d0 { public final long b; /* renamed from: c reason: collision with root package name */ - public boolean f798c; + public boolean f799c; @Nullable public c d; @Nullable @@ -91,7 +91,7 @@ public class d0 { m mVar = this.a; c cVar = aVar.d; synchronized (mVar) { - c[] cVarArr = mVar.f891c; + c[] cVarArr = mVar.f892c; cVarArr[0] = cVar; mVar.a(cVarArr); } @@ -122,7 +122,7 @@ public class d0 { public final int c(int i) { c cVar; a aVar = this.f; - if (!aVar.f798c) { + if (!aVar.f799c) { m mVar = this.a; synchronized (mVar) { mVar.e++; @@ -141,7 +141,7 @@ public class d0 { a aVar2 = new a(this.f.b, this.b); aVar.d = cVar; aVar.e = aVar2; - aVar.f798c = true; + aVar.f799c = true; } return Math.min(i, (int) (this.f.b - this.g)); } diff --git a/app/src/main/java/c/i/a/c/d2/e0.java b/app/src/main/java/c/i/a/c/d2/e0.java index 271cd32cd6..37c1251a00 100644 --- a/app/src/main/java/c/i/a/c/d2/e0.java +++ b/app/src/main/java/c/i/a/c/d2/e0.java @@ -5,6 +5,7 @@ import android.util.Log; import androidx.annotation.CallSuper; import androidx.annotation.Nullable; import androidx.constraintlayout.solver.widgets.analyzer.BasicMeasure; +import c.c.a.a0.d; import c.i.a.c.a2.v; import c.i.a.c.a2.w; import c.i.a.c.d2.d0; @@ -15,7 +16,6 @@ import c.i.a.c.i2.f0; import c.i.a.c.s0; import c.i.a.c.z1.q; import c.i.a.c.z1.s; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.drm.DrmInitData; import com.google.android.exoplayer2.drm.DrmSession; @@ -37,7 +37,7 @@ public class e0 implements w { @Nullable /* renamed from: c reason: collision with root package name */ - public final s f799c; + public final s f800c; @Nullable public final q.a d; @Nullable @@ -60,20 +60,20 @@ public class e0 implements w { public int r; /* renamed from: s reason: collision with root package name */ - public int f800s; + public int f801s; public int t; public long u = Long.MIN_VALUE; public long v = Long.MIN_VALUE; public long w = Long.MIN_VALUE; /* renamed from: x reason: collision with root package name */ - public boolean f801x; + public boolean f802x; /* renamed from: y reason: collision with root package name */ - public boolean f802y = true; + public boolean f803y = true; /* renamed from: z reason: collision with root package name */ - public boolean f803z = true; + public boolean f804z = true; /* compiled from: SampleQueue */ public static final class a { @@ -82,7 +82,7 @@ public class e0 implements w { @Nullable /* renamed from: c reason: collision with root package name */ - public w.a f804c; + public w.a f805c; } /* compiled from: SampleQueue */ @@ -91,7 +91,7 @@ public class e0 implements w { public e0(m mVar, @Nullable Looper looper, @Nullable s sVar, @Nullable q.a aVar) { this.e = looper; - this.f799c = sVar; + this.f800c = sVar; this.d = aVar; this.a = new d0(mVar); } @@ -126,9 +126,9 @@ public class e0 implements w { public void d(long j, int i, int i2, int i3, @Nullable w.a aVar) { int i4 = i & 1; boolean z2 = i4 != 0; - if (this.f802y) { + if (this.f803y) { if (z2) { - this.f802y = false; + this.f803y = false; } else { return; } @@ -138,9 +138,9 @@ public class e0 implements w { if (j2 >= this.u) { if (i4 == 0) { if (!this.E) { - StringBuilder P = c.d.b.a.a.P("Overriding unexpected non-sync sample for format: "); - P.append(this.B); - Log.w("SampleQueue", P.toString()); + StringBuilder O = c.d.b.a.a.O("Overriding unexpected non-sync sample for format: "); + O.append(this.B); + Log.w("SampleQueue", O.toString()); this.E = true; } i |= 1; @@ -154,9 +154,9 @@ public class e0 implements w { int i5 = this.q; if (i5 > 0) { int k = k(i5 - 1); - AnimatableValueParser.k(this.k[k] + ((long) this.l[k]) <= j3); + d.k(this.k[k] + ((long) this.l[k]) <= j3); } - this.f801x = (536870912 & i) != 0; + this.f802x = (536870912 & i) != 0; this.w = Math.max(this.w, j2); int k2 = k(this.q); this.n[k2] = j2; @@ -182,16 +182,16 @@ public class e0 implements w { int[] iArr3 = new int[i8]; w.a[] aVarArr = new w.a[i8]; Format[] formatArr2 = new Format[i8]; - int i9 = this.f800s; + int i9 = this.f801s; int i10 = i7 - i9; System.arraycopy(jArr, i9, jArr2, 0, i10); - System.arraycopy(this.n, this.f800s, jArr3, 0, i10); - System.arraycopy(this.m, this.f800s, iArr2, 0, i10); - System.arraycopy(this.l, this.f800s, iArr3, 0, i10); - System.arraycopy(this.o, this.f800s, aVarArr, 0, i10); - System.arraycopy(this.p, this.f800s, formatArr2, 0, i10); - System.arraycopy(this.j, this.f800s, iArr, 0, i10); - int i11 = this.f800s; + System.arraycopy(this.n, this.f801s, jArr3, 0, i10); + System.arraycopy(this.m, this.f801s, iArr2, 0, i10); + System.arraycopy(this.l, this.f801s, iArr3, 0, i10); + System.arraycopy(this.o, this.f801s, aVarArr, 0, i10); + System.arraycopy(this.p, this.f801s, formatArr2, 0, i10); + System.arraycopy(this.j, this.f801s, iArr, 0, i10); + int i11 = this.f801s; System.arraycopy(this.k, 0, jArr2, i10, i11); System.arraycopy(this.n, 0, jArr3, i10, i11); System.arraycopy(this.m, 0, iArr2, i10, i11); @@ -206,7 +206,7 @@ public class e0 implements w { this.o = aVarArr; this.p = formatArr2; this.j = iArr; - this.f800s = 0; + this.f801s = 0; this.i = i8; } } @@ -218,7 +218,7 @@ public class e0 implements w { this.A = format; synchronized (this) { z2 = false; - this.f803z = false; + this.f804z = false; if (!f0.a(format, this.B)) { if (f0.a(format, this.C)) { this.B = this.C; @@ -234,7 +234,7 @@ public class e0 implements w { b bVar = this.f; if (bVar != null && z2) { b0 b0Var = (b0) bVar; - b0Var.f793z.post(b0Var.f791x); + b0Var.f794z.post(b0Var.f792x); } } @@ -256,11 +256,11 @@ public class e0 implements w { int i2 = this.q - i; this.q = i2; this.r += i; - int i3 = this.f800s + i; - this.f800s = i3; + int i3 = this.f801s + i; + this.f801s = i3; int i4 = this.i; if (i3 >= i4) { - this.f800s = i3 - i4; + this.f801s = i3 - i4; } int i5 = this.t - i; this.t = i5; @@ -268,9 +268,9 @@ public class e0 implements w { this.t = 0; } if (i2 != 0) { - return this.k[this.f800s]; + return this.k[this.f801s]; } - int i6 = this.f800s; + int i6 = this.f801s; if (i6 != 0) { i4 = i6; } @@ -329,14 +329,14 @@ public class e0 implements w { } public final int k(int i) { - int i2 = this.f800s + i; + int i2 = this.f801s + i; int i3 = this.i; return i2 < i3 ? i2 : i2 - i3; } @Nullable public final synchronized Format l() { - return this.f803z ? null : this.B; + return this.f804z ? null : this.B; } public final boolean m() { @@ -348,7 +348,7 @@ public class e0 implements w { Format format; boolean z3 = true; if (!m()) { - if (!z2 && !this.f801x && ((format = this.B) == null || format == this.g)) { + if (!z2 && !this.f802x && ((format = this.B) == null || format == this.g)) { z3 = false; } return z3; @@ -372,7 +372,7 @@ public class e0 implements w { DrmInitData drmInitData = z2 ? null : format3.w; this.g = format; DrmInitData drmInitData2 = format.w; - s sVar = this.f799c; + s sVar = this.f800c; if (sVar != null) { Class c2 = sVar.c(format); Format.b a2 = format.a(); @@ -383,10 +383,10 @@ public class e0 implements w { } s0Var.b = format2; s0Var.a = this.h; - if (this.f799c != null) { + if (this.f800c != null) { if (z2 || !f0.a(drmInitData, drmInitData2)) { DrmSession drmSession = this.h; - s sVar2 = this.f799c; + s sVar2 = this.f800c; Looper looper = this.e; Objects.requireNonNull(looper); DrmSession b2 = sVar2.b(looper, this.d, format); @@ -403,9 +403,9 @@ public class e0 implements w { public void q(boolean z2) { d0 d0Var = this.a; d0.a aVar = d0Var.d; - if (aVar.f798c) { + if (aVar.f799c) { d0.a aVar2 = d0Var.f; - int i = (((int) (aVar2.a - aVar.a)) / d0Var.b) + (aVar2.f798c ? 1 : 0); + int i = (((int) (aVar2.a - aVar.a)) / d0Var.b) + (aVar2.f799c ? 1 : 0); c[] cVarArr = new c[i]; int i2 = 0; while (i2 < i) { @@ -426,18 +426,18 @@ public class e0 implements w { d0Var.a.c(); this.q = 0; this.r = 0; - this.f800s = 0; + this.f801s = 0; this.t = 0; - this.f802y = true; + this.f803y = true; this.u = Long.MIN_VALUE; this.v = Long.MIN_VALUE; this.w = Long.MIN_VALUE; - this.f801x = false; + this.f802x = false; this.C = null; if (z2) { this.A = null; this.B = null; - this.f803z = true; + this.f804z = true; } } diff --git a/app/src/main/java/c/i/a/c/d2/h0.java b/app/src/main/java/c/i/a/c/d2/h0.java index 9b0fda1094..6bb0a04bf1 100644 --- a/app/src/main/java/c/i/a/c/d2/h0.java +++ b/app/src/main/java/c/i/a/c/d2/h0.java @@ -11,7 +11,7 @@ public interface h0 { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final int[] f805c; + public final int[] f806c; /* JADX WARNING: Illegal instructions before constructor call */ public a(int i, Random random) { @@ -30,9 +30,9 @@ public interface h0 { public a(int[] iArr, Random random) { this.b = iArr; this.a = random; - this.f805c = new int[iArr.length]; + this.f806c = new int[iArr.length]; for (int i = 0; i < iArr.length; i++) { - this.f805c[iArr[i]] = i; + this.f806c[iArr[i]] = i; } } @@ -72,7 +72,7 @@ public interface h0 { @Override // c.i.a.c.d2.h0 public int d(int i) { - int i2 = this.f805c[i] - 1; + int i2 = this.f806c[i] - 1; if (i2 >= 0) { return this.b[i2]; } @@ -81,7 +81,7 @@ public interface h0 { @Override // c.i.a.c.d2.h0 public int e(int i) { - int i2 = this.f805c[i] + 1; + int i2 = this.f806c[i] + 1; int[] iArr = this.b; if (i2 < iArr.length) { return iArr[i2]; diff --git a/app/src/main/java/c/i/a/c/d2/i0.java b/app/src/main/java/c/i/a/c/d2/i0.java index 95d01a6eb8..85a289842c 100644 --- a/app/src/main/java/c/i/a/c/d2/i0.java +++ b/app/src/main/java/c/i/a/c/d2/i0.java @@ -2,17 +2,17 @@ package c.i.a.c.d2; import android.net.Uri; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.d2.j0.a; import c.i.a.c.r1; import c.i.a.c.v0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Objects; /* compiled from: SinglePeriodTimeline */ public final class i0 extends r1 { public static final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public final long f806c; + public final long f807c; public final long d; public final boolean e; @Nullable @@ -28,8 +28,8 @@ public final class i0 extends r1 { } public i0(long j, boolean z2, boolean z3, boolean z4, @Nullable Object obj, v0 v0Var) { - v0.f fVar = z4 ? v0Var.f984c : null; - this.f806c = j; + v0.f fVar = z4 ? v0Var.f985c : null; + this.f807c = j; this.d = j; this.e = z2; Objects.requireNonNull(v0Var); @@ -44,14 +44,14 @@ public final class i0 extends r1 { @Override // c.i.a.c.r1 public r1.b g(int i, r1.b bVar, boolean z2) { - AnimatableValueParser.t(i, 0, 1); + d.t(i, 0, 1); Object obj = z2 ? b : null; - long j = this.f806c; + long j = this.f807c; Objects.requireNonNull(bVar); a aVar = a.a; bVar.a = null; bVar.b = obj; - bVar.f959c = 0; + bVar.f960c = 0; bVar.d = j; bVar.e = 0; bVar.f = aVar; @@ -65,13 +65,13 @@ public final class i0 extends r1 { @Override // c.i.a.c.r1 public Object m(int i) { - AnimatableValueParser.t(i, 0, 1); + d.t(i, 0, 1); return b; } @Override // c.i.a.c.r1 public r1.c o(int i, r1.c cVar, long j) { - AnimatableValueParser.t(i, 0, 1); + d.t(i, 0, 1); cVar.d(r1.c.a, this.f, null, -9223372036854775807L, -9223372036854775807L, -9223372036854775807L, this.e, false, this.g, 0, this.d, 0, 0, 0); return cVar; } diff --git a/app/src/main/java/c/i/a/c/d2/j.java b/app/src/main/java/c/i/a/c/d2/j.java index 7d583faf8e..f19debba01 100644 --- a/app/src/main/java/c/i/a/c/d2/j.java +++ b/app/src/main/java/c/i/a/c/d2/j.java @@ -3,12 +3,12 @@ package c.i.a.c.d2; import android.os.Handler; import android.os.Looper; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.d2.y; import c.i.a.c.d2.z; import c.i.a.c.h2.x; import c.i.a.c.r1; import c.i.a.c.z1.q; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.ArrayList; import java.util.HashSet; import java.util.Iterator; @@ -19,7 +19,7 @@ public abstract class j implements y { public final HashSet b = new HashSet<>(1); /* renamed from: c reason: collision with root package name */ - public final z.a f807c = new z.a(); + public final z.a f808c = new z.a(); public final q.a d = new q.a(); @Nullable public Looper e; @@ -41,19 +41,19 @@ public abstract class j implements y { @Override // c.i.a.c.d2.y public final void b(Handler handler, z zVar) { - z.a aVar = this.f807c; + z.a aVar = this.f808c; Objects.requireNonNull(aVar); - aVar.f818c.add(new z.a.C0091a(handler, zVar)); + aVar.f819c.add(new z.a.C0091a(handler, zVar)); } @Override // c.i.a.c.d2.y public final void c(z zVar) { - z.a aVar = this.f807c; - Iterator it = aVar.f818c.iterator(); + z.a aVar = this.f808c; + Iterator it = aVar.f819c.iterator(); while (it.hasNext()) { z.a.C0091a next = it.next(); if (next.b == zVar) { - aVar.f818c.remove(next); + aVar.f819c.remove(next); } } } @@ -71,7 +71,7 @@ public abstract class j implements y { public final void f(Handler handler, q qVar) { q.a aVar = this.d; Objects.requireNonNull(aVar); - aVar.f1024c.add(new q.a.C0099a(handler, qVar)); + aVar.f1025c.add(new q.a.C0099a(handler, qVar)); } @Override // c.i.a.c.d2.y @@ -88,7 +88,7 @@ public abstract class j implements y { public final void k(y.b bVar, @Nullable x xVar) { Looper myLooper = Looper.myLooper(); Looper looper = this.e; - AnimatableValueParser.k(looper == null || looper == myLooper); + d.k(looper == null || looper == myLooper); r1 r1Var = this.f; this.a.add(bVar); if (this.e == null) { diff --git a/app/src/main/java/c/i/a/c/d2/j0/a.java b/app/src/main/java/c/i/a/c/d2/j0/a.java index 98437b8bab..f0770e2fe8 100644 --- a/app/src/main/java/c/i/a/c/d2/j0/a.java +++ b/app/src/main/java/c/i/a/c/d2/j0/a.java @@ -2,8 +2,8 @@ package c.i.a.c.d2.j0; import android.net.Uri; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; /* compiled from: AdPlaybackState */ public final class a { @@ -12,7 +12,7 @@ public final class a { public final Object b = null; /* renamed from: c reason: collision with root package name */ - public final int f808c; + public final int f809c; public final long[] d; public final C0090a[] e; public final long f; @@ -25,17 +25,17 @@ public final class a { public final Uri[] b = new Uri[0]; /* renamed from: c reason: collision with root package name */ - public final int[] f809c = new int[0]; + public final int[] f810c = new int[0]; public final long[] d = new long[0]; public C0090a() { - AnimatableValueParser.k(true); + d.k(true); } public int a(int i) { int i2 = i + 1; while (true) { - int[] iArr = this.f809c; + int[] iArr = this.f810c; if (i2 >= iArr.length || iArr[i2] == 0 || iArr[i2] == 1) { break; } @@ -56,11 +56,11 @@ public final class a { return false; } C0090a aVar = (C0090a) obj; - return this.a == aVar.a && Arrays.equals(this.b, aVar.b) && Arrays.equals(this.f809c, aVar.f809c) && Arrays.equals(this.d, aVar.d); + return this.a == aVar.a && Arrays.equals(this.b, aVar.b) && Arrays.equals(this.f810c, aVar.f810c) && Arrays.equals(this.d, aVar.d); } public int hashCode() { - int hashCode = Arrays.hashCode(this.f809c); + int hashCode = Arrays.hashCode(this.f810c); return Arrays.hashCode(this.d) + ((hashCode + (((this.a * 31) + Arrays.hashCode(this.b)) * 31)) * 31); } } @@ -70,9 +70,9 @@ public final class a { this.f = j; this.g = j2; int length = jArr.length; - this.f808c = length; + this.f809c = length; C0090a[] aVarArr2 = new C0090a[length]; - for (int i = 0; i < this.f808c; i++) { + for (int i = 0; i < this.f809c; i++) { aVarArr2[i] = new C0090a(); } this.e = aVarArr2; @@ -86,55 +86,55 @@ public final class a { return false; } a aVar = (a) obj; - return f0.a(this.b, aVar.b) && this.f808c == aVar.f808c && this.f == aVar.f && this.g == aVar.g && Arrays.equals(this.d, aVar.d) && Arrays.equals(this.e, aVar.e); + return f0.a(this.b, aVar.b) && this.f809c == aVar.f809c && this.f == aVar.f && this.g == aVar.g && Arrays.equals(this.d, aVar.d) && Arrays.equals(this.e, aVar.e); } public int hashCode() { - int i = this.f808c * 31; + int i = this.f809c * 31; Object obj = this.b; int hashCode = obj == null ? 0 : obj.hashCode(); return Arrays.hashCode(this.e) + ((Arrays.hashCode(this.d) + ((((((i + hashCode) * 31) + ((int) this.f)) * 31) + ((int) this.g)) * 31)) * 31); } public String toString() { - StringBuilder P = c.d.b.a.a.P("AdPlaybackState(adsId="); - P.append(this.b); - P.append(", adResumePositionUs="); - P.append(this.f); - P.append(", adGroups=["); + StringBuilder O = c.d.b.a.a.O("AdPlaybackState(adsId="); + O.append(this.b); + O.append(", adResumePositionUs="); + O.append(this.f); + O.append(", adGroups=["); for (int i = 0; i < this.e.length; i++) { - P.append("adGroup(timeUs="); - P.append(this.d[i]); - P.append(", ads=["); - for (int i2 = 0; i2 < this.e[i].f809c.length; i2++) { - P.append("ad(state="); - int i3 = this.e[i].f809c[i2]; + O.append("adGroup(timeUs="); + O.append(this.d[i]); + O.append(", ads=["); + for (int i2 = 0; i2 < this.e[i].f810c.length; i2++) { + O.append("ad(state="); + int i3 = this.e[i].f810c[i2]; if (i3 == 0) { - P.append('_'); + O.append('_'); } else if (i3 == 1) { - P.append('R'); + O.append('R'); } else if (i3 == 2) { - P.append('S'); + O.append('S'); } else if (i3 == 3) { - P.append('P'); + O.append('P'); } else if (i3 != 4) { - P.append('?'); + O.append('?'); } else { - P.append('!'); + O.append('!'); } - P.append(", durationUs="); - P.append(this.e[i].d[i2]); - P.append(')'); - if (i2 < this.e[i].f809c.length - 1) { - P.append(", "); + O.append(", durationUs="); + O.append(this.e[i].d[i2]); + O.append(')'); + if (i2 < this.e[i].f810c.length - 1) { + O.append(", "); } } - P.append("])"); + O.append("])"); if (i < this.e.length - 1) { - P.append(", "); + O.append(", "); } } - P.append("])"); - return P.toString(); + O.append("])"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/c/d2/k.java b/app/src/main/java/c/i/a/c/d2/k.java index f773e70773..9ab5abe883 100644 --- a/app/src/main/java/c/i/a/c/d2/k.java +++ b/app/src/main/java/c/i/a/c/d2/k.java @@ -2,6 +2,7 @@ package c.i.a.c.d2; import android.net.Uri; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.c.a2.e; import c.i.a.c.a2.h; @@ -10,7 +11,6 @@ import c.i.a.c.a2.j; import c.i.a.c.a2.l; import c.i.a.c.h2.f; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.source.UnrecognizedInputFormatException; import java.io.EOFException; import java.io.IOException; @@ -25,14 +25,14 @@ public final class k { @Nullable /* renamed from: c reason: collision with root package name */ - public i f810c; + public i f811c; public k(l lVar) { this.a = lVar; } public long a() { - i iVar = this.f810c; + i iVar = this.f811c; if (iVar != null) { return iVar.getPosition(); } @@ -50,7 +50,7 @@ public final class k { */ public void b(f fVar, Uri uri, Map> map, long j, long j2, j jVar) throws IOException { e eVar = new e(fVar, j, j2); - this.f810c = eVar; + this.f811c = eVar; if (this.b == null) { h[] b = this.a.b(uri, map); boolean z2 = true; @@ -67,14 +67,14 @@ public final class k { try { if (hVar.b(eVar)) { this.b = hVar; - AnimatableValueParser.D(true); + d.D(true); eVar.f = 0; break; } if (this.b == null) { } boolean z3 = true; - AnimatableValueParser.D(z3); + d.D(z3); eVar.f = 0; i++; } catch (EOFException unused) { @@ -84,13 +84,13 @@ public final class k { if (this.b == null && eVar.d != j) { z2 = false; } - AnimatableValueParser.D(z2); + d.D(z2); eVar.f = 0; throw th; } } if (this.b == null) { - StringBuilder P = a.P("None of the available extractors ("); + StringBuilder O = a.O("None of the available extractors ("); int i2 = f0.a; StringBuilder sb = new StringBuilder(); for (int i3 = 0; i3 < b.length; i3++) { @@ -99,9 +99,9 @@ public final class k { sb.append(", "); } } - P.append(sb.toString()); - P.append(") could read the stream."); - String sb2 = P.toString(); + O.append(sb.toString()); + O.append(") could read the stream."); + String sb2 = O.toString(); Objects.requireNonNull(uri); throw new UnrecognizedInputFormatException(sb2, uri); } diff --git a/app/src/main/java/c/i/a/c/d2/l.java b/app/src/main/java/c/i/a/c/d2/l.java index 739294b85f..bc72f61e20 100644 --- a/app/src/main/java/c/i/a/c/d2/l.java +++ b/app/src/main/java/c/i/a/c/d2/l.java @@ -2,13 +2,13 @@ package c.i.a.c.d2; import androidx.annotation.Nullable; import androidx.recyclerview.widget.RecyclerView; +import c.c.a.a0.d; import c.i.a.c.d2.v; import c.i.a.c.f2.g; import c.i.a.c.i2.f0; import c.i.a.c.i2.s; import c.i.a.c.o1; import c.i.a.c.s0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.decoder.DecoderInputBuffer; import com.google.android.exoplayer2.source.TrackGroupArray; @@ -156,11 +156,11 @@ public final class l implements v, v.a { if (j2 != Long.MIN_VALUE) { } } - AnimatableValueParser.D(z2); + d.D(z2); return f; } z2 = true; - AnimatableValueParser.D(z2); + d.D(z2); return f; } @@ -180,11 +180,11 @@ public final class l implements v, v.a { if (j == j2) { return j2; } - long i = f0.i(o1Var.f943c, 0, j - j2); + long i = f0.i(o1Var.f944c, 0, j - j2); long j3 = o1Var.d; long j4 = this.n; long i2 = f0.i(j3, 0, j4 == Long.MIN_VALUE ? RecyclerView.FOREVER_NS : j4 - j); - if (!(i == o1Var.f943c && i2 == o1Var.d)) { + if (!(i == o1Var.f944c && i2 == o1Var.d)) { o1Var = new o1(i, i2); } return this.i.i(j, o1Var); @@ -203,12 +203,12 @@ public final class l implements v, v.a { return -9223372036854775807L; } boolean z2 = true; - AnimatableValueParser.D(k2 >= this.m); + d.D(k2 >= this.m); long j2 = this.n; if (j2 != Long.MIN_VALUE && k2 > j2) { z2 = false; } - AnimatableValueParser.D(z2); + d.D(z2); return k2; } @@ -277,7 +277,7 @@ public final class l implements v, v.a { } z3 = false; } - AnimatableValueParser.D(z3); + d.D(z3); for (int i3 = 0; i3 < f0VarArr.length; i3++) { if (f0VarArr2[i3] == null) { this.k[i3] = null; @@ -301,7 +301,7 @@ public final class l implements v, v.a { this.l = j2; if (m != j) { } - AnimatableValueParser.D(z3); + d.D(z3); while (i3 < f0VarArr.length) { } return m; diff --git a/app/src/main/java/c/i/a/c/d2/m.java b/app/src/main/java/c/i/a/c/d2/m.java index e9eb854d5c..568183236f 100644 --- a/app/src/main/java/c/i/a/c/d2/m.java +++ b/app/src/main/java/c/i/a/c/d2/m.java @@ -3,13 +3,13 @@ package c.i.a.c.d2; import android.os.Handler; import androidx.annotation.CallSuper; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.d2.t; import c.i.a.c.d2.y; import c.i.a.c.d2.z; import c.i.a.c.h2.x; import c.i.a.c.i2.f0; import c.i.a.c.z1.q; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.util.HashMap; import java.util.Objects; @@ -28,7 +28,7 @@ public abstract class m extends j { public q.a k; public a(T t) { - this.j = m.this.f807c.g(0, null, 0); + this.j = m.this.f808c.g(0, null, 0); this.k = m.this.d.g(0, null); this.i = t; } @@ -85,7 +85,7 @@ public abstract class m extends j { Object obj = aVar.a; Object obj2 = tVar.n.e; if (obj2 != null && obj2.equals(obj)) { - obj = t.a.f815c; + obj = t.a.f816c; } aVar2 = aVar.b(obj); } else { @@ -94,13 +94,13 @@ public abstract class m extends j { Objects.requireNonNull(m.this); z.a aVar3 = this.j; if (aVar3.a != i || !f0.a(aVar3.b, aVar2)) { - this.j = m.this.f807c.g(i, aVar2, 0); + this.j = m.this.f808c.g(i, aVar2, 0); } q.a aVar4 = this.k; if (aVar4.a == i && f0.a(aVar4.b, aVar2)) { return true; } - this.k = new q.a(m.this.d.f1024c, i, aVar2); + this.k = new q.a(m.this.d.f1025c, i, aVar2); return true; } @@ -111,7 +111,7 @@ public abstract class m extends j { m mVar2 = m.this; long j2 = uVar.g; Objects.requireNonNull(mVar2); - return (j == uVar.f && j2 == uVar.g) ? uVar : new u(uVar.a, uVar.b, uVar.f816c, uVar.d, uVar.e, j, j2); + return (j == uVar.f && j2 == uVar.g) ? uVar : new u(uVar.a, uVar.b, uVar.f817c, uVar.d, uVar.e, j, j2); } @Override // c.i.a.c.d2.z @@ -145,12 +145,12 @@ public abstract class m extends j { public final y.b b; /* renamed from: c reason: collision with root package name */ - public final z f812c; + public final z f813c; public b(y yVar, y.b bVar, z zVar) { this.a = yVar; this.b = bVar; - this.f812c = zVar; + this.f813c = zVar; } } @@ -171,7 +171,7 @@ public abstract class m extends j { } public final void s(T t, y yVar) { - AnimatableValueParser.k(!this.g.containsKey(null)); + d.k(!this.g.containsKey(null)); y.b aVar = new a(this, null); a aVar2 = new a(null); this.g.put(null, new b(yVar, aVar, aVar2)); diff --git a/app/src/main/java/c/i/a/c/d2/q.java b/app/src/main/java/c/i/a/c/d2/q.java index a13ef516af..ffa5cd360c 100644 --- a/app/src/main/java/c/i/a/c/d2/q.java +++ b/app/src/main/java/c/i/a/c/d2/q.java @@ -2,12 +2,12 @@ package c.i.a.c.d2; import android.net.Uri; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.d2.b0; import c.i.a.c.h2.j; import c.i.a.c.h2.l; import c.i.a.c.h2.x; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.util.List; import java.util.Map; @@ -18,7 +18,7 @@ public final class q implements j { public final int b; /* renamed from: c reason: collision with root package name */ - public final a f813c; + public final a f814c; public final byte[] d; public int e; @@ -27,10 +27,10 @@ public final class q implements j { } public q(j jVar, int i, a aVar) { - AnimatableValueParser.k(i > 0); + d.k(i > 0); this.a = jVar; this.b = i; - this.f813c = aVar; + this.f814c = aVar; this.d = new byte[1]; this.e = i; } @@ -85,7 +85,7 @@ public final class q implements j { i3 = i6; } if (i3 > 0) { - a aVar = this.f813c; + a aVar = this.f814c; w wVar = new w(bArr2, i3); b0.a aVar2 = (b0.a) aVar; if (!aVar2.n) { diff --git a/app/src/main/java/c/i/a/c/d2/r.java b/app/src/main/java/c/i/a/c/d2/r.java index 0d24d04687..88f0dadd73 100644 --- a/app/src/main/java/c/i/a/c/d2/r.java +++ b/app/src/main/java/c/i/a/c/d2/r.java @@ -12,16 +12,16 @@ public final class r { public final Map> b; /* renamed from: c reason: collision with root package name */ - public final long f814c; + public final long f815c; public r(long j, l lVar, long j2) { Uri uri = lVar.a; this.b = Collections.emptyMap(); - this.f814c = 0; + this.f815c = 0; } public r(long j, l lVar, Uri uri, Map> map, long j2, long j3, long j4) { this.b = map; - this.f814c = j3; + this.f815c = j3; } } diff --git a/app/src/main/java/c/i/a/c/d2/t.java b/app/src/main/java/c/i/a/c/d2/t.java index ad6bfd4fa4..fe2bccd7b2 100644 --- a/app/src/main/java/c/i/a/c/d2/t.java +++ b/app/src/main/java/c/i/a/c/d2/t.java @@ -2,13 +2,13 @@ package c.i.a.c.d2; import androidx.annotation.Nullable; import androidx.annotation.VisibleForTesting; +import c.c.a.a0.d; import c.i.a.c.d2.m; import c.i.a.c.d2.y; import c.i.a.c.h2.x; import c.i.a.c.i2.f0; import c.i.a.c.r1; import c.i.a.c.v0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Objects; import org.checkerframework.checker.nullness.qual.RequiresNonNull; /* compiled from: MaskingMediaSource */ @@ -28,7 +28,7 @@ public final class t extends m { public static final class a extends p { /* renamed from: c reason: collision with root package name */ - public static final Object f815c = new Object(); + public static final Object f816c = new Object(); @Nullable public final Object d; @Nullable @@ -44,7 +44,7 @@ public final class t extends m { public int b(Object obj) { Object obj2; r1 r1Var = this.b; - if (f815c.equals(obj) && (obj2 = this.e) != null) { + if (f816c.equals(obj) && (obj2 = this.e) != null) { obj = obj2; } return r1Var.b(obj); @@ -54,7 +54,7 @@ public final class t extends m { public r1.b g(int i, r1.b bVar, boolean z2) { this.b.g(i, bVar, z2); if (f0.a(bVar.b, this.e) && z2) { - bVar.b = f815c; + bVar.b = f816c; } return bVar; } @@ -62,14 +62,14 @@ public final class t extends m { @Override // c.i.a.c.d2.p, c.i.a.c.r1 public Object m(int i) { Object m = this.b.m(i); - return f0.a(m, this.e) ? f815c : m; + return f0.a(m, this.e) ? f816c : m; } @Override // c.i.a.c.r1 public r1.c o(int i, r1.c cVar, long j) { this.b.o(i, cVar, j); - if (f0.a(cVar.f960c, this.d)) { - cVar.f960c = r1.c.a; + if (f0.a(cVar.f961c, this.d)) { + cVar.f961c = r1.c.a; } return cVar; } @@ -86,7 +86,7 @@ public final class t extends m { @Override // c.i.a.c.r1 public int b(Object obj) { - return obj == a.f815c ? 0 : -1; + return obj == a.f816c ? 0 : -1; } @Override // c.i.a.c.r1 @@ -94,13 +94,13 @@ public final class t extends m { Object obj = null; int i2 = z2 ? 0 : null; if (z2) { - obj = a.f815c; + obj = a.f816c; } Objects.requireNonNull(bVar); c.i.a.c.d2.j0.a aVar = c.i.a.c.d2.j0.a.a; bVar.a = i2; bVar.b = obj; - bVar.f959c = 0; + bVar.f960c = 0; bVar.d = -9223372036854775807L; bVar.e = 0; bVar.f = aVar; @@ -114,7 +114,7 @@ public final class t extends m { @Override // c.i.a.c.r1 public Object m(int i) { - return a.f815c; + return a.f816c; } @Override // c.i.a.c.r1 @@ -141,7 +141,7 @@ public final class t extends m { this.r = true; return; } - this.n = new a(new b(yVar.e()), r1.c.a, a.f815c); + this.n = new a(new b(yVar.e()), r1.c.a, a.f816c); } @Override // c.i.a.c.d2.y @@ -182,7 +182,7 @@ public final class t extends m { this.p = false; for (m.b bVar : this.g.values()) { bVar.a.a(bVar.b); - bVar.a.c(bVar.f812c); + bVar.a.c(bVar.f813c); } this.g.clear(); } @@ -191,11 +191,11 @@ public final class t extends m { public s m(y.a aVar, c.i.a.c.h2.m mVar, long j) { s sVar = new s(aVar, mVar, j); y yVar = this.j; - AnimatableValueParser.D(sVar.l == null); + d.D(sVar.l == null); sVar.l = yVar; if (this.q) { Object obj = aVar.a; - if (this.n.e != null && obj.equals(a.f815c)) { + if (this.n.e != null && obj.equals(a.f816c)) { obj = this.n.e; } sVar.d(aVar.b(obj)); diff --git a/app/src/main/java/c/i/a/c/d2/u.java b/app/src/main/java/c/i/a/c/d2/u.java index c892213c60..7143ab8dfa 100644 --- a/app/src/main/java/c/i/a/c/d2/u.java +++ b/app/src/main/java/c/i/a/c/d2/u.java @@ -9,7 +9,7 @@ public final class u { @Nullable /* renamed from: c reason: collision with root package name */ - public final Format f816c; + public final Format f817c; public final int d; @Nullable public final Object e; @@ -19,7 +19,7 @@ public final class u { public u(int i, int i2, @Nullable Format format, int i3, @Nullable Object obj, long j, long j2) { this.a = i; this.b = i2; - this.f816c = format; + this.f817c = format; this.d = i3; this.e = obj; this.f = j; diff --git a/app/src/main/java/c/i/a/c/d2/w.java b/app/src/main/java/c/i/a/c/d2/w.java index 327316d385..d64e885fc1 100644 --- a/app/src/main/java/c/i/a/c/d2/w.java +++ b/app/src/main/java/c/i/a/c/d2/w.java @@ -7,14 +7,14 @@ public class w { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f817c; + public final int f818c; public final long d; public final int e; public w(w wVar) { this.a = wVar.a; this.b = wVar.b; - this.f817c = wVar.f817c; + this.f818c = wVar.f818c; this.d = wVar.d; this.e = wVar.e; } @@ -22,7 +22,7 @@ public class w { public w(Object obj) { this.a = obj; this.b = -1; - this.f817c = -1; + this.f818c = -1; this.d = -1; this.e = -1; } @@ -30,7 +30,7 @@ public class w { public w(Object obj, int i, int i2, long j) { this.a = obj; this.b = i; - this.f817c = i2; + this.f818c = i2; this.d = j; this.e = -1; } @@ -38,7 +38,7 @@ public class w { public w(Object obj, int i, int i2, long j, int i3) { this.a = obj; this.b = i; - this.f817c = i2; + this.f818c = i2; this.d = j; this.e = i3; } @@ -46,7 +46,7 @@ public class w { public w(Object obj, long j, int i) { this.a = obj; this.b = -1; - this.f817c = -1; + this.f818c = -1; this.d = j; this.e = i; } @@ -63,10 +63,10 @@ public class w { return false; } w wVar = (w) obj; - return this.a.equals(wVar.a) && this.b == wVar.b && this.f817c == wVar.f817c && this.d == wVar.d && this.e == wVar.e; + return this.a.equals(wVar.a) && this.b == wVar.b && this.f818c == wVar.f818c && this.d == wVar.d && this.e == wVar.e; } public int hashCode() { - return ((((((((this.a.hashCode() + 527) * 31) + this.b) * 31) + this.f817c) * 31) + ((int) this.d)) * 31) + this.e; + return ((((((((this.a.hashCode() + 527) * 31) + this.b) * 31) + this.f818c) * 31) + ((int) this.d)) * 31) + this.e; } } diff --git a/app/src/main/java/c/i/a/c/d2/y.java b/app/src/main/java/c/i/a/c/d2/y.java index 728be2a136..2da1aec90e 100644 --- a/app/src/main/java/c/i/a/c/d2/y.java +++ b/app/src/main/java/c/i/a/c/d2/y.java @@ -30,7 +30,7 @@ public interface y { } public a b(Object obj) { - return new a(this.a.equals(obj) ? this : new w(obj, this.b, this.f817c, this.d, this.e)); + return new a(this.a.equals(obj) ? this : new w(obj, this.b, this.f818c, this.d, this.e)); } } diff --git a/app/src/main/java/c/i/a/c/d2/z.java b/app/src/main/java/c/i/a/c/d2/z.java index 61a4f145c6..0264680510 100644 --- a/app/src/main/java/c/i/a/c/d2/z.java +++ b/app/src/main/java/c/i/a/c/d2/z.java @@ -19,7 +19,7 @@ public interface z { public final y.a b; /* renamed from: c reason: collision with root package name */ - public final CopyOnWriteArrayList f818c; + public final CopyOnWriteArrayList f819c; public final long d; /* compiled from: MediaSourceEventListener */ @@ -35,14 +35,14 @@ public interface z { } public a() { - this.f818c = new CopyOnWriteArrayList<>(); + this.f819c = new CopyOnWriteArrayList<>(); this.a = 0; this.b = null; this.d = 0; } public a(CopyOnWriteArrayList copyOnWriteArrayList, int i, @Nullable y.a aVar, long j) { - this.f818c = copyOnWriteArrayList; + this.f819c = copyOnWriteArrayList; this.a = i; this.b = aVar; this.d = j; @@ -57,7 +57,7 @@ public interface z { } public void b(u uVar) { - Iterator it = this.f818c.iterator(); + Iterator it = this.f819c.iterator(); while (it.hasNext()) { C0091a next = it.next(); f0.D(next.a, new d(this, next.b, uVar)); @@ -65,7 +65,7 @@ public interface z { } public void c(r rVar, u uVar) { - Iterator it = this.f818c.iterator(); + Iterator it = this.f819c.iterator(); while (it.hasNext()) { C0091a next = it.next(); f0.D(next.a, new f(this, next.b, rVar, uVar)); @@ -73,7 +73,7 @@ public interface z { } public void d(r rVar, u uVar) { - Iterator it = this.f818c.iterator(); + Iterator it = this.f819c.iterator(); while (it.hasNext()) { C0091a next = it.next(); f0.D(next.a, new c(this, next.b, rVar, uVar)); @@ -81,7 +81,7 @@ public interface z { } public void e(r rVar, u uVar, IOException iOException, boolean z2) { - Iterator it = this.f818c.iterator(); + Iterator it = this.f819c.iterator(); while (it.hasNext()) { C0091a next = it.next(); f0.D(next.a, new b(this, next.b, rVar, uVar, iOException, z2)); @@ -89,7 +89,7 @@ public interface z { } public void f(r rVar, u uVar) { - Iterator it = this.f818c.iterator(); + Iterator it = this.f819c.iterator(); while (it.hasNext()) { C0091a next = it.next(); f0.D(next.a, new e(this, next.b, rVar, uVar)); @@ -98,7 +98,7 @@ public interface z { @CheckResult public a g(int i, @Nullable y.a aVar, long j) { - return new a(this.f818c, i, aVar, j); + return new a(this.f819c, i, aVar, j); } } diff --git a/app/src/main/java/c/i/a/c/e0.java b/app/src/main/java/c/i/a/c/e0.java index b2f5972113..d1631c6f90 100644 --- a/app/src/main/java/c/i/a/c/e0.java +++ b/app/src/main/java/c/i/a/c/e0.java @@ -17,7 +17,7 @@ public final class e0 { @Nullable /* renamed from: c reason: collision with root package name */ - public b f819c; + public b f820c; @Nullable public n d; public int e; @@ -47,7 +47,7 @@ public final class e0 { AudioManager audioManager = (AudioManager) context.getApplicationContext().getSystemService(MediaStreamTrack.AUDIO_TRACK_KIND); Objects.requireNonNull(audioManager); this.a = audioManager; - this.f819c = bVar; + this.f820c = bVar; this.b = new a(handler); this.e = 0; } @@ -67,7 +67,7 @@ public final class e0 { } public final void b(int i) { - b bVar = this.f819c; + b bVar = this.f820c; if (bVar != null) { p1.c cVar = (p1.c) bVar; boolean g = p1.this.g(); @@ -81,7 +81,7 @@ public final class e0 { float f = i == 3 ? 0.2f : 1.0f; if (this.g != f) { this.g = f; - b bVar = this.f819c; + b bVar = this.f820c; if (bVar != null) { p1 p1Var = p1.this; p1Var.R(1, 2, Float.valueOf(p1Var.B * p1Var.m.g)); diff --git a/app/src/main/java/c/i/a/c/e2/b.java b/app/src/main/java/c/i/a/c/e2/b.java index e6ed714880..1a51e9108d 100644 --- a/app/src/main/java/c/i/a/c/e2/b.java +++ b/app/src/main/java/c/i/a/c/e2/b.java @@ -9,7 +9,7 @@ public final class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f820c; + public final int f821c; public final int d; public final int e; public final int f; @@ -18,7 +18,7 @@ public final class b { public b(int i, int i2, int i3, int i4, int i5, @Nullable Typeface typeface) { this.b = i; - this.f820c = i2; + this.f821c = i2; this.d = i3; this.e = i4; this.f = i5; diff --git a/app/src/main/java/c/i/a/c/e2/c.java b/app/src/main/java/c/i/a/c/e2/c.java index 06c8e2d8bf..3ca68d4c8a 100644 --- a/app/src/main/java/c/i/a/c/e2/c.java +++ b/app/src/main/java/c/i/a/c/e2/c.java @@ -5,7 +5,7 @@ import android.text.Layout; import androidx.annotation.ColorInt; import androidx.annotation.Nullable; import androidx.core.view.ViewCompat; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Objects; /* compiled from: Cue */ public final class c { @@ -15,7 +15,7 @@ public final class c { @Nullable /* renamed from: c reason: collision with root package name */ - public final Layout.Alignment f821c; + public final Layout.Alignment f822c; @Nullable public final Bitmap d; public final float e; @@ -41,7 +41,7 @@ public final class c { @Nullable /* renamed from: c reason: collision with root package name */ - public Layout.Alignment f822c; + public Layout.Alignment f823c; public float d; public int e; public int f; @@ -60,7 +60,7 @@ public final class c { public b() { this.a = null; this.b = null; - this.f822c = null; + this.f823c = null; this.d = -3.4028235E38f; this.e = Integer.MIN_VALUE; this.f = Integer.MIN_VALUE; @@ -78,7 +78,7 @@ public final class c { public b(c cVar, a aVar) { this.a = cVar.b; this.b = cVar.d; - this.f822c = cVar.f821c; + this.f823c = cVar.f822c; this.d = cVar.e; this.e = cVar.f; this.f = cVar.g; @@ -95,7 +95,7 @@ public final class c { } public c a() { - return new c(this.a, this.f822c, this.b, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.o, this.p, null); + return new c(this.a, this.f823c, this.b, this.d, this.e, this.f, this.g, this.h, this.i, this.j, this.k, this.l, this.m, this.n, this.o, this.p, null); } } @@ -109,10 +109,10 @@ public final class c { if (charSequence == null) { Objects.requireNonNull(bitmap); } else { - AnimatableValueParser.k(bitmap == null); + d.k(bitmap == null); } this.b = charSequence; - this.f821c = alignment; + this.f822c = alignment; this.d = bitmap; this.e = f; this.f = i; diff --git a/app/src/main/java/c/i/a/c/e2/d.java b/app/src/main/java/c/i/a/c/e2/d.java index 7b7f50c871..a7413e87af 100644 --- a/app/src/main/java/c/i/a/c/e2/d.java +++ b/app/src/main/java/c/i/a/c/e2/d.java @@ -2,7 +2,6 @@ package c.i.a.c.e2; import androidx.annotation.Nullable; import c.i.a.c.x1.g; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.decoder.DecoderInputBuffer; import com.google.android.exoplayer2.text.SubtitleDecoderException; import java.nio.ByteBuffer; @@ -11,7 +10,7 @@ import java.util.Objects; public abstract class d extends g implements g { public d(String str) { super(new i[2], new j[2]); - AnimatableValueParser.D(this.g == this.e.length); + c.c.a.a0.d.D(this.g == this.e.length); for (DecoderInputBuffer decoderInputBuffer : this.e) { decoderInputBuffer.r(1024); } diff --git a/app/src/main/java/c/i/a/c/e2/l.java b/app/src/main/java/c/i/a/c/e2/l.java index 7c64942f3b..5db6d118ec 100644 --- a/app/src/main/java/c/i/a/c/e2/l.java +++ b/app/src/main/java/c/i/a/c/e2/l.java @@ -42,13 +42,13 @@ public final class l extends g0 implements Handler.Callback { public final s0 w; /* renamed from: x reason: collision with root package name */ - public boolean f823x; + public boolean f824x; /* renamed from: y reason: collision with root package name */ - public boolean f824y; + public boolean f825y; /* renamed from: z reason: collision with root package name */ - public boolean f825z; + public boolean f826z; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public l(k kVar, @Nullable Looper looper) { @@ -85,8 +85,8 @@ public final class l extends g0 implements Handler.Callback { @Override // c.i.a.c.g0 public void D(long j, boolean z2) { J(); - this.f823x = false; - this.f824y = false; + this.f824x = false; + this.f825y = false; this.H = -9223372036854775807L; if (this.A != 0) { O(); @@ -137,9 +137,9 @@ public final class l extends g0 implements Handler.Callback { } public final void L(SubtitleDecoderException subtitleDecoderException) { - StringBuilder P = a.P("Subtitle decoding failed. streamFormat="); - P.append(this.B); - p.b("TextRenderer", P.toString(), subtitleDecoderException); + StringBuilder O = a.O("Subtitle decoding failed. streamFormat="); + O.append(this.B); + p.b("TextRenderer", O.toString(), subtitleDecoderException); J(); O(); } @@ -151,7 +151,7 @@ public final class l extends g0 implements Handler.Callback { public final void M() { g gVar; char c2 = 1; - this.f825z = true; + this.f826z = true; h hVar = this.v; Format format = this.B; Objects.requireNonNull(format); @@ -319,7 +319,7 @@ public final class l extends g0 implements Handler.Callback { @Override // c.i.a.c.k1 public boolean b() { - return this.f824y; + return this.f825y; } @Override // c.i.a.c.k1 @@ -348,10 +348,10 @@ public final class l extends g0 implements Handler.Callback { long j3 = this.H; if (j3 != -9223372036854775807L && j >= j3) { N(); - this.f824y = true; + this.f825y = true; } } - if (!this.f824y) { + if (!this.f825y) { if (this.F == null) { g gVar = this.C; Objects.requireNonNull(gVar); @@ -385,7 +385,7 @@ public final class l extends g0 implements Handler.Callback { O(); } else { N(); - this.f824y = true; + this.f825y = true; } } } else if (jVar.j <= j) { @@ -415,7 +415,7 @@ public final class l extends g0 implements Handler.Callback { } } if (this.A != 2) { - while (!this.f823x) { + while (!this.f824x) { try { i iVar = this.D; if (iVar == null) { @@ -440,19 +440,19 @@ public final class l extends g0 implements Handler.Callback { int I = I(this.w, iVar, false); if (I == -4) { if (iVar.n()) { - this.f823x = true; - this.f825z = false; + this.f824x = true; + this.f826z = false; } else { Format format = this.w.b; if (format != null) { - iVar.q = format.f2275x; + iVar.q = format.f2278x; iVar.s(); - this.f825z &= !iVar.o(); + this.f826z &= !iVar.o(); } else { return; } } - if (!this.f825z) { + if (!this.f826z) { g gVar5 = this.C; Objects.requireNonNull(gVar5); gVar5.d(iVar); diff --git a/app/src/main/java/c/i/a/c/e2/m/c.java b/app/src/main/java/c/i/a/c/e2/m/c.java index dee43db753..de6b701b90 100644 --- a/app/src/main/java/c/i/a/c/e2/m/c.java +++ b/app/src/main/java/c/i/a/c/e2/m/c.java @@ -46,7 +46,7 @@ public final class c extends e { public final int r; /* renamed from: s reason: collision with root package name */ - public final long f826s; + public final long f827s; public final ArrayList t = new ArrayList<>(); public a u = new a(0, 4); @Nullable @@ -55,13 +55,13 @@ public final class c extends e { public List w; /* renamed from: x reason: collision with root package name */ - public int f827x; + public int f828x; /* renamed from: y reason: collision with root package name */ - public int f828y; + public int f829y; /* renamed from: z reason: collision with root package name */ - public boolean f829z; + public boolean f830z; /* compiled from: Cea608Decoder */ public static final class a { @@ -69,7 +69,7 @@ public final class c extends e { public final List b = new ArrayList(); /* renamed from: c reason: collision with root package name */ - public final StringBuilder f830c = new StringBuilder(); + public final StringBuilder f831c = new StringBuilder(); public int d; public int e; public int f; @@ -83,12 +83,12 @@ public final class c extends e { public final boolean b; /* renamed from: c reason: collision with root package name */ - public int f831c; + public int f832c; public C0092a(int i, boolean z2, int i2) { this.a = i; this.b = z2; - this.f831c = i2; + this.f832c = i2; } } @@ -98,20 +98,20 @@ public final class c extends e { } public void a(char c2) { - if (this.f830c.length() < 32) { - this.f830c.append(c2); + if (this.f831c.length() < 32) { + this.f831c.append(c2); } } public void b() { - int length = this.f830c.length(); + int length = this.f831c.length(); if (length > 0) { - this.f830c.delete(length - 1, length); + this.f831c.delete(length - 1, length); for (int size = this.a.size() - 1; size >= 0; size--) { C0092a aVar = this.a.get(size); - int i = aVar.f831c; + int i = aVar.f832c; if (i == length) { - aVar.f831c = i - 1; + aVar.f832c = i - 1; } else { return; } @@ -166,7 +166,7 @@ public final class c extends e { } public final SpannableString d() { - SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(this.f830c); + SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(this.f831c); int length = spannableStringBuilder.length(); int i = 0; int i2 = -1; @@ -186,9 +186,9 @@ public final class c extends e { } z2 = z4; } - int i8 = aVar.f831c; + int i8 = aVar.f832c; i++; - if (i8 != (i < this.a.size() ? this.a.get(i).f831c : length)) { + if (i8 != (i < this.a.size() ? this.a.get(i).f832c : length)) { if (i2 != -1 && !z3) { spannableStringBuilder.setSpan(new UnderlineSpan(), i2, i8, 33); i2 = -1; @@ -223,14 +223,14 @@ public final class c extends e { } public boolean e() { - return this.a.isEmpty() && this.b.isEmpty() && this.f830c.length() == 0; + return this.a.isEmpty() && this.b.isEmpty() && this.f831c.length() == 0; } public void f(int i) { this.g = i; this.a.clear(); this.b.clear(); - this.f830c.setLength(0); + this.f831c.setLength(0); this.d = 15; this.e = 0; this.f = 0; @@ -238,7 +238,7 @@ public final class c extends e { } public c(String str, int i2, long j2) { - this.f826s = j2 > 0 ? j2 * 1000 : -9223372036854775807L; + this.f827s = j2 > 0 ? j2 * 1000 : -9223372036854775807L; this.p = "application/x-mp4-cea-608".equals(str) ? 2 : 3; if (i2 == 1) { this.r = 0; @@ -293,12 +293,12 @@ public final class c extends e { byte b = (byte) (s3 & 127); byte b2 = (byte) (s4 & 127); if (b != 0 || b2 != 0) { - boolean z5 = this.f829z; + boolean z5 = this.f830z; if ((s2 & 4) == 4) { boolean[] zArr = n; if (zArr[s3] && zArr[s4]) { z2 = true; - this.f829z = z2; + this.f830z = z2; if (z2) { if ((b & 240) == 16) { if (this.A && this.B == b && this.C == b2) { @@ -356,7 +356,7 @@ public final class c extends e { this.u.a(' '); boolean z6 = (b2 & 1) == 1; a aVar = this.u; - aVar.a.add(new a.C0092a((b2 >> 1) & 7, z6, aVar.f830c.length())); + aVar.a.add(new a.C0092a((b2 >> 1) & 7, z6, aVar.f831c.length())); } else { if ((b & 240) == 16 && (b2 & 192) == 64) { int i6 = g[b & 7]; @@ -365,8 +365,8 @@ public final class c extends e { } a aVar2 = this.u; if (i6 != aVar2.d) { - if (this.f827x != 1 && !aVar2.e()) { - a aVar3 = new a(this.f827x, this.f828y); + if (this.f828x != 1 && !aVar2.e()) { + a aVar3 = new a(this.f828x, this.f829y); this.u = aVar3; this.t.add(aVar3); } @@ -376,7 +376,7 @@ public final class c extends e { boolean z8 = (b2 & 1) == 1; int i7 = (b2 >> 1) & 7; a aVar4 = this.u; - aVar4.a.add(new a.C0092a(z7 ? 8 : i7, z8, aVar4.f830c.length())); + aVar4.a.add(new a.C0092a(z7 ? 8 : i7, z8, aVar4.f831c.length())); if (z7) { this.u.e = h[i7]; } @@ -402,7 +402,7 @@ public final class c extends e { m(4); break; default: - int i8 = this.f827x; + int i8 = this.f828x; if (i8 != 0) { if (b2 == 33) { this.u.b(); @@ -411,7 +411,7 @@ public final class c extends e { switch (b2) { case 44: this.v = Collections.emptyList(); - int i9 = this.f827x; + int i9 = this.f828x; if (i9 == 1 || i9 == 3) { k(); break; @@ -420,7 +420,7 @@ public final class c extends e { if (i8 == 1 && !this.u.e()) { a aVar5 = this.u; aVar5.b.add(aVar5.d()); - aVar5.f830c.setLength(0); + aVar5.f831c.setLength(0); aVar5.a.clear(); int min = Math.min(aVar5.h, aVar5.d); while (aVar5.b.size() >= min) { @@ -474,7 +474,7 @@ public final class c extends e { } } z2 = false; - this.f829z = z2; + this.f830z = z2; if (z2) { } this.A = false; @@ -484,7 +484,7 @@ public final class c extends e { } } } else if (z4) { - int i10 = this.f827x; + int i10 = this.f828x; if (i10 == 1 || i10 == 3) { this.v = j(); this.F = this.e; @@ -505,7 +505,7 @@ public final class c extends e { l(0); m(4); k(); - this.f829z = false; + this.f830z = false; this.A = false; this.B = 0; this.C = 0; @@ -523,7 +523,7 @@ public final class c extends e { if (g2 != null) { return g2; } - long j2 = this.f826s; + long j2 = this.f827s; boolean z2 = false; if (j2 != -9223372036854775807L) { long j3 = this.F; @@ -574,15 +574,15 @@ public final class c extends e { } public final void k() { - this.u.f(this.f827x); + this.u.f(this.f828x); this.t.clear(); this.t.add(this.u); } public final void l(int i2) { - int i3 = this.f827x; + int i3 = this.f828x; if (i3 != i2) { - this.f827x = i2; + this.f828x = i2; if (i2 == 3) { for (int i4 = 0; i4 < this.t.size(); i4++) { this.t.get(i4).g = i2; @@ -597,7 +597,7 @@ public final class c extends e { } public final void m(int i2) { - this.f828y = i2; + this.f829y = i2; this.u.h = i2; } diff --git a/app/src/main/java/c/i/a/c/e2/m/d.java b/app/src/main/java/c/i/a/c/e2/m/d.java index e1ac425407..9125ac473c 100644 --- a/app/src/main/java/c/i/a/c/e2/m/d.java +++ b/app/src/main/java/c/i/a/c/e2/m/d.java @@ -15,7 +15,6 @@ import c.i.a.c.e2.f; import c.i.a.c.e2.i; import c.i.a.c.i2.v; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.utilities.font.FontUtils; import java.nio.ByteBuffer; import java.util.ArrayList; @@ -64,7 +63,7 @@ public final class d extends e { public static final int b; /* renamed from: c reason: collision with root package name */ - public static final int f832c; + public static final int f833c; public static final int[] d = {0, 0, 0, 0, 0, 2, 0}; public static final int[] e = {0, 0, 0, 0, 0, 0, 2}; public static final int[] f = {3, 3, 3, 3, 3, 3, 1}; @@ -89,26 +88,26 @@ public final class d extends e { public int r; /* renamed from: s reason: collision with root package name */ - public int f833s; + public int f834s; public int t; public int u; public boolean v; public int w; /* renamed from: x reason: collision with root package name */ - public int f834x; + public int f835x; /* renamed from: y reason: collision with root package name */ - public int f835y; + public int f836y; /* renamed from: z reason: collision with root package name */ - public int f836z; + public int f837z; static { int d2 = d(0, 0, 0, 0); b = d2; int d3 = d(0, 0, 0, 3); - f832c = d3; + f833c = d3; h = new int[]{d2, d3, d2, d2, d3, d2, d2}; k = new int[]{d2, d2, d2, d2, d2, d3, d3}; } @@ -125,10 +124,10 @@ public final class d extends e { public static int d(int i2, int i3, int i4, int i5) { int i6; int i7 = 0; - AnimatableValueParser.t(i2, 0, 4); - AnimatableValueParser.t(i3, 0, 4); - AnimatableValueParser.t(i4, 0, 4); - AnimatableValueParser.t(i5, 0, 4); + c.c.a.a0.d.t(i2, 0, 4); + c.c.a.a0.d.t(i3, 0, 4); + c.c.a.a0.d.t(i4, 0, 4); + c.c.a.a0.d.t(i5, 0, 4); if (!(i5 == 0 || i5 == 1)) { if (i5 == 2) { i6 = 127; @@ -221,15 +220,15 @@ public final class d extends e { this.p = 4; this.q = false; this.r = 0; - this.f833s = 0; + this.f834s = 0; this.t = 0; this.u = 15; this.v = true; this.w = 0; - this.f834x = 0; - this.f835y = 0; + this.f835x = 0; + this.f836y = 0; int i2 = b; - this.f836z = i2; + this.f837z = i2; this.D = a; this.F = i2; } @@ -277,13 +276,13 @@ public final class d extends e { public final int b; /* renamed from: c reason: collision with root package name */ - public final byte[] f837c; + public final byte[] f838c; public int d = 0; public c(int i, int i2) { this.a = i; this.b = i2; - this.f837c = new byte[((i2 * 2) - 1)]; + this.f838c = new byte[((i2 * 2) - 1)]; } } @@ -335,7 +334,7 @@ public final class d extends e { } c cVar = new c(i2, i4); this.o = cVar; - byte[] bArr = cVar.f837c; + byte[] bArr = cVar.f838c; int i5 = cVar.d; cVar.d = i5 + 1; bArr[i5] = s4; @@ -343,12 +342,12 @@ public final class d extends e { if (i == 2) { z2 = true; } - AnimatableValueParser.k(z2); + c.c.a.a0.d.k(z2); c cVar2 = this.o; if (cVar2 == null) { Log.e("Cea708Decoder", "Encountered DTVCC_PACKET_DATA before DTVCC_PACKET_START"); } else { - byte[] bArr2 = cVar2.f837c; + byte[] bArr2 = cVar2.f838c; int i6 = cVar2.d; int i7 = i6 + 1; cVar2.d = i7; @@ -386,18 +385,18 @@ public final class d extends e { c cVar = this.o; if (cVar != null) { if (cVar.d != (cVar.b * 2) - 1) { - StringBuilder P = c.d.b.a.a.P("DtvCcPacket ended prematurely; size is "); - P.append((this.o.b * 2) - 1); - P.append(", but current index is "); - P.append(this.o.d); - P.append(" (sequence number "); - P.append(this.o.a); - P.append(");"); - Log.d("Cea708Decoder", P.toString()); + StringBuilder O = c.d.b.a.a.O("DtvCcPacket ended prematurely; size is "); + O.append((this.o.b * 2) - 1); + O.append(", but current index is "); + O.append(this.o.d); + O.append(" (sequence number "); + O.append(this.o.a); + O.append(");"); + Log.d("Cea708Decoder", O.toString()); } v vVar = this.h; c cVar2 = this.o; - vVar.j(cVar2.f837c, cVar2.d); + vVar.j(cVar2.f838c, cVar2.d); int i = 3; int g = this.h.g(3); int g2 = this.h.g(5); @@ -407,7 +406,7 @@ public final class d extends e { this.h.m(2); g = this.h.g(6); if (g < 7) { - c.d.b.a.a.j0("Invalid extended service number: ", g, "Cea708Decoder"); + c.d.b.a.a.i0("Invalid extended service number: ", g, "Cea708Decoder"); } } if (g2 == 0) { @@ -436,15 +435,15 @@ public final class d extends e { default: if (g3 < 17 || g3 > 23) { if (g3 < 24 || g3 > 31) { - c.d.b.a.a.j0("Invalid C0 command: ", g3, "Cea708Decoder"); + c.d.b.a.a.i0("Invalid C0 command: ", g3, "Cea708Decoder"); break; } else { - c.d.b.a.a.j0("Currently unsupported COMMAND_P16 Command: ", g3, "Cea708Decoder"); + c.d.b.a.a.i0("Currently unsupported COMMAND_P16 Command: ", g3, "Cea708Decoder"); this.h.m(16); break; } } else { - c.d.b.a.a.j0("Currently unsupported COMMAND_EXT1 Command: ", g3, "Cea708Decoder"); + c.d.b.a.a.i0("Currently unsupported COMMAND_EXT1 Command: ", g3, "Cea708Decoder"); this.h.m(8); continue; } @@ -589,7 +588,7 @@ public final class d extends e { int g5 = this.h.g(2); this.h.m(8); b bVar4 = this.l; - bVar4.f836z = d3; + bVar4.f837z = d3; bVar4.w = g5; break; } @@ -624,7 +623,7 @@ public final class d extends e { bVar5.p = g6; bVar5.q = f5; bVar5.r = g7; - bVar5.f833s = g8; + bVar5.f834s = g8; bVar5.t = g9; int i11 = g10 + 1; if (bVar5.u != i11) { @@ -635,19 +634,19 @@ public final class d extends e { } } } - if (!(g11 == 0 || bVar5.f834x == g11)) { - bVar5.f834x = g11; + if (!(g11 == 0 || bVar5.f835x == g11)) { + bVar5.f835x = g11; int i12 = g11 - 1; int i13 = b.h[i12]; boolean z3 = b.g[i12]; int i14 = b.e[i12]; int i15 = b.f[i12]; int i16 = b.d[i12]; - bVar5.f836z = i13; + bVar5.f837z = i13; bVar5.w = i16; } - if (!(g12 == 0 || bVar5.f835y == g12)) { - bVar5.f835y = g12; + if (!(g12 == 0 || bVar5.f836y == g12)) { + bVar5.f836y = g12; int i17 = g12 - 1; int i18 = b.j[i17]; int i19 = b.i[i17]; @@ -664,7 +663,7 @@ public final class d extends e { } else if (g3 <= 255) { this.l.a((char) (g3 & 255)); } else { - c.d.b.a.a.j0("Invalid base command: ", g3, "Cea708Decoder"); + c.d.b.a.a.i0("Invalid base command: ", g3, "Cea708Decoder"); } i = 3; i2 = 7; @@ -753,7 +752,7 @@ public final class d extends e { this.l.a(9484); break; default: - c.d.b.a.a.j0("Invalid G2 character: ", g13, "Cea708Decoder"); + c.d.b.a.a.i0("Invalid G2 character: ", g13, "Cea708Decoder"); break; } } @@ -770,11 +769,11 @@ public final class d extends e { this.h.m(this.h.g(6) * 8); } } else if (g13 > 255) { - c.d.b.a.a.j0("Invalid extended command: ", g13, "Cea708Decoder"); + c.d.b.a.a.i0("Invalid extended command: ", g13, "Cea708Decoder"); } else if (g13 == 160) { this.l.a(13252); } else { - c.d.b.a.a.j0("Invalid G3 character: ", g13, "Cea708Decoder"); + c.d.b.a.a.i0("Invalid G3 character: ", g13, "Cea708Decoder"); this.l.a('_'); } i = 3; @@ -829,15 +828,15 @@ public final class d extends e { } else if (i3 == 2) { alignment = Layout.Alignment.ALIGN_CENTER; } else if (i3 != 3) { - StringBuilder P = c.d.b.a.a.P("Unexpected justification value: "); - P.append(bVar.w); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Unexpected justification value: "); + O.append(bVar.w); + throw new IllegalArgumentException(O.toString()); } if (!bVar.q) { - f2 = ((float) bVar.f833s) / 99.0f; + f2 = ((float) bVar.f834s) / 99.0f; f = ((float) bVar.r) / 99.0f; } else { - f2 = ((float) bVar.f833s) / 209.0f; + f2 = ((float) bVar.f834s) / 209.0f; f = ((float) bVar.r) / 74.0f; } float f3 = (f2 * 0.9f) + 0.05f; @@ -845,7 +844,7 @@ public final class d extends e { int i4 = bVar.t; int i5 = i4 / 3; int i6 = i4 % 3; - aVar = new a(spannableStringBuilder, alignment, f4, 0, i5 != 0 ? 0 : i5 == 1 ? 1 : 2, f3, i6 != 0 ? 0 : i6 == 1 ? 1 : 2, -3.4028235E38f, bVar.f836z == b.b, bVar.f836z, bVar.p); + aVar = new a(spannableStringBuilder, alignment, f4, 0, i5 != 0 ? 0 : i5 == 1 ? 1 : 2, f3, i6 != 0 ? 0 : i6 == 1 ? 1 : 2, -3.4028235E38f, bVar.f837z == b.b, bVar.f837z, bVar.p); } alignment = Layout.Alignment.ALIGN_NORMAL; if (!bVar.q) { @@ -855,7 +854,7 @@ public final class d extends e { int i4 = bVar.t; int i5 = i4 / 3; int i6 = i4 % 3; - aVar = new a(spannableStringBuilder, alignment, f4, 0, i5 != 0 ? 0 : i5 == 1 ? 1 : 2, f3, i6 != 0 ? 0 : i6 == 1 ? 1 : 2, -3.4028235E38f, bVar.f836z == b.b, bVar.f836z, bVar.p); + aVar = new a(spannableStringBuilder, alignment, f4, 0, i5 != 0 ? 0 : i5 == 1 ? 1 : 2, f3, i6 != 0 ? 0 : i6 == 1 ? 1 : 2, -3.4028235E38f, bVar.f837z == b.b, bVar.f837z, bVar.p); } if (aVar != null) { arrayList.add(aVar); diff --git a/app/src/main/java/c/i/a/c/e2/m/e.java b/app/src/main/java/c/i/a/c/e2/m/e.java index 4ad31b86d2..a8b675f559 100644 --- a/app/src/main/java/c/i/a/c/e2/m/e.java +++ b/app/src/main/java/c/i/a/c/e2/m/e.java @@ -2,12 +2,12 @@ package c.i.a.c.e2.m; import androidx.annotation.Nullable; import androidx.recyclerview.widget.RecyclerView; +import c.c.a.a0.d; import c.i.a.c.e2.g; import c.i.a.c.e2.i; import c.i.a.c.e2.j; import c.i.a.c.i2.f0; import c.i.a.c.x1.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.decoder.DecoderException; import com.google.android.exoplayer2.text.SubtitleDecoderException; import java.util.ArrayDeque; @@ -18,7 +18,7 @@ public abstract class e implements g { public final ArrayDeque b; /* renamed from: c reason: collision with root package name */ - public final PriorityQueue f838c; + public final PriorityQueue f839c; @Nullable public b d; public long e; @@ -78,7 +78,7 @@ public abstract class e implements g { for (int i2 = 0; i2 < 2; i2++) { this.b.add(new c(new b(this))); } - this.f838c = new PriorityQueue<>(); + this.f839c = new PriorityQueue<>(); } @Override // c.i.a.c.e2.g @@ -90,7 +90,7 @@ public abstract class e implements g { @Override // c.i.a.c.x1.c @Nullable public i c() throws DecoderException { - AnimatableValueParser.D(this.d == null); + d.D(this.d == null); if (this.a.isEmpty()) { return null; } @@ -103,7 +103,7 @@ public abstract class e implements g { @Override // c.i.a.c.x1.c public void d(i iVar) throws DecoderException { i iVar2 = iVar; - AnimatableValueParser.k(iVar2 == this.d); + d.k(iVar2 == this.d); b bVar = (b) iVar2; if (bVar.m()) { i(bVar); @@ -111,7 +111,7 @@ public abstract class e implements g { long j = this.f; this.f = 1 + j; bVar.r = j; - this.f838c.add(bVar); + this.f839c.add(bVar); } this.d = null; } @@ -124,9 +124,9 @@ public abstract class e implements g { public void flush() { this.f = 0; this.e = 0; - while (!this.f838c.isEmpty()) { + while (!this.f839c.isEmpty()) { int i = f0.a; - i(this.f838c.poll()); + i(this.f839c.poll()); } b bVar = this.d; if (bVar != null) { @@ -141,12 +141,12 @@ public abstract class e implements g { if (this.b.isEmpty()) { return null; } - while (!this.f838c.isEmpty()) { + while (!this.f839c.isEmpty()) { int i = f0.a; - if (this.f838c.peek().m > this.e) { + if (this.f839c.peek().m > this.e) { break; } - b poll = this.f838c.poll(); + b poll = this.f839c.poll(); if (poll.n()) { j pollFirst = this.b.pollFirst(); pollFirst.j(4); diff --git a/app/src/main/java/c/i/a/c/e2/m/f.java b/app/src/main/java/c/i/a/c/e2/m/f.java index 8e93fabb95..b2a1dd0324 100644 --- a/app/src/main/java/c/i/a/c/e2/m/f.java +++ b/app/src/main/java/c/i/a/c/e2/m/f.java @@ -1,7 +1,7 @@ package c.i.a.c.e2.m; +import c.c.a.a0.d; import c.i.a.c.e2.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Collections; import java.util.List; /* compiled from: CeaSubtitle */ @@ -19,7 +19,7 @@ public final class f implements c.i.a.c.e2.f { @Override // c.i.a.c.e2.f public long g(int i) { - AnimatableValueParser.k(i == 0); + d.k(i == 0); return 0; } diff --git a/app/src/main/java/c/i/a/c/e2/n/a.java b/app/src/main/java/c/i/a/c/e2/n/a.java index d772a0f50b..2336cb4363 100644 --- a/app/src/main/java/c/i/a/c/e2/n/a.java +++ b/app/src/main/java/c/i/a/c/e2/n/a.java @@ -47,7 +47,7 @@ public final class a extends d { int i8; if (z2) { b.h hVar = this.n.i; - hVar.f845c.clear(); + hVar.f846c.clear(); hVar.d.clear(); hVar.e.clear(); hVar.f.clear(); @@ -95,7 +95,7 @@ public final class a extends d { } } else { hVar2.i = dVar2; - hVar2.f845c.clear(); + hVar2.f846c.clear(); hVar2.d.clear(); hVar2.e.clear(); break; @@ -141,13 +141,13 @@ public final class a extends d { i9 = 16; } b.f fVar2 = new b.f(g8, f, g9, g10, g11, g12, g13, g14, g15, g16, sparseArray4); - if (dVar3.b == 0 && (fVar = hVar2.f845c.get(g8)) != null) { + if (dVar3.b == 0 && (fVar = hVar2.f846c.get(g8)) != null) { SparseArray sparseArray5 = fVar.j; for (int i13 = 0; i13 < sparseArray5.size(); i13++) { fVar2.j.put(sparseArray5.keyAt(i13), sparseArray5.valueAt(i13)); } } - hVar2.f845c.put(fVar2.a, fVar2); + hVar2.f846c.put(fVar2.a, fVar2); break; } case 18: @@ -220,15 +220,15 @@ public final class a extends d { bVar.f.setBitmap(createBitmap); } ArrayList arrayList = new ArrayList(); - SparseArray sparseArray6 = dVar4.f843c; + SparseArray sparseArray6 = dVar4.f844c; int i14 = 0; while (i14 < sparseArray6.size()) { bVar.f.save(); b.e valueAt = sparseArray6.valueAt(i14); - b.f fVar3 = bVar.i.f845c.get(sparseArray6.keyAt(i14)); - int i15 = valueAt.a + bVar2.f841c; + b.f fVar3 = bVar.i.f846c.get(sparseArray6.keyAt(i14)); + int i15 = valueAt.a + bVar2.f842c; int i16 = valueAt.b + bVar2.e; - bVar.f.clipRect(i15, i16, Math.min(fVar3.f844c + i15, bVar2.d), Math.min(fVar3.d + i16, bVar2.f)); + bVar.f.clipRect(i15, i16, Math.min(fVar3.f845c + i15, bVar2.d), Math.min(fVar3.d + i16, bVar2.f)); b.a aVar = bVar.i.d.get(fVar3.f); if (aVar == null && (aVar = bVar.i.f.get(fVar3.f)) == null) { aVar = bVar.h; @@ -251,9 +251,9 @@ public final class a extends d { sparseArray = sparseArray7; Canvas canvas = bVar.f; cVar3 = cVar; - int[] iArr = i18 == 3 ? aVar.d : i18 == 2 ? aVar.f840c : aVar.b; + int[] iArr = i18 == 3 ? aVar.d : i18 == 2 ? aVar.f841c : aVar.b; i2 = i14; - b.e(cVar4.f842c, iArr, i18, i19, i20, paint, canvas); + b.e(cVar4.f843c, iArr, i18, i19, i20, paint, canvas); b.e(cVar4.d, iArr, i18, i19, i20 + 1, paint, canvas); } else { cVar3 = cVar; @@ -269,13 +269,13 @@ public final class a extends d { } if (fVar3.b) { int i21 = fVar3.e; - bVar.e.setColor(i21 == 3 ? aVar.d[fVar3.g] : i21 == 2 ? aVar.f840c[fVar3.h] : aVar.b[fVar3.i]); - bVar.f.drawRect((float) i15, (float) i16, (float) (fVar3.f844c + i15), (float) (fVar3.d + i16), bVar.e); + bVar.e.setColor(i21 == 3 ? aVar.d[fVar3.g] : i21 == 2 ? aVar.f841c[fVar3.h] : aVar.b[fVar3.i]); + bVar.f.drawRect((float) i15, (float) i16, (float) (fVar3.f845c + i15), (float) (fVar3.d + i16), bVar.e); } - Bitmap createBitmap2 = Bitmap.createBitmap(bVar.j, i15, i16, fVar3.f844c, fVar3.d); + Bitmap createBitmap2 = Bitmap.createBitmap(bVar.j, i15, i16, fVar3.f845c, fVar3.d); float f5 = (float) bVar2.a; float f6 = (float) bVar2.b; - arrayList.add(new c(null, null, createBitmap2, ((float) i16) / f6, 0, 0, ((float) i15) / f5, 0, Integer.MIN_VALUE, -3.4028235E38f, ((float) fVar3.f844c) / f5, ((float) fVar3.d) / f6, false, ViewCompat.MEASURED_STATE_MASK, Integer.MIN_VALUE, 0.0f, null)); + arrayList.add(new c(null, null, createBitmap2, ((float) i16) / f6, 0, 0, ((float) i15) / f5, 0, Integer.MIN_VALUE, -3.4028235E38f, ((float) fVar3.f845c) / f5, ((float) fVar3.d) / f6, false, ViewCompat.MEASURED_STATE_MASK, Integer.MIN_VALUE, 0.0f, null)); bVar.f.drawColor(0, PorterDuff.Mode.CLEAR); bVar.f.restore(); i14++; diff --git a/app/src/main/java/c/i/a/c/e2/n/b.java b/app/src/main/java/c/i/a/c/e2/n/b.java index c3298f4a9c..08bb6e12c7 100644 --- a/app/src/main/java/c/i/a/c/e2/n/b.java +++ b/app/src/main/java/c/i/a/c/e2/n/b.java @@ -16,7 +16,7 @@ public final class b { public static final byte[] b = {0, 119, -120, -1}; /* renamed from: c reason: collision with root package name */ - public static final byte[] f839c = {0, 17, 34, 51, 68, 85, 102, 119, -120, -103, -86, -69, -52, -35, -18, -1}; + public static final byte[] f840c = {0, 17, 34, 51, 68, 85, 102, 119, -120, -103, -86, -69, -52, -35, -18, -1}; public final Paint d; public final Paint e; public final Canvas f = new Canvas(); @@ -31,13 +31,13 @@ public final class b { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final int[] f840c; + public final int[] f841c; public final int[] d; public a(int i, int[] iArr, int[] iArr2, int[] iArr3) { this.a = i; this.b = iArr; - this.f840c = iArr2; + this.f841c = iArr2; this.d = iArr3; } } @@ -49,7 +49,7 @@ public final class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f841c; + public final int f842c; public final int d; public final int e; public final int f; @@ -57,7 +57,7 @@ public final class b { public C0093b(int i, int i2, int i3, int i4, int i5, int i6) { this.a = i; this.b = i2; - this.f841c = i3; + this.f842c = i3; this.d = i4; this.e = i5; this.f = i6; @@ -70,13 +70,13 @@ public final class b { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final byte[] f842c; + public final byte[] f843c; public final byte[] d; public c(int i, boolean z2, byte[] bArr, byte[] bArr2) { this.a = i; this.b = z2; - this.f842c = bArr; + this.f843c = bArr; this.d = bArr2; } } @@ -87,12 +87,12 @@ public final class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final SparseArray f843c; + public final SparseArray f844c; public d(int i, int i2, int i3, SparseArray sparseArray) { this.a = i2; this.b = i3; - this.f843c = sparseArray; + this.f844c = sparseArray; } } @@ -113,7 +113,7 @@ public final class b { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final int f844c; + public final int f845c; public final int d; public final int e; public final int f; @@ -125,7 +125,7 @@ public final class b { public f(int i, boolean z2, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9, SparseArray sparseArray) { this.a = i; this.b = z2; - this.f844c = i2; + this.f845c = i2; this.d = i3; this.e = i5; this.f = i6; @@ -153,7 +153,7 @@ public final class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final SparseArray f845c = new SparseArray<>(); + public final SparseArray f846c = new SparseArray<>(); public final SparseArray d = new SparseArray<>(); public final SparseArray e = new SparseArray<>(); public final SparseArray f = new SparseArray<>(); @@ -424,7 +424,7 @@ public final class b { } case 17: if (i == 3) { - bArr4 = bArr6 == null ? f839c : bArr6; + bArr4 = bArr6 == null ? f840c : bArr6; } else { bArr4 = null; } diff --git a/app/src/main/java/c/i/a/c/e2/o/a.java b/app/src/main/java/c/i/a/c/e2/o/a.java index 0598fae932..9ebfa7aa9f 100644 --- a/app/src/main/java/c/i/a/c/e2/o/a.java +++ b/app/src/main/java/c/i/a/c/e2/o/a.java @@ -29,7 +29,7 @@ public final class a extends d { public final int[] b = new int[256]; /* renamed from: c reason: collision with root package name */ - public boolean f846c; + public boolean f847c; public int d; public int e; public int f; @@ -45,7 +45,7 @@ public final class a extends d { this.h = 0; this.i = 0; this.a.z(0); - this.f846c = false; + this.f847c = false; } } @@ -65,7 +65,7 @@ public final class a extends d { a aVar = this; w wVar3 = aVar.n; wVar3.a = bArr; - wVar3.f920c = i; + wVar3.f921c = i; int i4 = 0; wVar3.b = 0; if (wVar3.a() > 0 && wVar3.c() == 120) { @@ -74,7 +74,7 @@ public final class a extends d { } if (f0.x(wVar3, aVar.o, aVar.q)) { w wVar4 = aVar.o; - wVar3.B(wVar4.a, wVar4.f920c); + wVar3.B(wVar4.a, wVar4.f921c); } } aVar.p.a(); @@ -82,7 +82,7 @@ public final class a extends d { while (aVar.n.a() >= 3) { w wVar5 = aVar.n; C0094a aVar2 = aVar.p; - int i5 = wVar5.f920c; + int i5 = wVar5.f921c; int s2 = wVar5.s(); int x2 = wVar5.x(); int i6 = wVar5.b + x2; @@ -110,7 +110,7 @@ public final class a extends d { wVar5 = wVar5; } wVar = wVar5; - aVar2.f846c = true; + aVar2.f847c = true; break; } wVar = wVar5; @@ -130,7 +130,7 @@ public final class a extends d { } w wVar6 = aVar2.a; int i10 = wVar6.b; - int i11 = wVar6.f920c; + int i11 = wVar6.f921c; if (i10 < i11 && i9 > 0) { int min = Math.min(i9, i11 - i10); wVar5.e(aVar2.a.a, i10, min); @@ -157,7 +157,7 @@ public final class a extends d { cVar = null; } else { wVar = wVar5; - if (aVar2.d == 0 || aVar2.e == 0 || aVar2.h == 0 || aVar2.i == 0 || (i2 = (wVar2 = aVar2.a).f920c) == 0 || wVar2.b != i2 || !aVar2.f846c) { + if (aVar2.d == 0 || aVar2.e == 0 || aVar2.h == 0 || aVar2.i == 0 || (i2 = (wVar2 = aVar2.a).f921c) == 0 || wVar2.b != i2 || !aVar2.f847c) { cVar = null; } else { wVar2.D(0); diff --git a/app/src/main/java/c/i/a/c/e2/p/c.java b/app/src/main/java/c/i/a/c/e2/p/c.java index e8a68cab88..980d064e9b 100644 --- a/app/src/main/java/c/i/a/c/e2/p/c.java +++ b/app/src/main/java/c/i/a/c/e2/p/c.java @@ -5,11 +5,11 @@ public final class c { public int b; /* renamed from: c reason: collision with root package name */ - public final int f847c; + public final int f848c; public c(int i, int i2, int i3) { this.a = i; this.b = i2; - this.f847c = i3; + this.f848c = i3; } } diff --git a/app/src/main/java/c/i/a/c/e2/q/a.java b/app/src/main/java/c/i/a/c/e2/q/a.java index f748c7f844..07fa213d99 100644 --- a/app/src/main/java/c/i/a/c/e2/q/a.java +++ b/app/src/main/java/c/i/a/c/e2/q/a.java @@ -16,7 +16,6 @@ import c.i.a.c.e2.q.c; import c.i.a.c.i2.f0; import c.i.a.c.i2.p; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import java.util.ArrayList; import java.util.LinkedHashMap; @@ -35,7 +34,7 @@ public final class a extends d { public float r = -3.4028235E38f; /* renamed from: s reason: collision with root package name */ - public float f848s = -3.4028235E38f; + public float f849s = -3.4028235E38f; public a(@Nullable List list) { super("SsaDecoder"); @@ -46,7 +45,7 @@ public final class a extends d { } this.o = true; String l = f0.l(list.get(0)); - AnimatableValueParser.k(l.startsWith("Format:")); + c.c.a.a0.d.k(l.startsWith("Format:")); b a = b.a(l); Objects.requireNonNull(a); this.p = a; @@ -132,23 +131,23 @@ public final class a extends d { } else { if (g.startsWith("Dialogue:")) { if (bVar2 == null) { - c.d.b.a.a.l0("Skipping dialogue line before complete format: ", g, "SsaDecoder"); + c.d.b.a.a.k0("Skipping dialogue line before complete format: ", g, "SsaDecoder"); } else { - AnimatableValueParser.k(g.startsWith("Dialogue:")); + c.c.a.a0.d.k(g.startsWith("Dialogue:")); String[] split = g.substring(9).split(",", bVar2.e); if (split.length != bVar2.e) { - c.d.b.a.a.l0("Skipping dialogue line with fewer columns than format: ", g, "SsaDecoder"); + c.d.b.a.a.k0("Skipping dialogue line with fewer columns than format: ", g, "SsaDecoder"); } else { long n2 = n(split[bVar2.a]); if (n2 == -9223372036854775807L) { - c.d.b.a.a.l0("Skipping invalid timing: ", g, "SsaDecoder"); + c.d.b.a.a.k0("Skipping invalid timing: ", g, "SsaDecoder"); } else { long n3 = n(split[bVar2.b]); if (n3 == -9223372036854775807L) { - c.d.b.a.a.l0("Skipping invalid timing: ", g, "SsaDecoder"); + c.d.b.a.a.k0("Skipping invalid timing: ", g, "SsaDecoder"); } else { Map map = aVar.q; - c cVar = (map == null || (i8 = bVar2.f849c) == -1) ? null : map.get(split[i8].trim()); + c cVar = (map == null || (i8 = bVar2.f850c) == -1) ? null : map.get(split[i8].trim()); String str = split[bVar2.d]; Matcher matcher = c.b.a.matcher(str); PointF pointF = null; @@ -183,13 +182,13 @@ public final class a extends d { } else { String replace = c.b.a.matcher(str).replaceAll("").replace("\\N", "\n").replace("\\n", "\n").replace("\\h", " "); float f6 = aVar.r; - float f7 = aVar.f848s; + float f7 = aVar.f849s; SpannableString spannableString = new SpannableString(replace); if (cVar != null) { - if (cVar.f850c != null) { + if (cVar.f851c != null) { bVar = bVar2; j = n3; - spannableString.setSpan(new ForegroundColorSpan(cVar.f850c.intValue()), 0, spannableString.length(), 33); + spannableString.setSpan(new ForegroundColorSpan(cVar.f851c.intValue()), 0, spannableString.length(), 33); } else { bVar = bVar2; j = n3; @@ -355,7 +354,7 @@ public final class a extends d { this.r = Float.parseFloat(split[1].trim()); } else if (K.equals("playresy")) { try { - this.f848s = Float.parseFloat(split[1].trim()); + this.f849s = Float.parseFloat(split[1].trim()); } catch (NumberFormatException unused) { } } @@ -450,9 +449,9 @@ public final class a extends d { } else { if (g3.startsWith("Style:")) { if (aVar == null) { - c.d.b.a.a.l0("Skipping 'Style:' line before 'Format:' line: ", g3, "SsaDecoder"); + c.d.b.a.a.k0("Skipping 'Style:' line before 'Format:' line: ", g3, "SsaDecoder"); } else { - AnimatableValueParser.k(g3.startsWith("Style:")); + c.c.a.a0.d.k(g3.startsWith("Style:")); String[] split3 = TextUtils.split(g3.substring(6), ","); int length = split3.length; int i9 = aVar.g; @@ -467,7 +466,7 @@ public final class a extends d { String trim = split3[aVar.a].trim(); int i10 = aVar.b; int a = i10 != -1 ? c.a(split3[i10].trim()) : -1; - int i11 = aVar.f851c; + int i11 = aVar.f852c; Integer c5 = i11 != -1 ? c.c(split3[i11].trim()) : null; int i12 = aVar.d; if (i12 != -1) { diff --git a/app/src/main/java/c/i/a/c/e2/q/b.java b/app/src/main/java/c/i/a/c/e2/q/b.java index 1013f668d2..67f01b9f09 100644 --- a/app/src/main/java/c/i/a/c/e2/q/b.java +++ b/app/src/main/java/c/i/a/c/e2/q/b.java @@ -3,22 +3,22 @@ package c.i.a.c.e2.q; import android.text.TextUtils; import androidx.annotation.Nullable; import androidx.core.app.NotificationCompat; +import c.c.a.a0.d; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: SsaDialogueFormat */ public final class b { public final int a; public final int b; /* renamed from: c reason: collision with root package name */ - public final int f849c; + public final int f850c; public final int d; public final int e; public b(int i, int i2, int i3, int i4, int i5) { this.a = i; this.b = i2; - this.f849c = i3; + this.f850c = i3; this.d = i4; this.e = i5; } @@ -27,7 +27,7 @@ public final class b { @Nullable public static b a(String str) { char c2; - AnimatableValueParser.k(str.startsWith("Format:")); + d.k(str.startsWith("Format:")); String[] split = TextUtils.split(str.substring(7), ","); int i = -1; int i2 = -1; diff --git a/app/src/main/java/c/i/a/c/e2/q/c.java b/app/src/main/java/c/i/a/c/e2/q/c.java index b632cd265a..1bbcd62de9 100644 --- a/app/src/main/java/c/i/a/c/e2/q/c.java +++ b/app/src/main/java/c/i/a/c/e2/q/c.java @@ -5,9 +5,9 @@ import android.graphics.PointF; import android.util.Log; import androidx.annotation.ColorInt; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.i2.f0; import c.i.a.c.i2.p; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Objects; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -19,7 +19,7 @@ public final class c { @ColorInt /* renamed from: c reason: collision with root package name */ - public final Integer f850c; + public final Integer f851c; public final float d; public final boolean e; public final boolean f; @@ -30,7 +30,7 @@ public final class c { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f851c; + public final int f852c; public final int d; public final int e; public final int f; @@ -39,7 +39,7 @@ public final class c { public a(int i, int i2, int i3, int i4, int i5, int i6, int i7) { this.a = i; this.b = i2; - this.f851c = i3; + this.f852c = i3; this.d = i4; this.e = i5; this.f = i6; @@ -53,7 +53,7 @@ public final class c { public static final Pattern b = Pattern.compile(f0.k("\\\\pos\\((%1$s),(%1$s)\\)", "\\s*\\d+(?:\\.\\d+)?\\s*")); /* renamed from: c reason: collision with root package name */ - public static final Pattern f852c = Pattern.compile(f0.k("\\\\move\\(%1$s,%1$s,(%1$s),(%1$s)(?:,%1$s,%1$s)?\\)", "\\s*\\d+(?:\\.\\d+)?\\s*")); + public static final Pattern f853c = Pattern.compile(f0.k("\\\\move\\(%1$s,%1$s,(%1$s),(%1$s)(?:,%1$s,%1$s)?\\)", "\\s*\\d+(?:\\.\\d+)?\\s*")); public static final Pattern d = Pattern.compile("\\\\an(\\d+)"); @Nullable @@ -61,7 +61,7 @@ public final class c { String str2; String str3; Matcher matcher = b.matcher(str); - Matcher matcher2 = f852c.matcher(str); + Matcher matcher2 = f853c.matcher(str); boolean find = matcher.find(); boolean find2 = matcher2.find(); if (find) { @@ -86,7 +86,7 @@ public final class c { public c(String str, int i, @Nullable @ColorInt Integer num, float f, boolean z2, boolean z3) { this.a = str; this.b = i; - this.f850c = num; + this.f851c = num; this.d = f; this.e = z2; this.f = z3; @@ -117,7 +117,7 @@ public final class c { } } catch (NumberFormatException unused) { } - c.d.b.a.a.l0("Ignoring unknown alignment: ", str, "SsaStyle"); + c.d.b.a.a.k0("Ignoring unknown alignment: ", str, "SsaStyle"); return -1; } @@ -136,7 +136,7 @@ public final class c { public static Integer c(String str) { try { long parseLong = str.startsWith("&H") ? Long.parseLong(str.substring(2), 16) : Long.parseLong(str); - AnimatableValueParser.k(parseLong <= 4294967295L); + d.k(parseLong <= 4294967295L); return Integer.valueOf(Color.argb(c.i.a.f.e.o.c.t(((parseLong >> 24) & 255) ^ 255), c.i.a.f.e.o.c.t(parseLong & 255), c.i.a.f.e.o.c.t((parseLong >> 8) & 255), c.i.a.f.e.o.c.t((parseLong >> 16) & 255))); } catch (IllegalArgumentException e) { p.c("SsaStyle", "Failed to parse color expression: '" + str + "'", e); diff --git a/app/src/main/java/c/i/a/c/e2/q/d.java b/app/src/main/java/c/i/a/c/e2/q/d.java index f47eec3999..0cc0a0dcc0 100644 --- a/app/src/main/java/c/i/a/c/e2/q/d.java +++ b/app/src/main/java/c/i/a/c/e2/q/d.java @@ -3,7 +3,6 @@ package c.i.a.c.e2.q; import c.i.a.c.e2.c; import c.i.a.c.e2.f; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Collections; import java.util.List; /* compiled from: SsaSubtitle */ @@ -44,11 +43,11 @@ public final class d implements f { @Override // c.i.a.c.e2.f public long g(int i) { boolean z2 = true; - AnimatableValueParser.k(i >= 0); + c.c.a.a0.d.k(i >= 0); if (i >= this.j.size()) { z2 = false; } - AnimatableValueParser.k(z2); + c.c.a.a0.d.k(z2); return this.j.get(i).longValue(); } diff --git a/app/src/main/java/c/i/a/c/e2/r/a.java b/app/src/main/java/c/i/a/c/e2/r/a.java index 8f04eb33c2..c75492da49 100644 --- a/app/src/main/java/c/i/a/c/e2/r/a.java +++ b/app/src/main/java/c/i/a/c/e2/r/a.java @@ -282,7 +282,7 @@ public final class a extends d { i4 = i2; } else { wVar = wVar2; - c.d.b.a.a.l0("Skipping invalid timing: ", g2, "SubripDecoder"); + c.d.b.a.a.k0("Skipping invalid timing: ", g2, "SubripDecoder"); } i3 = 0; aVar = this; @@ -290,7 +290,7 @@ public final class a extends d { } } catch (NumberFormatException unused) { wVar = wVar2; - c.d.b.a.a.l0("Skipping invalid index: ", g, "SubripDecoder"); + c.d.b.a.a.k0("Skipping invalid index: ", g, "SubripDecoder"); } } } diff --git a/app/src/main/java/c/i/a/c/e2/r/b.java b/app/src/main/java/c/i/a/c/e2/r/b.java index 598c781f8d..66e906578b 100644 --- a/app/src/main/java/c/i/a/c/e2/r/b.java +++ b/app/src/main/java/c/i/a/c/e2/r/b.java @@ -1,9 +1,9 @@ package c.i.a.c.e2.r; +import c.c.a.a0.d; import c.i.a.c.e2.c; import c.i.a.c.e2.f; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Collections; import java.util.List; /* compiled from: SubripSubtitle */ @@ -28,11 +28,11 @@ public final class b implements f { @Override // c.i.a.c.e2.f public long g(int i) { boolean z2 = true; - AnimatableValueParser.k(i >= 0); + d.k(i >= 0); if (i >= this.j.length) { z2 = false; } - AnimatableValueParser.k(z2); + d.k(z2); return this.j[i]; } diff --git a/app/src/main/java/c/i/a/c/e2/s/b.java b/app/src/main/java/c/i/a/c/e2/s/b.java index 8a86adbf3d..89fa147a8f 100644 --- a/app/src/main/java/c/i/a/c/e2/s/b.java +++ b/app/src/main/java/c/i/a/c/e2/s/b.java @@ -8,7 +8,7 @@ public final class b { public static final z b = z.l(2, "auto", "none"); /* renamed from: c reason: collision with root package name */ - public static final z f853c = z.t("dot", "sesame", "circle"); + public static final z f854c = z.t("dot", "sesame", "circle"); public static final z d = z.l(2, "filled", "open"); public static final z e = z.t("after", "before", "outside"); public final int f; diff --git a/app/src/main/java/c/i/a/c/e2/s/c.java b/app/src/main/java/c/i/a/c/e2/s/c.java index 181c5642bd..949af23897 100644 --- a/app/src/main/java/c/i/a/c/e2/s/c.java +++ b/app/src/main/java/c/i/a/c/e2/s/c.java @@ -14,7 +14,6 @@ import c.i.b.b.a1; import c.i.b.b.h; import c.i.b.b.y0; import c.i.b.b.z; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.exoplayer2.text.SubtitleDecoderException; import com.google.android.material.shadow.ShadowDrawableWrapper; @@ -39,7 +38,7 @@ public final class c extends d { public static final Pattern r = Pattern.compile("^(\\d+\\.?\\d*?)% (\\d+\\.?\\d*?)%$"); /* renamed from: s reason: collision with root package name */ - public static final Pattern f854s = Pattern.compile("^(\\d+\\.?\\d*?)px (\\d+\\.?\\d*?)px$"); + public static final Pattern f855s = Pattern.compile("^(\\d+\\.?\\d*?)px (\\d+\\.?\\d*?)px$"); public static final Pattern t = Pattern.compile("^(\\d+) (\\d+)$"); public static final b u = new b(30.0f, 1, 1); public static final a v = new a(32, 15); @@ -60,12 +59,12 @@ public final class c extends d { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f855c; + public final int f856c; public b(float f, int i, int i2) { this.a = f; this.b = i; - this.f855c = i2; + this.f856c = i2; } } @@ -107,7 +106,7 @@ public final class c extends d { } Matcher matcher = t.matcher(attributeValue); if (!matcher.matches()) { - c.d.b.a.a.l0("Ignoring malformed cell resolution: ", attributeValue, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring malformed cell resolution: ", attributeValue, "TtmlDecoder"); return aVar; } try { @@ -122,7 +121,7 @@ public final class c extends d { } throw new SubtitleDecoderException("Invalid cell resolution " + parseInt + " " + parseInt2); } catch (NumberFormatException unused) { - c.d.b.a.a.l0("Ignoring malformed cell resolution: ", attributeValue, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring malformed cell resolution: ", attributeValue, "TtmlDecoder"); return aVar; } } @@ -137,7 +136,7 @@ public final class c extends d { matcher = p.matcher(split[1]); Log.w("TtmlDecoder", "Multiple values in fontSize attribute. Picking the second value for vertical font size and ignoring the first."); } else { - throw new SubtitleDecoderException(c.d.b.a.a.z(c.d.b.a.a.P("Invalid number of entries for fontSize: "), split.length, ".")); + throw new SubtitleDecoderException(c.d.b.a.a.z(c.d.b.a.a.O("Invalid number of entries for fontSize: "), split.length, ".")); } if (matcher.matches()) { String group = matcher.group(3); @@ -205,7 +204,7 @@ public final class c extends d { if (attributeValue3 != null) { i2 = Integer.parseInt(attributeValue3); } - int i3 = bVar.f855c; + int i3 = bVar.f856c; String attributeValue4 = xmlPullParser.getAttributeValue("http://www.w3.org/ns/ttml#parameter", "tickRate"); if (attributeValue4 != null) { i3 = Integer.parseInt(attributeValue4); @@ -230,8 +229,8 @@ public final class c extends d { char c2; do { xmlPullParser.next(); - if (AnimatableValueParser.z1(xmlPullParser, "style")) { - String t03 = AnimatableValueParser.t0(xmlPullParser, "style"); + if (c.c.a.a0.d.b1(xmlPullParser, "style")) { + String t03 = c.c.a.a0.d.t0(xmlPullParser, "style"); f r2 = r(xmlPullParser, new f()); if (t03 != null) { for (String str : s(t03)) { @@ -242,14 +241,14 @@ public final class c extends d { if (str2 != null) { map.put(str2, r2); } - } else if (AnimatableValueParser.z1(xmlPullParser, ModelAuditLogEntry.CHANGE_KEY_REGION)) { - String t04 = AnimatableValueParser.t0(xmlPullParser, ModelAuditLogEntry.CHANGE_KEY_ID); + } else if (c.c.a.a0.d.b1(xmlPullParser, ModelAuditLogEntry.CHANGE_KEY_REGION)) { + String t04 = c.c.a.a0.d.t0(xmlPullParser, ModelAuditLogEntry.CHANGE_KEY_ID); if (t04 != null) { - String t05 = AnimatableValueParser.t0(xmlPullParser, "origin"); + String t05 = c.c.a.a0.d.t0(xmlPullParser, "origin"); if (t05 != null) { Pattern pattern = r; Matcher matcher = pattern.matcher(t05); - Pattern pattern2 = f854s; + Pattern pattern2 = f855s; Matcher matcher2 = pattern2.matcher(t05); if (matcher.matches()) { try { @@ -260,12 +259,12 @@ public final class c extends d { Objects.requireNonNull(group2); f2 = Float.parseFloat(group2) / 100.0f; } catch (NumberFormatException unused) { - c.d.b.a.a.l0("Ignoring region with malformed origin: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with malformed origin: ", t05, "TtmlDecoder"); } } else if (!matcher2.matches()) { - c.d.b.a.a.l0("Ignoring region with unsupported origin: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with unsupported origin: ", t05, "TtmlDecoder"); } else if (cVar == null) { - c.d.b.a.a.l0("Ignoring region with missing tts:extent: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with missing tts:extent: ", t05, "TtmlDecoder"); } else { try { String group3 = matcher2.group(1); @@ -279,10 +278,10 @@ public final class c extends d { f = f6; f2 = f7; } catch (NumberFormatException unused2) { - c.d.b.a.a.l0("Ignoring region with malformed origin: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with malformed origin: ", t05, "TtmlDecoder"); } } - String t06 = AnimatableValueParser.t0(xmlPullParser, "extent"); + String t06 = c.c.a.a0.d.t0(xmlPullParser, "extent"); if (t06 != null) { Matcher matcher3 = pattern.matcher(t06); Matcher matcher4 = pattern2.matcher(t06); @@ -296,12 +295,12 @@ public final class c extends d { f3 = Float.parseFloat(group6) / 100.0f; f4 = parseFloat; } catch (NumberFormatException unused3) { - c.d.b.a.a.l0("Ignoring region with malformed extent: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with malformed extent: ", t05, "TtmlDecoder"); } } else if (!matcher4.matches()) { - c.d.b.a.a.l0("Ignoring region with unsupported extent: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with unsupported extent: ", t05, "TtmlDecoder"); } else if (cVar == null) { - c.d.b.a.a.l0("Ignoring region with missing tts:extent: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with missing tts:extent: ", t05, "TtmlDecoder"); } else { try { String group7 = matcher4.group(1); @@ -313,10 +312,10 @@ public final class c extends d { f4 = ((float) parseInt3) / ((float) cVar.a); f3 = parseInt4 / ((float) cVar.b); } catch (NumberFormatException unused4) { - c.d.b.a.a.l0("Ignoring region with malformed extent: ", t05, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring region with malformed extent: ", t05, "TtmlDecoder"); } } - String t07 = AnimatableValueParser.t0(xmlPullParser, "displayAlign"); + String t07 = c.c.a.a0.d.t0(xmlPullParser, "displayAlign"); if (t07 != null) { String K = f0.K(t07); K.hashCode(); @@ -328,7 +327,7 @@ public final class c extends d { i = 2; } float f8 = 1.0f / ((float) aVar.a); - t02 = AnimatableValueParser.t0(xmlPullParser, "writingMode"); + t02 = c.c.a.a0.d.t0(xmlPullParser, "writingMode"); if (t02 != null) { String K2 = f0.K(t02); K2.hashCode(); @@ -384,7 +383,7 @@ public final class c extends d { f5 = f2; i = 0; float f8 = 1.0f / ((float) aVar.a); - t02 = AnimatableValueParser.t0(xmlPullParser, "writingMode"); + t02 = c.c.a.a0.d.t0(xmlPullParser, "writingMode"); if (t02 != null) { } i2 = Integer.MIN_VALUE; @@ -401,15 +400,15 @@ public final class c extends d { eVar = null; if (eVar != null) { } - } else if (AnimatableValueParser.z1(xmlPullParser, "metadata")) { + } else if (c.c.a.a0.d.b1(xmlPullParser, "metadata")) { do { xmlPullParser.next(); - if (AnimatableValueParser.z1(xmlPullParser, "image") && (t0 = AnimatableValueParser.t0(xmlPullParser, ModelAuditLogEntry.CHANGE_KEY_ID)) != null) { + if (c.c.a.a0.d.b1(xmlPullParser, "image") && (t0 = c.c.a.a0.d.t0(xmlPullParser, ModelAuditLogEntry.CHANGE_KEY_ID)) != null) { map3.put(t0, xmlPullParser.nextText()); } - } while (!AnimatableValueParser.k1(xmlPullParser, "metadata")); + } while (!c.c.a.a0.d.U0(xmlPullParser, "metadata")); } - } while (!AnimatableValueParser.k1(xmlPullParser, "head")); + } while (!c.c.a.a0.d.U0(xmlPullParser, "head")); return map; } @@ -856,10 +855,10 @@ public final class c extends d { fVar = k(fVar); try { fVar.b = i.a(attributeValue, false); - fVar.f858c = true; + fVar.f859c = true; break; } catch (IllegalArgumentException unused) { - c.d.b.a.a.l0("Failed parsing color value: ", attributeValue, "TtmlDecoder"); + c.d.b.a.a.k0("Failed parsing color value: ", attributeValue, "TtmlDecoder"); break; } case '\b': @@ -867,7 +866,7 @@ public final class c extends d { Matcher matcher = q.matcher(attributeValue); float f = Float.MAX_VALUE; if (!matcher.matches()) { - c.d.b.a.a.l0("Invalid value for shear: ", attributeValue, "TtmlDecoder"); + c.d.b.a.a.k0("Invalid value for shear: ", attributeValue, "TtmlDecoder"); } else { try { String group = matcher.group(1); @@ -901,7 +900,7 @@ public final class c extends d { n(attributeValue, fVar); break; } catch (SubtitleDecoderException unused2) { - c.d.b.a.a.l0("Failed parsing fontSize value: ", attributeValue, "TtmlDecoder"); + c.d.b.a.a.k0("Failed parsing fontSize value: ", attributeValue, "TtmlDecoder"); break; } case 11: @@ -939,7 +938,7 @@ public final class c extends d { bVar = new b(i2, 0, i3); } else { a1 b2 = h.b(b.d, n2); - a1 b3 = h.b(b.f853c, n2); + a1 b3 = h.b(b.f854c, n2); if (!((h.a) b2).isEmpty() || !((h.a) b3).isEmpty()) { String str2 = (String) c.i.a.f.e.o.c.K(b2, "filled"); int hashCode4 = str2.hashCode(); @@ -1038,7 +1037,7 @@ public final class c extends d { fVar.e = true; break; } catch (IllegalArgumentException unused3) { - c.d.b.a.a.l0("Failed parsing background value: ", attributeValue, "TtmlDecoder"); + c.d.b.a.a.k0("Failed parsing background value: ", attributeValue, "TtmlDecoder"); break; } } @@ -1140,7 +1139,7 @@ public final class c extends d { parseDouble *= d2; break; case 3: - d = (double) bVar.f855c; + d = (double) bVar.f856c; parseDouble /= d; break; case 4: @@ -1157,13 +1156,13 @@ public final class c extends d { @Nullable public static C0095c u(XmlPullParser xmlPullParser) { - String t0 = AnimatableValueParser.t0(xmlPullParser, "extent"); + String t0 = c.c.a.a0.d.t0(xmlPullParser, "extent"); if (t0 == null) { return null; } - Matcher matcher = f854s.matcher(t0); + Matcher matcher = f855s.matcher(t0); if (!matcher.matches()) { - c.d.b.a.a.l0("Ignoring non-pixel tts extent: ", t0, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring non-pixel tts extent: ", t0, "TtmlDecoder"); return null; } try { @@ -1174,7 +1173,7 @@ public final class c extends d { Objects.requireNonNull(group2); return new C0095c(parseInt, Integer.parseInt(group2)); } catch (NumberFormatException unused) { - c.d.b.a.a.l0("Ignoring malformed tts extent: ", t0, "TtmlDecoder"); + c.d.b.a.a.k0("Ignoring malformed tts extent: ", t0, "TtmlDecoder"); return null; } } diff --git a/app/src/main/java/c/i/a/c/e2/s/d.java b/app/src/main/java/c/i/a/c/e2/s/d.java index 5c5687148b..2fbc10429c 100644 --- a/app/src/main/java/c/i/a/c/e2/s/d.java +++ b/app/src/main/java/c/i/a/c/e2/s/d.java @@ -16,7 +16,6 @@ import c.i.a.c.e2.c; import c.i.a.c.e2.p.a; import c.i.a.c.e2.p.b; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.HashMap; @@ -33,7 +32,7 @@ public final class d { public final String b; /* renamed from: c reason: collision with root package name */ - public final boolean f856c; + public final boolean f857c; public final long d; public final long e; @Nullable @@ -55,7 +54,7 @@ public final class d { this.i = str4; this.f = fVar; this.g = strArr; - this.f856c = str2 != null; + this.f857c = str2 != null; this.d = j; this.e = j2; Objects.requireNonNull(str3); @@ -165,41 +164,41 @@ public final class d { e eVar = map2.get(str2); Objects.requireNonNull(eVar); int i3 = eVar.j; - f u2 = AnimatableValueParser.u2(this.f, this.g, map); + f R1 = c.c.a.a0.d.R1(this.f, this.g, map); SpannableStringBuilder spannableStringBuilder = (SpannableStringBuilder) bVar.a; if (spannableStringBuilder == null) { spannableStringBuilder = new SpannableStringBuilder(); bVar.a = spannableStringBuilder; } - if (u2 != null) { + if (R1 != null) { d dVar2 = this.j; - if (u2.b() != -1) { - spannableStringBuilder.setSpan(new StyleSpan(u2.b()), intValue, intValue2, 33); + if (R1.b() != -1) { + spannableStringBuilder.setSpan(new StyleSpan(R1.b()), intValue, intValue2, 33); } - if (u2.f == 1) { + if (R1.f == 1) { spannableStringBuilder.setSpan(new StrikethroughSpan(), intValue, intValue2, 33); } - if (u2.g == 1) { + if (R1.g == 1) { spannableStringBuilder.setSpan(new UnderlineSpan(), intValue, intValue2, 33); } - if (u2.f858c) { - if (u2.f858c) { - AnimatableValueParser.c(spannableStringBuilder, new ForegroundColorSpan(u2.b), intValue, intValue2, 33); + if (R1.f859c) { + if (R1.f859c) { + c.c.a.a0.d.c(spannableStringBuilder, new ForegroundColorSpan(R1.b), intValue, intValue2, 33); } else { throw new IllegalStateException("Font color has not been defined."); } } - if (u2.e) { - if (u2.e) { - AnimatableValueParser.c(spannableStringBuilder, new BackgroundColorSpan(u2.d), intValue, intValue2, 33); + if (R1.e) { + if (R1.e) { + c.c.a.a0.d.c(spannableStringBuilder, new BackgroundColorSpan(R1.d), intValue, intValue2, 33); } else { throw new IllegalStateException("Background color has not been defined."); } } - if (u2.a != null) { - AnimatableValueParser.c(spannableStringBuilder, new TypefaceSpan(u2.a), intValue, intValue2, 33); + if (R1.a != null) { + c.c.a.a0.d.c(spannableStringBuilder, new TypefaceSpan(R1.a), intValue, intValue2, 33); } - b bVar2 = u2.q; + b bVar2 = R1.q; if (bVar2 != null) { int i4 = bVar2.f; it = it2; @@ -213,19 +212,19 @@ public final class d { if (i5 == -2) { i5 = 1; } - AnimatableValueParser.c(spannableStringBuilder, new c.i.a.c.e2.p.c(i4, i2, i5), intValue, intValue2, 33); + c.c.a.a0.d.c(spannableStringBuilder, new c.i.a.c.e2.p.c(i4, i2, i5), intValue, intValue2, 33); } else { it = it2; } - int i6 = u2.m; + int i6 = R1.m; if (i6 == 2) { while (true) { if (dVar2 == null) { dVar2 = null; break; } - f u22 = AnimatableValueParser.u2(dVar2.f, dVar2.g, map); - if (u22 != null && u22.m == 1) { + f R12 = c.c.a.a0.d.R1(dVar2.f, dVar2.g, map); + if (R12 != null && R12.m == 1) { break; } dVar2 = dVar2.j; @@ -239,8 +238,8 @@ public final class d { break; } d dVar3 = (d) arrayDeque.pop(); - f u23 = AnimatableValueParser.u2(dVar3.f, dVar3.g, map); - if (u23 != null && u23.m == 3) { + f R13 = c.c.a.a0.d.R1(dVar3.f, dVar3.g, map); + if (R13 != null && R13.m == 3) { dVar = dVar3; break; } @@ -256,39 +255,39 @@ public final class d { int i7 = f0.a; f fVar = dVar2.f; spannableStringBuilder.setSpan(new b(str3, fVar != null ? fVar.n : -1), intValue, intValue2, 33); - if (u2.p == 1) { + if (R1.p == 1) { z2 = true; } if (z2) { - AnimatableValueParser.c(spannableStringBuilder, new a(), intValue, intValue2, 33); + c.c.a.a0.d.c(spannableStringBuilder, new a(), intValue, intValue2, 33); } - i = u2.j; + i = R1.j; if (i == 1) { - AnimatableValueParser.c(spannableStringBuilder, new AbsoluteSizeSpan((int) u2.k, true), intValue, intValue2, 33); + c.c.a.a0.d.c(spannableStringBuilder, new AbsoluteSizeSpan((int) R1.k, true), intValue, intValue2, 33); } else if (i == 2) { - AnimatableValueParser.c(spannableStringBuilder, new RelativeSizeSpan(u2.k), intValue, intValue2, 33); + c.c.a.a0.d.c(spannableStringBuilder, new RelativeSizeSpan(R1.k), intValue, intValue2, 33); } else if (i == 3) { - AnimatableValueParser.c(spannableStringBuilder, new RelativeSizeSpan(u2.k / 100.0f), intValue, intValue2, 33); + c.c.a.a0.d.c(spannableStringBuilder, new RelativeSizeSpan(R1.k / 100.0f), intValue, intValue2, 33); } - if (u2.r != Float.MAX_VALUE && "p".equals(this.a)) { - bVar.p = (u2.r * -90.0f) / 100.0f; + if (R1.r != Float.MAX_VALUE && "p".equals(this.a)) { + bVar.p = (R1.r * -90.0f) / 100.0f; } - bVar.f822c = u2.o; + bVar.f823c = R1.o; it2 = it; } } else { z2 = false; } Log.i("TtmlRenderUtil", "Skipping rubyText node without exactly one text child."); - if (u2.p == 1) { + if (R1.p == 1) { } if (z2) { } - i = u2.j; + i = R1.j; if (i == 1) { } - bVar.p = (u2.r * -90.0f) / 100.0f; - bVar.f822c = u2.o; + bVar.p = (R1.r * -90.0f) / 100.0f; + bVar.f823c = R1.o; it2 = it; } } @@ -296,15 +295,15 @@ public final class d { spannableStringBuilder.setSpan(new a(), intValue, intValue2, 33); } z2 = false; - if (u2.p == 1) { + if (R1.p == 1) { } if (z2) { } - i = u2.j; + i = R1.j; if (i == 1) { } - bVar.p = (u2.r * -90.0f) / 100.0f; - bVar.f822c = u2.o; + bVar.p = (R1.r * -90.0f) / 100.0f; + bVar.f823c = R1.o; it2 = it; } } @@ -324,7 +323,7 @@ public final class d { if (!"".equals(this.h)) { str = this.h; } - if (this.f856c && z2) { + if (this.f857c && z2) { SpannableStringBuilder f = f(str, map); String str2 = this.b; Objects.requireNonNull(str2); diff --git a/app/src/main/java/c/i/a/c/e2/s/e.java b/app/src/main/java/c/i/a/c/e2/s/e.java index f0e192b6d1..a30f72a9e8 100644 --- a/app/src/main/java/c/i/a/c/e2/s/e.java +++ b/app/src/main/java/c/i/a/c/e2/s/e.java @@ -5,7 +5,7 @@ public final class e { public final float b; /* renamed from: c reason: collision with root package name */ - public final float f857c; + public final float f858c; public final int d; public final int e; public final float f; @@ -17,7 +17,7 @@ public final class e { public e(String str, float f, float f2, int i, int i2, float f3, float f4, int i3, float f5, int i4) { this.a = str; this.b = f; - this.f857c = f2; + this.f858c = f2; this.d = i; this.e = i2; this.f = f3; diff --git a/app/src/main/java/c/i/a/c/e2/s/f.java b/app/src/main/java/c/i/a/c/e2/s/f.java index 2cd6df5291..189fa7ae7b 100644 --- a/app/src/main/java/c/i/a/c/e2/s/f.java +++ b/app/src/main/java/c/i/a/c/e2/s/f.java @@ -9,7 +9,7 @@ public final class f { public int b; /* renamed from: c reason: collision with root package name */ - public boolean f858c; + public boolean f859c; public int d; public boolean e; public int f = -1; @@ -34,9 +34,9 @@ public final class f { Layout.Alignment alignment; String str; if (fVar != null) { - if (!this.f858c && fVar.f858c) { + if (!this.f859c && fVar.f859c) { this.b = fVar.b; - this.f858c = true; + this.f859c = true; } if (this.h == -1) { this.h = fVar.h; diff --git a/app/src/main/java/c/i/a/c/e2/s/g.java b/app/src/main/java/c/i/a/c/e2/s/g.java index 87d9e03a29..1b22d4b861 100644 --- a/app/src/main/java/c/i/a/c/e2/s/g.java +++ b/app/src/main/java/c/i/a/c/e2/s/g.java @@ -78,7 +78,7 @@ public final class g implements f { Bitmap decodeByteArray = BitmapFactory.decodeByteArray(decode, 0, decode.length); e eVar = map2.get(pair.first); Objects.requireNonNull(eVar); - arrayList2.add(new c(null, null, decodeByteArray, eVar.f857c, 0, eVar.e, eVar.b, 0, Integer.MIN_VALUE, -3.4028235E38f, eVar.f, eVar.g, false, ViewCompat.MEASURED_STATE_MASK, eVar.j, 0.0f, null)); + arrayList2.add(new c(null, null, decodeByteArray, eVar.f858c, 0, eVar.e, eVar.b, 0, Integer.MIN_VALUE, -3.4028235E38f, eVar.f, eVar.g, false, ViewCompat.MEASURED_STATE_MASK, eVar.j, 0.0f, null)); } } for (Map.Entry entry : treeMap.entrySet()) { @@ -130,7 +130,7 @@ public final class g implements f { if (spannableStringBuilder.length() > 0 && spannableStringBuilder.charAt(spannableStringBuilder.length() - 1) == '\n') { spannableStringBuilder.delete(spannableStringBuilder.length() - 1, spannableStringBuilder.length()); } - float f = eVar2.f857c; + float f = eVar2.f858c; int i9 = eVar2.d; bVar.d = f; bVar.e = i9; diff --git a/app/src/main/java/c/i/a/c/e2/t/a.java b/app/src/main/java/c/i/a/c/e2/t/a.java index 28b7db808c..119bd9915f 100644 --- a/app/src/main/java/c/i/a/c/e2/t/a.java +++ b/app/src/main/java/c/i/a/c/e2/t/a.java @@ -24,7 +24,7 @@ public final class a extends d { public final String r; /* renamed from: s reason: collision with root package name */ - public final float f859s; + public final float f860s; public final int t; public a(List list) { @@ -41,16 +41,16 @@ public final class a extends d { z2 = (bArr[0] & 32) == 0 ? false : z2; this.o = z2; if (z2) { - this.f859s = f0.g(((float) ((bArr[11] & 255) | ((bArr[10] & 255) << 8))) / ((float) i), 0.0f, 0.95f); + this.f860s = f0.g(((float) ((bArr[11] & 255) | ((bArr[10] & 255) << 8))) / ((float) i), 0.0f, 0.95f); } else { - this.f859s = 0.85f; + this.f860s = 0.85f; } } else { this.p = 0; this.q = -1; this.r = str; this.o = false; - this.f859s = 0.85f; + this.f860s = 0.85f; this.t = -1; } } @@ -93,7 +93,7 @@ public final class a extends d { String str; w wVar = this.n; wVar.a = bArr; - wVar.f920c = i; + wVar.f921c = i; wVar.b = 0; int i2 = 2; int i3 = 1; @@ -110,7 +110,7 @@ public final class a extends d { str = wVar.q(x2, c.e); } } - str = wVar.q(x2, c.f1276c); + str = wVar.q(x2, c.f1277c); } if (str.isEmpty()) { return b.i; @@ -127,7 +127,7 @@ public final class a extends d { if (str2 != "sans-serif") { spannableStringBuilder.setSpan(new TypefaceSpan(str2), 0, length2, 16711713); } - float f = this.f859s; + float f = this.f860s; for (int i6 = 8; this.n.a() >= i6; i6 = 8) { w wVar2 = this.n; int i7 = wVar2.b; @@ -147,10 +147,10 @@ public final class a extends d { wVar3.E(i3); int f4 = wVar3.f(); if (x5 > spannableStringBuilder.length()) { - StringBuilder Q = c.d.b.a.a.Q("Truncating styl end (", x5, ") to cueText.length() ("); - Q.append(spannableStringBuilder.length()); - Q.append(")."); - Log.w("Tx3gDecoder", Q.toString()); + StringBuilder P = c.d.b.a.a.P("Truncating styl end (", x5, ") to cueText.length() ("); + P.append(spannableStringBuilder.length()); + P.append(")."); + Log.w("Tx3gDecoder", P.toString()); x5 = spannableStringBuilder.length(); } if (x4 >= x5) { diff --git a/app/src/main/java/c/i/a/c/e2/t/b.java b/app/src/main/java/c/i/a/c/e2/t/b.java index 6f996b8a87..9305e68c26 100644 --- a/app/src/main/java/c/i/a/c/e2/t/b.java +++ b/app/src/main/java/c/i/a/c/e2/t/b.java @@ -1,8 +1,8 @@ package c.i.a.c.e2.t; +import c.c.a.a0.d; import c.i.a.c.e2.c; import c.i.a.c.e2.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Collections; import java.util.List; /* compiled from: Tx3gSubtitle */ @@ -25,7 +25,7 @@ public final class b implements f { @Override // c.i.a.c.e2.f public long g(int i2) { - AnimatableValueParser.k(i2 == 0); + d.k(i2 == 0); return 0; } diff --git a/app/src/main/java/c/i/a/c/e2/u/c.java b/app/src/main/java/c/i/a/c/e2/u/c.java index 057740c0ae..19aa2d9d25 100644 --- a/app/src/main/java/c/i/a/c/e2/u/c.java +++ b/app/src/main/java/c/i/a/c/e2/u/c.java @@ -10,13 +10,13 @@ public final class c { public final w b = new w(); /* renamed from: c reason: collision with root package name */ - public final StringBuilder f860c = new StringBuilder(); + public final StringBuilder f861c = new StringBuilder(); public static String a(w wVar, StringBuilder sb) { boolean z2 = false; sb.setLength(0); int i = wVar.b; - int i2 = wVar.f920c; + int i2 = wVar.f921c; while (i < i2 && !z2) { char c2 = (char) wVar.a[i]; if ((c2 < 'A' || c2 > 'Z') && ((c2 < 'a' || c2 > 'z') && !((c2 >= '0' && c2 <= '9') || c2 == '#' || c2 == '-' || c2 == '.' || c2 == '_'))) { @@ -40,9 +40,9 @@ public final class c { if (!"".equals(a2)) { return a2; } - StringBuilder P = a.P(""); - P.append((char) wVar.s()); - return P.toString(); + StringBuilder O = a.O(""); + O.append((char) wVar.s()); + return O.toString(); } /* JADX WARNING: Removed duplicated region for block: B:35:0x0068 A[LOOP:1: B:2:0x0002->B:35:0x0068, LOOP_END] */ @@ -62,7 +62,7 @@ public final class c { } if (!z2) { int i = wVar.b; - int i2 = wVar.f920c; + int i2 = wVar.f921c; byte[] bArr = wVar.a; if (i + 2 <= i2) { int i3 = i + 1; diff --git a/app/src/main/java/c/i/a/c/e2/u/d.java b/app/src/main/java/c/i/a/c/e2/u/d.java index 436ae7269a..1d5eeba8be 100644 --- a/app/src/main/java/c/i/a/c/e2/u/d.java +++ b/app/src/main/java/c/i/a/c/e2/u/d.java @@ -22,7 +22,7 @@ public final class d extends c.i.a.c.e2.d { c cVar; w wVar = this.n; wVar.a = bArr; - wVar.f920c = i; + wVar.f921c = i; wVar.b = 0; ArrayList arrayList = new ArrayList(); while (this.n.a() > 0) { @@ -61,7 +61,7 @@ public final class d extends c.i.a.c.e2.d { } else { Pattern pattern = h.a; h.e eVar2 = new h.e(); - eVar2.f866c = charSequence; + eVar2.f867c = charSequence; cVar = eVar2.a().a(); } arrayList.add(cVar); diff --git a/app/src/main/java/c/i/a/c/e2/u/e.java b/app/src/main/java/c/i/a/c/e2/u/e.java index 93f4e80dd9..82036b708d 100644 --- a/app/src/main/java/c/i/a/c/e2/u/e.java +++ b/app/src/main/java/c/i/a/c/e2/u/e.java @@ -1,8 +1,8 @@ package c.i.a.c.e2.u; +import c.c.a.a0.d; import c.i.a.c.e2.c; import c.i.a.c.e2.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Collections; import java.util.List; /* compiled from: Mp4WebvttSubtitle */ @@ -20,7 +20,7 @@ public final class e implements f { @Override // c.i.a.c.e2.f public long g(int i) { - AnimatableValueParser.k(i == 0); + d.k(i == 0); return 0; } diff --git a/app/src/main/java/c/i/a/c/e2/u/f.java b/app/src/main/java/c/i/a/c/e2/u/f.java index e19b8c13f2..d3a419482b 100644 --- a/app/src/main/java/c/i/a/c/e2/u/f.java +++ b/app/src/main/java/c/i/a/c/e2/u/f.java @@ -10,7 +10,7 @@ public final class f { public String b = ""; /* renamed from: c reason: collision with root package name */ - public Set f861c = Collections.emptySet(); + public Set f862c = Collections.emptySet(); public String d = ""; @Nullable public String e = null; diff --git a/app/src/main/java/c/i/a/c/e2/u/g.java b/app/src/main/java/c/i/a/c/e2/u/g.java index 07f5ad8fa9..1e58465b20 100644 --- a/app/src/main/java/c/i/a/c/e2/u/g.java +++ b/app/src/main/java/c/i/a/c/e2/u/g.java @@ -7,11 +7,11 @@ public final class g { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f862c; + public final long f863c; public g(c cVar, long j, long j2) { this.a = cVar; this.b = j; - this.f862c = j2; + this.f863c = j2; } } diff --git a/app/src/main/java/c/i/a/c/e2/u/h.java b/app/src/main/java/c/i/a/c/e2/u/h.java index 293974f46c..2ef22bda8b 100644 --- a/app/src/main/java/c/i/a/c/e2/u/h.java +++ b/app/src/main/java/c/i/a/c/e2/u/h.java @@ -19,7 +19,6 @@ import androidx.constraintlayout.solver.widgets.analyzer.BasicMeasure; import c.i.a.c.e2.c; import c.i.a.c.i2.f0; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import java.util.ArrayDeque; import java.util.ArrayList; @@ -38,7 +37,7 @@ public final class h { public static final Pattern b = Pattern.compile("(\\S+?):(\\S+)"); /* renamed from: c reason: collision with root package name */ - public static final Map f863c; + public static final Map f864c; public static final Map d; /* compiled from: WebvttCueParser */ @@ -47,11 +46,11 @@ public final class h { public final c b; /* renamed from: c reason: collision with root package name */ - public final int f864c; + public final int f865c; public b(c cVar, int i, a aVar) { this.b = cVar; - this.f864c = i; + this.f865c = i; } } @@ -61,13 +60,13 @@ public final class h { public final int b; /* renamed from: c reason: collision with root package name */ - public final String f865c; + public final String f866c; public final Set d; public c(String str, int i, String str2, Set set) { this.b = i; this.a = str; - this.f865c = str2; + this.f866c = str2; this.d = set; } } @@ -95,7 +94,7 @@ public final class h { public long b = 0; /* renamed from: c reason: collision with root package name */ - public CharSequence f866c; + public CharSequence f867c; public int d = 2; public float e = -3.4028235E38f; public int f = 1; @@ -145,7 +144,7 @@ public final class h { if (i5 != 3) { if (i5 != 4) { if (i5 != 5) { - c.d.b.a.a.j0("Unknown textAlignment: ", i5, "WebvttCueParser"); + c.d.b.a.a.i0("Unknown textAlignment: ", i5, "WebvttCueParser"); alignment = null; } } @@ -154,7 +153,7 @@ public final class h { } else { alignment = Layout.Alignment.ALIGN_CENTER; } - bVar.f822c = alignment; + bVar.f823c = alignment; float f3 = this.e; int i6 = this.f; i = (f3 > -3.4028235E38f ? 1 : (f3 == -3.4028235E38f ? 0 : -1)); @@ -177,7 +176,7 @@ public final class h { } bVar.k = Math.min(f4, f); bVar.o = this.k; - charSequence = this.f866c; + charSequence = this.f867c; if (charSequence != null) { bVar.a = charSequence; } @@ -194,13 +193,13 @@ public final class h { } bVar.k = Math.min(f4, f); bVar.o = this.k; - charSequence = this.f866c; + charSequence = this.f867c; if (charSequence != null) { } return bVar; } alignment = Layout.Alignment.ALIGN_NORMAL; - bVar.f822c = alignment; + bVar.f823c = alignment; float f3 = this.e; int i6 = this.f; i = (f3 > -3.4028235E38f ? 1 : (f3 == -3.4028235E38f ? 0 : -1)); @@ -216,7 +215,7 @@ public final class h { } bVar.k = Math.min(f4, f); bVar.o = this.k; - charSequence = this.f866c; + charSequence = this.f867c; if (charSequence != null) { } return bVar; @@ -233,7 +232,7 @@ public final class h { hashMap.put("magenta", Integer.valueOf(Color.rgb(255, 0, 255))); hashMap.put("blue", Integer.valueOf(Color.rgb(0, 0, 255))); hashMap.put("black", Integer.valueOf(Color.rgb(0, 0, 0))); - f863c = Collections.unmodifiableMap(hashMap); + f864c = Collections.unmodifiableMap(hashMap); HashMap hashMap2 = new HashMap(); hashMap2.put("bg_white", Integer.valueOf(Color.rgb(255, 255, 255))); hashMap2.put("bg_lime", Integer.valueOf(Color.rgb(0, 255, 0))); @@ -284,7 +283,7 @@ public final class h { break; case 2: for (String str3 : cVar.d) { - Map map = f863c; + Map map = f864c; if (map.containsKey(str3)) { spannableStringBuilder.setSpan(new ForegroundColorSpan(map.get(str3).intValue()), i2, length, 33); } else { @@ -318,7 +317,7 @@ public final class h { c4 = c3 != i3 ? c3 : 1; } int i8 = bVar.b.b - i7; - int i9 = bVar.f864c - i7; + int i9 = bVar.f865c - i7; CharSequence subSequence = spannableStringBuilder.subSequence(i8, i9); spannableStringBuilder.delete(i8, i9); spannableStringBuilder.setSpan(new c.i.a.c.e2.p.b(subSequence.toString(), c4), i5, i8, 33); @@ -340,7 +339,7 @@ public final class h { f fVar = ((d) arrayList.get(i)).j; if (fVar != null) { if (fVar.a() != -1) { - AnimatableValueParser.c(spannableStringBuilder, new StyleSpan(fVar.a()), i2, length, 33); + c.c.a.a0.d.c(spannableStringBuilder, new StyleSpan(fVar.a()), i2, length, 33); } if (fVar.j == 1) { spannableStringBuilder.setSpan(new StrikethroughSpan(), i2, length, 33); @@ -350,28 +349,28 @@ public final class h { } if (fVar.g) { if (fVar.g) { - AnimatableValueParser.c(spannableStringBuilder, new ForegroundColorSpan(fVar.f), i2, length, 33); + c.c.a.a0.d.c(spannableStringBuilder, new ForegroundColorSpan(fVar.f), i2, length, 33); } else { throw new IllegalStateException("Font color not defined"); } } if (fVar.i) { if (fVar.i) { - AnimatableValueParser.c(spannableStringBuilder, new BackgroundColorSpan(fVar.h), i2, length, 33); + c.c.a.a0.d.c(spannableStringBuilder, new BackgroundColorSpan(fVar.h), i2, length, 33); } else { throw new IllegalStateException("Background color not defined."); } } if (fVar.e != null) { - AnimatableValueParser.c(spannableStringBuilder, new TypefaceSpan(fVar.e), i2, length, 33); + c.c.a.a0.d.c(spannableStringBuilder, new TypefaceSpan(fVar.e), i2, length, 33); } int i10 = fVar.n; if (i10 == 1) { - AnimatableValueParser.c(spannableStringBuilder, new AbsoluteSizeSpan((int) 0.0f, true), i2, length, 33); + c.c.a.a0.d.c(spannableStringBuilder, new AbsoluteSizeSpan((int) 0.0f, true), i2, length, 33); } else if (i10 == 2) { - AnimatableValueParser.c(spannableStringBuilder, new RelativeSizeSpan(0.0f), i2, length, 33); + c.c.a.a0.d.c(spannableStringBuilder, new RelativeSizeSpan(0.0f), i2, length, 33); } else if (i10 == 3) { - AnimatableValueParser.c(spannableStringBuilder, new RelativeSizeSpan(0.0f), i2, length, 33); + c.c.a.a0.d.c(spannableStringBuilder, new RelativeSizeSpan(0.0f), i2, length, 33); } if (fVar.p) { spannableStringBuilder.setSpan(new c.i.a.c.e2.p.a(), i2, length, 33); @@ -496,10 +495,10 @@ public final class h { f fVar = list.get(i2); String str2 = cVar.a; Set set = cVar.d; - String str3 = cVar.f865c; - if (!fVar.a.isEmpty() || !fVar.b.isEmpty() || !fVar.f861c.isEmpty() || !fVar.d.isEmpty()) { + String str3 = cVar.f866c; + if (!fVar.a.isEmpty() || !fVar.b.isEmpty() || !fVar.f862c.isEmpty() || !fVar.d.isEmpty()) { int b2 = f.b(f.b(f.b(0, fVar.a, str, BasicMeasure.EXACTLY), fVar.b, str2, 2), fVar.d, str3, 4); - i = (b2 == -1 || !set.containsAll(fVar.f861c)) ? 0 : b2 + (fVar.f861c.size() * 4); + i = (b2 == -1 || !set.containsAll(fVar.f862c)) ? 0 : b2 + (fVar.f862c.size() * 4); } else { i = TextUtils.isEmpty(str2); } @@ -549,12 +548,12 @@ public final class h { sb.append(g.trim()); g = wVar.g(); } - eVar.f866c = f(str, sb.toString(), list); + eVar.f867c = f(str, sb.toString(), list); return new g(eVar.a().a(), eVar.a, eVar.b); } catch (NumberFormatException unused) { - StringBuilder P = c.d.b.a.a.P("Skipping cue with bad header: "); - P.append(matcher.group()); - Log.w("WebvttCueParser", P.toString()); + StringBuilder O = c.d.b.a.a.O("Skipping cue with bad header: "); + O.append(matcher.group()); + Log.w("WebvttCueParser", O.toString()); return null; } } @@ -650,9 +649,9 @@ public final class h { Log.w("WebvttCueParser", "Unknown cue setting " + group + ":" + group2); } } catch (NumberFormatException unused) { - StringBuilder P = c.d.b.a.a.P("Skipping bad cue setting: "); - P.append(matcher.group()); - Log.w("WebvttCueParser", P.toString()); + StringBuilder O = c.d.b.a.a.O("Skipping bad cue setting: "); + O.append(matcher.group()); + Log.w("WebvttCueParser", O.toString()); } } } @@ -751,7 +750,7 @@ public final class h { String substring2 = str2.substring(i5, i4); if (!substring2.trim().isEmpty()) { String trim = substring2.trim(); - AnimatableValueParser.k(!trim.isEmpty()); + c.c.a.a0.d.k(!trim.isEmpty()); int i6 = f0.a; String str4 = trim.split("[ \\.]", 2)[i]; str4.hashCode(); @@ -847,7 +846,7 @@ public final class h { } else if (!z4) { int length = spannableStringBuilder.length(); String trim2 = substring2.trim(); - AnimatableValueParser.k(!trim2.isEmpty()); + c.c.a.a0.d.k(!trim2.isEmpty()); int indexOf4 = trim2.indexOf(" "); if (indexOf4 != -1) { str3 = trim2.substring(indexOf4).trim(); @@ -923,7 +922,7 @@ public final class h { i = 0; break; default: - c.d.b.a.a.l0("Invalid anchor value: ", substring, "WebvttCueParser"); + c.d.b.a.a.k0("Invalid anchor value: ", substring, "WebvttCueParser"); i = Integer.MIN_VALUE; break; } @@ -998,7 +997,7 @@ public final class h { case 4: break; default: - c.d.b.a.a.l0("Invalid anchor value: ", substring, "WebvttCueParser"); + c.d.b.a.a.k0("Invalid anchor value: ", substring, "WebvttCueParser"); i = Integer.MIN_VALUE; break; } diff --git a/app/src/main/java/c/i/a/c/e2/u/i.java b/app/src/main/java/c/i/a/c/e2/u/i.java index 5e130b964d..83b4f76e55 100644 --- a/app/src/main/java/c/i/a/c/e2/u/i.java +++ b/app/src/main/java/c/i/a/c/e2/u/i.java @@ -5,7 +5,6 @@ import c.i.a.c.e2.d; import c.i.a.c.e2.f; import c.i.a.c.i2.f0; import c.i.a.c.i2.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.exoplayer2.ParserException; import com.google.android.exoplayer2.text.SubtitleDecoderException; @@ -38,7 +37,7 @@ public final class i extends d { String sb; w wVar = this.n; wVar.a = bArr; - wVar.f920c = i; + wVar.f921c = i; int i2 = 0; wVar.b = 0; ArrayList arrayList2 = new ArrayList(); @@ -74,7 +73,7 @@ public final class i extends d { this.n.g(); c cVar2 = this.o; w wVar3 = this.n; - cVar2.f860c.setLength(i2); + cVar2.f861c.setLength(i2); int i5 = wVar3.b; do { } while (!TextUtils.isEmpty(wVar3.g())); @@ -83,7 +82,7 @@ public final class i extends d { ArrayList arrayList3 = new ArrayList(); while (true) { w wVar4 = cVar2.b; - StringBuilder sb2 = cVar2.f860c; + StringBuilder sb2 = cVar2.f861c; c.c(wVar4); if (wVar4.a() >= 5 && "::cue".equals(wVar4.p(5))) { int i6 = wVar4.b; @@ -94,7 +93,7 @@ public final class i extends d { str = ""; } else if ("(".equals(b)) { int i7 = wVar4.b; - int i8 = wVar4.f920c; + int i8 = wVar4.f921c; boolean z3 = false; while (i7 < i8 && !z3) { int i9 = i7 + 1; @@ -106,7 +105,7 @@ public final class i extends d { } else { str = null; } - if (str == null || !"{".equals(c.b(cVar2.b, cVar2.f860c))) { + if (str == null || !"{".equals(c.b(cVar2.b, cVar2.f861c))) { break; } f fVar = new f(); @@ -132,12 +131,12 @@ public final class i extends d { } if (G.length > r8) { int length = G.length; - AnimatableValueParser.k(r8); - AnimatableValueParser.k(length <= G.length); + c.c.a.a0.d.k(r8); + c.c.a.a0.d.k(length <= G.length); int i10 = r8 == true ? 1 : 0; int i11 = r8 == true ? 1 : 0; int i12 = r8 == true ? 1 : 0; - fVar.f861c = new HashSet(Arrays.asList((String[]) Arrays.copyOfRange(G, i10, length))); + fVar.f862c = new HashSet(Arrays.asList((String[]) Arrays.copyOfRange(G, i10, length))); } } boolean z5 = false; @@ -145,12 +144,12 @@ public final class i extends d { while (!z5) { w wVar5 = cVar2.b; int i13 = wVar5.b; - String b2 = c.b(wVar5, cVar2.f860c); + String b2 = c.b(wVar5, cVar2.f861c); boolean z6 = b2 == null || "}".equals(b2); if (!z6) { cVar2.b.D(i13); w wVar6 = cVar2.b; - StringBuilder sb3 = cVar2.f860c; + StringBuilder sb3 = cVar2.f861c; c.c(wVar6); String a = c.a(wVar6, sb3); if (!"".equals(a) && ":".equals(c.b(wVar6, sb3))) { diff --git a/app/src/main/java/c/i/a/c/e2/u/j.java b/app/src/main/java/c/i/a/c/e2/u/j.java index 4f8af9c70f..01b60482f5 100644 --- a/app/src/main/java/c/i/a/c/e2/u/j.java +++ b/app/src/main/java/c/i/a/c/e2/u/j.java @@ -37,9 +37,9 @@ public final class j { String g = wVar.g(); if (!(g != null && g.startsWith("WEBVTT"))) { wVar.D(i); - StringBuilder P = a.P("Expected WEBVTT. Got "); - P.append(wVar.g()); - throw new ParserException(P.toString()); + StringBuilder O = a.O("Expected WEBVTT. Got "); + O.append(wVar.g()); + throw new ParserException(O.toString()); } } } diff --git a/app/src/main/java/c/i/a/c/e2/u/k.java b/app/src/main/java/c/i/a/c/e2/u/k.java index 45844e3bae..129256b76d 100644 --- a/app/src/main/java/c/i/a/c/e2/u/k.java +++ b/app/src/main/java/c/i/a/c/e2/u/k.java @@ -1,9 +1,9 @@ package c.i.a.c.e2.u; +import c.c.a.a0.d; import c.i.a.c.e2.c; import c.i.a.c.e2.f; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; @@ -22,7 +22,7 @@ public final class k implements f { int i2 = i * 2; long[] jArr = this.j; jArr[i2] = gVar.b; - jArr[i2 + 1] = gVar.f862c; + jArr[i2 + 1] = gVar.f863c; } long[] jArr2 = this.j; long[] copyOf = Arrays.copyOf(jArr2, jArr2.length); @@ -42,11 +42,11 @@ public final class k implements f { @Override // c.i.a.c.e2.f public long g(int i) { boolean z2 = true; - AnimatableValueParser.k(i >= 0); + d.k(i >= 0); if (i >= this.k.length) { z2 = false; } - AnimatableValueParser.k(z2); + d.k(z2); return this.k[i]; } diff --git a/app/src/main/java/c/i/a/c/f2/b.java b/app/src/main/java/c/i/a/c/f2/b.java index 25c5504e65..af809fc2c2 100644 --- a/app/src/main/java/c/i/a/c/f2/b.java +++ b/app/src/main/java/c/i/a/c/f2/b.java @@ -10,7 +10,7 @@ public final /* synthetic */ class b implements Comparator { public final int compare(Object obj, Object obj2) { Integer num = (Integer) obj; Integer num2 = (Integer) obj2; - int[] iArr = DefaultTrackSelector.f2317c; + int[] iArr = DefaultTrackSelector.f2320c; return 0; } } diff --git a/app/src/main/java/c/i/a/c/f2/c.java b/app/src/main/java/c/i/a/c/f2/c.java index d7f7e2dffe..13e67e55d9 100644 --- a/app/src/main/java/c/i/a/c/f2/c.java +++ b/app/src/main/java/c/i/a/c/f2/c.java @@ -10,7 +10,7 @@ public final /* synthetic */ class c implements Comparator { public final int compare(Object obj, Object obj2) { Integer num = (Integer) obj; Integer num2 = (Integer) obj2; - int[] iArr = DefaultTrackSelector.f2317c; + int[] iArr = DefaultTrackSelector.f2320c; if (num.intValue() == -1) { return num2.intValue() == -1 ? 0 : -1; } diff --git a/app/src/main/java/c/i/a/c/f2/e.java b/app/src/main/java/c/i/a/c/f2/e.java index 633bb36010..9501e8fcf7 100644 --- a/app/src/main/java/c/i/a/c/f2/e.java +++ b/app/src/main/java/c/i/a/c/f2/e.java @@ -1,7 +1,7 @@ package c.i.a.c.f2; import androidx.annotation.Nullable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.source.TrackGroup; import java.util.Arrays; @@ -12,12 +12,12 @@ public abstract class e implements g { public final int b; /* renamed from: c reason: collision with root package name */ - public final int[] f867c; + public final int[] f868c; public final Format[] d; public int e; public e(TrackGroup trackGroup, int... iArr) { - AnimatableValueParser.D(iArr.length > 0); + d.D(iArr.length > 0); Objects.requireNonNull(trackGroup); this.a = trackGroup; int length = iArr.length; @@ -27,12 +27,12 @@ public abstract class e implements g { this.d[i] = trackGroup.j[iArr[i]]; } Arrays.sort(this.d, a.i); - this.f867c = new int[this.b]; + this.f868c = new int[this.b]; int i2 = 0; while (true) { int i3 = this.b; if (i2 < i3) { - int[] iArr2 = this.f867c; + int[] iArr2 = this.f868c; Format format = this.d[i2]; int i4 = 0; while (true) { @@ -82,12 +82,12 @@ public abstract class e implements g { return false; } e eVar = (e) obj; - return this.a == eVar.a && Arrays.equals(this.f867c, eVar.f867c); + return this.a == eVar.a && Arrays.equals(this.f868c, eVar.f868c); } @Override // c.i.a.c.f2.j public final int f(int i) { - return this.f867c[i]; + return this.f868c[i]; } @Override // c.i.a.c.f2.g @@ -101,7 +101,7 @@ public abstract class e implements g { public int hashCode() { if (this.e == 0) { - this.e = Arrays.hashCode(this.f867c) + (System.identityHashCode(this.a) * 31); + this.e = Arrays.hashCode(this.f868c) + (System.identityHashCode(this.a) * 31); } return this.e; } @@ -122,6 +122,6 @@ public abstract class e implements g { @Override // c.i.a.c.f2.j public final int length() { - return this.f867c.length; + return this.f868c.length; } } diff --git a/app/src/main/java/c/i/a/c/f2/g.java b/app/src/main/java/c/i/a/c/f2/g.java index b8908fe012..dde779bca7 100644 --- a/app/src/main/java/c/i/a/c/f2/g.java +++ b/app/src/main/java/c/i/a/c/f2/g.java @@ -12,21 +12,21 @@ public interface g extends j { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final int f868c; + public final int f869c; @Nullable public final Object d; public a(TrackGroup trackGroup, int... iArr) { this.a = trackGroup; this.b = iArr; - this.f868c = 0; + this.f869c = 0; this.d = null; } public a(TrackGroup trackGroup, int[] iArr, int i, @Nullable Object obj) { this.a = trackGroup; this.b = iArr; - this.f868c = i; + this.f869c = i; this.d = obj; } } diff --git a/app/src/main/java/c/i/a/c/f2/i.java b/app/src/main/java/c/i/a/c/f2/i.java index 5658e9d05f..3a10d25ee6 100644 --- a/app/src/main/java/c/i/a/c/f2/i.java +++ b/app/src/main/java/c/i/a/c/f2/i.java @@ -46,13 +46,13 @@ public abstract class i extends l { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final TrackGroupArray[] f869c; + public final TrackGroupArray[] f870c; public final int[] d; public final int[][][] e; public a(String[] strArr, int[] iArr, TrackGroupArray[] trackGroupArrayArr, int[] iArr2, int[][][] iArr3, TrackGroupArray trackGroupArray) { this.b = iArr; - this.f869c = trackGroupArrayArr; + this.f870c = trackGroupArrayArr; this.e = iArr3; this.d = iArr2; this.a = iArr.length; @@ -201,12 +201,12 @@ public abstract class i extends l { while (i24 < i23) { if (2 == aVar7.b[i24]) { if (!z11) { - TrackGroupArray trackGroupArray4 = aVar7.f869c[i24]; + TrackGroupArray trackGroupArray4 = aVar7.f870c[i24]; int[][] iArr16 = iArr12[i24]; int i25 = iArr13[i24]; if (!parameters6.N && !parameters6.M) { int i26 = parameters6.A ? 24 : 16; - boolean z12 = parameters6.f2321z && (i25 & i26) != 0; + boolean z12 = parameters6.f2324z && (i25 & i26) != 0; DefaultTrackSelector.Parameters parameters7 = parameters6; int i27 = 0; while (true) { @@ -220,7 +220,7 @@ public abstract class i extends l { iArr7 = iArr13; int i29 = parameters7.r; iArr6 = iArr12; - int i30 = parameters7.f2318s; + int i30 = parameters7.f2321s; i9 = i23; int i31 = parameters7.t; z5 = z10; @@ -230,7 +230,7 @@ public abstract class i extends l { aVarArr = aVarArr2; int i34 = parameters7.w; i8 = i24; - int i35 = parameters7.f2319x; + int i35 = parameters7.f2322x; iArr8 = iArr16; int i36 = parameters7.B; parameters4 = parameters5; @@ -238,12 +238,12 @@ public abstract class i extends l { boolean z13 = parameters7.D; trackGroupArray2 = trackGroupArray4; if (trackGroup4.i < 2) { - iArr9 = DefaultTrackSelector.f2317c; + iArr9 = DefaultTrackSelector.f2320c; } else { List d = DefaultTrackSelector.d(trackGroup4, i36, i37, z13); ArrayList arrayList3 = (ArrayList) d; if (arrayList3.size() < 2) { - iArr9 = DefaultTrackSelector.f2317c; + iArr9 = DefaultTrackSelector.f2320c; } else { if (!z12) { HashSet hashSet2 = new HashSet(); @@ -301,7 +301,7 @@ public abstract class i extends l { } arrayList = arrayList; } - iArr9 = arrayList.size() < 2 ? DefaultTrackSelector.f2317c : c.l0(list); + iArr9 = arrayList.size() < 2 ? DefaultTrackSelector.f2320c : c.l0(list); if (iArr9.length <= 0) { aVar5 = new g.a(trackGroup4, iArr9); break; @@ -354,7 +354,7 @@ public abstract class i extends l { Format format = trackGroup6.j[i44]; if ((format.m & 16384) == 0 && DefaultTrackSelector.e(iArr18[i44], parameters4.O)) { DefaultTrackSelector.e eVar3 = new DefaultTrackSelector.e(format, parameters4, iArr18[i44], ((ArrayList) d2).contains(Integer.valueOf(i44))); - if ((eVar3.i || parameters4.f2320y) && (eVar2 == null || eVar3.compareTo(eVar2) > 0)) { + if ((eVar3.i || parameters4.f2323y) && (eVar2 == null || eVar3.compareTo(eVar2) > 0)) { i43 = i44; trackGroup7 = trackGroup6; eVar2 = eVar3; @@ -386,7 +386,7 @@ public abstract class i extends l { parameters3 = parameters5; } aVar7 = aVar6; - z10 = z5 | (aVar6.f869c[i8].j > 0); + z10 = z5 | (aVar6.f870c[i8].j > 0); } else { defaultTrackSelector = defaultTrackSelector2; i9 = i23; @@ -413,7 +413,7 @@ public abstract class i extends l { while (i47 < i45) { if (1 == aVar7.b[i47]) { boolean z14 = parameters6.Q || !z10; - TrackGroupArray trackGroupArray5 = aVar7.f869c[i47]; + TrackGroupArray trackGroupArray5 = aVar7.f870c[i47]; int[][] iArr19 = iArr12[i47]; int i48 = iArr13[i47]; DefaultTrackSelector.a aVar9 = null; @@ -555,7 +555,7 @@ public abstract class i extends l { str = str8; parameters = parameters9; } else if (i60 != 3) { - TrackGroupArray trackGroupArray6 = aVar13.f869c[i58]; + TrackGroupArray trackGroupArray6 = aVar13.f870c[i58]; int[][] iArr23 = iArr12[i58]; TrackGroup trackGroup10 = null; DefaultTrackSelector.b bVar = null; @@ -595,7 +595,7 @@ public abstract class i extends l { str = str8; } else { parameters = parameters9; - TrackGroupArray trackGroupArray7 = aVar13.f869c[i58]; + TrackGroupArray trackGroupArray7 = aVar13.f870c[i58]; int[][] iArr25 = iArr12[i58]; TrackGroup trackGroup13 = null; DefaultTrackSelector.d dVar2 = null; @@ -661,7 +661,7 @@ public abstract class i extends l { if (parameters9.S.get(i69)) { aVarArr2[i69] = null; } else { - TrackGroupArray trackGroupArray8 = aVar13.f869c[i69]; + TrackGroupArray trackGroupArray8 = aVar13.f870c[i69]; Map map = parameters9.R.get(i69); if (map != null && map.containsKey(trackGroupArray8)) { Map map2 = parameters9.R.get(i69); @@ -809,7 +809,7 @@ public abstract class i extends l { int[] iArr29 = aVar19.b; if (iArr29.length != 0) { if (iArr29.length == 1) { - gVar = new h(aVar19.a, iArr29[0], aVar19.f868c, aVar19.d); + gVar = new h(aVar19.a, iArr29[0], aVar19.f869c, aVar19.d); } else { long j = (long) 25000; gVar = new d(aVar19.a, iArr29, dVar5, (long) 10000, j, j, 0.7f, 0.75f, l.get(i84), c.i.a.c.i2.g.a); @@ -844,7 +844,7 @@ public abstract class i extends l { if (i89 == 1) { if (gVar2 != null) { int[][] iArr30 = iArr12[i86]; - int a2 = aVar13.f869c[i86].a(gVar2.a()); + int a2 = aVar13.f870c[i86].a(gVar2.a()); int i90 = 0; while (true) { if (i90 >= gVar2.length()) { diff --git a/app/src/main/java/c/i/a/c/f2/k.java b/app/src/main/java/c/i/a/c/f2/k.java index 624c0da27d..b0aa2c9d5d 100644 --- a/app/src/main/java/c/i/a/c/f2/k.java +++ b/app/src/main/java/c/i/a/c/f2/k.java @@ -8,7 +8,7 @@ public final class k { public final j[] b; /* renamed from: c reason: collision with root package name */ - public int f870c; + public int f871c; public k(j... jVarArr) { this.b = jVarArr; @@ -26,9 +26,9 @@ public final class k { } public int hashCode() { - if (this.f870c == 0) { - this.f870c = 527 + Arrays.hashCode(this.b); + if (this.f871c == 0) { + this.f871c = 527 + Arrays.hashCode(this.b); } - return this.f870c; + return this.f871c; } } diff --git a/app/src/main/java/c/i/a/c/f2/m.java b/app/src/main/java/c/i/a/c/f2/m.java index 77f05550d2..a9b35b680d 100644 --- a/app/src/main/java/c/i/a/c/f2/m.java +++ b/app/src/main/java/c/i/a/c/f2/m.java @@ -9,19 +9,19 @@ public final class m { public final m1[] b; /* renamed from: c reason: collision with root package name */ - public final g[] f871c; + public final g[] f872c; @Nullable public final Object d; public m(m1[] m1VarArr, g[] gVarArr, @Nullable Object obj) { this.b = m1VarArr; - this.f871c = (g[]) gVarArr.clone(); + this.f872c = (g[]) gVarArr.clone(); this.d = obj; this.a = m1VarArr.length; } public boolean a(@Nullable m mVar, int i) { - return mVar != null && f0.a(this.b[i], mVar.b[i]) && f0.a(this.f871c[i], mVar.f871c[i]); + return mVar != null && f0.a(this.b[i], mVar.b[i]) && f0.a(this.f872c[i], mVar.f872c[i]); } public boolean b(int i) { diff --git a/app/src/main/java/c/i/a/c/g0.java b/app/src/main/java/c/i/a/c/g0.java index 57683ef872..d2d9e57dc6 100644 --- a/app/src/main/java/c/i/a/c/g0.java +++ b/app/src/main/java/c/i/a/c/g0.java @@ -2,9 +2,9 @@ package c.i.a.c; import androidx.annotation.Nullable; import androidx.recyclerview.widget.RecyclerView; +import c.c.a.a0.d; import c.i.a.c.d2.f0; import c.i.a.c.i2.r; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ExoPlaybackException; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.decoder.DecoderInputBuffer; @@ -27,7 +27,7 @@ public abstract class g0 implements k1, l1 { public boolean r; /* renamed from: s reason: collision with root package name */ - public boolean f872s; + public boolean f873s; public g0(int i) { this.i = i; @@ -71,9 +71,9 @@ public abstract class g0 implements k1, l1 { } else if (a == -5) { Format format = s0Var.b; Objects.requireNonNull(format); - if (format.f2275x != RecyclerView.FOREVER_NS) { + if (format.f2278x != RecyclerView.FOREVER_NS) { Format.b a2 = format.a(); - a2.o = format.f2275x + this.p; + a2.o = format.f2278x + this.p; s0Var.b = a2.a(); } } @@ -91,7 +91,7 @@ public abstract class g0 implements k1, l1 { if (this.m != 1) { z2 = false; } - AnimatableValueParser.D(z2); + d.D(z2); this.j.a(); this.m = 0; this.n = null; @@ -118,7 +118,7 @@ public abstract class g0 implements k1, l1 { @Override // c.i.a.c.k1 public final void j(Format[] formatArr, f0 f0Var, long j, long j2) throws ExoPlaybackException { - AnimatableValueParser.D(!this.r); + d.D(!this.r); this.n = f0Var; this.q = j2; this.o = formatArr; @@ -143,7 +143,7 @@ public abstract class g0 implements k1, l1 { @Override // c.i.a.c.k1 public final void o(m1 m1Var, Format[] formatArr, f0 f0Var, long j, boolean z2, boolean z3, long j2, long j3) throws ExoPlaybackException { - AnimatableValueParser.D(this.m == 0); + d.D(this.m == 0); this.k = m1Var; this.m = 1; C(z2, z3); @@ -162,7 +162,7 @@ public abstract class g0 implements k1, l1 { @Override // c.i.a.c.k1 public final void reset() { - AnimatableValueParser.D(this.m == 0); + d.D(this.m == 0); this.j.a(); E(); } @@ -180,14 +180,14 @@ public abstract class g0 implements k1, l1 { if (this.m != 1) { z2 = false; } - AnimatableValueParser.D(z2); + d.D(z2); this.m = 2; F(); } @Override // c.i.a.c.k1 public final void stop() { - AnimatableValueParser.D(this.m == 2); + d.D(this.m == 2); this.m = 1; G(); } @@ -228,14 +228,14 @@ public abstract class g0 implements k1, l1 { /* JADX WARNING: Removed duplicated region for block: B:17:0x0027 */ public final ExoPlaybackException z(Throwable th, @Nullable Format format, boolean z2) { int i; - if (format != null && !this.f872s) { - this.f872s = true; + if (format != null && !this.f873s) { + this.f873s = true; boolean z3 = false; try { i = a(format) & 7; } catch (ExoPlaybackException unused) { } finally { - this.f872s = z3; + this.f873s = z3; } return new ExoPlaybackException(1, th, null, getName(), this.l, format, format != null ? 4 : i, z2); } diff --git a/app/src/main/java/c/i/a/c/g2/e.java b/app/src/main/java/c/i/a/c/g2/e.java index 5386e7a2f5..af3a07ab0f 100644 --- a/app/src/main/java/c/i/a/c/g2/e.java +++ b/app/src/main/java/c/i/a/c/g2/e.java @@ -14,7 +14,7 @@ public final /* synthetic */ class e implements Comparator { if (compare != 0) { return compare; } - int compareTo = cVar.f873c.compareTo(cVar2.f873c); + int compareTo = cVar.f874c.compareTo(cVar2.f874c); return compareTo != 0 ? compareTo : cVar.d.compareTo(cVar2.d); } } diff --git a/app/src/main/java/c/i/a/c/g2/f.java b/app/src/main/java/c/i/a/c/g2/f.java index 7d0e938187..0ae449eded 100644 --- a/app/src/main/java/c/i/a/c/g2/f.java +++ b/app/src/main/java/c/i/a/c/g2/f.java @@ -14,7 +14,7 @@ public final /* synthetic */ class f implements Comparator { if (compare != 0) { return compare; } - int compareTo = cVar2.f873c.compareTo(cVar.f873c); + int compareTo = cVar2.f874c.compareTo(cVar.f874c); return compareTo != 0 ? compareTo : cVar2.d.compareTo(cVar.d); } } diff --git a/app/src/main/java/c/i/a/c/g2/g.java b/app/src/main/java/c/i/a/c/g2/g.java index c67a0045da..f2179e99a7 100644 --- a/app/src/main/java/c/i/a/c/g2/g.java +++ b/app/src/main/java/c/i/a/c/g2/g.java @@ -18,10 +18,10 @@ import android.view.View; import androidx.annotation.Nullable; import androidx.core.view.ViewCompat; import androidx.recyclerview.widget.ItemTouchHelper; +import c.c.a.a0.d; import c.i.a.c.e2.b; import c.i.a.c.e2.c; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ui.SubtitleView; import java.util.ArrayList; import java.util.Collections; @@ -99,8 +99,8 @@ public final class g extends View implements SubtitleView.a { int paddingBottom = height - getPaddingBottom(); if (paddingBottom > paddingTop && width > paddingLeft) { int i17 = paddingBottom - paddingTop; - float v2 = AnimatableValueParser.v2(gVar.k, gVar.l, height, i17); - if (v2 > 0.0f) { + float S1 = d.S1(gVar.k, gVar.l, height, i17); + if (S1 > 0.0f) { int size = list.size(); int i18 = 0; while (i18 < size) { @@ -109,7 +109,7 @@ public final class g extends View implements SubtitleView.a { c.b a = cVar.a(); a.g = -3.4028235E38f; a.h = Integer.MIN_VALUE; - a.f822c = null; + a.f823c = null; if (cVar.f == 0) { a.d = 1.0f - cVar.e; a.e = 0; @@ -125,7 +125,7 @@ public final class g extends View implements SubtitleView.a { } cVar = a.a(); } - float v22 = AnimatableValueParser.v2(cVar.n, cVar.o, height, i17); + float S12 = d.S1(cVar.n, cVar.o, height, i17); j jVar = gVar.i.get(i18); b bVar = gVar.m; float f4 = gVar.n; @@ -140,7 +140,7 @@ public final class g extends View implements SubtitleView.a { if (!(charSequence != charSequence2 || (charSequence != null && charSequence.equals(charSequence2)))) { } jVar.i = cVar.b; - jVar.j = cVar.f821c; + jVar.j = cVar.f822c; jVar.k = cVar.d; jVar.l = cVar.e; jVar.m = cVar.f; @@ -149,15 +149,15 @@ public final class g extends View implements SubtitleView.a { jVar.p = cVar.i; jVar.q = cVar.j; jVar.r = cVar.k; - jVar.f875s = bVar.b; - jVar.t = bVar.f820c; + jVar.f876s = bVar.b; + jVar.t = bVar.f821c; jVar.u = i8; jVar.w = bVar.e; jVar.v = bVar.f; jVar.f.setTypeface(bVar.g); - jVar.f876x = v2; - jVar.f877y = v22; - jVar.f878z = f4; + jVar.f877x = S1; + jVar.f878y = S12; + jVar.f879z = f4; jVar.A = paddingLeft; jVar.B = paddingTop; jVar.C = width; @@ -177,7 +177,7 @@ public final class g extends View implements SubtitleView.a { paddingTop = i4; width = i3; paddingBottom = i2; - v2 = f; + S1 = f; gVar = this; } else if (TextUtils.isEmpty(cVar.b)) { canvas2 = canvas3; @@ -186,7 +186,7 @@ public final class g extends View implements SubtitleView.a { i3 = width; i2 = paddingBottom; i7 = i17; - f = v2; + f = S1; i6 = size; } else { i8 = cVar.l ? cVar.m : bVar.d; @@ -194,17 +194,17 @@ public final class g extends View implements SubtitleView.a { charSequence = jVar.i; i6 = size; charSequence2 = cVar.b; - if (!(charSequence != charSequence2 || (charSequence != null && charSequence.equals(charSequence2))) && f0.a(jVar.j, cVar.f821c) && jVar.k == cVar.d && jVar.l == cVar.e && jVar.m == cVar.f && f0.a(Integer.valueOf(jVar.n), Integer.valueOf(cVar.g)) && jVar.o == cVar.h && f0.a(Integer.valueOf(jVar.p), Integer.valueOf(cVar.i)) && jVar.q == cVar.j && jVar.r == cVar.k && jVar.f875s == bVar.b && jVar.t == bVar.f820c && jVar.u == i8 && jVar.w == bVar.e && jVar.v == bVar.f && f0.a(jVar.f.getTypeface(), bVar.g) && jVar.f876x == v2 && jVar.f877y == v22 && jVar.f878z == f4 && jVar.A == paddingLeft && jVar.B == paddingTop && jVar.C == width && jVar.D == paddingBottom) { + if (!(charSequence != charSequence2 || (charSequence != null && charSequence.equals(charSequence2))) && f0.a(jVar.j, cVar.f822c) && jVar.k == cVar.d && jVar.l == cVar.e && jVar.m == cVar.f && f0.a(Integer.valueOf(jVar.n), Integer.valueOf(cVar.g)) && jVar.o == cVar.h && f0.a(Integer.valueOf(jVar.p), Integer.valueOf(cVar.i)) && jVar.q == cVar.j && jVar.r == cVar.k && jVar.f876s == bVar.b && jVar.t == bVar.f821c && jVar.u == i8 && jVar.w == bVar.e && jVar.v == bVar.f && f0.a(jVar.f.getTypeface(), bVar.g) && jVar.f877x == S1 && jVar.f878y == S12 && jVar.f879z == f4 && jVar.A == paddingLeft && jVar.B == paddingTop && jVar.C == width && jVar.D == paddingBottom) { jVar.a(canvas3, z4); canvas2 = canvas3; i5 = paddingLeft; i4 = paddingTop; i3 = width; i2 = paddingBottom; - f = v2; + f = S1; } else { jVar.i = cVar.b; - jVar.j = cVar.f821c; + jVar.j = cVar.f822c; jVar.k = cVar.d; jVar.l = cVar.e; jVar.m = cVar.f; @@ -213,15 +213,15 @@ public final class g extends View implements SubtitleView.a { jVar.p = cVar.i; jVar.q = cVar.j; jVar.r = cVar.k; - jVar.f875s = bVar.b; - jVar.t = bVar.f820c; + jVar.f876s = bVar.b; + jVar.t = bVar.f821c; jVar.u = i8; jVar.w = bVar.e; jVar.v = bVar.f; jVar.f.setTypeface(bVar.g); - jVar.f876x = v2; - jVar.f877y = v22; - jVar.f878z = f4; + jVar.f877x = S1; + jVar.f878y = S12; + jVar.f879z = f4; jVar.A = paddingLeft; jVar.B = paddingTop; jVar.C = width; @@ -232,8 +232,8 @@ public final class g extends View implements SubtitleView.a { SpannableStringBuilder spannableStringBuilder = charSequence3 instanceof SpannableStringBuilder ? (SpannableStringBuilder) charSequence3 : new SpannableStringBuilder(jVar.i); int i20 = jVar.C - jVar.A; int i21 = jVar.D - jVar.B; - jVar.f.setTextSize(jVar.f876x); - int i22 = (int) ((jVar.f876x * 0.125f) + 0.5f); + jVar.f.setTextSize(jVar.f877x); + int i22 = (int) ((jVar.f877x * 0.125f) + 0.5f); int i23 = i22 * 2; int i24 = i20 - i23; float f5 = jVar.q; @@ -246,18 +246,18 @@ public final class g extends View implements SubtitleView.a { i4 = paddingTop; i3 = width; i2 = paddingBottom; - f = v2; + f = S1; i = i18; z2 = z4; canvas2 = canvas3; } else { i5 = paddingLeft; i4 = paddingTop; - if (jVar.f877y > 0.0f) { + if (jVar.f878y > 0.0f) { i3 = width; i2 = paddingBottom; i10 = 0; - spannableStringBuilder.setSpan(new AbsoluteSizeSpan((int) jVar.f877y), 0, spannableStringBuilder.length(), ItemTouchHelper.ACTION_MODE_DRAG_MASK); + spannableStringBuilder.setSpan(new AbsoluteSizeSpan((int) jVar.f878y), 0, spannableStringBuilder.length(), ItemTouchHelper.ACTION_MODE_DRAG_MASK); } else { i3 = width; i2 = paddingBottom; @@ -275,14 +275,14 @@ public final class g extends View implements SubtitleView.a { if (Color.alpha(jVar.t) > 0) { int i26 = jVar.w; if (i26 == 0 || i26 == 2) { - f = v2; + f = S1; spannableStringBuilder.setSpan(new BackgroundColorSpan(jVar.t), 0, spannableStringBuilder.length(), ItemTouchHelper.ACTION_MODE_DRAG_MASK); } else { - f = v2; + f = S1; spannableStringBuilder2.setSpan(new BackgroundColorSpan(jVar.t), 0, spannableStringBuilder2.length(), ItemTouchHelper.ACTION_MODE_DRAG_MASK); } } else { - f = v2; + f = S1; } Layout.Alignment alignment = jVar.j; if (alignment == null) { @@ -365,7 +365,7 @@ public final class g extends View implements SubtitleView.a { if (i15 > i16) { } } else { - i14 = (jVar.D - height2) - ((int) (((float) i21) * jVar.f878z)); + i14 = (jVar.D - height2) - ((int) (((float) i21) * jVar.f879z)); } i13 = i14; jVar.E = new StaticLayout(spannableStringBuilder, jVar.f, i33, alignment, jVar.d, jVar.e, true); @@ -386,7 +386,7 @@ public final class g extends View implements SubtitleView.a { paddingTop = i4; width = i3; paddingBottom = i2; - v2 = f; + S1 = f; gVar = this; } else { z3 = z4; @@ -394,7 +394,7 @@ public final class g extends View implements SubtitleView.a { i4 = paddingTop; i3 = width; i2 = paddingBottom; - f = v2; + f = S1; i = i18; Objects.requireNonNull(jVar.k); Bitmap bitmap = jVar.k; @@ -453,7 +453,7 @@ public final class g extends View implements SubtitleView.a { paddingTop = i4; width = i3; paddingBottom = i2; - v2 = f; + S1 = f; gVar = this; } } @@ -468,7 +468,7 @@ public final class g extends View implements SubtitleView.a { paddingTop = i4; width = i3; paddingBottom = i2; - v2 = f; + S1 = f; gVar = this; } } diff --git a/app/src/main/java/c/i/a/c/g2/i.java b/app/src/main/java/c/i/a/c/g2/i.java index 695a336698..9b656ca801 100644 --- a/app/src/main/java/c/i/a/c/g2/i.java +++ b/app/src/main/java/c/i/a/c/g2/i.java @@ -26,13 +26,13 @@ public final class i { public final int b; /* renamed from: c reason: collision with root package name */ - public final String f873c; + public final String f874c; public final String d; public c(int i, int i2, String str, String str2, a aVar) { this.a = i; this.b = i2; - this.f873c = str; + this.f874c = str; this.d = str2; } } diff --git a/app/src/main/java/c/i/a/c/g2/j.java b/app/src/main/java/c/i/a/c/g2/j.java index c5ad4e0344..b60ecdf3e8 100644 --- a/app/src/main/java/c/i/a/c/g2/j.java +++ b/app/src/main/java/c/i/a/c/g2/j.java @@ -28,7 +28,7 @@ public final class j { public final float b; /* renamed from: c reason: collision with root package name */ - public final float f874c; + public final float f875c; public final float d; public final float e; public final TextPaint f; @@ -49,20 +49,20 @@ public final class j { public float r; /* renamed from: s reason: collision with root package name */ - public int f875s; + public int f876s; public int t; public int u; public int v; public int w; /* renamed from: x reason: collision with root package name */ - public float f876x; + public float f877x; /* renamed from: y reason: collision with root package name */ - public float f877y; + public float f878y; /* renamed from: z reason: collision with root package name */ - public float f878z; + public float f879z; public j(Context context) { TypedArray obtainStyledAttributes = context.obtainStyledAttributes(null, new int[]{16843287, 16843288}, 0, 0); @@ -72,7 +72,7 @@ public final class j { float round = (float) Math.round((((float) context.getResources().getDisplayMetrics().densityDpi) * 2.0f) / 160.0f); this.a = round; this.b = round; - this.f874c = round; + this.f875c = round; TextPaint textPaint = new TextPaint(); this.f = textPaint; textPaint.setAntiAlias(true); @@ -109,7 +109,7 @@ public final class j { } else if (i == 2) { TextPaint textPaint = this.f; float f = this.b; - float f2 = this.f874c; + float f2 = this.f875c; textPaint.setShadowLayer(f, f2, f2, this.v); } else if (i == 3 || i == 4) { if (i != 3) { @@ -121,14 +121,14 @@ public final class j { i2 = this.v; } float f3 = this.b / 2.0f; - this.f.setColor(this.f875s); + this.f.setColor(this.f876s); this.f.setStyle(Paint.Style.FILL); float f4 = -f3; this.f.setShadowLayer(this.b, f4, f4, i3); staticLayout2.draw(canvas); this.f.setShadowLayer(this.b, f3, f3, i2); } - this.f.setColor(this.f875s); + this.f.setColor(this.f876s); this.f.setStyle(Paint.Style.FILL); staticLayout.draw(canvas); this.f.setShadowLayer(0.0f, 0.0f, 0.0f, 0); diff --git a/app/src/main/java/c/i/a/c/g2/n.java b/app/src/main/java/c/i/a/c/g2/n.java index e773d36bcd..a8bdae0877 100644 --- a/app/src/main/java/c/i/a/c/g2/n.java +++ b/app/src/main/java/c/i/a/c/g2/n.java @@ -15,12 +15,12 @@ import android.util.Base64; import android.util.SparseArray; import android.webkit.WebView; import android.widget.FrameLayout; +import c.c.a.a0.d; import c.i.a.c.e2.b; import c.i.a.c.e2.c; import c.i.a.c.g2.i; import c.i.a.c.i2.f0; import c.i.b.b.r0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ui.SubtitleView; import java.util.ArrayList; import java.util.Collections; @@ -105,8 +105,8 @@ public final class n extends FrameLayout implements SubtitleView.a { } public final String c(int i, float f) { - float v2 = AnimatableValueParser.v2(i, f, getHeight(), (getHeight() - getPaddingTop()) - getPaddingBottom()); - return v2 == -3.4028235E38f ? "unset" : f0.k("%.2fpx", Float.valueOf(v2 / getContext().getResources().getDisplayMetrics().density)); + float S1 = d.S1(i, f, getHeight(), (getHeight() - getPaddingTop()) - getPaddingBottom()); + return S1 == -3.4028235E38f ? "unset" : f0.k("%.2fpx", Float.valueOf(S1 / getContext().getResources().getDisplayMetrics().density)); } /* JADX DEBUG: Can't convert new array creation: APUT found in different block: 0x007e: APUT (r3v0 java.lang.Object[]), (3 ??[int, float, short, byte, char]), (r2v1 java.lang.String) */ @@ -162,19 +162,19 @@ public final class n extends FrameLayout implements SubtitleView.a { StringBuilder sb = new StringBuilder(); Object[] objArr = new Object[4]; char c3 = 0; - objArr[0] = AnimatableValueParser.I2(nVar.l.b); + objArr[0] = d.e2(nVar.l.b); int i7 = 1; objArr[1] = nVar.c(nVar.n, nVar.m); float f3 = 1.2f; objArr[2] = Float.valueOf(1.2f); b bVar2 = nVar.l; int i8 = bVar2.e; - objArr[3] = i8 != 1 ? i8 != 2 ? i8 != 3 ? i8 != 4 ? "unset" : f0.k("-0.05em -0.05em 0.15em %s", AnimatableValueParser.I2(bVar2.f)) : f0.k("0.06em 0.08em 0.15em %s", AnimatableValueParser.I2(bVar2.f)) : f0.k("0.1em 0.12em 0.15em %s", AnimatableValueParser.I2(bVar2.f)) : f0.k("1px 1px 0 %1$s, 1px -1px 0 %1$s, -1px 1px 0 %1$s, -1px -1px 0 %1$s", AnimatableValueParser.I2(bVar2.f)); + objArr[3] = i8 != 1 ? i8 != 2 ? i8 != 3 ? i8 != 4 ? "unset" : f0.k("-0.05em -0.05em 0.15em %s", d.e2(bVar2.f)) : f0.k("0.06em 0.08em 0.15em %s", d.e2(bVar2.f)) : f0.k("0.1em 0.12em 0.15em %s", d.e2(bVar2.f)) : f0.k("1px 1px 0 %1$s, 1px -1px 0 %1$s, -1px 1px 0 %1$s, -1px -1px 0 %1$s", d.e2(bVar2.f)); sb.append(f0.k("

", objArr)); HashMap hashMap = new HashMap(); String str19 = "default_bg"; String str20 = "background-color:%s;"; - hashMap.put(AnimatableValueParser.Y(str19), f0.k(str20, AnimatableValueParser.I2(nVar.l.f820c))); + hashMap.put(d.Y(str19), f0.k(str20, d.e2(nVar.l.f821c))); int i9 = 0; while (i9 < nVar.k.size()) { c cVar2 = nVar.k.get(i9); @@ -223,7 +223,7 @@ public final class n extends FrameLayout implements SubtitleView.a { i2 = b; str2 = "fit-content"; } - Layout.Alignment alignment = cVar2.f821c; + Layout.Alignment alignment = cVar2.f822c; String str21 = "center"; if (alignment == null) { i3 = 2; @@ -242,7 +242,7 @@ public final class n extends FrameLayout implements SubtitleView.a { int i11 = cVar2.p; String str22 = i11 != 1 ? i11 != i3 ? "horizontal-tb" : "vertical-lr" : "vertical-rl"; String c4 = nVar.c(cVar2.n, cVar2.o); - String I2 = AnimatableValueParser.I2(cVar2.l ? cVar2.m : nVar.l.d); + String e2 = d.e2(cVar2.l ? cVar2.m : nVar.l.d); int i12 = cVar2.p; String str23 = "right"; String str24 = "left"; @@ -274,7 +274,7 @@ public final class n extends FrameLayout implements SubtitleView.a { Spanned spanned = (Spanned) charSequence; HashSet hashSet = new HashSet(); cVar = cVar2; - str9 = I2; + str9 = e2; int i13 = 0; BackgroundColorSpan[] backgroundColorSpanArr = (BackgroundColorSpan[]) spanned.getSpans(0, spanned.length(), BackgroundColorSpan.class); int length = backgroundColorSpanArr.length; @@ -286,7 +286,7 @@ public final class n extends FrameLayout implements SubtitleView.a { HashMap hashMap2 = new HashMap(); for (Iterator it = hashSet.iterator(); it.hasNext(); it = it) { int intValue = ((Integer) it.next()).intValue(); - hashMap2.put(AnimatableValueParser.Y("bg_" + intValue), f0.k(str20, AnimatableValueParser.I2(intValue))); + hashMap2.put(d.Y("bg_" + intValue), f0.k(str20, d.e2(intValue))); } SparseArray sparseArray = new SparseArray(); str8 = str20; @@ -307,7 +307,7 @@ public final class n extends FrameLayout implements SubtitleView.a { str15 = c4; if (obj instanceof ForegroundColorSpan) { str14 = str22; - str16 = f0.k("", AnimatableValueParser.I2(((ForegroundColorSpan) obj).getForegroundColor())); + str16 = f0.k("", d.e2(((ForegroundColorSpan) obj).getForegroundColor())); } else { str14 = str22; if (obj instanceof BackgroundColorSpan) { @@ -372,7 +372,7 @@ public final class n extends FrameLayout implements SubtitleView.a { } else { sb2.append("sesame"); } - str16 = f0.k("", sb2.toString(), cVar3.f847c != 2 ? "over right" : "under left"); + str16 = f0.k("", sb2.toString(), cVar3.f848c != 2 ? "over right" : "under left"); } f2 = f8; str12 = str2; @@ -428,10 +428,10 @@ public final class n extends FrameLayout implements SubtitleView.a { str2 = str12; } else { if (obj instanceof c.i.a.c.e2.p.b) { - StringBuilder P = c.d.b.a.a.P(""); - P.append(i.a(((c.i.a.c.e2.p.b) obj).a)); - P.append(""); - str18 = P.toString(); + StringBuilder O = c.d.b.a.a.O(""); + O.append(i.a(((c.i.a.c.e2.p.b) obj).a)); + O.append(""); + str18 = O.toString(); } else if (obj instanceof UnderlineSpan) { str18 = ""; } @@ -496,7 +496,7 @@ public final class n extends FrameLayout implements SubtitleView.a { } Collections.sort(dVar3.a, e.i); for (i.c cVar6 : dVar3.a) { - sb3.append(cVar6.f873c); + sb3.append(cVar6.f874c); } i18++; i19 = keyAt; @@ -505,7 +505,7 @@ public final class n extends FrameLayout implements SubtitleView.a { bVar = new i.b(sb3.toString(), hashMap2, null); for (String str26 : hashMap.keySet()) { String str27 = (String) hashMap.put(str26, (String) hashMap.get(str26)); - AnimatableValueParser.D(str27 == null || str27.equals(hashMap.get(str26))); + d.D(str27 == null || str27.equals(hashMap.get(str26))); } Object[] objArr7 = new Object[13]; objArr7[0] = str24; @@ -553,7 +553,7 @@ public final class n extends FrameLayout implements SubtitleView.a { str4 = str2; str7 = c4; str5 = str21; - str9 = I2; + str9 = e2; while (r1.hasNext()) { } Object[] objArr7 = new Object[13]; @@ -609,7 +609,7 @@ public final class n extends FrameLayout implements SubtitleView.a { str4 = str2; str7 = c4; str5 = str21; - str9 = I2; + str9 = e2; while (r1.hasNext()) { } Object[] objArr7 = new Object[13]; @@ -657,7 +657,7 @@ public final class n extends FrameLayout implements SubtitleView.a { } sb4.append(""); sb.insert(0, sb4.toString()); - this.j.loadData(Base64.encodeToString(sb.toString().getBytes(c.i.b.a.c.f1276c), 1), "text/html", "base64"); + this.j.loadData(Base64.encodeToString(sb.toString().getBytes(c.i.b.a.c.f1277c), 1), "text/html", "base64"); } @Override // android.widget.FrameLayout, android.view.View, android.view.ViewGroup diff --git a/app/src/main/java/c/i/a/c/g2/o/d.java b/app/src/main/java/c/i/a/c/g2/o/d.java index 4c815c1d1f..e888994ba1 100644 --- a/app/src/main/java/c/i/a/c/g2/o/d.java +++ b/app/src/main/java/c/i/a/c/g2/o/d.java @@ -14,7 +14,7 @@ public final class d implements SensorEventListener { public final float[] b = new float[16]; /* renamed from: c reason: collision with root package name */ - public final float[] f879c = new float[16]; + public final float[] f880c = new float[16]; public final float[] d = new float[3]; public final Display e; public final a[] f; @@ -64,12 +64,12 @@ public final class d implements SensorEventListener { Matrix.rotateM(this.a, 0, 90.0f, 1.0f, 0.0f, 0.0f); float[] fArr3 = this.a; if (!this.g) { - c.a(this.f879c, fArr3); + c.a(this.f880c, fArr3); this.g = true; } float[] fArr4 = this.b; System.arraycopy(fArr3, 0, fArr4, 0, fArr4.length); - Matrix.multiplyMM(fArr3, 0, this.b, 0, this.f879c, 0); + Matrix.multiplyMM(fArr3, 0, this.b, 0, this.f880c, 0); float[] fArr5 = this.a; for (a aVar : this.f) { aVar.a(fArr5, f); diff --git a/app/src/main/java/c/i/a/c/g2/o/e.java b/app/src/main/java/c/i/a/c/g2/o/e.java index be5973b8b4..57c8b1d085 100644 --- a/app/src/main/java/c/i/a/c/g2/o/e.java +++ b/app/src/main/java/c/i/a/c/g2/o/e.java @@ -2,7 +2,6 @@ package c.i.a.c.g2.o; import androidx.annotation.Nullable; import c.i.a.c.j2.x.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.nio.FloatBuffer; /* compiled from: ProjectionRenderer */ public final class e { @@ -10,7 +9,7 @@ public final class e { public static final String[] b = {"#extension GL_OES_EGL_image_external : require", "precision mediump float;", "uniform samplerExternalOES uTexture;", "varying vec2 vTexCoords;", "void main() {", " gl_FragColor = texture2D(uTexture, vTexCoords);", "}"}; /* renamed from: c reason: collision with root package name */ - public static final float[] f880c = {1.0f, 0.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, 1.0f}; + public static final float[] f881c = {1.0f, 0.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, 1.0f}; public static final float[] d = {1.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.0f, 0.0f, 0.5f, 1.0f}; public static final float[] e = {1.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.0f, 0.0f, 1.0f, 1.0f}; public static final float[] f = {0.5f, 0.0f, 0.0f, 0.0f, -1.0f, 0.0f, 0.0f, 1.0f, 1.0f}; @@ -33,14 +32,14 @@ public final class e { public final FloatBuffer b; /* renamed from: c reason: collision with root package name */ - public final FloatBuffer f881c; + public final FloatBuffer f882c; public final int d; public a(d.b bVar) { - float[] fArr = bVar.f935c; + float[] fArr = bVar.f936c; this.a = fArr.length / 3; - this.b = AnimatableValueParser.O(fArr); - this.f881c = AnimatableValueParser.O(bVar.d); + this.b = c.c.a.a0.d.O(fArr); + this.f882c = c.c.a.a0.d.O(bVar.d); int i = bVar.b; if (i == 1) { this.d = 5; diff --git a/app/src/main/java/c/i/a/c/g2/o/f.java b/app/src/main/java/c/i/a/c/g2/o/f.java index ac35f9e6ce..9fded04098 100644 --- a/app/src/main/java/c/i/a/c/g2/o/f.java +++ b/app/src/main/java/c/i/a/c/g2/o/f.java @@ -12,7 +12,6 @@ import c.i.a.c.j2.s; import c.i.a.c.j2.x.a; import c.i.a.c.j2.x.c; import c.i.a.c.j2.x.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.nio.IntBuffer; import java.util.ArrayList; @@ -25,7 +24,7 @@ public final class f implements s, a { public final AtomicBoolean b = new AtomicBoolean(true); /* renamed from: c reason: collision with root package name */ - public final e f882c = new e(); + public final e f883c = new e(); public final c d = new c(); public final d0 e = new d0<>(); public final d0 f = new d0<>(); @@ -40,14 +39,14 @@ public final class f implements s, a { @Override // c.i.a.c.j2.x.a public void a(long j, float[] fArr) { - this.d.f933c.a(j, fArr); + this.d.f934c.a(j, fArr); } @Override // c.i.a.c.j2.x.a public void b() { this.e.b(); c cVar = this.d; - cVar.f933c.b(); + cVar.f934c.b(); cVar.d = false; this.b.set(true); } @@ -88,7 +87,7 @@ public final class f implements s, a { if (f4 == 1886547818) { wVar.E(8); int i8 = wVar.b; - int i9 = wVar.f920c; + int i9 = wVar.f921c; while (true) { if (i8 >= i9) { break; @@ -111,9 +110,9 @@ public final class f implements s, a { } } wVar.C(f3); - arrayList = AnimatableValueParser.W1(wVar); + arrayList = c.c.a.a0.d.t1(wVar); } else { - arrayList = AnimatableValueParser.W1(wVar); + arrayList = c.c.a.a0.d.t1(wVar); } } catch (ArrayIndexOutOfBoundsException unused) { } @@ -128,11 +127,11 @@ public final class f implements s, a { } if (dVar == null || !e.a(dVar)) { int i10 = this.l; - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); float radians = (float) Math.toRadians((double) 180.0f); float radians2 = (float) Math.toRadians((double) 360.0f); float f6 = radians / ((float) 36); @@ -222,11 +221,11 @@ public final class f implements s, a { if (arrayList != null) { } int i10 = this.l; - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); - AnimatableValueParser.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); + c.c.a.a0.d.k(true); float radians = (float) Math.toRadians((double) 180.0f); float radians2 = (float) Math.toRadians((double) 360.0f); float f6 = radians / ((float) 36); @@ -244,17 +243,17 @@ public final class f implements s, a { public SurfaceTexture d() { GLES20.glClearColor(0.5f, 0.5f, 0.5f, 1.0f); - AnimatableValueParser.r(); - e eVar = this.f882c; + c.c.a.a0.d.r(); + e eVar = this.f883c; Objects.requireNonNull(eVar); - int K = AnimatableValueParser.K(TextUtils.join("\n", e.a), TextUtils.join("\n", e.b)); + int K = c.c.a.a0.d.K(TextUtils.join("\n", e.a), TextUtils.join("\n", e.b)); eVar.k = K; eVar.l = GLES20.glGetUniformLocation(K, "uMvpMatrix"); eVar.m = GLES20.glGetUniformLocation(eVar.k, "uTexMatrix"); eVar.n = GLES20.glGetAttribLocation(eVar.k, "aPosition"); eVar.o = GLES20.glGetAttribLocation(eVar.k, "aTexCoords"); eVar.p = GLES20.glGetUniformLocation(eVar.k, "uTexture"); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); int[] iArr = new int[1]; GLES20.glGenTextures(1, IntBuffer.wrap(iArr)); GLES20.glBindTexture(36197, iArr[0]); @@ -262,7 +261,7 @@ public final class f implements s, a { GLES20.glTexParameteri(36197, Data.MAX_DATA_BYTES, 9729); GLES20.glTexParameteri(36197, 10242, 33071); GLES20.glTexParameteri(36197, 10243, 33071); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); this.i = iArr[0]; SurfaceTexture surfaceTexture = new SurfaceTexture(this.i); this.j = surfaceTexture; diff --git a/app/src/main/java/c/i/a/c/g2/o/h.java b/app/src/main/java/c/i/a/c/g2/o/h.java index a91c769e1d..edf618335a 100644 --- a/app/src/main/java/c/i/a/c/g2/o/h.java +++ b/app/src/main/java/c/i/a/c/g2/o/h.java @@ -23,7 +23,6 @@ import c.i.a.c.i2.d0; import c.i.a.c.i2.f0; import c.i.a.c.j2.x.c; import c.i.a.c.p1; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.nio.Buffer; import java.util.Objects; import javax.microedition.khronos.egl.EGLConfig; @@ -46,7 +45,7 @@ public final class h extends GLSurfaceView { public boolean r; /* renamed from: s reason: collision with root package name */ - public boolean f883s; + public boolean f884s; public boolean t; /* compiled from: SphericalGLSurfaceView */ @@ -106,12 +105,12 @@ public final class h extends GLSurfaceView { float[] fArr2 = this.k; Objects.requireNonNull(fVar); GLES20.glClear(16384); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); if (fVar.a.compareAndSet(true, false)) { SurfaceTexture surfaceTexture = fVar.j; Objects.requireNonNull(surfaceTexture); surfaceTexture.updateTexImage(); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); if (fVar.b.compareAndSet(true, false)) { Matrix.setIdentityM(fVar.g, 0); } @@ -124,7 +123,7 @@ public final class h extends GLSurfaceView { if (l != null) { c cVar = fVar.d; float[] fArr3 = fVar.g; - float[] e = cVar.f933c.e(l.longValue()); + float[] e = cVar.f934c.e(l.longValue()); if (e != null) { float[] fArr4 = cVar.b; float f = e[0]; @@ -147,10 +146,10 @@ public final class h extends GLSurfaceView { } c.i.a.c.j2.x.d e2 = fVar.f.e(timestamp); if (e2 != null) { - e eVar = fVar.f882c; + e eVar = fVar.f883c; Objects.requireNonNull(eVar); if (e.a(e2)) { - eVar.h = e2.f934c; + eVar.h = e2.f935c; e.a aVar = new e.a(e2.a.a[0]); eVar.i = aVar; if (!e2.d) { @@ -161,29 +160,29 @@ public final class h extends GLSurfaceView { } } Matrix.multiplyMM(fVar.h, 0, fArr2, 0, fVar.g, 0); - e eVar2 = fVar.f882c; + e eVar2 = fVar.f883c; int i = fVar.i; float[] fArr5 = fVar.h; e.a aVar2 = eVar2.i; if (aVar2 != null) { GLES20.glUseProgram(eVar2.k); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); GLES20.glEnableVertexAttribArray(eVar2.n); GLES20.glEnableVertexAttribArray(eVar2.o); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); int i2 = eVar2.h; - GLES20.glUniformMatrix3fv(eVar2.m, 1, false, i2 == 1 ? e.d : i2 == 2 ? e.f : e.f880c, 0); + GLES20.glUniformMatrix3fv(eVar2.m, 1, false, i2 == 1 ? e.d : i2 == 2 ? e.f : e.f881c, 0); GLES20.glUniformMatrix4fv(eVar2.l, 1, false, fArr5, 0); GLES20.glActiveTexture(33984); GLES20.glBindTexture(36197, i); GLES20.glUniform1i(eVar2.p, 0); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); GLES20.glVertexAttribPointer(eVar2.n, 3, 5126, false, 12, (Buffer) aVar2.b); - AnimatableValueParser.r(); - GLES20.glVertexAttribPointer(eVar2.o, 2, 5126, false, 8, (Buffer) aVar2.f881c); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); + GLES20.glVertexAttribPointer(eVar2.o, 2, 5126, false, 8, (Buffer) aVar2.f882c); + c.c.a.a0.d.r(); GLES20.glDrawArrays(aVar2.d, 0, aVar2.a); - AnimatableValueParser.r(); + c.c.a.a0.d.r(); GLES20.glDisableVertexAttribArray(eVar2.n); GLES20.glDisableVertexAttribArray(eVar2.o); } @@ -232,7 +231,7 @@ public final class h extends GLSurfaceView { } public final void a() { - boolean z2 = this.r && this.f883s; + boolean z2 = this.r && this.f884s; Sensor sensor = this.j; if (sensor != null && z2 != this.t) { if (z2) { @@ -252,7 +251,7 @@ public final class h extends GLSurfaceView { @Override // android.opengl.GLSurfaceView public void onPause() { - this.f883s = false; + this.f884s = false; a(); super.onPause(); } @@ -260,7 +259,7 @@ public final class h extends GLSurfaceView { @Override // android.opengl.GLSurfaceView public void onResume() { super.onResume(); - this.f883s = true; + this.f884s = true; a(); } diff --git a/app/src/main/java/c/i/a/c/h0.java b/app/src/main/java/c/i/a/c/h0.java index 9ffe2584e2..9672757619 100644 --- a/app/src/main/java/c/i/a/c/h0.java +++ b/app/src/main/java/c/i/a/c/h0.java @@ -7,7 +7,7 @@ public final class h0 { public static final UUID b = new UUID(1186680826959645954L, -5988876978535335093L); /* renamed from: c reason: collision with root package name */ - public static final UUID f885c = new UUID(-2129748144642739255L, 8654423357094679310L); + public static final UUID f886c = new UUID(-2129748144642739255L, 8654423357094679310L); public static final UUID d = new UUID(-1301668207276963122L, -6645017420763422227L); public static final UUID e = new UUID(-7348484286925749626L, -6083546864340672619L); diff --git a/app/src/main/java/c/i/a/c/h1.java b/app/src/main/java/c/i/a/c/h1.java index 304839aea7..36942db443 100644 --- a/app/src/main/java/c/i/a/c/h1.java +++ b/app/src/main/java/c/i/a/c/h1.java @@ -3,8 +3,8 @@ package c.i.a.c; import android.os.Looper; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.i2.g; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ExoPlaybackException; import java.util.concurrent.TimeoutException; /* compiled from: PlayerMessage */ @@ -13,7 +13,7 @@ public final class h1 { public final a b; /* renamed from: c reason: collision with root package name */ - public final g f886c; + public final g f887c; public final r1 d; public int e; @Nullable @@ -38,22 +38,22 @@ public final class h1 { this.a = bVar; this.d = r1Var; this.g = looper; - this.f886c = gVar; + this.f887c = gVar; this.h = i; } public synchronized boolean a(long j) throws InterruptedException, TimeoutException { boolean z2; - AnimatableValueParser.D(this.i); - AnimatableValueParser.D(this.g.getThread() != Thread.currentThread()); - long c2 = this.f886c.c() + j; + d.D(this.i); + d.D(this.g.getThread() != Thread.currentThread()); + long c2 = this.f887c.c() + j; while (true) { z2 = this.k; if (z2 || j <= 0) { break; } wait(j); - j = c2 - this.f886c.c(); + j = c2 - this.f887c.c(); } if (!z2) { throw new TimeoutException("Message delivery timed out."); @@ -72,8 +72,8 @@ public final class h1 { } public h1 d() { - AnimatableValueParser.D(!this.i); - AnimatableValueParser.k(true); + d.D(!this.i); + d.k(true); this.i = true; q0 q0Var = (q0) this.b; synchronized (q0Var) { diff --git a/app/src/main/java/c/i/a/c/h2/d.java b/app/src/main/java/c/i/a/c/h2/d.java index a755bde7da..82df7a6baf 100644 --- a/app/src/main/java/c/i/a/c/h2/d.java +++ b/app/src/main/java/c/i/a/c/h2/d.java @@ -22,7 +22,7 @@ public interface d { public final a b; /* renamed from: c reason: collision with root package name */ - public boolean f887c; + public boolean f888c; public C0097a(Handler handler, a aVar) { this.a = handler; @@ -35,7 +35,7 @@ public interface d { while (it.hasNext()) { C0097a next = it.next(); if (next.b == aVar) { - next.f887c = true; + next.f888c = true; this.a.remove(next); } } diff --git a/app/src/main/java/c/i/a/c/h2/e.java b/app/src/main/java/c/i/a/c/h2/e.java index b495d97686..7b8c58866a 100644 --- a/app/src/main/java/c/i/a/c/h2/e.java +++ b/app/src/main/java/c/i/a/c/h2/e.java @@ -11,7 +11,7 @@ public abstract class e implements j { public final ArrayList b = new ArrayList<>(1); /* renamed from: c reason: collision with root package name */ - public int f888c; + public int f889c; @Nullable public l d; @@ -24,7 +24,7 @@ public abstract class e implements j { Objects.requireNonNull(xVar); if (!this.b.contains(xVar)) { this.b.add(xVar); - this.f888c++; + this.f889c++; } } @@ -36,7 +36,7 @@ public abstract class e implements j { public final void o(int i) { l lVar = this.d; int i2 = f0.a; - for (int i3 = 0; i3 < this.f888c; i3++) { + for (int i3 = 0; i3 < this.f889c; i3++) { this.b.get(i3).e(this, lVar, this.a, i); } } @@ -44,21 +44,21 @@ public abstract class e implements j { public final void p() { l lVar = this.d; int i = f0.a; - for (int i2 = 0; i2 < this.f888c; i2++) { + for (int i2 = 0; i2 < this.f889c; i2++) { this.b.get(i2).a(this, lVar, this.a); } this.d = null; } public final void q(l lVar) { - for (int i = 0; i < this.f888c; i++) { + for (int i = 0; i < this.f889c; i++) { this.b.get(i).g(this, lVar, this.a); } } public final void r(l lVar) { this.d = lVar; - for (int i = 0; i < this.f888c; i++) { + for (int i = 0; i < this.f889c; i++) { this.b.get(i).b(this, lVar, this.a); } } diff --git a/app/src/main/java/c/i/a/c/h2/k.java b/app/src/main/java/c/i/a/c/h2/k.java index c94a555f76..376ba70511 100644 --- a/app/src/main/java/c/i/a/c/h2/k.java +++ b/app/src/main/java/c/i/a/c/h2/k.java @@ -1,6 +1,6 @@ package c.i.a.c.h2; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.io.IOException; import java.io.InputStream; /* compiled from: DataSourceInputStream */ @@ -41,7 +41,7 @@ public final class k extends InputStream { @Override // java.io.InputStream public int read(byte[] bArr, int i, int i2) throws IOException { - AnimatableValueParser.D(!this.m); + d.D(!this.m); if (!this.l) { this.i.a(this.j); this.l = true; diff --git a/app/src/main/java/c/i/a/c/h2/l.java b/app/src/main/java/c/i/a/c/h2/l.java index 0beb8a4e42..dc917af2dd 100644 --- a/app/src/main/java/c/i/a/c/h2/l.java +++ b/app/src/main/java/c/i/a/c/h2/l.java @@ -3,7 +3,7 @@ package c.i.a.c.h2; import android.net.Uri; import androidx.annotation.Nullable; import androidx.browser.trusted.sharing.ShareTarget; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Collections; import java.util.HashMap; import java.util.Map; @@ -13,7 +13,7 @@ public final class l { public final long b; /* renamed from: c reason: collision with root package name */ - public final int f889c; + public final int f890c; @Nullable public final byte[] d; public final Map e; @@ -32,7 +32,7 @@ public final class l { public long b; /* renamed from: c reason: collision with root package name */ - public int f890c; + public int f891c; @Nullable public byte[] d; public Map e; @@ -47,7 +47,7 @@ public final class l { public b(l lVar, a aVar) { this.a = lVar.a; this.b = lVar.b; - this.f890c = lVar.f889c; + this.f891c = lVar.f890c; this.d = lVar.d; this.e = lVar.e; this.f = lVar.f; @@ -58,23 +58,23 @@ public final class l { } public l a() { - AnimatableValueParser.I(this.a, "The uri must be set."); - return new l(this.a, this.b, this.f890c, this.d, this.e, this.f, this.g, this.h, this.i, this.j); + d.I(this.a, "The uri must be set."); + return new l(this.a, this.b, this.f891c, this.d, this.e, this.f, this.g, this.h, this.i, this.j); } } public l(Uri uri, long j, int i, @Nullable byte[] bArr, Map map, long j2, long j3, @Nullable String str, int i2, @Nullable Object obj) { byte[] bArr2 = bArr; boolean z2 = true; - AnimatableValueParser.k(j + j2 >= 0); - AnimatableValueParser.k(j2 >= 0); + d.k(j + j2 >= 0); + d.k(j2 >= 0); if (j3 <= 0 && j3 != -1) { z2 = false; } - AnimatableValueParser.k(z2); + d.k(z2); this.a = uri; this.b = j; - this.f889c = i; + this.f890c = i; this.d = (bArr2 == null || bArr2.length == 0) ? null : bArr2; this.e = Collections.unmodifiableMap(new HashMap(map)); this.f = j2; @@ -106,17 +106,17 @@ public final class l { } public String toString() { - StringBuilder P = c.d.b.a.a.P("DataSpec["); - P.append(b(this.f889c)); - P.append(" "); - P.append(this.a); - P.append(", "); - P.append(this.f); - P.append(", "); - P.append(this.g); - P.append(", "); - P.append(this.h); - P.append(", "); - return c.d.b.a.a.z(P, this.i, "]"); + StringBuilder O = c.d.b.a.a.O("DataSpec["); + O.append(b(this.f890c)); + O.append(" "); + O.append(this.a); + O.append(", "); + O.append(this.f); + O.append(", "); + O.append(this.g); + O.append(", "); + O.append(this.h); + O.append(", "); + return c.d.b.a.a.z(O, this.i, "]"); } } diff --git a/app/src/main/java/c/i/a/c/h2/m.java b/app/src/main/java/c/i/a/c/h2/m.java index 5f866b8a99..15d8bf01e8 100644 --- a/app/src/main/java/c/i/a/c/h2/m.java +++ b/app/src/main/java/c/i/a/c/h2/m.java @@ -1,7 +1,7 @@ package c.i.a.c.h2; +import c.c.a.a0.d; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; /* compiled from: DefaultAllocator */ public final class m { @@ -9,20 +9,20 @@ public final class m { public final int b; /* renamed from: c reason: collision with root package name */ - public final c[] f891c; + public final c[] f892c; public int d; public int e; public int f; public c[] g; public m(boolean z2, int i) { - AnimatableValueParser.k(i > 0); - AnimatableValueParser.k(true); + d.k(i > 0); + d.k(true); this.a = z2; this.b = i; this.f = 0; this.g = new c[100]; - this.f891c = new c[1]; + this.f892c = new c[1]; } public synchronized void a(c[] cVarArr) { diff --git a/app/src/main/java/c/i/a/c/h2/n.java b/app/src/main/java/c/i/a/c/h2/n.java index e71fe65c02..3b94c3bb5f 100644 --- a/app/src/main/java/c/i/a/c/h2/n.java +++ b/app/src/main/java/c/i/a/c/h2/n.java @@ -15,7 +15,6 @@ import c.i.b.b.r0; import c.i.b.b.u; import c.i.b.b.v; import c.i.b.b.w; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.api.permission.Permission; import com.discord.stores.StoreGuildScheduledEvents; import java.lang.ref.WeakReference; @@ -32,7 +31,7 @@ public final class n implements d, x { public static final u b = u.u(6100000L, 3800000L, 2100000L, 1300000L, 590000L); /* renamed from: c reason: collision with root package name */ - public static final u f892c = u.u(218000L, 159000L, 145000L, 130000L, 112000L); + public static final u f893c = u.u(218000L, 159000L, 145000L, 130000L, 112000L); public static final u d = u.u(2200000L, 1300000L, 930000L, 730000L, 530000L); public static final u e; public static final u f; @@ -52,7 +51,7 @@ public final class n implements d, x { public long r; /* renamed from: s reason: collision with root package name */ - public long f893s; + public long f894s; public long t; /* compiled from: DefaultBandwidthMeter */ @@ -61,12 +60,12 @@ public final class n implements d, x { public final Handler b = new Handler(Looper.getMainLooper()); /* renamed from: c reason: collision with root package name */ - public final ArrayList> f894c = new ArrayList<>(); + public final ArrayList> f895c = new ArrayList<>(); public final void a() { - for (int size = this.f894c.size() - 1; size >= 0; size--) { - if (this.f894c.get(size).get() == null) { - this.f894c.remove(size); + for (int size = this.f895c.size() - 1; size >= 0; size--) { + if (this.f895c.get(size).get() == null) { + this.f895c.remove(size); } } } @@ -79,15 +78,15 @@ public final class n implements d, x { if (nVar.p != q) { nVar.p = q; if (q != 1 && q != 0 && q != 8) { - nVar.f893s = nVar.i(q); + nVar.f894s = nVar.i(q); long c2 = nVar.l.c(); - nVar.k(nVar.m > 0 ? (int) (c2 - nVar.n) : 0, nVar.o, nVar.f893s); + nVar.k(nVar.m > 0 ? (int) (c2 - nVar.n) : 0, nVar.o, nVar.f894s); nVar.n = c2; nVar.o = 0; nVar.r = 0; nVar.q = 0; z zVar = nVar.k; - zVar.f922c.clear(); + zVar.f923c.clear(); zVar.e = -1; zVar.f = 0; zVar.g = 0; @@ -100,8 +99,8 @@ public final class n implements d, x { public synchronized void onReceive(Context context, Intent intent) { if (!isInitialStickyBroadcast()) { a(); - for (int i = 0; i < this.f894c.size(); i++) { - n nVar = this.f894c.get(i).get(); + for (int i = 0; i < this.f895c.size(); i++) { + n nVar = this.f895c.get(i).get(); if (nVar != null) { b(nVar); } @@ -149,7 +148,7 @@ public final class n implements d, x { this.l = gVar; int q = context == null ? 0 : f0.q(context); this.p = q; - this.f893s = i(q); + this.f894s = i(q); if (context != null && z2) { a aVar3 = a.a; synchronized (a.class) { @@ -163,7 +162,7 @@ public final class n implements d, x { } synchronized (aVar) { aVar.a(); - aVar.f894c.add(new WeakReference<>(this)); + aVar.f895c.add(new WeakReference<>(this)); aVar.b.post(new b(aVar, this)); } } @@ -419,7 +418,7 @@ public final class n implements d, x { @Override // c.i.a.c.h2.x public synchronized void a(j jVar, l lVar, boolean z2) { if (j(lVar, z2)) { - AnimatableValueParser.D(this.m > 0); + c.c.a.a0.d.D(this.m > 0); long c2 = this.l.c(); int i = (int) (c2 - this.n); this.q += (long) i; @@ -429,9 +428,9 @@ public final class n implements d, x { if (i > 0) { this.k.a((int) Math.sqrt((double) j2), (((float) j2) * 8000.0f) / ((float) i)); if (this.q >= 2000 || this.r >= Permission.VIEW_GUILD_ANALYTICS) { - this.f893s = (long) this.k.b(0.5f); + this.f894s = (long) this.k.b(0.5f); } - k(i, this.o, this.f893s); + k(i, this.o, this.f894s); this.n = c2; this.o = 0; } @@ -495,7 +494,7 @@ public final class n implements d, x { Iterator it = this.j.a.iterator(); while (it.hasNext()) { d.a.C0096a.C0097a next = it.next(); - if (!next.f887c) { + if (!next.f888c) { next.a.post(new a(next, i, j, j2)); } } diff --git a/app/src/main/java/c/i/a/c/h2/o.java b/app/src/main/java/c/i/a/c/h2/o.java index 255f696a11..b76aebf31b 100644 --- a/app/src/main/java/c/i/a/c/h2/o.java +++ b/app/src/main/java/c/i/a/c/h2/o.java @@ -5,8 +5,8 @@ import android.net.Uri; import android.text.TextUtils; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.exoplayer2.upstream.AssetDataSource; import com.google.android.exoplayer2.upstream.ContentDataSource; @@ -25,7 +25,7 @@ public final class o implements j { public final List b = new ArrayList(); /* renamed from: c reason: collision with root package name */ - public final j f895c; + public final j f896c; @Nullable public j d; @Nullable @@ -46,13 +46,13 @@ public final class o implements j { public o(Context context, j jVar) { this.a = context.getApplicationContext(); Objects.requireNonNull(jVar); - this.f895c = jVar; + this.f896c = jVar; } @Override // c.i.a.c.h2.j public long a(l lVar) throws IOException { boolean z2 = true; - AnimatableValueParser.D(this.k == null); + d.D(this.k == null); String scheme = lVar.a.getScheme(); Uri uri = lVar.a; int i = f0.a; @@ -103,7 +103,7 @@ public final class o implements j { throw new RuntimeException("Error instantiating RTMP extension", e); } if (this.g == null) { - this.g = this.f895c; + this.g = this.f896c; } } this.k = this.g; @@ -129,7 +129,7 @@ public final class o implements j { } this.k = this.j; } else { - this.k = this.f895c; + this.k = this.f896c; } return this.k.a(lVar); } @@ -150,7 +150,7 @@ public final class o implements j { @Override // c.i.a.c.h2.j public void d(x xVar) { Objects.requireNonNull(xVar); - this.f895c.d(xVar); + this.f896c.d(xVar); this.b.add(xVar); j jVar = this.d; if (jVar != null) { diff --git a/app/src/main/java/c/i/a/c/h2/q.java b/app/src/main/java/c/i/a/c/h2/q.java index bf80b9586a..152bf477d4 100644 --- a/app/src/main/java/c/i/a/c/h2/q.java +++ b/app/src/main/java/c/i/a/c/h2/q.java @@ -57,7 +57,7 @@ public class q extends e implements j { public int r; /* renamed from: s reason: collision with root package name */ - public long f896s; + public long f897s; public long t; public long u; public long v; @@ -69,12 +69,12 @@ public class q extends e implements j { public String b; /* renamed from: c reason: collision with root package name */ - public int f897c = 8000; + public int f898c = 8000; public int d = 8000; /* renamed from: b */ public q a() { - return new q(this.b, this.f897c, this.d, false, this.a, null, null); + return new q(this.b, this.f898c, this.d, false, this.a, null, null); } } @@ -173,7 +173,7 @@ public class q extends e implements j { j = lVar.f; } j = 0; - this.f896s = j; + this.f897s = j; boolean equalsIgnoreCase = "gzip".equalsIgnoreCase(u.getHeaderField("Content-Encoding")); if (!equalsIgnoreCase) { long j3 = lVar.g; @@ -209,13 +209,13 @@ public class q extends e implements j { } } } - this.t = j2 == -1 ? j2 - this.f896s : -1; + this.t = j2 == -1 ? j2 - this.f897s : -1; } j2 = -1; headerField = u.getHeaderField("Content-Range"); if (!TextUtils.isEmpty(headerField)) { } - this.t = j2 == -1 ? j2 - this.f896s : -1; + this.t = j2 == -1 ? j2 - this.f897s : -1; } } else { this.t = lVar.g; @@ -346,7 +346,7 @@ public class q extends e implements j { HttpURLConnection v; l lVar2 = lVar; URL url = new URL(lVar2.a.toString()); - int i = lVar2.f889c; + int i = lVar2.f890c; byte[] bArr = lVar2.d; long j = lVar2.f; long j2 = lVar2.g; @@ -400,9 +400,9 @@ public class q extends e implements j { if (!(j == 0 && j2 == -1)) { String r = c.d.b.a.a.r("bytes=", j, "-"); if (j2 != -1) { - StringBuilder P = c.d.b.a.a.P(r); - P.append((j + j2) - 1); - r = P.toString(); + StringBuilder O = c.d.b.a.a.O(r); + O.append((j + j2) - 1); + r = O.toString(); } httpURLConnection.setRequestProperty("Range", r); } @@ -427,13 +427,13 @@ public class q extends e implements j { } public final void x() throws IOException { - if (this.u != this.f896s) { + if (this.u != this.f897s) { if (this.p == null) { this.p = new byte[4096]; } while (true) { long j = this.u; - long j2 = this.f896s; + long j2 = this.f897s; if (j != j2) { int min = (int) Math.min(j2 - j, (long) this.p.length); InputStream inputStream = this.o; diff --git a/app/src/main/java/c/i/a/c/h2/v.java b/app/src/main/java/c/i/a/c/h2/v.java index 7f87080191..9d0c279bd3 100644 --- a/app/src/main/java/c/i/a/c/h2/v.java +++ b/app/src/main/java/c/i/a/c/h2/v.java @@ -13,7 +13,7 @@ public final class v implements j { public long b; /* renamed from: c reason: collision with root package name */ - public Uri f898c = Uri.EMPTY; + public Uri f899c = Uri.EMPTY; public Map> d = Collections.emptyMap(); public v(j jVar) { @@ -23,12 +23,12 @@ public final class v implements j { @Override // c.i.a.c.h2.j public long a(l lVar) throws IOException { - this.f898c = lVar.a; + this.f899c = lVar.a; this.d = Collections.emptyMap(); long a = this.a.a(lVar); Uri m = m(); Objects.requireNonNull(m); - this.f898c = m; + this.f899c = m; this.d = j(); return a; } diff --git a/app/src/main/java/c/i/a/c/h2/w.java b/app/src/main/java/c/i/a/c/h2/w.java index 71b788c092..a0d76a7750 100644 --- a/app/src/main/java/c/i/a/c/h2/w.java +++ b/app/src/main/java/c/i/a/c/h2/w.java @@ -12,7 +12,7 @@ public final class w implements j { public final h b; /* renamed from: c reason: collision with root package name */ - public boolean f899c; + public boolean f900c; public long d; public w(j jVar, h hVar) { @@ -30,9 +30,9 @@ public final class w implements j { } long j = lVar2.g; if (j == -1 && a != -1) { - lVar2 = j == a ? lVar2 : new l(lVar2.a, lVar2.b, lVar2.f889c, lVar2.d, lVar2.e, lVar2.f + 0, a, lVar2.h, lVar2.i, lVar2.j); + lVar2 = j == a ? lVar2 : new l(lVar2.a, lVar2.b, lVar2.f890c, lVar2.d, lVar2.e, lVar2.f + 0, a, lVar2.h, lVar2.i, lVar2.j); } - this.f899c = true; + this.f900c = true; this.b.a(lVar2); return this.d; } @@ -43,8 +43,8 @@ public final class w implements j { try { this.a.close(); } finally { - if (this.f899c) { - this.f899c = z2; + if (this.f900c) { + this.f900c = z2; this.b.close(); } } diff --git a/app/src/main/java/c/i/a/c/h2/y/c.java b/app/src/main/java/c/i/a/c/h2/y/c.java index d32012e9e0..a1f078a708 100644 --- a/app/src/main/java/c/i/a/c/h2/y/c.java +++ b/app/src/main/java/c/i/a/c/h2/y/c.java @@ -3,13 +3,13 @@ package c.i.a.c.h2.y; import android.net.Uri; import androidx.annotation.Nullable; import androidx.recyclerview.widget.RecyclerView; +import c.c.a.a0.d; import c.i.a.c.h2.h; import c.i.a.c.h2.j; import c.i.a.c.h2.l; import c.i.a.c.h2.w; import c.i.a.c.h2.x; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.upstream.DataSourceException; import com.google.android.exoplayer2.upstream.cache.Cache; import java.io.IOException; @@ -25,7 +25,7 @@ public final class c implements j { @Nullable /* renamed from: c reason: collision with root package name */ - public final j f900c; + public final j f901c; public final j d; public final g e = a.b; @Nullable @@ -48,7 +48,7 @@ public final class c implements j { public boolean r; /* renamed from: s reason: collision with root package name */ - public long f901s; + public long f902s; public long t; /* compiled from: CacheDataSource */ @@ -67,7 +67,7 @@ public final class c implements j { this.h = (i & 2) != 0; this.i = (i & 4) != 0 ? true : z2; this.d = jVar; - this.f900c = new w(jVar, hVar); + this.f901c = new w(jVar, hVar); this.f = null; } @@ -86,9 +86,9 @@ public final class c implements j { this.k = a3; Cache cache = this.a; Uri uri = a3.a; - byte[] bArr = ((n) cache.b(str)).f907c.get("exo_redir"); + byte[] bArr = ((n) cache.b(str)).f908c.get("exo_redir"); Uri uri2 = null; - String str2 = bArr != null ? new String(bArr, c.i.b.a.c.f1276c) : null; + String str2 = bArr != null ? new String(bArr, c.i.b.a.c.f1277c) : null; if (str2 != null) { uri2 = Uri.parse(str2); } @@ -137,9 +137,9 @@ public final class c implements j { this.j = null; this.n = 0; a aVar = this.f; - if (aVar != null && this.f901s > 0) { - aVar.b(this.a.h(), this.f901s); - this.f901s = 0; + if (aVar != null && this.f902s > 0) { + aVar.b(this.a.h(), this.f902s); + this.f902s = 0; } try { o(); @@ -252,7 +252,7 @@ public final class c implements j { a4.f = this.n; a4.g = j5; lVar2 = a4.a(); - jVar = this.f900c; + jVar = this.f901c; if (jVar == null) { jVar = this.d; this.a.i(hVar); @@ -261,7 +261,7 @@ public final class c implements j { } this.t = (this.r || jVar != this.d) ? RecyclerView.FOREVER_NS : this.n + 102400; if (z2) { - AnimatableValueParser.D(this.l == this.d); + d.D(this.l == this.d); if (jVar != this.d) { try { o(); @@ -303,7 +303,7 @@ public final class c implements j { mVar.b.remove("exo_redir"); } } - if (this.l == this.f900c) { + if (this.l == this.f901c) { this.a.c(str, mVar); } } @@ -328,7 +328,7 @@ public final class c implements j { int read = jVar.read(bArr, i, i2); if (read != -1) { if (q()) { - this.f901s += (long) read; + this.f902s += (long) read; } long j = (long) read; this.n += j; @@ -383,7 +383,7 @@ public final class c implements j { public final void s(String str) throws IOException { this.o = 0; - if (this.l == this.f900c) { + if (this.l == this.f901c) { m mVar = new m(); m.a(mVar, this.n); this.a.c(str, mVar); diff --git a/app/src/main/java/c/i/a/c/h2/y/f.java b/app/src/main/java/c/i/a/c/h2/y/f.java index 2a7ff7585e..eed50be3c7 100644 --- a/app/src/main/java/c/i/a/c/h2/y/f.java +++ b/app/src/main/java/c/i/a/c/h2/y/f.java @@ -5,8 +5,8 @@ import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLiteDatabase; import androidx.annotation.WorkerThread; +import c.c.a.a0.d; import c.i.a.c.w1.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.exoplayer2.database.DatabaseIOException; import java.util.HashMap; @@ -20,7 +20,7 @@ public final class f { public final a b; /* renamed from: c reason: collision with root package name */ - public String f902c; + public String f903c; public f(a aVar) { this.b = aVar; @@ -47,8 +47,8 @@ public final class f { @WorkerThread public Map a() throws DatabaseIOException { try { - Objects.requireNonNull(this.f902c); - Cursor query = this.b.getReadableDatabase().query(this.f902c, a, null, null, null, null, null); + Objects.requireNonNull(this.f903c); + Cursor query = this.b.getReadableDatabase().query(this.f903c, a, null, null, null, null, null); HashMap hashMap = new HashMap(query.getCount()); while (query.moveToNext()) { hashMap.put(query.getString(0), new e(query.getLong(1), query.getLong(2))); @@ -64,15 +64,15 @@ public final class f { public void b(long j) throws DatabaseIOException { try { String hexString = Long.toHexString(j); - this.f902c = "ExoPlayerCacheFileMetadata" + hexString; - if (AnimatableValueParser.Q0(this.b.getReadableDatabase(), 2, hexString) != 1) { + this.f903c = "ExoPlayerCacheFileMetadata" + hexString; + if (d.I0(this.b.getReadableDatabase(), 2, hexString) != 1) { SQLiteDatabase writableDatabase = this.b.getWritableDatabase(); writableDatabase.beginTransactionNonExclusive(); try { - AnimatableValueParser.C2(writableDatabase, 2, hexString, 1); - String str = this.f902c; + d.Z1(writableDatabase, 2, hexString, 1); + String str = this.f903c; writableDatabase.execSQL("DROP TABLE IF EXISTS " + str); - writableDatabase.execSQL("CREATE TABLE " + this.f902c + " (name TEXT PRIMARY KEY NOT NULL,length INTEGER NOT NULL,last_touch_timestamp INTEGER NOT NULL)"); + writableDatabase.execSQL("CREATE TABLE " + this.f903c + " (name TEXT PRIMARY KEY NOT NULL,length INTEGER NOT NULL,last_touch_timestamp INTEGER NOT NULL)"); writableDatabase.setTransactionSuccessful(); } finally { writableDatabase.endTransaction(); @@ -85,14 +85,14 @@ public final class f { @WorkerThread public void c(Set set) throws DatabaseIOException { - Objects.requireNonNull(this.f902c); + Objects.requireNonNull(this.f903c); try { SQLiteDatabase writableDatabase = this.b.getWritableDatabase(); writableDatabase.beginTransactionNonExclusive(); try { Iterator it = set.iterator(); while (it.hasNext()) { - writableDatabase.delete(this.f902c, "name = ?", new String[]{it.next()}); + writableDatabase.delete(this.f903c, "name = ?", new String[]{it.next()}); } writableDatabase.setTransactionSuccessful(); } finally { @@ -105,14 +105,14 @@ public final class f { @WorkerThread public void d(String str, long j, long j2) throws DatabaseIOException { - Objects.requireNonNull(this.f902c); + Objects.requireNonNull(this.f903c); try { SQLiteDatabase writableDatabase = this.b.getWritableDatabase(); ContentValues contentValues = new ContentValues(); contentValues.put(ModelAuditLogEntry.CHANGE_KEY_NAME, str); contentValues.put("length", Long.valueOf(j)); contentValues.put("last_touch_timestamp", Long.valueOf(j2)); - writableDatabase.replaceOrThrow(this.f902c, null, contentValues); + writableDatabase.replaceOrThrow(this.f903c, null, contentValues); } catch (SQLException e) { throw new DatabaseIOException(e); } diff --git a/app/src/main/java/c/i/a/c/h2/y/h.java b/app/src/main/java/c/i/a/c/h2/y/h.java index 8d0d77afc2..61752d50b1 100644 --- a/app/src/main/java/c/i/a/c/h2/y/h.java +++ b/app/src/main/java/c/i/a/c/h2/y/h.java @@ -36,9 +36,9 @@ public class h implements Comparable { @Override // java.lang.Object public String toString() { - StringBuilder P = a.P("["); - P.append(this.j); - P.append(", "); - return a.A(P, this.k, "]"); + StringBuilder O = a.O("["); + O.append(this.j); + O.append(", "); + return a.A(O, this.k, "]"); } } diff --git a/app/src/main/java/c/i/a/c/h2/y/i.java b/app/src/main/java/c/i/a/c/h2/y/i.java index c54e6e36c3..658be26526 100644 --- a/app/src/main/java/c/i/a/c/h2/y/i.java +++ b/app/src/main/java/c/i/a/c/h2/y/i.java @@ -9,7 +9,7 @@ public final class i { public final String b; /* renamed from: c reason: collision with root package name */ - public final TreeSet f903c = new TreeSet<>(); + public final TreeSet f904c = new TreeSet<>(); public final ArrayList d = new ArrayList<>(); public n e; @@ -69,7 +69,7 @@ public final class i { return false; } i iVar = (i) obj; - return this.a == iVar.a && this.b.equals(iVar.b) && this.f903c.equals(iVar.f903c) && this.e.equals(iVar.e); + return this.a == iVar.a && this.b.equals(iVar.b) && this.f904c.equals(iVar.f904c) && this.e.equals(iVar.e); } public int hashCode() { diff --git a/app/src/main/java/c/i/a/c/h2/y/j.java b/app/src/main/java/c/i/a/c/h2/y/j.java index 31c80daab6..4aaee41533 100644 --- a/app/src/main/java/c/i/a/c/h2/y/j.java +++ b/app/src/main/java/c/i/a/c/h2/y/j.java @@ -9,10 +9,10 @@ import android.util.SparseArray; import android.util.SparseBooleanArray; import androidx.annotation.Nullable; import androidx.annotation.WorkerThread; +import c.c.a.a0.d; import c.i.a.c.i2.f; import c.i.a.c.i2.f0; import c.i.a.c.i2.y; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.exoplayer2.database.DatabaseIOException; import java.io.BufferedInputStream; @@ -44,7 +44,7 @@ public class j { public final SparseArray b; /* renamed from: c reason: collision with root package name */ - public final SparseBooleanArray f904c; + public final SparseBooleanArray f905c; public final SparseBooleanArray d; public c e; @Nullable @@ -56,7 +56,7 @@ public class j { public final c.i.a.c.w1.a b; /* renamed from: c reason: collision with root package name */ - public final SparseArray f905c = new SparseArray<>(); + public final SparseArray f906c = new SparseArray<>(); public String d; public String e; @@ -67,9 +67,9 @@ public class j { @Override // c.i.a.c.h2.y.j.c public void a(i iVar, boolean z2) { if (z2) { - this.f905c.delete(iVar.a); + this.f906c.delete(iVar.a); } else { - this.f905c.put(iVar.a, null); + this.f906c.put(iVar.a, null); } } @@ -84,7 +84,7 @@ public class j { i(writableDatabase, iVar); } writableDatabase.setTransactionSuccessful(); - this.f905c.clear(); + this.f906c.clear(); } finally { writableDatabase.endTransaction(); } @@ -95,7 +95,7 @@ public class j { @Override // c.i.a.c.h2.y.j.c public void c(i iVar) { - this.f905c.put(iVar.a, iVar); + this.f906c.put(iVar.a, iVar); } @Override // c.i.a.c.h2.y.j.c @@ -103,20 +103,20 @@ public class j { SQLiteDatabase readableDatabase = this.b.getReadableDatabase(); String str = this.d; Objects.requireNonNull(str); - return AnimatableValueParser.Q0(readableDatabase, 1, str) != -1; + return d.I0(readableDatabase, 1, str) != -1; } @Override // c.i.a.c.h2.y.j.c public void e(HashMap hashMap) throws IOException { - if (this.f905c.size() != 0) { + if (this.f906c.size() != 0) { try { SQLiteDatabase writableDatabase = this.b.getWritableDatabase(); writableDatabase.beginTransactionNonExclusive(); - for (int i = 0; i < this.f905c.size(); i++) { + for (int i = 0; i < this.f906c.size(); i++) { try { - i valueAt = this.f905c.valueAt(i); + i valueAt = this.f906c.valueAt(i); if (valueAt == null) { - int keyAt = this.f905c.keyAt(i); + int keyAt = this.f906c.keyAt(i); String str = this.e; Objects.requireNonNull(str); writableDatabase.delete(str, "id = ?", new String[]{Integer.toString(keyAt)}); @@ -128,7 +128,7 @@ public class j { } } writableDatabase.setTransactionSuccessful(); - this.f905c.clear(); + this.f906c.clear(); writableDatabase.endTransaction(); } catch (SQLException e) { throw new DatabaseIOException(e); @@ -163,12 +163,12 @@ public class j { */ @Override // c.i.a.c.h2.y.j.c public void g(HashMap hashMap, SparseArray sparseArray) throws IOException { - AnimatableValueParser.D(this.f905c.size() == 0); + d.D(this.f906c.size() == 0); try { SQLiteDatabase readableDatabase = this.b.getReadableDatabase(); String str = this.d; Objects.requireNonNull(str); - if (AnimatableValueParser.Q0(readableDatabase, 1, str) != 1) { + if (d.I0(readableDatabase, 1, str) != 1) { SQLiteDatabase writableDatabase = this.b.getWritableDatabase(); writableDatabase.beginTransactionNonExclusive(); try { @@ -236,7 +236,7 @@ public class j { public final void j(SQLiteDatabase sQLiteDatabase) throws DatabaseIOException { String str = this.d; Objects.requireNonNull(str); - AnimatableValueParser.C2(sQLiteDatabase, 1, str, 1); + d.Z1(sQLiteDatabase, 1, str, 1); String str2 = this.e; Objects.requireNonNull(str2); sQLiteDatabase.execSQL("DROP TABLE IF EXISTS " + str2); @@ -252,7 +252,7 @@ public class j { @Nullable /* renamed from: c reason: collision with root package name */ - public final SecretKeySpec f906c; + public final SecretKeySpec f907c; @Nullable public final SecureRandom d; public final f e; @@ -264,10 +264,10 @@ public class j { SecretKeySpec secretKeySpec; Cipher cipher; boolean z3 = false; - AnimatableValueParser.D(bArr != null || !z2); + d.D(bArr != null || !z2); SecureRandom secureRandom = null; if (bArr != null) { - AnimatableValueParser.k(bArr.length == 16 ? true : z3); + d.k(bArr.length == 16 ? true : z3); try { if (f0.a == 18) { try { @@ -282,13 +282,13 @@ public class j { throw new IllegalStateException(e); } } else { - AnimatableValueParser.k(!z2); + d.k(!z2); cipher = null; secretKeySpec = null; } this.a = z2; this.b = cipher; - this.f906c = secretKeySpec; + this.f907c = secretKeySpec; this.d = z2 ? new SecureRandom() : secureRandom; this.e = new f(file); } @@ -323,7 +323,7 @@ public class j { secureRandom.nextBytes(bArr); dataOutputStream2.write(bArr); try { - this.b.init(1, this.f906c, new IvParameterSpec(bArr)); + this.b.init(1, this.f907c, new IvParameterSpec(bArr)); dataOutputStream2.flush(); dataOutputStream2 = new DataOutputStream(new CipherOutputStream(yVar2, this.b)); } catch (InvalidAlgorithmParameterException | InvalidKeyException e) { @@ -395,7 +395,7 @@ public class j { public void g(HashMap hashMap, SparseArray sparseArray) { Throwable th; boolean z2 = true; - AnimatableValueParser.D(!this.f); + d.D(!this.f); if (this.e.a()) { DataInputStream dataInputStream = null; try { @@ -412,7 +412,7 @@ public class j { IvParameterSpec ivParameterSpec = new IvParameterSpec(bArr); try { Cipher cipher = this.b; - SecretKeySpec secretKeySpec = this.f906c; + SecretKeySpec secretKeySpec = this.f907c; int i = f0.a; cipher.init(2, secretKeySpec, ivParameterSpec); dataInputStream2 = new DataInputStream(new CipherInputStream(bufferedInputStream, this.b)); @@ -543,10 +543,10 @@ public class j { } public j(@Nullable c.i.a.c.w1.a aVar, @Nullable File file, @Nullable byte[] bArr, boolean z2, boolean z3) { - AnimatableValueParser.D((aVar == null && file == null) ? false : true); + d.D((aVar == null && file == null) ? false : true); this.a = new HashMap<>(); this.b = new SparseArray<>(); - this.f904c = new SparseBooleanArray(); + this.f905c = new SparseBooleanArray(); this.d = new SparseBooleanArray(); b bVar = null; a aVar2 = aVar != null ? new a(aVar) : null; @@ -587,7 +587,7 @@ public class j { } public static void b(n nVar, DataOutputStream dataOutputStream) throws IOException { - Set> entrySet = nVar.f907c.entrySet(); + Set> entrySet = nVar.f908c.entrySet(); dataOutputStream.writeInt(entrySet.size()); for (Map.Entry entry : entrySet) { dataOutputStream.writeUTF(entry.getKey()); @@ -648,7 +648,7 @@ public class j { public void f(String str) { i iVar = this.a.get(str); - if (iVar != null && iVar.f903c.isEmpty() && iVar.d.isEmpty()) { + if (iVar != null && iVar.f904c.isEmpty() && iVar.d.isEmpty()) { this.a.remove(str); int i = iVar.a; boolean z2 = this.d.get(i); @@ -659,18 +659,18 @@ public class j { return; } this.b.put(i, null); - this.f904c.put(i, true); + this.f905c.put(i, true); } } @WorkerThread public void g() throws IOException { this.e.e(this.a); - int size = this.f904c.size(); + int size = this.f905c.size(); for (int i = 0; i < size; i++) { - this.b.remove(this.f904c.keyAt(i)); + this.b.remove(this.f905c.keyAt(i)); } - this.f904c.clear(); + this.f905c.clear(); this.d.clear(); } } diff --git a/app/src/main/java/c/i/a/c/h2/y/k.java b/app/src/main/java/c/i/a/c/h2/y/k.java index 50b97d9b9c..847af4074e 100644 --- a/app/src/main/java/c/i/a/c/h2/y/k.java +++ b/app/src/main/java/c/i/a/c/h2/y/k.java @@ -4,7 +4,7 @@ import java.nio.ByteBuffer; /* compiled from: ContentMetadata */ public final /* synthetic */ class k { public static long a(l lVar) { - byte[] bArr = ((n) lVar).f907c.get("exo_len"); + byte[] bArr = ((n) lVar).f908c.get("exo_len"); if (bArr != null) { return ByteBuffer.wrap(bArr).getLong(); } diff --git a/app/src/main/java/c/i/a/c/h2/y/n.java b/app/src/main/java/c/i/a/c/h2/y/n.java index 72d5d0fd14..0ac1433dd4 100644 --- a/app/src/main/java/c/i/a/c/h2/y/n.java +++ b/app/src/main/java/c/i/a/c/h2/y/n.java @@ -16,14 +16,14 @@ public final class n implements l { public int b; /* renamed from: c reason: collision with root package name */ - public final Map f907c; + public final Map f908c; public n() { this(Collections.emptyMap()); } public n(Map map) { - this.f907c = Collections.unmodifiableMap(map); + this.f908c = Collections.unmodifiableMap(map); } public static boolean b(Map map, Map map2) { @@ -40,7 +40,7 @@ public final class n implements l { public n a(m mVar) { byte[] bArr; - HashMap hashMap = new HashMap(this.f907c); + HashMap hashMap = new HashMap(this.f908c); Objects.requireNonNull(mVar); List unmodifiableList = Collections.unmodifiableList(new ArrayList(mVar.b)); for (int i = 0; i < unmodifiableList.size(); i++) { @@ -60,7 +60,7 @@ public final class n implements l { if (value2 instanceof Long) { bArr = ByteBuffer.allocate(8).putLong(((Long) value2).longValue()).array(); } else if (value2 instanceof String) { - bArr = ((String) value2).getBytes(c.f1276c); + bArr = ((String) value2).getBytes(c.f1277c); } else if (value2 instanceof byte[]) { bArr = (byte[]) value2; } else { @@ -68,7 +68,7 @@ public final class n implements l { } hashMap.put(str, bArr); } - return b(this.f907c, hashMap) ? this : new n(hashMap); + return b(this.f908c, hashMap) ? this : new n(hashMap); } public boolean equals(@Nullable Object obj) { @@ -78,13 +78,13 @@ public final class n implements l { if (obj == null || n.class != obj.getClass()) { return false; } - return b(this.f907c, ((n) obj).f907c); + return b(this.f908c, ((n) obj).f908c); } public int hashCode() { if (this.b == 0) { int i = 0; - for (Map.Entry entry : this.f907c.entrySet()) { + for (Map.Entry entry : this.f908c.entrySet()) { i += Arrays.hashCode(entry.getValue()) ^ entry.getKey().hashCode(); } this.b = i; diff --git a/app/src/main/java/c/i/a/c/h2/y/p.java b/app/src/main/java/c/i/a/c/h2/y/p.java index 296a4fee67..b2300fb915 100644 --- a/app/src/main/java/c/i/a/c/h2/y/p.java +++ b/app/src/main/java/c/i/a/c/h2/y/p.java @@ -18,7 +18,7 @@ public class p extends Thread { synchronized (this.j) { this.i.open(); q.j(this.j); - this.j.f908c.e(); + this.j.f909c.e(); } } } diff --git a/app/src/main/java/c/i/a/c/h2/y/q.java b/app/src/main/java/c/i/a/c/h2/y/q.java index daa043c3a7..595faed125 100644 --- a/app/src/main/java/c/i/a/c/h2/y/q.java +++ b/app/src/main/java/c/i/a/c/h2/y/q.java @@ -4,11 +4,11 @@ import android.database.SQLException; import android.os.ConditionVariable; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.h2.y.i; import c.i.a.c.i2.p; import c.i.a.c.w1.a; import c.i.b.b.z; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.database.DatabaseIOException; import com.google.android.exoplayer2.upstream.cache.Cache; import java.io.File; @@ -28,7 +28,7 @@ public final class q implements Cache { public final File b; /* renamed from: c reason: collision with root package name */ - public final d f908c; + public final d f909c; public final j d; @Nullable public final f e; @@ -48,7 +48,7 @@ public final class q implements Cache { } if (add) { this.b = file; - this.f908c = dVar; + this.f909c = dVar; this.d = jVar; this.e = fVar; this.f = new HashMap<>(); @@ -75,9 +75,9 @@ public final class q implements Cache { } File[] listFiles = qVar.b.listFiles(); if (listFiles == null) { - StringBuilder P = c.d.b.a.a.P("Failed to list cache directory files: "); - P.append(qVar.b); - String sb = P.toString(); + StringBuilder O = c.d.b.a.a.O("Failed to list cache directory files: "); + O.append(qVar.b); + String sb = O.toString(); Log.e("SimpleCache", sb); qVar.k = new Cache.CacheException(sb); return; @@ -108,9 +108,9 @@ public final class q implements Cache { try { qVar.i = n(qVar.b); } catch (IOException e2) { - StringBuilder P2 = c.d.b.a.a.P("Failed to create cache UID: "); - P2.append(qVar.b); - String sb2 = P2.toString(); + StringBuilder O2 = c.d.b.a.a.O("Failed to create cache UID: "); + O2.append(qVar.b); + String sb2 = O2.toString(); p.b("SimpleCache", sb2, e2); qVar.k = new Cache.CacheException(sb2, e2); return; @@ -138,9 +138,9 @@ public final class q implements Cache { p.b("SimpleCache", "Storing index file failed", e3); } } catch (IOException e4) { - StringBuilder P3 = c.d.b.a.a.P("Failed to initialize cache indices: "); - P3.append(qVar.b); - String sb3 = P3.toString(); + StringBuilder O3 = c.d.b.a.a.O("Failed to initialize cache indices: "); + O3.append(qVar.b); + String sb3 = O3.toString(); p.b("SimpleCache", sb3, e4); qVar.k = new Cache.CacheException(sb3, e4); } @@ -168,16 +168,16 @@ public final class q implements Cache { public synchronized File a(String str, long j, long j2) throws Cache.CacheException { i iVar; File file; - AnimatableValueParser.D(true); + d.D(true); l(); iVar = this.d.a.get(str); Objects.requireNonNull(iVar); - AnimatableValueParser.D(iVar.a(j, j2)); + d.D(iVar.a(j, j2)); if (!this.b.exists()) { m(this.b); r(); } - this.f908c.a(this, str, j, j2); + this.f909c.a(this, str, j, j2); file = new File(this.b, Integer.toString(this.g.nextInt(10))); if (!file.exists()) { m(file); @@ -188,14 +188,14 @@ public final class q implements Cache { @Override // com.google.android.exoplayer2.upstream.cache.Cache public synchronized l b(String str) { i iVar; - AnimatableValueParser.D(true); + d.D(true); iVar = this.d.a.get(str); return iVar != null ? iVar.e : n.a; } @Override // com.google.android.exoplayer2.upstream.cache.Cache public synchronized void c(String str, m mVar) throws Cache.CacheException { - AnimatableValueParser.D(true); + d.D(true); l(); j jVar = this.d; i d = jVar.d(str); @@ -214,7 +214,7 @@ public final class q implements Cache { @Override // com.google.android.exoplayer2.upstream.cache.Cache public synchronized void d(h hVar) { - AnimatableValueParser.D(true); + d.D(true); q(hVar); } @@ -232,7 +232,7 @@ public final class q implements Cache { r rVar; boolean z2; boolean z3; - AnimatableValueParser.D(true); + d.D(true); l(); r o = o(str, j, j2); if (o.l) { @@ -283,7 +283,7 @@ public final class q implements Cache { @Override // com.google.android.exoplayer2.upstream.cache.Cache public synchronized h f(String str, long j, long j2) throws InterruptedException, Cache.CacheException { h e; - AnimatableValueParser.D(true); + d.D(true); l(); while (true) { e = e(str, j, j2); @@ -297,7 +297,7 @@ public final class q implements Cache { @Override // com.google.android.exoplayer2.upstream.cache.Cache public synchronized void g(File file, long j) throws Cache.CacheException { boolean z2 = true; - AnimatableValueParser.D(true); + d.D(true); if (file.exists()) { if (j == 0) { file.delete(); @@ -307,13 +307,13 @@ public final class q implements Cache { Objects.requireNonNull(g); i c2 = this.d.c(g.i); Objects.requireNonNull(c2); - AnimatableValueParser.D(c2.a(g.j, g.k)); + d.D(c2.a(g.j, g.k)); long a2 = k.a(c2.e); if (a2 != -1) { if (g.j + g.k > a2) { z2 = false; } - AnimatableValueParser.D(z2); + d.D(z2); } if (this.e != null) { try { @@ -334,13 +334,13 @@ public final class q implements Cache { @Override // com.google.android.exoplayer2.upstream.cache.Cache public synchronized long h() { - AnimatableValueParser.D(true); + d.D(true); return this.j; } @Override // com.google.android.exoplayer2.upstream.cache.Cache public synchronized void i(h hVar) { - AnimatableValueParser.D(true); + d.D(true); i c2 = this.d.c(hVar.i); Objects.requireNonNull(c2); long j = hVar.j; @@ -355,7 +355,7 @@ public final class q implements Cache { } public final void k(r rVar) { - this.d.d(rVar.i).f903c.add(rVar); + this.d.d(rVar.i).f904c.add(rVar); this.j += rVar.k; ArrayList arrayList = this.f.get(rVar.i); if (arrayList != null) { @@ -368,7 +368,7 @@ public final class q implements Cache { arrayList.get(size).d(this, rVar); } } - this.f908c.d(this, rVar); + this.f909c.d(this, rVar); } public synchronized void l() throws Cache.CacheException { @@ -387,9 +387,9 @@ public final class q implements Cache { } while (true) { r rVar = new r(iVar.b, j, -1, -9223372036854775807L, null); - floor = iVar.f903c.floor(rVar); + floor = iVar.f904c.floor(rVar); if (floor == null || floor.j + floor.k <= j) { - r ceiling = iVar.f903c.ceiling(rVar); + r ceiling = iVar.f904c.ceiling(rVar); if (ceiling != null) { long j4 = ceiling.j - j; if (j2 != -1) { @@ -440,7 +440,7 @@ public final class q implements Cache { boolean z2; i c2 = this.d.c(hVar.i); if (c2 != null) { - if (c2.f903c.remove(hVar)) { + if (c2.f904c.remove(hVar)) { File file = hVar.m; if (file != null) { file.delete(); @@ -455,14 +455,14 @@ public final class q implements Cache { String name = hVar.m.getName(); try { f fVar = this.e; - Objects.requireNonNull(fVar.f902c); + Objects.requireNonNull(fVar.f903c); try { - fVar.b.getWritableDatabase().delete(fVar.f902c, "name = ?", new String[]{name}); + fVar.b.getWritableDatabase().delete(fVar.f903c, "name = ?", new String[]{name}); } catch (SQLException e) { throw new DatabaseIOException(e); } } catch (IOException unused) { - c.d.b.a.a.l0("Failed to remove file index entry for: ", name, "SimpleCache"); + c.d.b.a.a.k0("Failed to remove file index entry for: ", name, "SimpleCache"); } } this.d.f(c2.b); @@ -477,7 +477,7 @@ public final class q implements Cache { arrayList.get(size).b(this, hVar); } } - this.f908c.b(this, hVar); + this.f909c.b(this, hVar); } } } @@ -485,7 +485,7 @@ public final class q implements Cache { public final void r() { ArrayList arrayList = new ArrayList(); for (i iVar : Collections.unmodifiableCollection(this.d.a.values())) { - Iterator it = iVar.f903c.iterator(); + Iterator it = iVar.f904c.iterator(); while (it.hasNext()) { r next = it.next(); if (next.m.length() != next.k) { @@ -522,7 +522,7 @@ public final class q implements Cache { z2 = true; } i iVar = this.d.a.get(str); - AnimatableValueParser.D(iVar.f903c.remove(rVar)); + d.D(iVar.f904c.remove(rVar)); File file3 = rVar.m; Objects.requireNonNull(file3); if (z2) { @@ -531,9 +531,9 @@ public final class q implements Cache { File h = r.h(parentFile, iVar.a, rVar.j, currentTimeMillis); if (file3.renameTo(h)) { file = h; - AnimatableValueParser.D(rVar.l); + d.D(rVar.l); r rVar2 = new r(rVar.i, rVar.j, rVar.k, currentTimeMillis, file); - iVar.f903c.add(rVar2); + iVar.f904c.add(rVar2); arrayList = this.f.get(rVar.i); if (arrayList != null) { int size = arrayList.size(); @@ -545,19 +545,19 @@ public final class q implements Cache { arrayList.get(size).c(this, rVar, rVar2); } } - this.f908c.c(this, rVar, rVar2); + this.f909c.c(this, rVar, rVar2); return rVar2; } Log.w("CachedContent", "Failed to rename " + file3 + " to " + h); } file = file3; - AnimatableValueParser.D(rVar.l); + d.D(rVar.l); r rVar2 = new r(rVar.i, rVar.j, rVar.k, currentTimeMillis, file); - iVar.f903c.add(rVar2); + iVar.f904c.add(rVar2); arrayList = this.f.get(rVar.i); if (arrayList != null) { } - this.f908c.c(this, rVar, rVar2); + this.f909c.c(this, rVar, rVar2); return rVar2; } } diff --git a/app/src/main/java/c/i/a/c/h2/y/r.java b/app/src/main/java/c/i/a/c/h2/y/r.java index 3ad4c20650..3d6ffe4eea 100644 --- a/app/src/main/java/c/i/a/c/h2/y/r.java +++ b/app/src/main/java/c/i/a/c/h2/y/r.java @@ -1,9 +1,9 @@ package c.i.a.c.h2.y; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.File; import java.util.Objects; import java.util.regex.Matcher; @@ -67,7 +67,7 @@ public final class r extends h { } if (str != null) { File parentFile = file.getParentFile(); - AnimatableValueParser.H(parentFile); + d.H(parentFile); int i6 = jVar.d(str).a; String group2 = matcher.group(2); Objects.requireNonNull(group2); diff --git a/app/src/main/java/c/i/a/c/i2/a.java b/app/src/main/java/c/i/a/c/i2/a.java index 8254d3f3e3..c49a524559 100644 --- a/app/src/main/java/c/i/a/c/i2/a.java +++ b/app/src/main/java/c/i/a/c/i2/a.java @@ -27,7 +27,7 @@ public final /* synthetic */ class a implements Runnable { if (i != -1) { cVar.b.a.append(i, true); } - cVar.f915c = true; + cVar.f916c = true; aVar.invoke(cVar.a); } } diff --git a/app/src/main/java/c/i/a/c/i2/b.java b/app/src/main/java/c/i/a/c/i2/b.java index 7d3b484b05..96574635cc 100644 --- a/app/src/main/java/c/i/a/c/i2/b.java +++ b/app/src/main/java/c/i/a/c/i2/b.java @@ -24,12 +24,12 @@ public final /* synthetic */ class b implements Handler.Callback { Iterator it = oVar.e.iterator(); while (it.hasNext()) { o.c cVar = (o.c) it.next(); - l lVar = oVar.f914c; + l lVar = oVar.f915c; o.b bVar = oVar.d; - if (!cVar.d && cVar.f915c) { + if (!cVar.d && cVar.f916c) { E e = cVar.b; cVar.b = (t) lVar.get(); - cVar.f915c = false; + cVar.f916c = false; bVar.a(cVar.a, e); } if (oVar.b.a.hasMessages(0)) { diff --git a/app/src/main/java/c/i/a/c/i2/d.java b/app/src/main/java/c/i/a/c/i2/d.java index d8730ac3df..f821f2cfde 100644 --- a/app/src/main/java/c/i/a/c/i2/d.java +++ b/app/src/main/java/c/i/a/c/i2/d.java @@ -9,6 +9,6 @@ public final /* synthetic */ class d implements Comparator { @Override // java.util.Comparator public final int compare(Object obj, Object obj2) { int i2 = z.a; - return Float.compare(((z.b) obj).f923c, ((z.b) obj2).f923c); + return Float.compare(((z.b) obj).f924c, ((z.b) obj2).f924c); } } diff --git a/app/src/main/java/c/i/a/c/i2/d0.java b/app/src/main/java/c/i/a/c/i2/d0.java index 57ce3aac1f..d5e78aa32c 100644 --- a/app/src/main/java/c/i/a/c/i2/d0.java +++ b/app/src/main/java/c/i/a/c/i2/d0.java @@ -2,7 +2,7 @@ package c.i.a.c.i2; import androidx.annotation.Nullable; import androidx.recyclerview.widget.RecyclerView; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Arrays; /* compiled from: TimedValueQueue */ public final class d0 { @@ -10,18 +10,18 @@ public final class d0 { public V[] b = ((V[]) new Object[10]); /* renamed from: c reason: collision with root package name */ - public int f909c; + public int f910c; public int d; public synchronized void a(long j, V v) { int i = this.d; if (i > 0) { - if (j <= this.a[((this.f909c + i) - 1) % this.b.length]) { + if (j <= this.a[((this.f910c + i) - 1) % this.b.length]) { b(); } } c(); - int i2 = this.f909c; + int i2 = this.f910c; int i3 = this.d; V[] vArr = this.b; int length = (i2 + i3) % vArr.length; @@ -31,7 +31,7 @@ public final class d0 { } public synchronized void b() { - this.f909c = 0; + this.f910c = 0; this.d = 0; Arrays.fill(this.b, (Object) null); } @@ -42,18 +42,18 @@ public final class d0 { int i = length * 2; long[] jArr = new long[i]; V[] vArr = (V[]) new Object[i]; - int i2 = this.f909c; + int i2 = this.f910c; int i3 = length - i2; System.arraycopy(this.a, i2, jArr, 0, i3); - System.arraycopy(this.b, this.f909c, vArr, 0, i3); - int i4 = this.f909c; + System.arraycopy(this.b, this.f910c, vArr, 0, i3); + int i4 = this.f910c; if (i4 > 0) { System.arraycopy(this.a, 0, jArr, i3, i4); - System.arraycopy(this.b, 0, vArr, i3, this.f909c); + System.arraycopy(this.b, 0, vArr, i3, this.f910c); } this.a = jArr; this.b = vArr; - this.f909c = 0; + this.f910c = 0; } } @@ -62,7 +62,7 @@ public final class d0 { V v = null; long j2 = RecyclerView.FOREVER_NS; while (this.d > 0) { - long j3 = j - this.a[this.f909c]; + long j3 = j - this.a[this.f910c]; if (j3 < 0 && (z2 || (-j3) >= j2)) { break; } @@ -79,12 +79,12 @@ public final class d0 { @Nullable public final V f() { - AnimatableValueParser.D(this.d > 0); + d.D(this.d > 0); V[] vArr = this.b; - int i = this.f909c; + int i = this.f910c; V v = vArr[i]; vArr[i] = null; - this.f909c = (i + 1) % vArr.length; + this.f910c = (i + 1) % vArr.length; this.d--; return v; } diff --git a/app/src/main/java/c/i/a/c/i2/e0.java b/app/src/main/java/c/i/a/c/i2/e0.java index afe04f3166..2817a0a118 100644 --- a/app/src/main/java/c/i/a/c/i2/e0.java +++ b/app/src/main/java/c/i/a/c/i2/e0.java @@ -12,7 +12,7 @@ public final class e0 { @GuardedBy("this") /* renamed from: c reason: collision with root package name */ - public long f910c = -9223372036854775807L; + public long f911c = -9223372036854775807L; public e0(long j) { this.a = j; @@ -22,14 +22,14 @@ public final class e0 { if (j == -9223372036854775807L) { return -9223372036854775807L; } - if (this.f910c != -9223372036854775807L) { - this.f910c = j; + if (this.f911c != -9223372036854775807L) { + this.f911c = j; } else { long j2 = this.a; if (j2 != RecyclerView.FOREVER_NS) { this.b = j2 - j; } - this.f910c = j; + this.f911c = j; notifyAll(); } return j + this.b; @@ -39,7 +39,7 @@ public final class e0 { if (j == -9223372036854775807L) { return -9223372036854775807L; } - long j2 = this.f910c; + long j2 = this.f911c; if (j2 != -9223372036854775807L) { long j3 = (j2 * 90000) / 1000000; long j4 = (Permission.REQUEST_TO_SPEAK + j3) / Permission.MANAGE_EVENTS; @@ -59,7 +59,7 @@ public final class e0 { j = -9223372036854775807L; if (this.a == RecyclerView.FOREVER_NS) { j = 0; - } else if (this.f910c != -9223372036854775807L) { + } else if (this.f911c != -9223372036854775807L) { j = this.b; } return j; diff --git a/app/src/main/java/c/i/a/c/i2/f.java b/app/src/main/java/c/i/a/c/i2/f.java index 5599fac0b3..1adc8359f7 100644 --- a/app/src/main/java/c/i/a/c/i2/f.java +++ b/app/src/main/java/c/i/a/c/i2/f.java @@ -79,11 +79,11 @@ public final class f { if (this.b.exists()) { this.a.delete(); } else if (!this.a.renameTo(this.b)) { - StringBuilder P = c.d.b.a.a.P("Couldn't rename file "); - P.append(this.a); - P.append(" to backup file "); - P.append(this.b); - Log.w("AtomicFile", P.toString()); + StringBuilder O = c.d.b.a.a.O("Couldn't rename file "); + O.append(this.a); + O.append(" to backup file "); + O.append(this.b); + Log.w("AtomicFile", O.toString()); } } try { @@ -91,16 +91,16 @@ public final class f { } catch (FileNotFoundException e) { File parentFile = this.a.getParentFile(); if (parentFile == null || !parentFile.mkdirs()) { - StringBuilder P2 = c.d.b.a.a.P("Couldn't create "); - P2.append(this.a); - throw new IOException(P2.toString(), e); + StringBuilder O2 = c.d.b.a.a.O("Couldn't create "); + O2.append(this.a); + throw new IOException(O2.toString(), e); } try { return new a(this.a); } catch (FileNotFoundException e2) { - StringBuilder P3 = c.d.b.a.a.P("Couldn't create "); - P3.append(this.a); - throw new IOException(P3.toString(), e2); + StringBuilder O3 = c.d.b.a.a.O("Couldn't create "); + O3.append(this.a); + throw new IOException(O3.toString(), e2); } } } diff --git a/app/src/main/java/c/i/a/c/i2/f0.java b/app/src/main/java/c/i/a/c/i2/f0.java index d25a5f19e8..0a03ca7471 100644 --- a/app/src/main/java/c/i/a/c/i2/f0.java +++ b/app/src/main/java/c/i/a/c/i2/f0.java @@ -12,9 +12,9 @@ import android.os.Looper; import android.text.TextUtils; import androidx.annotation.Nullable; import androidx.exifinterface.media.ExifInterface; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.b.a.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.discord.utilities.font.FontUtils; import com.google.android.material.behavior.HideBottomViewOnScrollBehavior; @@ -36,7 +36,7 @@ public final class f0 { public static final String b; /* renamed from: c reason: collision with root package name */ - public static final String f911c; + public static final String f912c; public static final String d; public static final String e; public static final byte[] f = new byte[0]; @@ -55,7 +55,7 @@ public final class f0 { String str2 = Build.DEVICE; b = str2; String str3 = Build.MANUFACTURER; - f911c = str3; + f912c = str3; String str4 = Build.MODEL; d = str4; e = str2 + ", " + str4 + ", " + str3 + ", " + i2; @@ -105,9 +105,9 @@ public final class f0 { } String str4 = h.get(str2); if (str4 != null) { - StringBuilder P = a.P(str4); - P.append(K.substring(str2.length())); - K = P.toString(); + StringBuilder O = a.O(str4); + O.append(K.substring(str2.length())); + K = O.toString(); str2 = str4; } if (!("no".equals(str2) || "i".equals(str2) || "zh".equals(str2))) { @@ -126,7 +126,7 @@ public final class f0 { } public static T[] C(T[] tArr, int i2) { - AnimatableValueParser.k(i2 <= tArr.length); + d.k(i2 <= tArr.length); return (T[]) Arrays.copyOf(tArr, i2); } @@ -302,7 +302,7 @@ public final class f0 { public static Handler j() { Looper myLooper = Looper.myLooper(); - AnimatableValueParser.H(myLooper); + d.H(myLooper); return new Handler(myLooper, null); } @@ -311,11 +311,11 @@ public final class f0 { } public static String l(byte[] bArr) { - return new String(bArr, c.f1276c); + return new String(bArr, c.f1277c); } public static String m(byte[] bArr, int i2, int i3) { - return new String(bArr, i2, i3, c.f1276c); + return new String(bArr, i2, i3, c.f1277c); } public static int n(int i2) { @@ -493,7 +493,7 @@ public final class f0 { } public static byte[] w(String str) { - return str.getBytes(c.f1276c); + return str.getBytes(c.f1277c); } public static boolean x(w wVar, w wVar2, @Nullable Inflater inflater) { diff --git a/app/src/main/java/c/i/a/c/i2/i.java b/app/src/main/java/c/i/a/c/i2/i.java index e061e92ece..e1be9580d8 100644 --- a/app/src/main/java/c/i/a/c/i2/i.java +++ b/app/src/main/java/c/i/a/c/i2/i.java @@ -6,8 +6,8 @@ import androidx.annotation.ColorInt; import androidx.core.internal.view.SupportMenu; import androidx.core.view.InputDeviceCompat; import androidx.core.view.ViewCompat; +import c.c.a.a0.d; import c.d.b.a.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.HashMap; import java.util.Map; import java.util.Objects; @@ -19,7 +19,7 @@ public final class i { public static final Pattern b = Pattern.compile("^rgba\\((\\d{1,3}),(\\d{1,3}),(\\d{1,3}),(\\d{1,3})\\)$"); /* renamed from: c reason: collision with root package name */ - public static final Pattern f912c = Pattern.compile("^rgba\\((\\d{1,3}),(\\d{1,3}),(\\d{1,3}),(\\d*\\.?\\d*?)\\)$"); + public static final Pattern f913c = Pattern.compile("^rgba\\((\\d{1,3}),(\\d{1,3}),(\\d{1,3}),(\\d*\\.?\\d*?)\\)$"); public static final Map d; static { @@ -28,10 +28,10 @@ public final class i { hashMap.put("aliceblue", -984833); hashMap.put("antiquewhite", -332841); hashMap.put("aqua", -16711681); - a.f0(-8388652, hashMap, "aquamarine", -983041, "azure", -657956, "beige", -6972, "bisque"); - a.f0(ViewCompat.MEASURED_STATE_MASK, hashMap, "black", -5171, "blanchedalmond", -16776961, "blue", -7722014, "blueviolet"); - a.f0(-5952982, hashMap, "brown", -2180985, "burlywood", -10510688, "cadetblue", -8388864, "chartreuse"); - a.f0(-2987746, hashMap, "chocolate", -32944, "coral", -10185235, "cornflowerblue", -1828, "cornsilk"); + a.d0(-8388652, hashMap, "aquamarine", -983041, "azure", -657956, "beige", -6972, "bisque"); + a.d0(ViewCompat.MEASURED_STATE_MASK, hashMap, "black", -5171, "blanchedalmond", -16776961, "blue", -7722014, "blueviolet"); + a.d0(-5952982, hashMap, "brown", -2180985, "burlywood", -10510688, "cadetblue", -8388864, "chartreuse"); + a.d0(-2987746, hashMap, "chocolate", -32944, "coral", -10185235, "cornflowerblue", -1828, "cornsilk"); hashMap.put("crimson", -2354116); hashMap.put("cyan", -16711681); hashMap.put("darkblue", -16777077); @@ -41,8 +41,8 @@ public final class i { hashMap.put("darkgreen", -16751616); hashMap.put("darkgrey", -5658199); hashMap.put("darkkhaki", -4343957); - a.f0(-7667573, hashMap, "darkmagenta", -11179217, "darkolivegreen", -29696, "darkorange", -6737204, "darkorchid"); - a.f0(-7667712, hashMap, "darkred", -1468806, "darksalmon", -7357297, "darkseagreen", -12042869, "darkslateblue"); + a.d0(-7667573, hashMap, "darkmagenta", -11179217, "darkolivegreen", -29696, "darkorange", -6737204, "darkorchid"); + a.d0(-7667712, hashMap, "darkred", -1468806, "darksalmon", -7357297, "darkseagreen", -12042869, "darkslateblue"); hashMap.put("darkslategray", -13676721); hashMap.put("darkslategrey", -13676721); hashMap.put("darkturquoise", -16724271); @@ -51,7 +51,7 @@ public final class i { hashMap.put("deepskyblue", -16728065); hashMap.put("dimgray", -9868951); hashMap.put("dimgrey", -9868951); - a.f0(-14774017, hashMap, "dodgerblue", -5103070, "firebrick", -1296, "floralwhite", -14513374, "forestgreen"); + a.d0(-14774017, hashMap, "dodgerblue", -5103070, "firebrick", -1296, "floralwhite", -14513374, "forestgreen"); hashMap.put("fuchsia", -65281); hashMap.put("gainsboro", -2302756); hashMap.put("ghostwhite", -460545); @@ -61,9 +61,9 @@ public final class i { hashMap.put("green", -16744448); hashMap.put("greenyellow", -5374161); hashMap.put("grey", -8355712); - a.f0(-983056, hashMap, "honeydew", -38476, "hotpink", -3318692, "indianred", -11861886, "indigo"); - a.f0(-16, hashMap, "ivory", -989556, "khaki", -1644806, "lavender", -3851, "lavenderblush"); - a.f0(-8586240, hashMap, "lawngreen", -1331, "lemonchiffon", -5383962, "lightblue", -1015680, "lightcoral"); + a.d0(-983056, hashMap, "honeydew", -38476, "hotpink", -3318692, "indianred", -11861886, "indigo"); + a.d0(-16, hashMap, "ivory", -989556, "khaki", -1644806, "lavender", -3851, "lavenderblush"); + a.d0(-8586240, hashMap, "lawngreen", -1331, "lemonchiffon", -5383962, "lightblue", -1015680, "lightcoral"); hashMap.put("lightcyan", -2031617); hashMap.put("lightgoldenrodyellow", -329006); hashMap.put("lightgray", -2894893); @@ -83,31 +83,31 @@ public final class i { hashMap.put("magenta", -65281); hashMap.put("maroon", -8388608); hashMap.put("mediumaquamarine", -10039894); - a.f0(-16777011, hashMap, "mediumblue", -4565549, "mediumorchid", -7114533, "mediumpurple", -12799119, "mediumseagreen"); - a.f0(-8689426, hashMap, "mediumslateblue", -16713062, "mediumspringgreen", -12004916, "mediumturquoise", -3730043, "mediumvioletred"); - a.f0(-15132304, hashMap, "midnightblue", -655366, "mintcream", -6943, "mistyrose", -6987, "moccasin"); - a.f0(-8531, hashMap, "navajowhite", -16777088, "navy", -133658, "oldlace", -8355840, "olive"); - a.f0(-9728477, hashMap, "olivedrab", -23296, "orange", -47872, "orangered", -2461482, "orchid"); - a.f0(-1120086, hashMap, "palegoldenrod", -6751336, "palegreen", -5247250, "paleturquoise", -2396013, "palevioletred"); - a.f0(-4139, hashMap, "papayawhip", -9543, "peachpuff", -3308225, "peru", -16181, "pink"); - a.f0(-2252579, hashMap, "plum", -5185306, "powderblue", -8388480, "purple", -10079335, "rebeccapurple"); - a.f0(SupportMenu.CATEGORY_MASK, hashMap, "red", -4419697, "rosybrown", -12490271, "royalblue", -7650029, "saddlebrown"); - a.f0(-360334, hashMap, "salmon", -744352, "sandybrown", -13726889, "seagreen", -2578, "seashell"); - a.f0(-6270419, hashMap, "sienna", -4144960, "silver", -7876885, "skyblue", -9807155, "slateblue"); + a.d0(-16777011, hashMap, "mediumblue", -4565549, "mediumorchid", -7114533, "mediumpurple", -12799119, "mediumseagreen"); + a.d0(-8689426, hashMap, "mediumslateblue", -16713062, "mediumspringgreen", -12004916, "mediumturquoise", -3730043, "mediumvioletred"); + a.d0(-15132304, hashMap, "midnightblue", -655366, "mintcream", -6943, "mistyrose", -6987, "moccasin"); + a.d0(-8531, hashMap, "navajowhite", -16777088, "navy", -133658, "oldlace", -8355840, "olive"); + a.d0(-9728477, hashMap, "olivedrab", -23296, "orange", -47872, "orangered", -2461482, "orchid"); + a.d0(-1120086, hashMap, "palegoldenrod", -6751336, "palegreen", -5247250, "paleturquoise", -2396013, "palevioletred"); + a.d0(-4139, hashMap, "papayawhip", -9543, "peachpuff", -3308225, "peru", -16181, "pink"); + a.d0(-2252579, hashMap, "plum", -5185306, "powderblue", -8388480, "purple", -10079335, "rebeccapurple"); + a.d0(SupportMenu.CATEGORY_MASK, hashMap, "red", -4419697, "rosybrown", -12490271, "royalblue", -7650029, "saddlebrown"); + a.d0(-360334, hashMap, "salmon", -744352, "sandybrown", -13726889, "seagreen", -2578, "seashell"); + a.d0(-6270419, hashMap, "sienna", -4144960, "silver", -7876885, "skyblue", -9807155, "slateblue"); hashMap.put("slategray", -9404272); hashMap.put("slategrey", -9404272); hashMap.put("snow", -1286); hashMap.put("springgreen", -16711809); - a.f0(-12156236, hashMap, "steelblue", -2968436, "tan", -16744320, "teal", -2572328, "thistle"); - a.f0(-40121, hashMap, "tomato", 0, "transparent", -12525360, "turquoise", -1146130, "violet"); - a.f0(-663885, hashMap, "wheat", -1, "white", -657931, "whitesmoke", InputDeviceCompat.SOURCE_ANY, "yellow"); + a.d0(-12156236, hashMap, "steelblue", -2968436, "tan", -16744320, "teal", -2572328, "thistle"); + a.d0(-40121, hashMap, "tomato", 0, "transparent", -12525360, "turquoise", -1146130, "violet"); + a.d0(-663885, hashMap, "wheat", -1, "white", -657931, "whitesmoke", InputDeviceCompat.SOURCE_ANY, "yellow"); hashMap.put("yellowgreen", -6632142); } @ColorInt public static int a(String str, boolean z2) { int i; - AnimatableValueParser.k(!TextUtils.isEmpty(str)); + d.k(!TextUtils.isEmpty(str)); String replace = str.replace(" ", ""); if (replace.charAt(0) == '#') { int parseLong = (int) Long.parseLong(replace.substring(1), 16); @@ -120,7 +120,7 @@ public final class i { throw new IllegalArgumentException(); } if (replace.startsWith("rgba")) { - Matcher matcher = (z2 ? f912c : b).matcher(replace); + Matcher matcher = (z2 ? f913c : b).matcher(replace); if (matcher.matches()) { if (z2) { String group = matcher.group(4); diff --git a/app/src/main/java/c/i/a/c/i2/n.java b/app/src/main/java/c/i/a/c/i2/n.java index 14c2399212..f4eeadd731 100644 --- a/app/src/main/java/c/i/a/c/i2/n.java +++ b/app/src/main/java/c/i/a/c/i2/n.java @@ -7,7 +7,7 @@ public final class n { public int b = -1; /* renamed from: c reason: collision with root package name */ - public int f913c = 0; + public int f914c = 0; public int[] d; public int e; @@ -18,7 +18,7 @@ public final class n { } public void a(int i) { - int i2 = this.f913c; + int i2 = this.f914c; int[] iArr = this.d; if (i2 == iArr.length) { int length = iArr.length << 1; @@ -30,7 +30,7 @@ public final class n { System.arraycopy(iArr, i3, iArr2, 0, i4); System.arraycopy(this.d, 0, iArr2, i4, i3); this.a = 0; - this.b = this.f913c - 1; + this.b = this.f914c - 1; this.d = iArr2; this.e = length - 1; } else { @@ -40,17 +40,17 @@ public final class n { int i5 = (this.b + 1) & this.e; this.b = i5; this.d[i5] = i; - this.f913c++; + this.f914c++; } public int b() { - int i = this.f913c; + int i = this.f914c; if (i != 0) { int[] iArr = this.d; int i2 = this.a; int i3 = iArr[i2]; this.a = (i2 + 1) & this.e; - this.f913c = i - 1; + this.f914c = i - 1; return i3; } throw new NoSuchElementException(); diff --git a/app/src/main/java/c/i/a/c/i2/o.java b/app/src/main/java/c/i/a/c/i2/o.java index 81e3475688..f89933241f 100644 --- a/app/src/main/java/c/i/a/c/i2/o.java +++ b/app/src/main/java/c/i/a/c/i2/o.java @@ -13,7 +13,7 @@ public final class o { public final c0 b; /* renamed from: c reason: collision with root package name */ - public final l f914c; + public final l f915c; public final b d; public final CopyOnWriteArraySet> e; public final ArrayDeque f = new ArrayDeque<>(); @@ -36,7 +36,7 @@ public final class o { public E b; /* renamed from: c reason: collision with root package name */ - public boolean f915c; + public boolean f916c; public boolean d; public c(T t, l lVar) { @@ -62,7 +62,7 @@ public final class o { public o(CopyOnWriteArraySet> copyOnWriteArraySet, Looper looper, g gVar, l lVar, b bVar) { this.a = gVar; this.e = copyOnWriteArraySet; - this.f914c = lVar; + this.f915c = lVar; this.d = bVar; this.b = gVar.b(looper, new b(this)); } @@ -94,7 +94,7 @@ public final class o { c next = it.next(); b bVar = this.d; next.d = true; - if (next.f915c) { + if (next.f916c) { bVar.a(next.a, next.b); } } diff --git a/app/src/main/java/c/i/a/c/i2/p.java b/app/src/main/java/c/i/a/c/i2/p.java index a30b5de2f4..bdbbd68f9f 100644 --- a/app/src/main/java/c/i/a/c/i2/p.java +++ b/app/src/main/java/c/i/a/c/i2/p.java @@ -32,10 +32,10 @@ public final class p { if (TextUtils.isEmpty(str2)) { return str; } - StringBuilder U = a.U(str, "\n "); - U.append(str2.replace("\n", "\n ")); - U.append('\n'); - return U.toString(); + StringBuilder S = a.S(str, "\n "); + S.append(str2.replace("\n", "\n ")); + S.append('\n'); + return S.toString(); } @Pure diff --git a/app/src/main/java/c/i/a/c/i2/q.java b/app/src/main/java/c/i/a/c/i2/q.java index e8bdf351ee..f4fda516e6 100644 --- a/app/src/main/java/c/i/a/c/i2/q.java +++ b/app/src/main/java/c/i/a/c/i2/q.java @@ -23,8 +23,8 @@ public final class q { if (i >= 0 && i < this.a) { return this.b[i]; } - StringBuilder Q = a.Q("Invalid index ", i, ", size is "); - Q.append(this.a); - throw new IndexOutOfBoundsException(Q.toString()); + StringBuilder P = a.P("Invalid index ", i, ", size is "); + P.append(this.a); + throw new IndexOutOfBoundsException(P.toString()); } } diff --git a/app/src/main/java/c/i/a/c/i2/u.java b/app/src/main/java/c/i/a/c/i2/u.java index 70cdf02b57..5e42f4eb9c 100644 --- a/app/src/main/java/c/i/a/c/i2/u.java +++ b/app/src/main/java/c/i/a/c/i2/u.java @@ -1,6 +1,6 @@ package c.i.a.c.i2; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Arrays; /* compiled from: NalUnitUtil */ public final class u { @@ -8,7 +8,7 @@ public final class u { public static final float[] b = {1.0f, 1.0f, 1.0909091f, 0.90909094f, 1.4545455f, 1.2121212f, 2.1818182f, 1.8181819f, 2.909091f, 2.4242425f, 1.6363636f, 1.3636364f, 1.939394f, 1.6161616f, 1.3333334f, 1.5f, 2.0f}; /* renamed from: c reason: collision with root package name */ - public static final Object f916c = new Object(); + public static final Object f917c = new Object(); public static int[] d = new int[10]; /* compiled from: NalUnitUtil */ @@ -17,12 +17,12 @@ public final class u { public final int b; /* renamed from: c reason: collision with root package name */ - public final boolean f917c; + public final boolean f918c; public a(int i, int i2, boolean z2) { this.a = i; this.b = i2; - this.f917c = z2; + this.f918c = z2; } } @@ -32,7 +32,7 @@ public final class u { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f918c; + public final int f919c; public final int d; public final int e; public final int f; @@ -47,7 +47,7 @@ public final class u { public b(int i, int i2, int i3, int i4, int i5, int i6, float f, boolean z2, boolean z3, int i7, int i8, int i9, boolean z4) { this.a = i; this.b = i2; - this.f918c = i3; + this.f919c = i3; this.d = i4; this.e = i5; this.f = i6; @@ -70,7 +70,7 @@ public final class u { public static int b(byte[] bArr, int i, int i2, boolean[] zArr) { int i3 = i2 - i; boolean z2 = false; - AnimatableValueParser.D(i3 >= 0); + d.D(i3 >= 0); if (i3 == 0) { return i2; } @@ -236,7 +236,7 @@ public final class u { if (e < fArr.length) { f = fArr[e]; } else { - c.d.b.a.a.j0("Unexpected aspect_ratio_idc value: ", e, "NalUnitUtil"); + c.d.b.a.a.i0("Unexpected aspect_ratio_idc value: ", e, "NalUnitUtil"); } } return new b(e2, e3, e4, f2, i15, i16, f, z2, d2, f3, f4, i4, z3); @@ -269,7 +269,7 @@ public final class u { public static int e(byte[] bArr, int i) { int i2; - synchronized (f916c) { + synchronized (f917c) { int i3 = 0; int i4 = 0; while (i3 < i) { diff --git a/app/src/main/java/c/i/a/c/i2/v.java b/app/src/main/java/c/i/a/c/i2/v.java index 4354d00efb..18d80d4ed0 100644 --- a/app/src/main/java/c/i/a/c/i2/v.java +++ b/app/src/main/java/c/i/a/c/i2/v.java @@ -1,13 +1,13 @@ package c.i.a.c.i2; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: ParsableBitArray */ public final class v { public byte[] a; public int b; /* renamed from: c reason: collision with root package name */ - public int f919c; + public int f920c; public int d; public v() { @@ -28,32 +28,32 @@ public final class v { public final void a() { int i; int i2 = this.b; - AnimatableValueParser.D(i2 >= 0 && (i2 < (i = this.d) || (i2 == i && this.f919c == 0))); + d.D(i2 >= 0 && (i2 < (i = this.d) || (i2 == i && this.f920c == 0))); } public int b() { - return ((this.d - this.b) * 8) - this.f919c; + return ((this.d - this.b) * 8) - this.f920c; } public void c() { - if (this.f919c != 0) { - this.f919c = 0; + if (this.f920c != 0) { + this.f920c = 0; this.b++; a(); } } public int d() { - AnimatableValueParser.D(this.f919c == 0); + d.D(this.f920c == 0); return this.b; } public int e() { - return (this.b * 8) + this.f919c; + return (this.b * 8) + this.f920c; } public boolean f() { - boolean z2 = (this.a[this.b] & (128 >> this.f919c)) != 0; + boolean z2 = (this.a[this.b] & (128 >> this.f920c)) != 0; l(); return z2; } @@ -63,15 +63,15 @@ public final class v { if (i == 0) { return 0; } - this.f919c += i; + this.f920c += i; int i3 = 0; while (true) { - i2 = this.f919c; + i2 = this.f920c; if (i2 <= 8) { break; } int i4 = i2 - 8; - this.f919c = i4; + this.f920c = i4; byte[] bArr = this.a; int i5 = this.b; this.b = i5 + 1; @@ -81,7 +81,7 @@ public final class v { int i6 = this.b; int i7 = (-1 >>> (32 - i)) & (i3 | ((bArr2[i6] & 255) >> (8 - i2))); if (i2 == 8) { - this.f919c = 0; + this.f920c = 0; this.b = i6 + 1; } a(); @@ -96,7 +96,7 @@ public final class v { int i5 = i4 + 1; this.b = i5; byte b = bArr2[i4]; - int i6 = this.f919c; + int i6 = this.f920c; bArr[i] = (byte) (b << i6); bArr[i] = (byte) (((255 & bArr2[i5]) >> (8 - i6)) | bArr[i]); i++; @@ -104,22 +104,22 @@ public final class v { int i7 = i2 & 7; if (i7 != 0) { bArr[i3] = (byte) (bArr[i3] & (255 >> i7)); - int i8 = this.f919c; + int i8 = this.f920c; if (i8 + i7 > 8) { byte b2 = bArr[i3]; byte[] bArr3 = this.a; int i9 = this.b; this.b = i9 + 1; bArr[i3] = (byte) (b2 | ((bArr3[i9] & 255) << i8)); - this.f919c = i8 - 8; + this.f920c = i8 - 8; } - int i10 = this.f919c + i7; - this.f919c = i10; + int i10 = this.f920c + i7; + this.f920c = i10; byte[] bArr4 = this.a; int i11 = this.b; bArr[i3] = (byte) (((byte) (((255 & bArr4[i11]) >> (8 - i10)) << (8 - i7))) | bArr[i3]); if (i10 == 8) { - this.f919c = 0; + this.f920c = 0; this.b = i11 + 1; } a(); @@ -127,7 +127,7 @@ public final class v { } public void i(byte[] bArr, int i, int i2) { - AnimatableValueParser.D(this.f919c == 0); + d.D(this.f920c == 0); System.arraycopy(this.a, this.b, bArr, i, i2); this.b += i2; a(); @@ -136,22 +136,22 @@ public final class v { public void j(byte[] bArr, int i) { this.a = bArr; this.b = 0; - this.f919c = 0; + this.f920c = 0; this.d = i; } public void k(int i) { int i2 = i / 8; this.b = i2; - this.f919c = i - (i2 * 8); + this.f920c = i - (i2 * 8); a(); } public void l() { - int i = this.f919c + 1; - this.f919c = i; + int i = this.f920c + 1; + this.f920c = i; if (i == 8) { - this.f919c = 0; + this.f920c = 0; this.b++; } a(); @@ -161,17 +161,17 @@ public final class v { int i2 = i / 8; int i3 = this.b + i2; this.b = i3; - int i4 = (i - (i2 * 8)) + this.f919c; - this.f919c = i4; + int i4 = (i - (i2 * 8)) + this.f920c; + this.f920c = i4; if (i4 > 7) { this.b = i3 + 1; - this.f919c = i4 - 8; + this.f920c = i4 - 8; } a(); } public void n(int i) { - AnimatableValueParser.D(this.f919c == 0); + d.D(this.f920c == 0); this.b += i; a(); } diff --git a/app/src/main/java/c/i/a/c/i2/w.java b/app/src/main/java/c/i/a/c/i2/w.java index f64a08783b..72b602e07f 100644 --- a/app/src/main/java/c/i/a/c/i2/w.java +++ b/app/src/main/java/c/i/a/c/i2/w.java @@ -1,9 +1,9 @@ package c.i.a.c.i2; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.b.a.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.nio.charset.Charset; import java.util.Arrays; /* compiled from: ParsableByteArray */ @@ -12,7 +12,7 @@ public final class w { public int b; /* renamed from: c reason: collision with root package name */ - public int f920c; + public int f921c; public w() { this.a = f0.f; @@ -20,39 +20,39 @@ public final class w { public w(int i) { this.a = new byte[i]; - this.f920c = i; + this.f921c = i; } public w(byte[] bArr) { this.a = bArr; - this.f920c = bArr.length; + this.f921c = bArr.length; } public w(byte[] bArr, int i) { this.a = bArr; - this.f920c = i; + this.f921c = i; } public void A(byte[] bArr) { int length = bArr.length; this.a = bArr; - this.f920c = length; + this.f921c = length; this.b = 0; } public void B(byte[] bArr, int i) { this.a = bArr; - this.f920c = i; + this.f921c = i; this.b = 0; } public void C(int i) { - AnimatableValueParser.k(i >= 0 && i <= this.a.length); - this.f920c = i; + d.k(i >= 0 && i <= this.a.length); + this.f921c = i; } public void D(int i) { - AnimatableValueParser.k(i >= 0 && i <= this.f920c); + d.k(i >= 0 && i <= this.f921c); this.b = i; } @@ -61,7 +61,7 @@ public final class w { } public int a() { - return this.f920c - this.b; + return this.f921c - this.b; } public void b(int i) { @@ -106,7 +106,7 @@ public final class w { return null; } int i = this.b; - while (i < this.f920c) { + while (i < this.f921c) { byte b = this.a[i]; int i2 = f0.a; if (b == 10 || b == 13) { @@ -125,7 +125,7 @@ public final class w { int i4 = this.b; String m = f0.m(bArr2, i4, i - i4); this.b = i; - int i5 = this.f920c; + int i5 = this.f921c; if (i == i5) { return m; } @@ -225,14 +225,14 @@ public final class w { return null; } int i = this.b; - while (i < this.f920c && this.a[i] != 0) { + while (i < this.f921c && this.a[i] != 0) { i++; } byte[] bArr = this.a; int i2 = this.b; String m = f0.m(bArr, i2, i - i2); this.b = i; - if (i < this.f920c) { + if (i < this.f921c) { this.b = i + 1; } return m; @@ -244,13 +244,13 @@ public final class w { } int i2 = this.b; int i3 = (i2 + i) - 1; - String m = f0.m(this.a, i2, (i3 >= this.f920c || this.a[i3] != 0) ? i : i - 1); + String m = f0.m(this.a, i2, (i3 >= this.f921c || this.a[i3] != 0) ? i : i - 1); this.b += i; return m; } public String p(int i) { - return q(i, c.f1276c); + return q(i, c.f1277c); } public String q(int i, Charset charset) { diff --git a/app/src/main/java/c/i/a/c/i2/x.java b/app/src/main/java/c/i/a/c/i2/x.java index 85d8db1d44..f2e368a4bb 100644 --- a/app/src/main/java/c/i/a/c/i2/x.java +++ b/app/src/main/java/c/i/a/c/i2/x.java @@ -1,30 +1,30 @@ package c.i.a.c.i2; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: ParsableNalUnitBitArray */ public final class x { public byte[] a; public int b; /* renamed from: c reason: collision with root package name */ - public int f921c; + public int f922c; public int d = 0; public x(byte[] bArr, int i, int i2) { this.a = bArr; - this.f921c = i; + this.f922c = i; this.b = i2; a(); } public final void a() { int i; - int i2 = this.f921c; - AnimatableValueParser.D(i2 >= 0 && (i2 < (i = this.b) || (i2 == i && this.d == 0))); + int i2 = this.f922c; + d.D(i2 >= 0 && (i2 < (i = this.b) || (i2 == i && this.d == 0))); } public boolean b(int i) { - int i2 = this.f921c; + int i2 = this.f922c; int i3 = i / 8; int i4 = i2 + i3; int i5 = (this.d + i) - (i3 * 8); @@ -49,20 +49,20 @@ public final class x { } public boolean c() { - int i = this.f921c; + int i = this.f922c; int i2 = this.d; int i3 = 0; - while (this.f921c < this.b && !d()) { + while (this.f922c < this.b && !d()) { i3++; } - boolean z2 = this.f921c == this.b; - this.f921c = i; + boolean z2 = this.f922c == this.b; + this.f922c = i; this.d = i2; return !z2 && b((i3 * 2) + 1); } public boolean d() { - boolean z2 = (this.a[this.f921c] & (128 >> this.d)) != 0; + boolean z2 = (this.a[this.f922c] & (128 >> this.d)) != 0; j(); return z2; } @@ -81,22 +81,22 @@ public final class x { int i5 = i2 - 8; this.d = i5; byte[] bArr = this.a; - int i6 = this.f921c; + int i6 = this.f922c; i4 |= (bArr[i6] & 255) << i5; if (!i(i6 + 1)) { i3 = 1; } - this.f921c = i6 + i3; + this.f922c = i6 + i3; } byte[] bArr2 = this.a; - int i7 = this.f921c; + int i7 = this.f922c; int i8 = (-1 >>> (32 - i)) & (i4 | ((bArr2[i7] & 255) >> (8 - i2))); if (i2 == 8) { this.d = 0; if (!i(i7 + 1)) { i3 = 1; } - this.f921c = i7 + i3; + this.f922c = i7 + i3; } a(); return i8; @@ -122,7 +122,7 @@ public final class x { public void h(byte[] bArr, int i, int i2) { this.a = bArr; - this.f921c = i; + this.f922c = i; this.b = i2; this.d = 0; a(); @@ -144,33 +144,33 @@ public final class x { this.d = i2; if (i2 == 8) { this.d = 0; - int i3 = this.f921c; + int i3 = this.f922c; if (i(i3 + 1)) { i = 2; } - this.f921c = i3 + i; + this.f922c = i3 + i; } a(); } public void k(int i) { - int i2 = this.f921c; + int i2 = this.f922c; int i3 = i / 8; int i4 = i2 + i3; - this.f921c = i4; + this.f922c = i4; int i5 = (i - (i3 * 8)) + this.d; this.d = i5; if (i5 > 7) { - this.f921c = i4 + 1; + this.f922c = i4 + 1; this.d = i5 - 8; } while (true) { i2++; - if (i2 > this.f921c) { + if (i2 > this.f922c) { a(); return; } else if (i(i2)) { - this.f921c++; + this.f922c++; i2 += 2; } } diff --git a/app/src/main/java/c/i/a/c/i2/y.java b/app/src/main/java/c/i/a/c/i2/y.java index 653e38e999..78d95e4abc 100644 --- a/app/src/main/java/c/i/a/c/i2/y.java +++ b/app/src/main/java/c/i/a/c/i2/y.java @@ -1,6 +1,6 @@ package c.i.a.c.i2; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.io.BufferedOutputStream; import java.io.IOException; import java.io.OutputStream; @@ -17,7 +17,7 @@ public final class y extends BufferedOutputStream { } public void a(OutputStream outputStream) { - AnimatableValueParser.D(this.i); + d.D(this.i); ((BufferedOutputStream) this).out = outputStream; ((BufferedOutputStream) this).count = 0; this.i = false; diff --git a/app/src/main/java/c/i/a/c/i2/z.java b/app/src/main/java/c/i/a/c/i2/z.java index 701320745f..482a8b948f 100644 --- a/app/src/main/java/c/i/a/c/i2/z.java +++ b/app/src/main/java/c/i/a/c/i2/z.java @@ -8,7 +8,7 @@ public class z { public final int b; /* renamed from: c reason: collision with root package name */ - public final ArrayList f922c = new ArrayList<>(); + public final ArrayList f923c = new ArrayList<>(); public final b[] d = new b[5]; public int e = -1; public int f; @@ -21,7 +21,7 @@ public class z { public int b; /* renamed from: c reason: collision with root package name */ - public float f923c; + public float f924c; public b() { } @@ -37,7 +37,7 @@ public class z { public void a(int i, float f) { b bVar; if (this.e != 1) { - Collections.sort(this.f922c, c.i); + Collections.sort(this.f923c, c.i); this.e = 1; } int i2 = this.h; @@ -53,19 +53,19 @@ public class z { this.f = i4 + 1; bVar.a = i4; bVar.b = i; - bVar.f923c = f; - this.f922c.add(bVar); + bVar.f924c = f; + this.f923c.add(bVar); this.g += i; while (true) { int i5 = this.g; int i6 = this.b; if (i5 > i6) { int i7 = i5 - i6; - b bVar2 = this.f922c.get(0); + b bVar2 = this.f923c.get(0); int i8 = bVar2.b; if (i8 <= i7) { this.g -= i8; - this.f922c.remove(0); + this.f923c.remove(0); int i9 = this.h; if (i9 < 5) { b[] bVarArr2 = this.d; @@ -84,22 +84,22 @@ public class z { public float b(float f) { if (this.e != 0) { - Collections.sort(this.f922c, d.i); + Collections.sort(this.f923c, d.i); this.e = 0; } float f2 = f * ((float) this.g); int i = 0; - for (int i2 = 0; i2 < this.f922c.size(); i2++) { - b bVar = this.f922c.get(i2); + for (int i2 = 0; i2 < this.f923c.size(); i2++) { + b bVar = this.f923c.get(i2); i += bVar.b; if (((float) i) >= f2) { - return bVar.f923c; + return bVar.f924c; } } - if (this.f922c.isEmpty()) { + if (this.f923c.isEmpty()) { return Float.NaN; } - ArrayList arrayList = this.f922c; - return arrayList.get(arrayList.size() - 1).f923c; + ArrayList arrayList = this.f923c; + return arrayList.get(arrayList.size() - 1).f924c; } } diff --git a/app/src/main/java/c/i/a/c/j0.java b/app/src/main/java/c/i/a/c/j0.java index 3bc468ebdb..a728e77c00 100644 --- a/app/src/main/java/c/i/a/c/j0.java +++ b/app/src/main/java/c/i/a/c/j0.java @@ -7,16 +7,16 @@ public class j0 implements i0 { public long b; /* renamed from: c reason: collision with root package name */ - public long f924c; + public long f925c; public j0() { - this.f924c = 15000; + this.f925c = 15000; this.b = 5000; this.a = new r1.c(); } public j0(long j, long j2) { - this.f924c = j; + this.f925c = j; this.b = j2; this.a = new r1.c(); } @@ -34,7 +34,7 @@ public class j0 implements i0 { if (!e() || !g1Var.k()) { return true; } - g(g1Var, this.f924c); + g(g1Var, this.f925c); return true; } @@ -82,7 +82,7 @@ public class j0 implements i0 { } public boolean e() { - return this.f924c > 0; + return this.f925c > 0; } public boolean f() { diff --git a/app/src/main/java/c/i/a/c/j2/j.java b/app/src/main/java/c/i/a/c/j2/j.java index d9295bfda6..78d6b3c8cf 100644 --- a/app/src/main/java/c/i/a/c/j2/j.java +++ b/app/src/main/java/c/i/a/c/j2/j.java @@ -13,7 +13,7 @@ public final class j { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f925c; + public final int f926c; public final int d; public final float e; @Nullable @@ -22,7 +22,7 @@ public final class j { public j(List list, int i, int i2, int i3, float f, @Nullable String str) { this.a = list; this.b = i; - this.f925c = i2; + this.f926c = i2; this.d = i3; this.e = f; this.f = str; @@ -63,7 +63,7 @@ public final class j { int i5 = d.e; int i6 = d.f; float f2 = d.g; - str = h.a(d.a, d.b, d.f918c); + str = h.a(d.a, d.b, d.f919c); i2 = i5; i = i6; f = f2; diff --git a/app/src/main/java/c/i/a/c/j2/l.java b/app/src/main/java/c/i/a/c/j2/l.java index 8b5167100b..1afc6e088b 100644 --- a/app/src/main/java/c/i/a/c/j2/l.java +++ b/app/src/main/java/c/i/a/c/j2/l.java @@ -7,7 +7,7 @@ public final class l { public a b = new a(); /* renamed from: c reason: collision with root package name */ - public boolean f926c; + public boolean f927c; public long d = -9223372036854775807L; public int e; @@ -17,7 +17,7 @@ public final class l { public long b; /* renamed from: c reason: collision with root package name */ - public long f927c; + public long f928c; public long d; public long e; public long f; @@ -38,7 +38,7 @@ public final class l { this.f = j3; this.e = 1; } else { - long j4 = j - this.f927c; + long j4 = j - this.f928c; int i = (int) (j2 % 15); if (Math.abs(j4 - this.b) <= 1000000) { this.e++; @@ -57,7 +57,7 @@ public final class l { } } this.d++; - this.f927c = j; + this.f928c = j; } public void c() { diff --git a/app/src/main/java/c/i/a/c/j2/m.java b/app/src/main/java/c/i/a/c/j2/m.java index 5a1d7185d7..5926c59b50 100644 --- a/app/src/main/java/c/i/a/c/j2/m.java +++ b/app/src/main/java/c/i/a/c/j2/m.java @@ -16,12 +16,12 @@ public final class m { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f928c; + public final String f929c; public m(@Nullable List list, int i, @Nullable String str) { this.a = list; this.b = i; - this.f928c = str; + this.f929c = str; } public static m a(w wVar) throws ParserException { diff --git a/app/src/main/java/c/i/a/c/j2/n.java b/app/src/main/java/c/i/a/c/j2/n.java index bc156bd256..50a164aca7 100644 --- a/app/src/main/java/c/i/a/c/j2/n.java +++ b/app/src/main/java/c/i/a/c/j2/n.java @@ -18,6 +18,7 @@ import androidx.annotation.CallSuper; import androidx.annotation.Nullable; import androidx.annotation.RequiresApi; import androidx.recyclerview.widget.RecyclerView; +import c.c.a.a0.d; import c.i.a.c.b2.g; import c.i.a.c.b2.r; import c.i.a.c.b2.s; @@ -28,9 +29,7 @@ import c.i.a.c.j2.t; import c.i.a.c.j2.w; import c.i.a.c.m1; import c.i.a.c.s0; -import c.i.a.c.x1.d; import c.i.a.c.x1.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.widgets.chat.input.MentionUtilsKt; import com.google.android.exoplayer2.ExoPlaybackException; import com.google.android.exoplayer2.Format; @@ -63,7 +62,7 @@ public class n extends MediaCodecRenderer { public final w.a U0; public final long V0; public final int W0; - public final boolean X0 = "NVIDIA".equals(f0.f911c); + public final boolean X0 = "NVIDIA".equals(f0.f912c); public a Y0; public boolean Z0; public boolean a1; @@ -101,12 +100,12 @@ public class n extends MediaCodecRenderer { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f929c; + public final int f930c; public a(int i, int i2, int i3) { this.a = i; this.b = i2; - this.f929c = i3; + this.f930c = i3; } } @@ -118,7 +117,7 @@ public class n extends MediaCodecRenderer { public b(r rVar) { int i = f0.a; Looper myLooper = Looper.myLooper(); - AnimatableValueParser.H(myLooper); + d.H(myLooper); Handler handler = new Handler(myLooper, this); this.i = handler; rVar.e(this, handler); @@ -1473,7 +1472,7 @@ public class n extends MediaCodecRenderer { case 0: case 4: String str2 = f0.d; - if (!"BRAVIA 4K 2015".equals(str2) && (!"Amazon".equals(f0.f911c) || (!"KFSOWI".equals(str2) && (!"AFTS".equals(str2) || !sVar.f)))) { + if (!"BRAVIA 4K 2015".equals(str2) && (!"Amazon".equals(f0.f912c) || (!"KFSOWI".equals(str2) && (!"AFTS".equals(str2) || !sVar.f)))) { i3 = f0.f(i2, 16) * f0.f(i, 16) * 16 * 16; i4 = 2; break; @@ -1519,7 +1518,7 @@ public class n extends MediaCodecRenderer { public static int I0(s sVar, Format format) { if (format.u == -1) { - return G0(sVar, format.t, format.f2276y, format.f2277z); + return G0(sVar, format.t, format.f2279y, format.f2280z); } int size = format.v.size(); int i = 0; @@ -1544,7 +1543,7 @@ public class n extends MediaCodecRenderer { if (aVar != null) { aVar.a.unregisterDisplayListener(aVar); } - t.b bVar = tVar.f931c; + t.b bVar = tVar.f932c; Objects.requireNonNull(bVar); bVar.k.sendEmptyMessage(2); } @@ -1552,7 +1551,7 @@ public class n extends MediaCodecRenderer { try { super.B(); w.a aVar2 = this.U0; - d dVar = this.L0; + c.i.a.c.x1.d dVar = this.L0; Objects.requireNonNull(aVar2); synchronized (dVar) { } @@ -1562,7 +1561,7 @@ public class n extends MediaCodecRenderer { } } catch (Throwable th) { w.a aVar3 = this.U0; - d dVar2 = this.L0; + c.i.a.c.x1.d dVar2 = this.L0; Objects.requireNonNull(aVar3); synchronized (dVar2) { Handler handler2 = aVar3.a; @@ -1576,24 +1575,24 @@ public class n extends MediaCodecRenderer { @Override // c.i.a.c.g0 public void C(boolean z2, boolean z3) throws ExoPlaybackException { - this.L0 = new d(); + this.L0 = new c.i.a.c.x1.d(); m1 m1Var = this.k; Objects.requireNonNull(m1Var); boolean z4 = m1Var.b; - AnimatableValueParser.D(!z4 || this.B1 != 0); + d.D(!z4 || this.B1 != 0); if (this.A1 != z4) { this.A1 = z4; n0(); } w.a aVar = this.U0; - d dVar = this.L0; + c.i.a.c.x1.d dVar = this.L0; Handler handler = aVar.a; if (handler != null) { handler.post(new c(aVar, dVar)); } t tVar = this.T0; if (tVar.b != null) { - t.b bVar = tVar.f931c; + t.b bVar = tVar.f932c; Objects.requireNonNull(bVar); bVar.k.sendEmptyMessage(1); t.a aVar2 = tVar.d; @@ -1711,12 +1710,12 @@ public class n extends MediaCodecRenderer { public e K(s sVar, Format format, Format format2) { e c2 = sVar.c(format, format2); int i = c2.e; - int i2 = format2.f2276y; + int i2 = format2.f2279y; a aVar = this.Y0; - if (i2 > aVar.a || format2.f2277z > aVar.b) { + if (i2 > aVar.a || format2.f2280z > aVar.b) { i |= 256; } - if (I0(sVar, format2) > this.Y0.f929c) { + if (I0(sVar, format2) > this.Y0.f930c) { i |= 64; } return new e(sVar.a, format, format2, i != 0 ? 0 : c2.d, i); @@ -1766,14 +1765,14 @@ public class n extends MediaCodecRenderer { MediaCodecInfo.VideoCapabilities videoCapabilities; Format[] formatArr; int G0; - String str2 = sVar.f777c; + String str2 = sVar.f778c; Format[] formatArr2 = this.o; Objects.requireNonNull(formatArr2); - int i3 = format.f2276y; - int i4 = format.f2277z; + int i3 = format.f2279y; + int i4 = format.f2280z; int I0 = I0(sVar, format); if (formatArr2.length == 1) { - if (!(I0 == -1 || (G0 = G0(sVar, format.t, format.f2276y, format.f2277z)) == -1)) { + if (!(I0 == -1 || (G0 = G0(sVar, format.t, format.f2279y, format.f2280z)) == -1)) { I0 = Math.min((int) (((float) I0) * 1.5f), G0); } aVar = new a(i3, i4, I0); @@ -1790,11 +1789,11 @@ public class n extends MediaCodecRenderer { format2 = a2.a(); } if (sVar.c(format, format2).d != 0) { - int i6 = format2.f2276y; + int i6 = format2.f2279y; formatArr = formatArr2; - z4 |= i6 == -1 || format2.f2277z == -1; + z4 |= i6 == -1 || format2.f2280z == -1; int max = Math.max(i3, i6); - int max2 = Math.max(i4, format2.f2277z); + int max2 = Math.max(i4, format2.f2280z); I0 = Math.max(I0, I0(sVar, format2)); i4 = max2; i3 = max; @@ -1806,8 +1805,8 @@ public class n extends MediaCodecRenderer { } if (z4) { Log.w("MediaCodecVideoRenderer", "Resolutions unknown. Codec max resolution: " + i3 + "x" + i4); - int i7 = format.f2277z; - int i8 = format.f2276y; + int i7 = format.f2280z; + int i8 = format.f2279y; boolean z5 = i7 > i8; int i9 = z5 ? i7 : i8; if (z5) { @@ -1864,20 +1863,20 @@ public class n extends MediaCodecRenderer { } mediaFormat = new MediaFormat(); mediaFormat.setString("mime", str); - mediaFormat.setInteger("width", format.f2276y); - mediaFormat.setInteger("height", format.f2277z); - AnimatableValueParser.z2(mediaFormat, format.v); + mediaFormat.setInteger("width", format.f2279y); + mediaFormat.setInteger("height", format.f2280z); + d.W1(mediaFormat, format.v); f2 = format.A; if (f2 != -1.0f) { } - AnimatableValueParser.M1(mediaFormat, "rotation-degrees", format.B); + d.j1(mediaFormat, "rotation-degrees", format.B); colorInfo = format.F; if (colorInfo != null) { } - AnimatableValueParser.M1(mediaFormat, "profile", ((Integer) c2.first).intValue()); + d.j1(mediaFormat, "profile", ((Integer) c2.first).intValue()); mediaFormat.setInteger("max-width", aVar.a); mediaFormat.setInteger("max-height", aVar.b); - AnimatableValueParser.M1(mediaFormat, "max-input-size", aVar.f929c); + d.j1(mediaFormat, "max-input-size", aVar.f930c); i2 = f0.a; if (i2 >= 23) { } @@ -1916,30 +1915,30 @@ public class n extends MediaCodecRenderer { i = !this.A1 ? this.B1 : 0; mediaFormat = new MediaFormat(); mediaFormat.setString("mime", str); - mediaFormat.setInteger("width", format.f2276y); - mediaFormat.setInteger("height", format.f2277z); - AnimatableValueParser.z2(mediaFormat, format.v); + mediaFormat.setInteger("width", format.f2279y); + mediaFormat.setInteger("height", format.f2280z); + d.W1(mediaFormat, format.v); f2 = format.A; if (f2 != -1.0f) { mediaFormat.setFloat("frame-rate", f2); } - AnimatableValueParser.M1(mediaFormat, "rotation-degrees", format.B); + d.j1(mediaFormat, "rotation-degrees", format.B); colorInfo = format.F; if (colorInfo != null) { - AnimatableValueParser.M1(mediaFormat, "color-transfer", colorInfo.k); - AnimatableValueParser.M1(mediaFormat, "color-standard", colorInfo.i); - AnimatableValueParser.M1(mediaFormat, "color-range", colorInfo.j); + d.j1(mediaFormat, "color-transfer", colorInfo.k); + d.j1(mediaFormat, "color-standard", colorInfo.i); + d.j1(mediaFormat, "color-range", colorInfo.j); byte[] bArr = colorInfo.l; if (bArr != null) { mediaFormat.setByteBuffer("hdr-static-info", ByteBuffer.wrap(bArr)); } } if ("video/dolby-vision".equals(format.t) && (c2 = MediaCodecUtil.c(format)) != null) { - AnimatableValueParser.M1(mediaFormat, "profile", ((Integer) c2.first).intValue()); + d.j1(mediaFormat, "profile", ((Integer) c2.first).intValue()); } mediaFormat.setInteger("max-width", aVar.a); mediaFormat.setInteger("max-height", aVar.b); - AnimatableValueParser.M1(mediaFormat, "max-input-size", aVar.f929c); + d.j1(mediaFormat, "max-input-size", aVar.f930c); i2 = f0.a; if (i2 >= 23) { mediaFormat.setInteger("priority", 0); @@ -2033,9 +2032,9 @@ public class n extends MediaCodecRenderer { public void Q0(r rVar, int i) { M0(); - AnimatableValueParser.g("releaseOutputBuffer"); + d.g("releaseOutputBuffer"); rVar.releaseOutputBuffer(i, true); - AnimatableValueParser.f0(); + d.f0(); this.p1 = SystemClock.elapsedRealtime() * 1000; this.L0.e++; this.m1 = 0; @@ -2045,9 +2044,9 @@ public class n extends MediaCodecRenderer { @RequiresApi(21) public void R0(r rVar, int i, long j) { M0(); - AnimatableValueParser.g("releaseOutputBuffer"); + d.g("releaseOutputBuffer"); rVar.b(i, j); - AnimatableValueParser.f0(); + d.f0(); this.p1 = SystemClock.elapsedRealtime() * 1000; this.L0.e++; this.m1 = 0; @@ -2063,9 +2062,9 @@ public class n extends MediaCodecRenderer { } public void U0(r rVar, int i) { - AnimatableValueParser.g("skipVideoBuffer"); + d.g("skipVideoBuffer"); rVar.releaseOutputBuffer(i, false); - AnimatableValueParser.f0(); + d.f0(); this.L0.f++; } @@ -2075,7 +2074,7 @@ public class n extends MediaCodecRenderer { } public void V0(int i) { - d dVar = this.L0; + c.i.a.c.x1.d dVar = this.L0; dVar.g += i; this.l1 += i; int i2 = this.m1 + i; @@ -2103,7 +2102,7 @@ public class n extends MediaCodecRenderer { } public void W0(long j) { - d dVar = this.L0; + c.i.a.c.x1.d dVar = this.L0; dVar.j += j; dVar.k++; this.q1 += j; @@ -2216,8 +2215,8 @@ public class n extends MediaCodecRenderer { rVar.f(this.e1); } if (this.A1) { - this.s1 = format.f2276y; - this.t1 = format.f2277z; + this.s1 = format.f2279y; + this.t1 = format.f2280z; } else { Objects.requireNonNull(mediaFormat); boolean z2 = mediaFormat.containsKey("crop-right") && mediaFormat.containsKey("crop-left") && mediaFormat.containsKey("crop-bottom") && mediaFormat.containsKey("crop-top"); @@ -2242,7 +2241,7 @@ public class n extends MediaCodecRenderer { l lVar = tVar.a; lVar.a.c(); lVar.b.c(); - lVar.f926c = false; + lVar.f927c = false; lVar.d = -9223372036854775807L; lVar.e = 0; tVar.e(); @@ -2311,22 +2310,22 @@ public class n extends MediaCodecRenderer { long j8 = j3 * 1000; lVar.a.b(j8); if (lVar.a.a()) { - lVar.f926c = false; + lVar.f927c = false; } else if (lVar.d != -9223372036854775807L) { - if (lVar.f926c) { + if (lVar.f927c) { l.a aVar = lVar.b; long j9 = aVar.d; } lVar.b.c(); lVar.b.b(lVar.d); - lVar.f926c = true; + lVar.f927c = true; lVar.b.b(j8); } - if (lVar.f926c && lVar.b.a()) { + if (lVar.f927c && lVar.b.a()) { l.a aVar2 = lVar.a; lVar.a = lVar.b; lVar.b = aVar2; - lVar.f926c = false; + lVar.f927c = false; } lVar.d = j8; lVar.e = lVar.a.a() ? 0 : lVar.e + 1; @@ -2395,7 +2394,7 @@ public class n extends MediaCodecRenderer { } tVar2.n = tVar2.m; tVar2.o = j14; - t.b bVar = tVar2.f931c; + t.b bVar = tVar2.f932c; if (!(bVar == null || tVar2.k == -9223372036854775807L)) { long j17 = bVar.j; if (j17 != -9223372036854775807L) { @@ -2422,7 +2421,7 @@ public class n extends MediaCodecRenderer { if (c2 == 0) { z6 = false; } else { - d dVar = this.L0; + c.i.a.c.x1.d dVar = this.L0; dVar.i++; int i4 = this.n1 + c2; if (z9) { @@ -2444,9 +2443,9 @@ public class n extends MediaCodecRenderer { U0(rVar, i); z5 = true; } else { - AnimatableValueParser.g("dropVideoBuffer"); + d.g("dropVideoBuffer"); rVar.releaseOutputBuffer(i, false); - AnimatableValueParser.f0(); + d.f0(); z5 = true; V0(1); } diff --git a/app/src/main/java/c/i/a/c/j2/o.java b/app/src/main/java/c/i/a/c/j2/o.java index 19e2721a13..f759b9ce32 100644 --- a/app/src/main/java/c/i/a/c/j2/o.java +++ b/app/src/main/java/c/i/a/c/j2/o.java @@ -3,7 +3,7 @@ package c.i.a.c.j2; import android.opengl.GLES20; import android.opengl.GLSurfaceView; import androidx.work.Data; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.nio.Buffer; import java.nio.FloatBuffer; import java.util.Objects; @@ -16,7 +16,7 @@ public class o implements GLSurfaceView.Renderer, r { public static final float[] j = {1.164f, 1.164f, 1.164f, 0.0f, -0.213f, 2.112f, 1.793f, -0.533f, 0.0f}; public static final float[] k = {1.168f, 1.168f, 1.168f, 0.0f, -0.188f, 2.148f, 1.683f, -0.652f, 0.0f}; public static final String[] l = {"y_tex", "u_tex", "v_tex"}; - public static final FloatBuffer m = AnimatableValueParser.O(new float[]{-1.0f, 1.0f, -1.0f, -1.0f, 1.0f, 1.0f, 1.0f, -1.0f}); + public static final FloatBuffer m = d.O(new float[]{-1.0f, 1.0f, -1.0f, -1.0f, 1.0f, 1.0f, 1.0f, -1.0f}); public final int[] n = new int[3]; public final AtomicReference o = new AtomicReference<>(); public FloatBuffer[] p = new FloatBuffer[3]; @@ -24,7 +24,7 @@ public class o implements GLSurfaceView.Renderer, r { public int[] r = new int[3]; /* renamed from: s reason: collision with root package name */ - public int f930s; + public int f931s; public int[] t = new int[3]; public int[] u = new int[3]; public q v; @@ -50,7 +50,7 @@ public class o implements GLSurfaceView.Renderer, r { this.v = andSet; } Objects.requireNonNull(this.v); - GLES20.glUniformMatrix3fv(this.f930s, 1, false, j, 0); + GLES20.glUniformMatrix3fv(this.f931s, 1, false, j, 0); Objects.requireNonNull(null); throw null; } @@ -63,7 +63,7 @@ public class o implements GLSurfaceView.Renderer, r { @Override // android.opengl.GLSurfaceView.Renderer public void onSurfaceCreated(GL10 gl10, EGLConfig eGLConfig) { - int K = AnimatableValueParser.K("varying vec2 interp_tc_y;\nvarying vec2 interp_tc_u;\nvarying vec2 interp_tc_v;\nattribute vec4 in_pos;\nattribute vec2 in_tc_y;\nattribute vec2 in_tc_u;\nattribute vec2 in_tc_v;\nvoid main() {\n gl_Position = in_pos;\n interp_tc_y = in_tc_y;\n interp_tc_u = in_tc_u;\n interp_tc_v = in_tc_v;\n}\n", "precision mediump float;\nvarying vec2 interp_tc_y;\nvarying vec2 interp_tc_u;\nvarying vec2 interp_tc_v;\nuniform sampler2D y_tex;\nuniform sampler2D u_tex;\nuniform sampler2D v_tex;\nuniform mat3 mColorConversion;\nvoid main() {\n vec3 yuv;\n yuv.x = texture2D(y_tex, interp_tc_y).r - 0.0625;\n yuv.y = texture2D(u_tex, interp_tc_u).r - 0.5;\n yuv.z = texture2D(v_tex, interp_tc_v).r - 0.5;\n gl_FragColor = vec4(mColorConversion * yuv, 1.0);\n}\n"); + int K = d.K("varying vec2 interp_tc_y;\nvarying vec2 interp_tc_u;\nvarying vec2 interp_tc_v;\nattribute vec4 in_pos;\nattribute vec2 in_tc_y;\nattribute vec2 in_tc_u;\nattribute vec2 in_tc_v;\nvoid main() {\n gl_Position = in_pos;\n interp_tc_y = in_tc_y;\n interp_tc_u = in_tc_u;\n interp_tc_v = in_tc_v;\n}\n", "precision mediump float;\nvarying vec2 interp_tc_y;\nvarying vec2 interp_tc_u;\nvarying vec2 interp_tc_v;\nuniform sampler2D y_tex;\nuniform sampler2D u_tex;\nuniform sampler2D v_tex;\nuniform mat3 mColorConversion;\nvoid main() {\n vec3 yuv;\n yuv.x = texture2D(y_tex, interp_tc_y).r - 0.0625;\n yuv.y = texture2D(u_tex, interp_tc_u).r - 0.5;\n yuv.z = texture2D(v_tex, interp_tc_v).r - 0.5;\n gl_FragColor = vec4(mColorConversion * yuv, 1.0);\n}\n"); this.q = K; GLES20.glUseProgram(K); int glGetAttribLocation = GLES20.glGetAttribLocation(this.q, "in_pos"); @@ -75,9 +75,9 @@ public class o implements GLSurfaceView.Renderer, r { GLES20.glEnableVertexAttribArray(this.r[1]); this.r[2] = GLES20.glGetAttribLocation(this.q, "in_tc_v"); GLES20.glEnableVertexAttribArray(this.r[2]); - AnimatableValueParser.r(); - this.f930s = GLES20.glGetUniformLocation(this.q, "mColorConversion"); - AnimatableValueParser.r(); + d.r(); + this.f931s = GLES20.glGetUniformLocation(this.q, "mColorConversion"); + d.r(); GLES20.glGenTextures(3, this.n, 0); for (int i2 = 0; i2 < 3; i2++) { GLES20.glUniform1i(GLES20.glGetUniformLocation(this.q, l[i2]), i2); @@ -88,7 +88,7 @@ public class o implements GLSurfaceView.Renderer, r { GLES20.glTexParameterf(3553, 10242, 33071.0f); GLES20.glTexParameterf(3553, 10243, 33071.0f); } - AnimatableValueParser.r(); - AnimatableValueParser.r(); + d.r(); + d.r(); } } diff --git a/app/src/main/java/c/i/a/c/j2/t.java b/app/src/main/java/c/i/a/c/j2/t.java index a4758382aa..0774084be4 100644 --- a/app/src/main/java/c/i/a/c/j2/t.java +++ b/app/src/main/java/c/i/a/c/j2/t.java @@ -25,7 +25,7 @@ public final class t { @Nullable /* renamed from: c reason: collision with root package name */ - public final b f931c; + public final b f932c; @Nullable public final a d; public boolean e; @@ -144,10 +144,10 @@ public final class t { } } this.d = aVar; - this.f931c = b.i; + this.f932c = b.i; } else { this.d = null; - this.f931c = null; + this.f932c = null; } this.k = -9223372036854775807L; this.l = -9223372036854775807L; diff --git a/app/src/main/java/c/i/a/c/j2/x/b.java b/app/src/main/java/c/i/a/c/j2/x/b.java index 289ca7b7ea..16a7e59e31 100644 --- a/app/src/main/java/c/i/a/c/j2/x/b.java +++ b/app/src/main/java/c/i/a/c/j2/x/b.java @@ -17,7 +17,7 @@ public final class b extends g0 { public a w; /* renamed from: x reason: collision with root package name */ - public long f932x; + public long f933x; public b() { super(6); @@ -33,7 +33,7 @@ public final class b extends g0 { @Override // c.i.a.c.g0 public void D(long j, boolean z2) { - this.f932x = Long.MIN_VALUE; + this.f933x = Long.MIN_VALUE; a aVar = this.w; if (aVar != null) { aVar.b(); @@ -68,11 +68,11 @@ public final class b extends g0 { @Override // c.i.a.c.k1 public void q(long j, long j2) { float[] fArr; - while (!i() && this.f932x < 100000 + j) { + while (!i() && this.f933x < 100000 + j) { this.t.p(); if (I(A(), this.t, false) == -4 && !this.t.n()) { DecoderInputBuffer decoderInputBuffer = this.t; - this.f932x = decoderInputBuffer.m; + this.f933x = decoderInputBuffer.m; if (this.w != null && !decoderInputBuffer.m()) { this.t.s(); ByteBuffer byteBuffer = this.t.k; @@ -89,7 +89,7 @@ public final class b extends g0 { fArr = fArr2; } if (fArr != null) { - this.w.a(this.f932x - this.v, fArr); + this.w.a(this.f933x - this.v, fArr); } } } else { diff --git a/app/src/main/java/c/i/a/c/j2/x/c.java b/app/src/main/java/c/i/a/c/j2/x/c.java index c774ac633f..43b83d6008 100644 --- a/app/src/main/java/c/i/a/c/j2/x/c.java +++ b/app/src/main/java/c/i/a/c/j2/x/c.java @@ -8,7 +8,7 @@ public final class c { public final float[] b = new float[16]; /* renamed from: c reason: collision with root package name */ - public final d0 f933c = new d0<>(); + public final d0 f934c = new d0<>(); public boolean d; public static void a(float[] fArr, float[] fArr2) { diff --git a/app/src/main/java/c/i/a/c/j2/x/d.java b/app/src/main/java/c/i/a/c/j2/x/d.java index fc3d5a9112..de93fd942d 100644 --- a/app/src/main/java/c/i/a/c/j2/x/d.java +++ b/app/src/main/java/c/i/a/c/j2/x/d.java @@ -1,13 +1,11 @@ package c.i.a.c.j2.x; - -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: Projection */ public final class d { public final a a; public final a b; /* renamed from: c reason: collision with root package name */ - public final int f934c; + public final int f935c; public final boolean d; /* compiled from: Projection */ @@ -25,13 +23,13 @@ public final class d { public final int b; /* renamed from: c reason: collision with root package name */ - public final float[] f935c; + public final float[] f936c; public final float[] d; public b(int i, float[] fArr, float[] fArr2, int i2) { this.a = i; - AnimatableValueParser.k(((long) fArr.length) * 2 == ((long) fArr2.length) * 3); - this.f935c = fArr; + c.c.a.a0.d.k(((long) fArr.length) * 2 == ((long) fArr2.length) * 3); + this.f936c = fArr; this.d = fArr2; this.b = i2; } @@ -40,14 +38,14 @@ public final class d { public d(a aVar, int i) { this.a = aVar; this.b = aVar; - this.f934c = i; + this.f935c = i; this.d = aVar == aVar; } public d(a aVar, a aVar2, int i) { this.a = aVar; this.b = aVar2; - this.f934c = i; + this.f935c = i; this.d = aVar == aVar2; } } diff --git a/app/src/main/java/c/i/a/c/k0.java b/app/src/main/java/c/i/a/c/k0.java index 6444321410..0f245f9c4b 100644 --- a/app/src/main/java/c/i/a/c/k0.java +++ b/app/src/main/java/c/i/a/c/k0.java @@ -5,7 +5,7 @@ public final class k0 implements t0 { public final long b; /* renamed from: c reason: collision with root package name */ - public final float f936c; + public final float f937c; public long d = -9223372036854775807L; public long e = -9223372036854775807L; public long f; @@ -22,7 +22,7 @@ public final class k0 implements t0 { public k0(float f, float f2, long j, float f3, long j2, long j3, float f4, a aVar) { this.a = j2; this.b = j3; - this.f936c = f4; + this.f937c = f4; this.k = f; this.j = f2; this.l = 1.0f; diff --git a/app/src/main/java/c/i/a/c/l0.java b/app/src/main/java/c/i/a/c/l0.java index ff9f71fcee..33737383a3 100644 --- a/app/src/main/java/c/i/a/c/l0.java +++ b/app/src/main/java/c/i/a/c/l0.java @@ -1,10 +1,10 @@ package c.i.a.c; import android.util.Log; +import c.c.a.a0.d; import c.i.a.c.f2.g; import c.i.a.c.h2.m; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.source.TrackGroupArray; /* compiled from: DefaultLoadControl */ public class l0 implements u0 { @@ -12,7 +12,7 @@ public class l0 implements u0 { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f937c; + public final long f938c; public final long d; public final long e; public final int f; @@ -31,7 +31,7 @@ public class l0 implements u0 { j(i6, 0, "backBufferDurationMs", "0"); this.a = mVar; this.b = h0.a((long) i); - this.f937c = h0.a((long) i2); + this.f938c = h0.a((long) i2); this.d = h0.a((long) i3); this.e = h0.a((long) i4); this.f = i5; @@ -43,7 +43,7 @@ public class l0 implements u0 { public static void j(int i, int i2, String str, String str2) { boolean z2 = i >= i2; - AnimatableValueParser.n(z2, str + " cannot be less than " + str2); + d.n(z2, str + " cannot be less than " + str2); } @Override // c.i.a.c.u0 @@ -138,7 +138,7 @@ public class l0 implements u0 { boolean z3 = i >= this.j; long j3 = this.b; if (f > 1.0f) { - j3 = Math.min(f0.p(j3, f), this.f937c); + j3 = Math.min(f0.p(j3, f), this.f938c); } if (j2 < Math.max(j3, 500000L)) { if (!this.g && z3) { @@ -148,7 +148,7 @@ public class l0 implements u0 { if (!z2 && j2 < 500000) { Log.w("DefaultLoadControl", "Target buffer size reached with less than 500ms of buffered media data."); } - } else if (j2 >= this.f937c || z3) { + } else if (j2 >= this.f938c || z3) { this.k = false; } return this.k; diff --git a/app/src/main/java/c/i/a/c/o0.java b/app/src/main/java/c/i/a/c/o0.java index 60c45466cb..92e4f606ee 100644 --- a/app/src/main/java/c/i/a/c/o0.java +++ b/app/src/main/java/c/i/a/c/o0.java @@ -25,7 +25,6 @@ import c.i.a.c.u1.b1; import c.i.a.c.u1.c1; import c.i.a.c.u1.d1; import c.i.b.b.u; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ExoPlaybackException; import com.google.android.exoplayer2.IllegalSeekPositionException; import com.google.android.exoplayer2.metadata.Metadata; @@ -41,7 +40,7 @@ public final class o0 extends f0 implements g1 { public final m b; /* renamed from: c reason: collision with root package name */ - public final k1[] f938c; + public final k1[] f939c; public final l d; public final c0 e; public final q0.e f; @@ -60,20 +59,20 @@ public final class o0 extends f0 implements g1 { public boolean r; /* renamed from: s reason: collision with root package name */ - public int f939s; + public int f940s; public boolean t; public int u; public int v; public h0 w; /* renamed from: x reason: collision with root package name */ - public c1 f940x; + public c1 f941x; /* renamed from: y reason: collision with root package name */ - public int f941y; + public int f942y; /* renamed from: z reason: collision with root package name */ - public long f942z; + public long f943z; /* compiled from: ExoPlayerImpl */ public static final class a implements a1 { @@ -98,16 +97,16 @@ public final class o0 extends f0 implements g1 { @SuppressLint({"HandlerLeak"}) public o0(k1[] k1VarArr, l lVar, a0 a0Var, u0 u0Var, d dVar, @Nullable c1 c1Var, boolean z2, o1 o1Var, t0 t0Var, long j, boolean z3, g gVar, Looper looper, @Nullable g1 g1Var) { - StringBuilder P = c.d.b.a.a.P("Init "); - P.append(Integer.toHexString(System.identityHashCode(this))); - P.append(" ["); - P.append("ExoPlayerLib/2.13.3"); - P.append("] ["); - P.append(f0.e); - P.append("]"); - Log.i("ExoPlayerImpl", P.toString()); - AnimatableValueParser.D(k1VarArr.length > 0); - this.f938c = k1VarArr; + StringBuilder O = c.d.b.a.a.O("Init "); + O.append(Integer.toHexString(System.identityHashCode(this))); + O.append(" ["); + O.append("ExoPlayerLib/2.13.3"); + O.append("] ["); + O.append(f0.e); + O.append("]"); + Log.i("ExoPlayerImpl", O.toString()); + c.c.a.a0.d.D(k1VarArr.length > 0); + this.f939c = k1VarArr; Objects.requireNonNull(lVar); this.d = lVar; this.l = a0Var; @@ -123,16 +122,16 @@ public final class o0 extends f0 implements g1 { m mVar = new m(new m1[k1VarArr.length], new c.i.a.c.f2.g[k1VarArr.length], null); this.b = mVar; this.i = new r1.b(); - this.f941y = -1; + this.f942y = -1; this.e = gVar.b(looper, null); o oVar = new o(this); this.f = oVar; - this.f940x = c1.i(mVar); + this.f941x = c1.i(mVar); if (c1Var != null) { - AnimatableValueParser.D(c1Var.o == null || c1Var.l.b.isEmpty()); + c.c.a.a0.d.D(c1Var.o == null || c1Var.l.b.isEmpty()); c1Var.o = g1Var; o oVar2 = c1Var.n; - c1Var.n = new o<>(oVar2.e, looper, oVar2.a, oVar2.f914c, new b1(c1Var, g1Var)); + c1Var.n = new o<>(oVar2.e, looper, oVar2.a, oVar2.f915c, new b1(c1Var, g1Var)); l(c1Var); dVar.f(new Handler(looper), c1Var); } @@ -145,7 +144,7 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public TrackGroupArray A() { - return this.f940x.h; + return this.f941x.h; } @Override // c.i.a.c.g1 @@ -156,10 +155,10 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public long C() { if (d()) { - c1 c1Var = this.f940x; - y.a aVar = c1Var.f780c; + c1 c1Var = this.f941x; + y.a aVar = c1Var.f781c; c1Var.b.h(aVar.a, this.i); - return h0.b(this.i.a(aVar.b, aVar.f817c)); + return h0.b(this.i.a(aVar.b, aVar.f818c)); } r1 D = D(); if (D.q()) { @@ -170,7 +169,7 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public r1 D() { - return this.f940x.b; + return this.f941x.b; } @Override // c.i.a.c.g1 @@ -185,43 +184,43 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public long G() { - if (this.f940x.b.q()) { - return this.f942z; + if (this.f941x.b.q()) { + return this.f943z; } - c1 c1Var = this.f940x; - if (c1Var.k.d != c1Var.f780c.d) { + c1 c1Var = this.f941x; + if (c1Var.k.d != c1Var.f781c.d) { return c1Var.b.n(o(), this.a).b(); } long j = c1Var.q; - if (this.f940x.k.a()) { - c1 c1Var2 = this.f940x; + if (this.f941x.k.a()) { + c1 c1Var2 = this.f941x; r1.b h = c1Var2.b.h(c1Var2.k.a, this.i); - long d = h.d(this.f940x.k.b); + long d = h.d(this.f941x.k.b); j = d == Long.MIN_VALUE ? h.d : d; } - return P(this.f940x.k, j); + return P(this.f941x.k, j); } @Override // c.i.a.c.g1 public k H() { - return new k(this.f940x.i.f871c); + return new k(this.f941x.i.f872c); } @Override // c.i.a.c.g1 public int I(int i) { - return this.f938c[i].x(); + return this.f939c[i].x(); } @Override // c.i.a.c.g1 public long J() { - if (this.f940x.b.q()) { - return this.f942z; + if (this.f941x.b.q()) { + return this.f943z; } - if (this.f940x.f780c.a()) { - return h0.b(this.f940x.f781s); + if (this.f941x.f781c.a()) { + return h0.b(this.f941x.f782s); } - c1 c1Var = this.f940x; - return P(c1Var.f780c, c1Var.f781s); + c1 c1Var = this.f941x; + return P(c1Var.f781c, c1Var.f782s); } @Override // c.i.a.c.g1 @@ -231,21 +230,21 @@ public final class o0 extends f0 implements g1 { } public final int L() { - if (this.f940x.b.q()) { - return this.f941y; + if (this.f941x.b.q()) { + return this.f942y; } - c1 c1Var = this.f940x; - return c1Var.b.h(c1Var.f780c.a, this.i).f959c; + c1 c1Var = this.f941x; + return c1Var.b.h(c1Var.f781c.a, this.i).f960c; } @Nullable public final Pair M(r1 r1Var, int i, long j) { if (r1Var.q()) { - this.f941y = i; + this.f942y = i; if (j == -9223372036854775807L) { j = 0; } - this.f942z = j; + this.f943z = j; return null; } if (i == -1 || i >= r1Var.p()) { @@ -258,32 +257,32 @@ public final class o0 extends f0 implements g1 { public final c1 O(c1 c1Var, r1 r1Var, @Nullable Pair pair) { List list; int i; - AnimatableValueParser.k(r1Var.q() || pair != null); + c.c.a.a0.d.k(r1Var.q() || pair != null); r1 r1Var2 = c1Var.b; c1 h = c1Var.h(r1Var); if (r1Var.q()) { y.a aVar = c1.a; y.a aVar2 = c1.a; - long a2 = h0.a(this.f942z); - long a3 = h0.a(this.f942z); + long a2 = h0.a(this.f943z); + long a3 = h0.a(this.f943z); TrackGroupArray trackGroupArray = TrackGroupArray.i; m mVar = this.b; c.i.b.b.a aVar3 = u.j; c1 a4 = h.b(aVar2, a2, a3, 0, trackGroupArray, mVar, c.i.b.b.q0.k).a(aVar2); - a4.q = a4.f781s; + a4.q = a4.f782s; return a4; } - Object obj = h.f780c.a; + Object obj = h.f781c.a; int i2 = f0.a; boolean z2 = !obj.equals(pair.first); - y.a aVar4 = z2 ? new y.a(pair.first) : h.f780c; + y.a aVar4 = z2 ? new y.a(pair.first) : h.f781c; long longValue = ((Long) pair.second).longValue(); long a5 = h0.a(s()); if (!r1Var2.q()) { a5 -= r1Var2.h(obj, this.i).e; } if (z2 || longValue < a5) { - AnimatableValueParser.D(!aVar4.a()); + c.c.a.a0.d.D(!aVar4.a()); TrackGroupArray trackGroupArray2 = z2 ? TrackGroupArray.i : h.h; m mVar2 = z2 ? this.b : h.i; if (z2) { @@ -297,19 +296,19 @@ public final class o0 extends f0 implements g1 { return a6; } else if (i == 0) { int b = r1Var.b(h.k.a); - if (b != -1 && r1Var.f(b, this.i).f959c == r1Var.h(aVar4.a, this.i).f959c) { + if (b != -1 && r1Var.f(b, this.i).f960c == r1Var.h(aVar4.a, this.i).f960c) { return h; } r1Var.h(aVar4.a, this.i); - long a7 = aVar4.a() ? this.i.a(aVar4.b, aVar4.f817c) : this.i.d; - c1 a8 = h.b(aVar4, h.f781s, h.f781s, a7 - h.f781s, h.h, h.i, h.j).a(aVar4); + long a7 = aVar4.a() ? this.i.a(aVar4.b, aVar4.f818c) : this.i.d; + c1 a8 = h.b(aVar4, h.f782s, h.f782s, a7 - h.f782s, h.h, h.i, h.j).a(aVar4); a8.q = a7; return a8; } else { - AnimatableValueParser.D(!aVar4.a()); + c.c.a.a0.d.D(!aVar4.a()); long max = Math.max(0L, h.r - (longValue - a5)); long j = h.q; - if (h.k.equals(h.f780c)) { + if (h.k.equals(h.f781c)) { j = longValue + max; } c1 b2 = h.b(aVar4, longValue, longValue, max, h.h, h.i, h.j); @@ -320,7 +319,7 @@ public final class o0 extends f0 implements g1 { public final long P(y.a aVar, long j) { long b = h0.b(j); - this.f940x.b.h(aVar.a, this.i); + this.f941x.b.h(aVar.a, this.i); return b + h0.b(this.i.e); } @@ -332,9 +331,9 @@ public final class o0 extends f0 implements g1 { } public void R(boolean z2, int i, int i2) { - c1 c1Var = this.f940x; + c1 c1Var = this.f941x; if (c1Var.l != z2 || c1Var.m != i) { - this.f939s++; + this.f940s++; c1 d = c1Var.d(z2, i); this.g.o.b(1, z2 ? 1 : 0, i).sendToTarget(); S(d, false, 4, 0, i2, false); @@ -344,8 +343,8 @@ public final class o0 extends f0 implements g1 { public final void S(c1 c1Var, boolean z2, int i, int i2, int i3, boolean z3) { Pair pair; int i4; - c1 c1Var2 = this.f940x; - this.f940x = c1Var; + c1 c1Var2 = this.f941x; + this.f941x = c1Var; boolean z4 = !c1Var2.b.equals(c1Var.b); r1 r1Var = c1Var2.b; r1 r1Var2 = c1Var.b; @@ -354,8 +353,8 @@ public final class o0 extends f0 implements g1 { } else if (r1Var2.q() != r1Var.q()) { pair = new Pair(Boolean.TRUE, 3); } else { - Object obj = r1Var.n(r1Var.h(c1Var2.f780c.a, this.i).f959c, this.a).f960c; - Object obj2 = r1Var2.n(r1Var2.h(c1Var.f780c.a, this.i).f959c, this.a).f960c; + Object obj = r1Var.n(r1Var.h(c1Var2.f781c.a, this.i).f960c, this.a).f961c; + Object obj2 = r1Var2.n(r1Var2.h(c1Var.f781c.a, this.i).f960c, this.a).f961c; int i5 = this.a.o; if (!obj.equals(obj2)) { if (z2 && i == 0) { @@ -369,7 +368,7 @@ public final class o0 extends f0 implements g1 { } pair = new Pair(Boolean.TRUE, Integer.valueOf(i4)); } else { - pair = (z2 && i == 0 && r1Var2.b(c1Var.f780c.a) == i5) ? new Pair(Boolean.TRUE, 0) : new Pair(Boolean.FALSE, -1); + pair = (z2 && i == 0 && r1Var2.b(c1Var.f781c.a) == i5) ? new Pair(Boolean.TRUE, 0) : new Pair(Boolean.FALSE, -1); } } boolean booleanValue = ((Boolean) pair.first).booleanValue(); @@ -381,7 +380,7 @@ public final class o0 extends f0 implements g1 { this.h.b(12, new d(i)); } if (booleanValue) { - this.h.b(1, new r(!c1Var.b.q() ? c1Var.b.n(c1Var.b.h(c1Var.f780c.a, this.i).f959c, this.a).e : null, intValue)); + this.h.b(1, new r(!c1Var.b.q() ? c1Var.b.n(c1Var.b.h(c1Var.f781c.a, this.i).f960c, this.a).e : null, intValue)); } ExoPlaybackException exoPlaybackException = c1Var2.f; ExoPlaybackException exoPlaybackException2 = c1Var.f; @@ -392,7 +391,7 @@ public final class o0 extends f0 implements g1 { m mVar2 = c1Var.i; if (mVar != mVar2) { this.d.a(mVar2.d); - this.h.b(2, new m(c1Var, new k(c1Var.i.f871c))); + this.h.b(2, new m(c1Var, new k(c1Var.i.f872c))); } if (!c1Var2.j.equals(c1Var.j)) { this.h.b(3, new j(c1Var)); @@ -432,52 +431,52 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public void a() { - c1 c1Var = this.f940x; + c1 c1Var = this.f941x; if (c1Var.e == 1) { c1 e = c1Var.e(null); c1 g = e.g(e.b.q() ? 4 : 2); - this.f939s++; + this.f940s++; this.g.o.a(0).sendToTarget(); S(g, false, 4, 1, 1, false); } } public h1 b(h1.b bVar) { - return new h1(this.g, bVar, this.f940x.b, o(), this.p, this.g.q); + return new h1(this.g, bVar, this.f941x.b, o(), this.p, this.g.q); } @Override // c.i.a.c.g1 public d1 c() { - return this.f940x.n; + return this.f941x.n; } @Override // c.i.a.c.g1 public boolean d() { - return this.f940x.f780c.a(); + return this.f941x.f781c.a(); } @Override // c.i.a.c.g1 public long e() { - return h0.b(this.f940x.r); + return h0.b(this.f941x.r); } @Override // c.i.a.c.g1 public void f(int i, long j) { - r1 r1Var = this.f940x.b; + r1 r1Var = this.f941x.b; if (i < 0 || (!r1Var.q() && i >= r1Var.p())) { throw new IllegalSeekPositionException(r1Var, i, j); } int i2 = 1; - this.f939s++; + this.f940s++; if (d()) { Log.w("ExoPlayerImpl", "seekTo ignored because an ad is playing"); - q0.d dVar = new q0.d(this.f940x); + q0.d dVar = new q0.d(this.f941x); dVar.a(1); o0 o0Var = ((o) this.f).a; o0Var.e.a.post(new t(o0Var, dVar)); return; } - c1 c1Var = this.f940x; + c1 c1Var = this.f941x; if (c1Var.e != 1) { i2 = 2; } @@ -488,7 +487,7 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public boolean g() { - return this.f940x.l; + return this.f941x.l; } @Override // c.i.a.c.g1 @@ -504,16 +503,16 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public List i() { - return this.f940x.j; + return this.f941x.j; } @Override // c.i.a.c.g1 public int j() { - if (this.f940x.b.q()) { + if (this.f941x.b.q()) { return 0; } - c1 c1Var = this.f940x; - return c1Var.b.b(c1Var.f780c.a); + c1 c1Var = this.f941x; + return c1Var.b.b(c1Var.f781c.a); } @Override // c.i.a.c.g1 @@ -521,14 +520,14 @@ public final class o0 extends f0 implements g1 { o oVar = this.h; if (!oVar.h) { Objects.requireNonNull(aVar); - oVar.e.add(new o.c<>(aVar, oVar.f914c)); + oVar.e.add(new o.c<>(aVar, oVar.f915c)); } } @Override // c.i.a.c.g1 public int m() { if (d()) { - return this.f940x.f780c.f817c; + return this.f941x.f781c.f818c; } return -1; } @@ -542,7 +541,7 @@ public final class o0 extends f0 implements g1 { if (next.a.equals(aVar)) { o.b bVar = oVar.d; next.d = true; - if (next.f915c) { + if (next.f916c) { bVar.a(next.a, next.b); } oVar.e.remove(next); @@ -562,7 +561,7 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 @Nullable public ExoPlaybackException p() { - return this.f940x.f; + return this.f941x.f; } @Override // c.i.a.c.g1 @@ -581,21 +580,21 @@ public final class o0 extends f0 implements g1 { if (!d()) { return J(); } - c1 c1Var = this.f940x; - c1Var.b.h(c1Var.f780c.a, this.i); - c1 c1Var2 = this.f940x; - return c1Var2.d == -9223372036854775807L ? c1Var2.b.n(o(), this.a).a() : h0.b(this.i.e) + h0.b(this.f940x.d); + c1 c1Var = this.f941x; + c1Var.b.h(c1Var.f781c.a, this.i); + c1 c1Var2 = this.f941x; + return c1Var2.d == -9223372036854775807L ? c1Var2.b.n(o(), this.a).a() : h0.b(this.i.e) + h0.b(this.f941x.d); } @Override // c.i.a.c.g1 public int u() { - return this.f940x.e; + return this.f941x.e; } @Override // c.i.a.c.g1 public int w() { if (d()) { - return this.f940x.f780c.b; + return this.f941x.f781c.b; } return -1; } @@ -613,6 +612,6 @@ public final class o0 extends f0 implements g1 { @Override // c.i.a.c.g1 public int z() { - return this.f940x.m; + return this.f941x.m; } } diff --git a/app/src/main/java/c/i/a/c/o1.java b/app/src/main/java/c/i/a/c/o1.java index bdca1a23f7..e8dbbfce62 100644 --- a/app/src/main/java/c/i/a/c/o1.java +++ b/app/src/main/java/c/i/a/c/o1.java @@ -2,37 +2,37 @@ package c.i.a.c; import androidx.annotation.Nullable; import androidx.recyclerview.widget.RecyclerView; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: SeekParameters */ public final class o1 { public static final o1 a; public static final o1 b; /* renamed from: c reason: collision with root package name */ - public final long f943c; + public final long f944c; public final long d; static { o1 o1Var = new o1(0, 0); a = o1Var; boolean z2 = true; - AnimatableValueParser.k(RecyclerView.FOREVER_NS >= 0); - AnimatableValueParser.k(RecyclerView.FOREVER_NS >= 0); - AnimatableValueParser.k(RecyclerView.FOREVER_NS >= 0); - AnimatableValueParser.k(0 >= 0); - AnimatableValueParser.k(0 >= 0); + d.k(RecyclerView.FOREVER_NS >= 0); + d.k(RecyclerView.FOREVER_NS >= 0); + d.k(RecyclerView.FOREVER_NS >= 0); + d.k(0 >= 0); + d.k(0 >= 0); if (RecyclerView.FOREVER_NS < 0) { z2 = false; } - AnimatableValueParser.k(z2); + d.k(z2); b = o1Var; } public o1(long j, long j2) { boolean z2 = true; - AnimatableValueParser.k(j >= 0); - AnimatableValueParser.k(j2 < 0 ? false : z2); - this.f943c = j; + d.k(j >= 0); + d.k(j2 < 0 ? false : z2); + this.f944c = j; this.d = j2; } @@ -44,10 +44,10 @@ public final class o1 { return false; } o1 o1Var = (o1) obj; - return this.f943c == o1Var.f943c && this.d == o1Var.d; + return this.f944c == o1Var.f944c && this.d == o1Var.d; } public int hashCode() { - return (((int) this.f943c) * 31) + ((int) this.d); + return (((int) this.f944c) * 31) + ((int) this.d); } } diff --git a/app/src/main/java/c/i/a/c/p1.java b/app/src/main/java/c/i/a/c/p1.java index a9a1830148..cd00546eaa 100644 --- a/app/src/main/java/c/i/a/c/p1.java +++ b/app/src/main/java/c/i/a/c/p1.java @@ -46,7 +46,6 @@ import c.i.a.c.v1.q; import c.i.a.c.v1.y; import c.i.b.b.q0; import c.i.b.b.u; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.utilities.guilds.GuildConstantsKt; import com.discord.utilities.rest.SendUtils; import com.google.android.exoplayer2.ExoPlaybackException; @@ -85,7 +84,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { public final k1[] b; /* renamed from: c reason: collision with root package name */ - public final Context f944c; + public final Context f945c; public final o0 d; public final c e; public final CopyOnWriteArraySet f; @@ -105,7 +104,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Nullable /* renamed from: s reason: collision with root package name */ - public Surface f945s; + public Surface f946s; public boolean t; public int u; @Nullable @@ -114,13 +113,13 @@ public class p1 extends f0 implements g1, g1.d, g1.c { public TextureView w; /* renamed from: x reason: collision with root package name */ - public int f946x; + public int f947x; /* renamed from: y reason: collision with root package name */ - public int f947y; + public int f948y; /* renamed from: z reason: collision with root package name */ - public int f948z; + public int f949z; /* compiled from: SimpleExoPlayer */ public static final class b { @@ -128,7 +127,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { public final n1 b; /* renamed from: c reason: collision with root package name */ - public g f949c; + public g f950c; public l d; public a0 e; public u0 f; @@ -177,7 +176,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { hashMap.put(0, 1000000L); u uVar2 = c.i.a.c.h2.n.b; hashMap.put(2, uVar2.get(((Integer) uVar.get(0)).intValue())); - hashMap.put(3, c.i.a.c.h2.n.f892c.get(((Integer) uVar.get(1)).intValue())); + hashMap.put(3, c.i.a.c.h2.n.f893c.get(((Integer) uVar.get(1)).intValue())); hashMap.put(4, c.i.a.c.h2.n.d.get(((Integer) uVar.get(2)).intValue())); hashMap.put(5, c.i.a.c.h2.n.e.get(((Integer) uVar.get(3)).intValue())); hashMap.put(9, c.i.a.c.h2.n.f.get(((Integer) uVar.get(4)).intValue())); @@ -198,7 +197,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { hashMap.put(0, 1000000L); u uVar2 = c.i.a.c.h2.n.b; hashMap.put(2, uVar2.get(((Integer) uVar.get(0)).intValue())); - hashMap.put(3, c.i.a.c.h2.n.f892c.get(((Integer) uVar.get(1)).intValue())); + hashMap.put(3, c.i.a.c.h2.n.f893c.get(((Integer) uVar.get(1)).intValue())); hashMap.put(4, c.i.a.c.h2.n.d.get(((Integer) uVar.get(2)).intValue())); hashMap.put(5, c.i.a.c.h2.n.e.get(((Integer) uVar.get(3)).intValue())); hashMap.put(9, c.i.a.c.h2.n.f.get(((Integer) uVar.get(4)).intValue())); @@ -222,7 +221,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { this.l = true; this.m = o1.b; this.n = new k0(0.97f, 1.03f, 1000, 1.0E-7f, h0.a(20), h0.a(500), 0.999f, null); - this.f949c = gVar; + this.f950c = gVar; this.o = 500; this.p = 2000; } @@ -459,7 +458,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { public void s(Surface surface) { p1.this.k.s(surface); p1 p1Var = p1.this; - if (p1Var.f945s == surface) { + if (p1Var.f946s == surface) { Iterator it = p1Var.f.iterator(); while (it.hasNext()) { it.next().c(); @@ -531,7 +530,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { q1 q1Var; int t; Context applicationContext = bVar.a.getApplicationContext(); - this.f944c = applicationContext; + this.f945c = applicationContext; c1 c1Var = bVar.h; this.k = c1Var; this.A = bVar.j; @@ -558,7 +557,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { Intent registerReceiver = context.registerReceiver(null, new IntentFilter("android.media.action.HDMI_AUDIO_PLUG")); int i2 = f0.a; if (i2 >= 17) { - String str = f0.f911c; + String str = f0.f912c; if ("Amazon".equals(str) || "Xiaomi".equals(str)) { z2 = true; y yVar = new y(n0Var.a, n0Var.b, false, handler, cVar, new DefaultAudioSink((z2 || Settings.Global.getInt(context.getContentResolver(), "external_surround_sound_enabled", 0) != 1) ? (registerReceiver != null || registerReceiver.getIntExtra("android.media.extra.AUDIO_PLUG_STATE", 0) == 0) ? c.i.a.c.v1.o.a : new c.i.a.c.v1.o(registerReceiver.getIntArrayExtra("android.media.extra.ENCODINGS"), registerReceiver.getIntExtra("android.media.extra.MAX_CHANNEL_COUNT", 8)) : c.i.a.c.v1.o.b, new DefaultAudioSink.d(new AudioProcessor[0]), false, false, false)); @@ -581,15 +580,15 @@ public class p1 extends f0 implements g1, g1.d, g1.c { if (this.r == null) { this.r = new AudioTrack(3, SendUtils.MAX_MESSAGE_CHARACTER_COUNT_PREMIUM, 4, 2, 2, 0, 0); } - this.f948z = this.r.getAudioSessionId(); + this.f949z = this.r.getAudioSessionId(); } else { UUID uuid = h0.a; AudioManager audioManager = (AudioManager) applicationContext.getSystemService(MediaStreamTrack.AUDIO_TRACK_KIND); - this.f948z = audioManager == null ? -1 : audioManager.generateAudioSessionId(); + this.f949z = audioManager == null ? -1 : audioManager.generateAudioSessionId(); } this.D = Collections.emptyList(); this.G = true; - o0 o0Var = new o0(k1VarArr, bVar.d, bVar.e, bVar.f, bVar.g, c1Var, bVar.l, bVar.m, bVar.n, bVar.o, false, bVar.f949c, bVar.i, this); + o0 o0Var = new o0(k1VarArr, bVar.d, bVar.e, bVar.f, bVar.g, c1Var, bVar.l, bVar.m, bVar.n, bVar.o, false, bVar.f950c, bVar.i, this); this.d = o0Var; o0Var.l(cVar); d0 d0Var = new d0(bVar.a, handler, cVar); @@ -601,7 +600,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { e0Var.d = null; e0Var.f = 0; i = 1; - AnimatableValueParser.n(true, "Automatic handling of audio focus is only available for USAGE_MEDIA and USAGE_GAME."); + c.c.a.a0.d.n(true, "Automatic handling of audio focus is only available for USAGE_MEDIA and USAGE_GAME."); } else { i = 1; } @@ -611,7 +610,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { if (q1Var.f != t) { q1Var.f = t; q1Var.c(); - c cVar2 = (c) q1Var.f958c; + c cVar2 = (c) q1Var.f959c; c.i.a.c.y1.a N = N(p1.this.n); if (!N.equals(p1.this.J)) { p1 p1Var = p1.this; @@ -624,15 +623,15 @@ public class p1 extends f0 implements g1, g1.d, g1.c { } s1 s1Var = new s1(bVar.a); this.o = s1Var; - s1Var.f962c = false; + s1Var.f963c = false; s1Var.a(); t1 t1Var = new t1(bVar.a); this.p = t1Var; - t1Var.f963c = false; + t1Var.f964c = false; t1Var.a(); this.J = N(this.n); - R(i, 102, Integer.valueOf(this.f948z)); - R(2, 102, Integer.valueOf(this.f948z)); + R(i, 102, Integer.valueOf(this.f949z)); + R(2, 102, Integer.valueOf(this.f949z)); R(i, 3, this.A); R(2, 4, Integer.valueOf(this.u)); R(i, 101, Boolean.valueOf(this.C)); @@ -654,7 +653,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { } this.D = Collections.emptyList(); this.G = true; - o0 o0Var = new o0(k1VarArr, bVar.d, bVar.e, bVar.f, bVar.g, c1Var, bVar.l, bVar.m, bVar.n, bVar.o, false, bVar.f949c, bVar.i, this); + o0 o0Var = new o0(k1VarArr, bVar.d, bVar.e, bVar.f, bVar.g, c1Var, bVar.l, bVar.m, bVar.n, bVar.o, false, bVar.f950c, bVar.i, this); this.d = o0Var; o0Var.l(cVar); d0 d0Var = new d0(bVar.a, handler, cVar); @@ -671,15 +670,15 @@ public class p1 extends f0 implements g1, g1.d, g1.c { } s1 s1Var = new s1(bVar.a); this.o = s1Var; - s1Var.f962c = false; + s1Var.f963c = false; s1Var.a(); t1 t1Var = new t1(bVar.a); this.p = t1Var; - t1Var.f963c = false; + t1Var.f964c = false; t1Var.a(); this.J = N(this.n); - R(i, 102, Integer.valueOf(this.f948z)); - R(2, 102, Integer.valueOf(this.f948z)); + R(i, 102, Integer.valueOf(this.f949z)); + R(2, 102, Integer.valueOf(this.f949z)); R(i, 3, this.A); R(2, 4, Integer.valueOf(this.u)); R(i, 101, Boolean.valueOf(this.C)); @@ -700,7 +699,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { if (u != 1) { if (u == 2 || u == 3) { p1Var.Z(); - boolean z3 = p1Var.d.f940x.p; + boolean z3 = p1Var.d.f941x.p; s1 s1Var = p1Var.o; if (!p1Var.g() || z3) { z2 = false; @@ -726,7 +725,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public TrackGroupArray A() { Z(); - return this.d.f940x.h; + return this.d.f941x.h; } @Override // c.i.a.c.g1 @@ -744,7 +743,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public r1 D() { Z(); - return this.d.f940x.b; + return this.d.f941x.b; } @Override // c.i.a.c.g1 @@ -773,7 +772,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public int I(int i) { Z(); - return this.d.f938c[i].x(); + return this.d.f939c[i].x(); } @Override // c.i.a.c.g1 @@ -790,7 +789,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { public void L(@Nullable Surface surface) { Z(); - if (surface != null && surface == this.f945s) { + if (surface != null && surface == this.f946s) { Z(); Q(); V(null, false); @@ -813,9 +812,9 @@ public class p1 extends f0 implements g1, g1.d, g1.c { } public final void P(int i, int i2) { - if (i != this.f946x || i2 != this.f947y) { - this.f946x = i; - this.f947y = i2; + if (i != this.f947x || i2 != this.f948y) { + this.f947x = i; + this.f948y = i2; c1 c1Var = this.k; d1.a d02 = c1Var.d0(); c.i.a.c.u1.n nVar = new c.i.a.c.u1.n(d02, i, i2); @@ -852,9 +851,9 @@ public class p1 extends f0 implements g1, g1.d, g1.c { for (k1 k1Var : k1VarArr) { if (k1Var.x() == i) { h1 b2 = this.d.b(k1Var); - AnimatableValueParser.D(!b2.i); + c.c.a.a0.d.D(!b2.i); b2.e = i2; - AnimatableValueParser.D(!b2.i); + c.c.a.a0.d.D(!b2.i); b2.f = obj; b2.d(); } @@ -909,15 +908,15 @@ public class p1 extends f0 implements g1, g1.d, g1.c { for (k1 k1Var : k1VarArr) { if (k1Var.x() == 2) { h1 b2 = this.d.b(k1Var); - AnimatableValueParser.D(!b2.i); + c.c.a.a0.d.D(!b2.i); b2.e = 1; - AnimatableValueParser.D(true ^ b2.i); + c.c.a.a0.d.D(true ^ b2.i); b2.f = surface; b2.d(); arrayList.add(b2); } } - Surface surface2 = this.f945s; + Surface surface2 = this.f946s; if (!(surface2 == null || surface2 == surface)) { try { Iterator it = arrayList.iterator(); @@ -929,20 +928,20 @@ public class p1 extends f0 implements g1, g1.d, g1.c { } catch (TimeoutException unused2) { o0 o0Var = this.d; ExoPlaybackException b3 = ExoPlaybackException.b(new ExoTimeoutException(3)); - c1 c1Var = o0Var.f940x; - c1 a2 = c1Var.a(c1Var.f780c); - a2.q = a2.f781s; + c1 c1Var = o0Var.f941x; + c1 a2 = c1Var.a(c1Var.f781c); + a2.q = a2.f782s; a2.r = 0; c1 e = a2.g(1).e(b3); - o0Var.f939s++; + o0Var.f940s++; o0Var.g.o.a(6).sendToTarget(); o0Var.S(e, false, 4, 0, 1, false); } if (this.t) { - this.f945s.release(); + this.f946s.release(); } } - this.f945s = surface; + this.f946s = surface; this.t = z2; } @@ -1024,7 +1023,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public d1 c() { Z(); - return this.d.f940x.n; + return this.d.f941x.n; } @Override // c.i.a.c.g1 @@ -1036,7 +1035,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public long e() { Z(); - return h0.b(this.d.f940x.r); + return h0.b(this.d.f941x.r); } @Override // c.i.a.c.g1 @@ -1058,7 +1057,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public boolean g() { Z(); - return this.d.f940x.l; + return this.d.f941x.l; } @Override // c.i.a.c.g1 @@ -1070,7 +1069,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public List i() { Z(); - return this.d.f940x.j; + return this.d.f941x.j; } @Override // c.i.a.c.g1 @@ -1106,7 +1105,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Nullable public ExoPlaybackException p() { Z(); - return this.d.f940x.f; + return this.d.f941x.f; } @Override // c.i.a.c.g1 @@ -1131,7 +1130,7 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public int u() { Z(); - return this.d.f940x.e; + return this.d.f941x.e; } @Override // c.i.a.c.g1 @@ -1149,6 +1148,6 @@ public class p1 extends f0 implements g1, g1.d, g1.c { @Override // c.i.a.c.g1 public int z() { Z(); - return this.d.f940x.m; + return this.d.f941x.m; } } diff --git a/app/src/main/java/c/i/a/c/q0.java b/app/src/main/java/c/i/a/c/q0.java index 70bd506892..e56fc080af 100644 --- a/app/src/main/java/c/i/a/c/q0.java +++ b/app/src/main/java/c/i/a/c/q0.java @@ -28,7 +28,6 @@ import c.i.a.c.u1.c1; import c.i.a.c.v0; import c.i.b.b.s; import c.i.b.b.u; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ExoPlaybackException; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.metadata.Metadata; @@ -78,20 +77,20 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final r1.c r; /* renamed from: s reason: collision with root package name */ - public final r1.b f950s; + public final r1.b f951s; public final long t; public final boolean u; public final m0 v; public final ArrayList w; /* renamed from: x reason: collision with root package name */ - public final c.i.a.c.i2.g f951x; + public final c.i.a.c.i2.g f952x; /* renamed from: y reason: collision with root package name */ - public final e f952y; + public final e f953y; /* renamed from: z reason: collision with root package name */ - public final z0 f953z; + public final z0 f954z; /* compiled from: ExoPlayerImplInternal */ public static final class a { @@ -99,13 +98,13 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final h0 b; /* renamed from: c reason: collision with root package name */ - public final int f954c; + public final int f955c; public final long d; public a(List list, h0 h0Var, int i, long j, p0 p0Var) { this.a = list; this.b = h0Var; - this.f954c = i; + this.f955c = i; this.d = j; } } @@ -167,7 +166,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public c1 b; /* renamed from: c reason: collision with root package name */ - public int f955c; + public int f956c; public boolean d; public int e; public boolean f; @@ -179,7 +178,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public void a(int i) { this.a |= i > 0; - this.f955c += i; + this.f956c += i; } public void b(int i) { @@ -193,7 +192,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (i != 4) { z2 = false; } - AnimatableValueParser.k(z2); + c.c.a.a0.d.k(z2); } } @@ -207,7 +206,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f956c; + public final long f957c; public final boolean d; public final boolean e; public final boolean f; @@ -215,7 +214,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public f(y.a aVar, long j, long j2, boolean z2, boolean z3, boolean z4) { this.a = aVar; this.b = j; - this.f956c = j2; + this.f957c = j2; this.d = z2; this.e = z3; this.f = z4; @@ -228,17 +227,17 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final int b; /* renamed from: c reason: collision with root package name */ - public final long f957c; + public final long f958c; public g(r1 r1Var, int i, long j) { this.a = r1Var; this.b = i; - this.f957c = j; + this.f958c = j; } } public q0(k1[] k1VarArr, l lVar, m mVar, u0 u0Var, c.i.a.c.h2.d dVar, int i, boolean z2, @Nullable c1 c1Var, o1 o1Var, t0 t0Var, long j, boolean z3, Looper looper, c.i.a.c.i2.g gVar, e eVar) { - this.f952y = eVar; + this.f953y = eVar; this.i = k1VarArr; this.k = lVar; this.l = mVar; @@ -250,7 +249,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { this.B = t0Var; this.C = j; this.H = z3; - this.f951x = gVar; + this.f952x = gVar; this.t = u0Var.b(); this.u = u0Var.a(); c1 i2 = c1.i(mVar); @@ -264,11 +263,11 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { this.v = new m0(this, gVar); this.w = new ArrayList<>(); this.r = new r1.c(); - this.f950s = new r1.b(); + this.f951s = new r1.b(); lVar.a = dVar; this.U = true; Handler handler = new Handler(looper); - this.f953z = new z0(c1Var, handler); + this.f954z = new z0(c1Var, handler); this.A = new b1(this, c1Var, handler); HandlerThread handlerThread = new HandlerThread("ExoPlayer:Playback", -16); this.p = handlerThread; @@ -300,8 +299,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { Objects.requireNonNull(cVar.i); cVar.j = b2; r1Var2.h(cVar.l, bVar); - if (r1Var2.n(bVar.f959c, cVar2).n) { - Pair j = r1Var.j(cVar2, bVar, r1Var.h(cVar.l, bVar).f959c, cVar.k + bVar.e); + if (r1Var2.n(bVar.f960c, cVar2).n) { + Pair j = r1Var.j(cVar2, bVar, r1Var.h(cVar.l, bVar).f960c, cVar.k + bVar.e); cVar.f(r1Var.b(j.first), ((Long) j.second).longValue(), j.first); } return true; @@ -316,16 +315,16 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } r1 r1Var3 = r1Var2.q() ? r1Var : r1Var2; try { - Pair j = r1Var3.j(cVar, bVar, gVar.b, gVar.f957c); + Pair j = r1Var3.j(cVar, bVar, gVar.b, gVar.f958c); if (r1Var.equals(r1Var3)) { return j; } if (r1Var.b(j.first) != -1) { r1Var3.h(j.first, bVar); - return r1Var3.n(bVar.f959c, cVar).n ? r1Var.j(cVar, bVar, r1Var.h(j.first, bVar).f959c, gVar.f957c) : j; + return r1Var3.n(bVar.f960c, cVar).n ? r1Var.j(cVar, bVar, r1Var.h(j.first, bVar).f960c, gVar.f958c) : j; } if (z2 && (L = L(cVar, bVar, i, z3, j.first, r1Var3, r1Var)) != null) { - return r1Var.j(cVar, bVar, r1Var.h(L, bVar).f959c, -9223372036854775807L); + return r1Var.j(cVar, bVar, r1Var.h(L, bVar).f960c, -9223372036854775807L); } return null; } catch (IndexOutOfBoundsException unused) { @@ -352,9 +351,9 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public static boolean g0(c1 c1Var, r1.b bVar, r1.c cVar) { - y.a aVar = c1Var.f780c; + y.a aVar = c1Var.f781c; r1 r1Var = c1Var.b; - return aVar.a() || r1Var.q() || r1Var.n(r1Var.h(aVar.a, bVar).f959c, cVar).n; + return aVar.a() || r1Var.q() || r1Var.n(r1Var.h(aVar.a, bVar).f960c, cVar).n; } public static Format[] j(c.i.a.c.f2.g gVar) { @@ -379,7 +378,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (b1Var.e() < 0) { z2 = false; } - AnimatableValueParser.k(z2); + c.c.a.a0.d.k(z2); b1Var.i = null; r(b1Var.c()); } @@ -391,7 +390,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { d0(this.E.b.q() ? 4 : 2); b1 b1Var = this.A; x c2 = this.n.c(); - AnimatableValueParser.D(!b1Var.j); + c.c.a.a0.d.D(!b1Var.j); b1Var.k = c2; for (int i = 0; i < b1Var.a.size(); i++) { b1.c cVar = b1Var.a.get(i); @@ -421,7 +420,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (i < 0 || i > i2 || i2 > b1Var.e()) { z2 = false; } - AnimatableValueParser.k(z2); + c.c.a.a0.d.k(z2); b1Var.i = h0Var; b1Var.i(i, i2); r(b1Var.c()); @@ -431,7 +430,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { boolean z2; int i; float f2 = this.v.c().b; - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; x0 x0Var = z0Var.h; x0 x0Var2 = z0Var.i; x0 x0Var3 = x0Var; @@ -440,10 +439,10 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { m i2 = x0Var3.i(f2, this.E.b); m mVar = x0Var3.n; int i3 = 0; - if (mVar != null && mVar.f871c.length == i2.f871c.length) { + if (mVar != null && mVar.f872c.length == i2.f872c.length) { int i4 = 0; while (true) { - if (i4 >= i2.f871c.length) { + if (i4 >= i2.f872c.length) { z2 = true; break; } else if (!i2.a(mVar, i4)) { @@ -456,16 +455,16 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { z2 = false; if (!z2) { if (z3) { - z0 z0Var2 = this.f953z; + z0 z0Var2 = this.f954z; x0 x0Var4 = z0Var2.h; boolean m = z0Var2.m(x0Var4); boolean[] zArr = new boolean[this.i.length]; - long a2 = x0Var4.a(i2, this.E.f781s, m, zArr); + long a2 = x0Var4.a(i2, this.E.f782s, m, zArr); c1 c1Var = this.E; i = 4; - c1 u = u(c1Var.f780c, a2, c1Var.d); + c1 u = u(c1Var.f781c, a2, c1Var.d); this.E = u; - if (!(u.e == 4 || a2 == u.f781s)) { + if (!(u.e == 4 || a2 == u.f782s)) { this.F.b(4); H(a2); } @@ -477,7 +476,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } k1 k1Var = k1VarArr[i3]; zArr2[i3] = w(k1Var); - c.i.a.c.d2.f0 f0Var = x0Var4.f1014c[i3]; + c.i.a.c.d2.f0 f0Var = x0Var4.f1015c[i3]; if (zArr2[i3]) { if (f0Var != k1Var.h()) { f(k1Var); @@ -490,7 +489,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { i(zArr2); } else { i = 4; - this.f953z.m(x0Var3); + this.f954z.m(x0Var3); if (x0Var3.d) { x0Var3.a(i2, Math.max(x0Var3.f.b, this.S - x0Var3.o), false, new boolean[x0Var3.i.length]); } @@ -554,21 +553,21 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } this.Q = 0; c1 c1Var = this.E; - y.a aVar2 = c1Var.f780c; - long j3 = c1Var.f781s; - long j4 = g0(this.E, this.f950s, this.r) ? this.E.d : this.E.f781s; + y.a aVar2 = c1Var.f781c; + long j3 = c1Var.f782s; + long j4 = g0(this.E, this.f951s, this.r) ? this.E.d : this.E.f782s; if (z3) { this.R = null; Pair m = m(this.E.b); aVar2 = (y.a) m.first; j3 = ((Long) m.second).longValue(); j4 = -9223372036854775807L; - if (!aVar2.equals(this.E.f780c)) { + if (!aVar2.equals(this.E.f781c)) { z6 = true; aVar = aVar2; j = j3; j2 = -9223372036854775807L; - this.f953z.b(); + this.f954z.b(); this.K = false; c1 c1Var2 = this.E; r1 r1Var = c1Var2.b; @@ -591,7 +590,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } catch (RuntimeException e4) { p.b("MediaSourceList", "Failed to release child source.", e4); } - bVar.a.c(bVar.f769c); + bVar.a.c(bVar.f770c); } b1Var.g.clear(); b1Var.h.clear(); @@ -604,7 +603,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { j = j3; j2 = j4; z6 = false; - this.f953z.b(); + this.f954z.b(); this.K = false; c1 c1Var2 = this.E; r1 r1Var = c1Var2.b; @@ -624,12 +623,12 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final void G() { - x0 x0Var = this.f953z.h; + x0 x0Var = this.f954z.h; this.I = x0Var != null && x0Var.f.g && this.H; } public final void H(long j) throws ExoPlaybackException { - x0 x0Var = this.f953z.h; + x0 x0Var = this.f954z.h; if (x0Var != null) { j += x0Var.o; } @@ -641,8 +640,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { k1Var.u(this.S); } } - for (x0 x0Var2 = this.f953z.h; x0Var2 != null; x0Var2 = x0Var2.l) { - c.i.a.c.f2.g[] gVarArr = x0Var2.n.f871c; + for (x0 x0Var2 = this.f954z.h; x0Var2 != null; x0Var2 = x0Var2.l) { + c.i.a.c.f2.g[] gVarArr = x0Var2.n.f872c; for (c.i.a.c.f2.g gVar : gVarArr) { if (gVar != null) { gVar.j(); @@ -659,7 +658,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (size < 0) { Collections.sort(this.w); return; - } else if (!I(this.w.get(size), r1Var, r1Var2, this.L, this.M, this.r, this.f950s)) { + } else if (!I(this.w.get(size), r1Var, r1Var2, this.L, this.M, this.r, this.f951s)) { this.w.get(size).i.c(false); this.w.remove(size); } @@ -673,9 +672,9 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final void N(boolean z2) throws ExoPlaybackException { - y.a aVar = this.f953z.h.f.a; - long Q = Q(aVar, this.E.f781s, true, false); - if (Q != this.E.f781s) { + y.a aVar = this.f954z.h.f.a; + long Q = Q(aVar, this.E.f782s, true, false); + if (Q != this.E.f782s) { this.E = u(aVar, Q, this.E.d); if (z2) { this.F.b(4); @@ -702,7 +701,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { int i2; boolean z4 = true; this.F.a(1); - Pair K = K(this.E.b, gVar, true, this.L, this.M, this.r, this.f950s); + Pair K = K(this.E.b, gVar, true, this.L, this.M, this.r, this.f951s); if (K == null) { Pair m = m(this.E.b); aVar = (y.a) m.first; @@ -712,16 +711,16 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } else { Object obj = K.first; j2 = ((Long) K.second).longValue(); - j = gVar.f957c == -9223372036854775807L ? -9223372036854775807L : j2; - y.a n = this.f953z.n(this.E.b, obj, j2); + j = gVar.f958c == -9223372036854775807L ? -9223372036854775807L : j2; + y.a n = this.f954z.n(this.E.b, obj, j2); if (n.a()) { - this.E.b.h(n.a, this.f950s); - j2 = this.f950s.e(n.b) == n.f817c ? this.f950s.f.f : 0; + this.E.b.h(n.a, this.f951s); + j2 = this.f951s.e(n.b) == n.f818c ? this.f951s.f.f : 0; aVar = n; z2 = true; } else { aVar = n; - z2 = gVar.f957c == -9223372036854775807L; + z2 = gVar.f958c == -9223372036854775807L; } } try { @@ -743,11 +742,11 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } F(false, true, false, true); } else { - if (aVar.equals(this.E.f780c)) { - x0 x0Var = this.f953z.h; + if (aVar.equals(this.E.f781c)) { + x0 x0Var = this.f954z.h; long i3 = (x0Var == null || !x0Var.d || j2 == 0) ? j2 : x0Var.a.i(j2, this.D); - if (h0.b(i3) == h0.b(this.E.f781s) && ((i2 = (c1Var = this.E).e) == 2 || i2 == 3)) { - this.E = u(aVar, c1Var.f781s, j); + if (h0.b(i3) == h0.b(this.E.f782s) && ((i2 = (c1Var = this.E).e) == 2 || i2 == 3)) { + this.E = u(aVar, c1Var.f782s, j); if (z2) { this.F.b(2); return; @@ -778,7 +777,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { try { c1 c1Var2 = this.E; r1 r1Var = c1Var2.b; - l0(r1Var, aVar, r1Var, c1Var2.f780c, j); + l0(r1Var, aVar, r1Var, c1Var2.f781c, j); z2 = z3; j4 = P; this.E = u(aVar, j4, j); @@ -814,7 +813,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final long P(y.a aVar, long j, boolean z2) throws ExoPlaybackException { - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; return Q(aVar, j, z0Var.h != z0Var.i, z2); } @@ -825,7 +824,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (z3 || this.E.e == 3) { d0(2); } - x0 x0Var = this.f953z.h; + x0 x0Var = this.f954z.h; x0 x0Var2 = x0Var; while (x0Var2 != null && !aVar.equals(x0Var2.f.a)) { x0Var2 = x0Var2.l; @@ -836,7 +835,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } if (x0Var2 != null) { while (true) { - z0Var = this.f953z; + z0Var = this.f954z; if (z0Var.h == x0Var2) { break; } @@ -848,7 +847,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } } if (x0Var2 != null) { - this.f953z.m(x0Var2); + this.f954z.m(x0Var2); if (!x0Var2.d) { x0Var2.f = x0Var2.f.b(j); } else { @@ -865,7 +864,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { H(j); y(); } else { - this.f953z.b(); + this.f954z.b(); H(j); } q(false); @@ -893,7 +892,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { h1Var.c(false); return; } - c0 b2 = this.f951x.b(looper, null); + c0 b2 = this.f952x.b(looper, null); b2.a.post(new x(this, h1Var)); } @@ -901,7 +900,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { k1Var.k(); if (k1Var instanceof c.i.a.c.e2.l) { c.i.a.c.e2.l lVar = (c.i.a.c.e2.l) k1Var; - AnimatableValueParser.D(lVar.r); + c.c.a.a0.d.D(lVar.r); lVar.H = j; } } @@ -928,8 +927,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final void V(a aVar) throws ExoPlaybackException { this.F.a(1); - if (aVar.f954c != -1) { - this.R = new g(new i1(aVar.a, aVar.b), aVar.f954c, aVar.d); + if (aVar.f955c != -1) { + this.R = new g(new i1(aVar.a, aVar.b), aVar.f955c, aVar.d); } b1 b1Var = this.A; List list = aVar.a; @@ -955,7 +954,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { this.H = z2; G(); if (this.I) { - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; if (z0Var.i != z0Var.h) { N(true); q(false); @@ -971,8 +970,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { dVar.g = i2; this.E = this.E.d(z2, i); this.J = false; - for (x0 x0Var = this.f953z.h; x0Var != null; x0Var = x0Var.l) { - c.i.a.c.f2.g[] gVarArr = x0Var.n.f871c; + for (x0 x0Var = this.f954z.h; x0Var != null; x0Var = x0Var.l) { + c.i.a.c.f2.g[] gVarArr = x0Var.n.f872c; for (c.i.a.c.f2.g gVar : gVarArr) { if (gVar != null) { gVar.c(z2); @@ -1007,7 +1006,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final void a0(int i) throws ExoPlaybackException { this.L = i; - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; r1 r1Var = this.E.b; z0Var.f = i; if (!z0Var.p(r1Var)) { @@ -1023,7 +1022,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final void b0(boolean z2) throws ExoPlaybackException { this.M = z2; - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; r1 r1Var = this.E.b; z0Var.g = z2; if (!z0Var.p(r1Var)) { @@ -1053,7 +1052,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final void d(ExoPlaybackException exoPlaybackException) throws ExoPlaybackException { - AnimatableValueParser.k(exoPlaybackException.isRecoverable && exoPlaybackException.type == 1); + c.c.a.a0.d.k(exoPlaybackException.isRecoverable && exoPlaybackException.type == 1); try { N(true); } catch (Exception e2) { @@ -1104,7 +1103,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (aVar.a() || r1Var.q()) { return false; } - r1Var.n(r1Var.h(aVar.a, this.f950s).f959c, this.r); + r1Var.n(r1Var.h(aVar.a, this.f951s).f960c, this.r); if (!this.r.c()) { return false; } @@ -1130,19 +1129,19 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { boolean z7; long j; long j2; - long a2 = this.f951x.a(); + long a2 = this.f952x.a(); if (!this.E.b.q() && this.A.j) { - this.f953z.l(this.S); - z0 z0Var = this.f953z; + this.f954z.l(this.S); + z0 z0Var = this.f954z; x0 x0Var3 = z0Var.j; if (x0Var3 == null || (!x0Var3.f.h && x0Var3.f() && z0Var.j.f.e != -9223372036854775807L && z0Var.k < 100)) { - z0 z0Var2 = this.f953z; + z0 z0Var2 = this.f954z; long j3 = this.S; c1 c1Var = this.E; x0 x0Var4 = z0Var2.j; - y0 d2 = x0Var4 == null ? z0Var2.d(c1Var.b, c1Var.f780c, c1Var.d, c1Var.f781s) : z0Var2.c(c1Var.b, x0Var4, j3); + y0 d2 = x0Var4 == null ? z0Var2.d(c1Var.b, c1Var.f781c, c1Var.d, c1Var.f782s) : z0Var2.c(c1Var.b, x0Var4, j3); if (d2 != null) { - z0 z0Var3 = this.f953z; + z0 z0Var3 = this.f954z; l1[] l1VarArr = this.j; l lVar = this.k; c.i.a.c.h2.m h = this.m.h(); @@ -1151,7 +1150,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { x0 x0Var5 = z0Var3.j; if (x0Var5 == null) { if (d2.a.a()) { - j2 = d2.f1019c; + j2 = d2.f1020c; } j2 = 0; j = j2; @@ -1173,7 +1172,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { z0Var3.k++; z0Var3.k(); x0Var6.a.l(this, d2.b); - if (this.f953z.h == x0Var6) { + if (this.f954z.h == x0Var6) { H(x0Var6.e()); } q(false); @@ -1185,7 +1184,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } else { y(); } - x0 x0Var8 = this.f953z.i; + x0 x0Var8 = this.f954z.i; if (x0Var8 != null) { if (x0Var8.l != null && !this.I) { if (x0Var8.d) { @@ -1197,7 +1196,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { break; } k1 k1Var = k1VarArr[i2]; - c.i.a.c.d2.f0 f0Var = x0Var8.f1014c[i2]; + c.i.a.c.d2.f0 f0Var = x0Var8.f1015c[i2]; if (!(k1Var.h() == f0Var && (f0Var == null || k1Var.i()))) { break; } @@ -1209,9 +1208,9 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { x0 x0Var9 = x0Var8.l; if (x0Var9.d || this.S >= x0Var9.e()) { m mVar2 = x0Var8.n; - z0 z0Var4 = this.f953z; + z0 z0Var4 = this.f954z; x0 x0Var10 = z0Var4.i; - AnimatableValueParser.D((x0Var10 == null || x0Var10.l == null) ? false : true); + c.c.a.a0.d.D((x0Var10 == null || x0Var10.l == null) ? false : true); z0Var4.i = z0Var4.i.l; z0Var4.k(); x0 x0Var11 = z0Var4.i; @@ -1248,7 +1247,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { break; } k1 k1Var3 = k1VarArr3[i4]; - c.i.a.c.d2.f0 f0Var2 = x0Var8.f1014c[i4]; + c.i.a.c.d2.f0 f0Var2 = x0Var8.f1015c[i4]; if (f0Var2 != null && k1Var3.h() == f0Var2 && k1Var3.i()) { long j4 = x0Var8.f.e; T(k1Var3, (j4 == -9223372036854775807L || j4 == Long.MIN_VALUE) ? -9223372036854775807L : j4 + x0Var8.o); @@ -1257,7 +1256,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } } } - z0 z0Var5 = this.f953z; + z0 z0Var5 = this.f954z; x0 x0Var12 = z0Var5.i; if (!(x0Var12 == null || z0Var5.h == x0Var12 || x0Var12.g)) { m mVar4 = x0Var12.n; @@ -1270,10 +1269,10 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } k1 k1Var4 = k1VarArr4[i5]; if (w(k1Var4)) { - boolean z10 = k1Var4.h() != x0Var12.f1014c[i5]; + boolean z10 = k1Var4.h() != x0Var12.f1015c[i5]; if (!mVar4.b(i5) || z10) { if (!k1Var4.v()) { - k1Var4.j(j(mVar4.f871c[i5]), x0Var12.f1014c[i5], x0Var12.e(), x0Var12.o); + k1Var4.j(j(mVar4.f872c[i5]), x0Var12.f1015c[i5], x0Var12.e(), x0Var12.o); } else if (k1Var4.b()) { f(k1Var4); } else { @@ -1289,17 +1288,17 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } boolean z11 = false; while (true) { - if (!(e0() && !this.I && (x0Var = this.f953z.h) != null && (x0Var2 = x0Var.l) != null && this.S >= x0Var2.e() && x0Var2.g)) { + if (!(e0() && !this.I && (x0Var = this.f954z.h) != null && (x0Var2 = x0Var.l) != null && this.S >= x0Var2.e() && x0Var2.g)) { break; } if (z11) { z(); } - z0 z0Var6 = this.f953z; + z0 z0Var6 = this.f954z; x0 x0Var13 = z0Var6.h; x0 a3 = z0Var6.a(); y0 y0Var = a3.f; - this.E = u(y0Var.a, y0Var.b, y0Var.f1019c); + this.E = u(y0Var.a, y0Var.b, y0Var.f1020c); this.F.b(x0Var13.f.f ? 0 : 3); r1 r1Var = this.E.b; l0(r1Var, a3.f.a, r1Var, x0Var13.f.a, -9223372036854775807L); @@ -1313,16 +1312,16 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { this.o.a.removeMessages(2); return; } - x0 x0Var14 = this.f953z.h; + x0 x0Var14 = this.f954z.h; if (x0Var14 == null) { M(a2, 10); return; } - AnimatableValueParser.g("doSomeWork"); + c.c.a.a0.d.g("doSomeWork"); m0(); if (x0Var14.d) { long elapsedRealtime = SystemClock.elapsedRealtime() * 1000; - x0Var14.a.r(this.E.f781s - this.t, this.u); + x0Var14.a.r(this.E.f782s - this.t, this.u); boolean z12 = true; z2 = true; int i7 = 0; @@ -1335,7 +1334,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (w(k1Var5)) { k1Var5.q(this.S, elapsedRealtime); boolean z13 = z12 && k1Var5.b(); - boolean z14 = x0Var14.f1014c[i7] != k1Var5.h(); + boolean z14 = x0Var14.f1015c[i7] != k1Var5.h(); boolean z15 = z14 || (!z14 && k1Var5.i()) || k1Var5.d() || k1Var5.b(); boolean z16 = z2 && z15; if (!z15) { @@ -1353,7 +1352,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { z2 = true; } long j5 = x0Var14.f.e; - boolean z17 = z3 && x0Var14.d && (j5 == -9223372036854775807L || j5 <= this.E.f781s); + boolean z17 = z3 && x0Var14.d && (j5 == -9223372036854775807L || j5 <= this.E.f782s); if (z17 && this.I) { this.I = false; Y(false, this.E.m, false, 5); @@ -1366,8 +1365,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } else { if (z2) { if (c1Var2.g) { - long j6 = f0(c1Var2.b, this.f953z.h.f.a) ? ((k0) this.B).i : -9223372036854775807L; - x0 x0Var15 = this.f953z.j; + long j6 = f0(c1Var2.b, this.f954z.h.f.a) ? ((k0) this.B).i : -9223372036854775807L; + x0 x0Var15 = this.f954z.j; boolean z18 = x0Var15.f() && x0Var15.f.h; boolean z19 = x0Var15.f.a.a() && !x0Var15.d; if (!z18) { @@ -1391,8 +1390,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { this.J = e0(); d0(2); if (this.J) { - for (x0 x0Var16 = this.f953z.h; x0Var16 != null; x0Var16 = x0Var16.l) { - c.i.a.c.f2.g[] gVarArr = x0Var16.n.f871c; + for (x0 x0Var16 = this.f954z.h; x0Var16 != null; x0Var16 = x0Var16.l) { + c.i.a.c.f2.g[] gVarArr = x0Var16.n.f872c; for (c.i.a.c.f2.g gVar : gVarArr) { if (gVar != null) { gVar.k(); @@ -1424,7 +1423,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (i8 >= k1VarArr6.length) { break; } - if (w(k1VarArr6[i8]) && this.i[i8].h() == x0Var14.f1014c[i8]) { + if (w(k1VarArr6[i8]) && this.i[i8].h() == x0Var14.f1015c[i8]) { this.i[i8].s(); } i8++; @@ -1457,10 +1456,10 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } c1 c1Var5 = this.E; if (c1Var5.p != z4) { - this.E = new c1(c1Var5.b, c1Var5.f780c, c1Var5.d, c1Var5.e, c1Var5.f, c1Var5.g, c1Var5.h, c1Var5.i, c1Var5.j, c1Var5.k, c1Var5.l, c1Var5.m, c1Var5.n, c1Var5.q, c1Var5.r, c1Var5.f781s, c1Var5.o, z4); + this.E = new c1(c1Var5.b, c1Var5.f781c, c1Var5.d, c1Var5.e, c1Var5.f, c1Var5.g, c1Var5.h, c1Var5.i, c1Var5.j, c1Var5.k, c1Var5.l, c1Var5.m, c1Var5.n, c1Var5.q, c1Var5.r, c1Var5.f782s, c1Var5.o, z4); } this.O = false; - AnimatableValueParser.f0(); + c.c.a.a0.d.f0(); } public final void h() throws ExoPlaybackException { @@ -1572,7 +1571,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { z(); } catch (ExoPlaybackException e2) { e = e2; - if (e.type == 1 && (x0Var = this.f953z.i) != null) { + if (e.type == 1 && (x0Var = this.f954z.i) != null) { e = e.a(x0Var.f.a); } if (!e.isRecoverable || this.V != null) { @@ -1593,7 +1592,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { z(); } catch (IOException e3) { ExoPlaybackException exoPlaybackException2 = new ExoPlaybackException(0, e3); - x0 x0Var2 = this.f953z.h; + x0 x0Var2 = this.f954z.h; if (x0Var2 != null) { exoPlaybackException2 = exoPlaybackException2.a(x0Var2.f.a); } @@ -1613,7 +1612,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { public final void i(boolean[] zArr) throws ExoPlaybackException { r rVar; - x0 x0Var = this.f953z.i; + x0 x0Var = this.f954z.i; m mVar = x0Var.n; for (int i = 0; i < this.i.length; i++) { if (!mVar.b(i)) { @@ -1625,16 +1624,16 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { boolean z2 = zArr[i2]; k1 k1Var = this.i[i2]; if (!w(k1Var)) { - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; x0 x0Var2 = z0Var.i; boolean z3 = x0Var2 == z0Var.h; m mVar2 = x0Var2.n; m1 m1Var = mVar2.b[i2]; - Format[] j = j(mVar2.f871c[i2]); + Format[] j = j(mVar2.f872c[i2]); boolean z4 = e0() && this.E.e == 3; boolean z5 = !z2 && z4; this.Q++; - k1Var.o(m1Var, j, x0Var2.f1014c[i2], this.S, z5, z3, x0Var2.e(), x0Var2.o); + k1Var.o(m1Var, j, x0Var2.f1015c[i2], this.S, z5, z3, x0Var2.e(), x0Var2.o); k1Var.r(103, new p0(this)); m0 m0Var = this.v; Objects.requireNonNull(m0Var); @@ -1683,30 +1682,30 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final long k(r1 r1Var, Object obj, long j) { - r1Var.n(r1Var.h(obj, this.f950s).f959c, this.r); + r1Var.n(r1Var.h(obj, this.f951s).f960c, this.r); r1.c cVar = this.r; if (cVar.h != -9223372036854775807L && cVar.c()) { r1.c cVar2 = this.r; if (cVar2.k) { long j2 = cVar2.i; int i = f0.a; - return h0.a((j2 == -9223372036854775807L ? System.currentTimeMillis() : j2 + SystemClock.elapsedRealtime()) - this.r.h) - (j + this.f950s.e); + return h0.a((j2 == -9223372036854775807L ? System.currentTimeMillis() : j2 + SystemClock.elapsedRealtime()) - this.r.h) - (j + this.f951s.e); } } return -9223372036854775807L; } public final void k0() { - x0 x0Var = this.f953z.j; + x0 x0Var = this.f954z.j; boolean z2 = this.K || (x0Var != null && x0Var.a.h()); c1 c1Var = this.E; if (z2 != c1Var.g) { - this.E = new c1(c1Var.b, c1Var.f780c, c1Var.d, c1Var.e, c1Var.f, z2, c1Var.h, c1Var.i, c1Var.j, c1Var.k, c1Var.l, c1Var.m, c1Var.n, c1Var.q, c1Var.r, c1Var.f781s, c1Var.o, c1Var.p); + this.E = new c1(c1Var.b, c1Var.f781c, c1Var.d, c1Var.e, c1Var.f, z2, c1Var.h, c1Var.i, c1Var.j, c1Var.k, c1Var.l, c1Var.m, c1Var.n, c1Var.q, c1Var.r, c1Var.f782s, c1Var.o, c1Var.p); } } public final long l() { - x0 x0Var = this.f953z.i; + x0 x0Var = this.f954z.i; if (x0Var == null) { return 0; } @@ -1720,7 +1719,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (i >= k1VarArr.length) { return j; } - if (w(k1VarArr[i]) && this.i[i].h() == x0Var.f1014c[i]) { + if (w(k1VarArr[i]) && this.i[i].h() == x0Var.f1015c[i]) { long t = this.i[i].t(); if (t == Long.MIN_VALUE) { return Long.MIN_VALUE; @@ -1741,7 +1740,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } return; } - r1Var.n(r1Var.h(aVar.a, this.f950s).f959c, this.r); + r1Var.n(r1Var.h(aVar.a, this.f951s).f960c, this.r); t0 t0Var = this.B; v0.f fVar = this.r.m; int i = f0.a; @@ -1749,7 +1748,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { Objects.requireNonNull(k0Var); k0Var.d = h0.a(fVar.a); k0Var.g = h0.a(fVar.b); - k0Var.h = h0.a(fVar.f992c); + k0Var.h = h0.a(fVar.f993c); float f3 = fVar.d; if (f3 == -3.4028235E38f) { f3 = 0.97f; @@ -1767,10 +1766,10 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { k0Var2.a(); return; } - Object obj = this.r.f960c; + Object obj = this.r.f961c; Object obj2 = null; if (!r1Var2.q()) { - obj2 = r1Var2.n(r1Var2.h(aVar2.a, this.f950s).f959c, this.r).f960c; + obj2 = r1Var2.n(r1Var2.h(aVar2.a, this.f951s).f960c, this.r).f961c; } if (!f0.a(obj2, obj)) { k0 k0Var3 = (k0) this.B; @@ -1785,13 +1784,13 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { y.a aVar = c1.a; return Pair.create(c1.a, 0L); } - Pair j2 = r1Var.j(this.r, this.f950s, r1Var.a(this.M), -9223372036854775807L); - y.a n = this.f953z.n(r1Var, j2.first, 0); + Pair j2 = r1Var.j(this.r, this.f951s, r1Var.a(this.M), -9223372036854775807L); + y.a n = this.f954z.n(r1Var, j2.first, 0); long longValue = ((Long) j2.second).longValue(); if (n.a()) { - r1Var.h(n.a, this.f950s); - if (n.f817c == this.f950s.e(n.b)) { - j = this.f950s.f.f; + r1Var.h(n.a, this.f951s); + if (n.f818c == this.f951s.e(n.b)) { + j = this.f951s.f.f; } longValue = j; } @@ -1819,21 +1818,21 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { q0 q0Var5; q0 q0Var6; q0 q0Var7; - x0 x0Var = this.f953z.h; + x0 x0Var = this.f954z.h; if (x0Var != null) { long k = x0Var.d ? x0Var.a.k() : -9223372036854775807L; if (k != -9223372036854775807L) { H(k); - if (k != this.E.f781s) { + if (k != this.E.f782s) { c1 c1Var = this.E; - this.E = u(c1Var.f780c, k, c1Var.d); + this.E = u(c1Var.f781c, k, c1Var.d); this.F.b(4); } q0Var2 = this; q0Var = q0Var2; } else { m0 m0Var = this.v; - boolean z2 = x0Var != this.f953z.i; + boolean z2 = x0Var != this.f954z.i; k1 k1Var = m0Var.k; if (k1Var == null || k1Var.b() || (!m0Var.k.d() && (z2 || m0Var.k.i()))) { m0Var.m = true; @@ -1872,8 +1871,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { long m2 = m0Var.m(); this.S = m2; long j4 = m2 - x0Var.o; - long j5 = this.E.f781s; - if (this.w.isEmpty() || this.E.f780c.a()) { + long j5 = this.E.f782s; + if (this.w.isEmpty() || this.E.f781c.a()) { q0Var2 = this; q0Var = q0Var2; } else { @@ -1882,7 +1881,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { this.U = false; } c1 c1Var2 = this.E; - int b2 = c1Var2.b.b(c1Var2.f780c.a); + int b2 = c1Var2.b.b(c1Var2.f781c.a); int min = Math.min(this.T, this.w.size()); if (min > 0) { cVar = this.w.get(min - 1); @@ -1997,17 +1996,17 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { j4 = j2; q0Var2 = q0Var3; } - q0Var2.E.f781s = j4; + q0Var2.E.f782s = j4; } - q0Var2.E.q = q0Var2.f953z.j.d(); + q0Var2.E.q = q0Var2.f954z.j.d(); q0Var2.E.r = q0Var.n(); c1 c1Var3 = q0Var2.E; - if (c1Var3.l && c1Var3.e == 3 && q0Var2.f0(c1Var3.b, c1Var3.f780c)) { + if (c1Var3.l && c1Var3.e == 3 && q0Var2.f0(c1Var3.b, c1Var3.f781c)) { c1 c1Var4 = q0Var2.E; float f2 = 1.0f; if (c1Var4.n.b == 1.0f) { t0 t0Var = q0Var2.B; - long k2 = q0Var2.k(c1Var4.b, c1Var4.f780c.a, c1Var4.f781s); + long k2 = q0Var2.k(c1Var4.b, c1Var4.f781c.a, c1Var4.f782s); long n = q0Var.n(); k0 k0Var = (k0) t0Var; if (k0Var.d != -9223372036854775807L) { @@ -2017,12 +2016,12 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { k0Var.n = j7; k0Var.o = 0; } else { - float f3 = k0Var.f936c; + float f3 = k0Var.f937c; long max = Math.max(j7, (long) (((1.0f - f3) * ((float) j7)) + (((float) j8) * f3))); k0Var.n = max; long abs = Math.abs(j7 - max); long j9 = k0Var.o; - float f4 = k0Var.f936c; + float f4 = k0Var.f937c; k0Var.o = (long) (((1.0f - f4) * ((float) abs)) + (((float) j9) * f4)); } if (k0Var.m == -9223372036854775807L || SystemClock.elapsedRealtime() - k0Var.m >= 1000) { @@ -2059,7 +2058,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } } if (q0Var2.v.c().b != f2) { - q0Var2.v.e(new d1(f2, q0Var2.E.n.f789c)); + q0Var2.v.e(new d1(f2, q0Var2.E.n.f790c)); q0Var2.t(q0Var2.E.n, q0Var2.v.c().b, false, false); } } @@ -2072,7 +2071,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final long o(long j) { - x0 x0Var = this.f953z.j; + x0 x0Var = this.f954z.j; if (x0Var == null) { return 0; } @@ -2080,7 +2079,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final void p(v vVar) { - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; x0 x0Var = z0Var.j; if (x0Var != null && x0Var.a == vVar) { z0Var.l(this.S); @@ -2089,17 +2088,17 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final void q(boolean z2) { - x0 x0Var = this.f953z.j; - y.a aVar = x0Var == null ? this.E.f780c : x0Var.f.a; + x0 x0Var = this.f954z.j; + y.a aVar = x0Var == null ? this.E.f781c : x0Var.f.a; boolean z3 = !this.E.k.equals(aVar); if (z3) { this.E = this.E.a(aVar); } c1 c1Var = this.E; - c1Var.q = x0Var == null ? c1Var.f781s : x0Var.d(); + c1Var.q = x0Var == null ? c1Var.f782s : x0Var.d(); this.E.r = n(); if ((z3 || z2) && x0Var != null && x0Var.d) { - this.m.d(this.i, x0Var.m, x0Var.n.f871c); + this.m.d(this.i, x0Var.m, x0Var.n.f872c); } } @@ -2146,19 +2145,19 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { Throwable th; c1 c1Var = this.E; g gVar2 = this.R; - z0 z0Var = this.f953z; + z0 z0Var = this.f954z; int i7 = this.L; boolean z13 = this.M; r1.c cVar = this.r; - r1.b bVar = this.f950s; + r1.b bVar = this.f951s; if (r1Var.q()) { y.a aVar3 = c1.a; fVar = new f(c1.a, 0, -9223372036854775807L, false, true, false); } else { - y.a aVar4 = c1Var.f780c; + y.a aVar4 = c1Var.f781c; Object obj3 = aVar4.a; boolean g02 = g0(c1Var, bVar, cVar); - long j6 = g02 ? c1Var.d : c1Var.f781s; + long j6 = g02 ? c1Var.d : c1Var.f782s; if (gVar2 != null) { aVar2 = aVar4; Pair K = K(r1Var, gVar2, true, i7, z13, cVar, bVar); @@ -2169,8 +2168,8 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { z9 = false; z5 = true; } else { - if (gVar2.f957c == -9223372036854775807L) { - i4 = r1Var.h(K.first, bVar).f959c; + if (gVar2.f958c == -9223372036854775807L) { + i4 = r1Var.h(K.first, bVar).f960c; obj = obj3; z11 = false; } else { @@ -2201,7 +2200,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { i4 = r1Var.a(z13); z5 = true; } else { - i4 = r1Var.h(L, bVar).f959c; + i4 = r1Var.h(L, bVar).f960c; z5 = false; } obj = obj2; @@ -2227,11 +2226,11 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } fVar = new f(n, j3, j, z4, z3, z2); } else if (j6 == -9223372036854775807L) { - i6 = r1Var.h(obj2, bVar).f959c; + i6 = r1Var.h(obj2, bVar).f960c; } else { aVar = aVar2; c1Var.b.h(aVar.a, bVar); - Pair j7 = r1Var.j(cVar, bVar, r1Var.h(obj2, bVar).f959c, j6 + bVar.e); + Pair j7 = r1Var.j(cVar, bVar, r1Var.h(obj2, bVar).f960c, j6 + bVar.e); obj = j7.first; j6 = ((Long) j7.second).longValue(); i5 = -1; @@ -2255,10 +2254,10 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } if (!n.a()) { if (n.equals(aVar)) { - j4 = c1Var.f781s; + j4 = c1Var.f782s; } else { r1Var.h(n.a, bVar); - j4 = n.f817c == bVar.e(n.b) ? bVar.f.f : 0; + j4 = n.f818c == bVar.e(n.b) ? bVar.f.f : 0; } j3 = j4; } else { @@ -2300,10 +2299,10 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { fVar = new f(n, j3, j, z4, z3, z2); } y.a aVar5 = fVar.a; - long j9 = fVar.f956c; + long j9 = fVar.f957c; boolean z14 = fVar.d; long j10 = fVar.b; - boolean z15 = !this.E.f780c.equals(aVar5) || j10 != this.E.f781s; + boolean z15 = !this.E.f781c.equals(aVar5) || j10 != this.E.f782s; try { if (fVar.e) { if (this.E.e != 1) { @@ -2315,14 +2314,14 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { j5 = j9; z12 = false; try { - if (!this.f953z.q(r1Var, this.S, l())) { + if (!this.f954z.q(r1Var, this.S, l())) { N(false); } } catch (Throwable th2) { th = th2; gVar = null; c1 c1Var2 = this.E; - l0(r1Var, aVar5, c1Var2.b, c1Var2.f780c, !fVar.f ? j10 : -9223372036854775807L); + l0(r1Var, aVar5, c1Var2.b, c1Var2.f781c, !fVar.f ? j10 : -9223372036854775807L); if (z15 || j5 != this.E.d) { this.E = u(aVar5, j10, j5); } @@ -2339,16 +2338,16 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { j5 = j9; z12 = false; if (!r1Var.q()) { - for (x0 x0Var = this.f953z.h; x0Var != null; x0Var = x0Var.l) { + for (x0 x0Var = this.f954z.h; x0Var != null; x0Var = x0Var.l) { if (x0Var.f.a.equals(aVar5)) { - x0Var.f = this.f953z.g(r1Var, x0Var.f); + x0Var.f = this.f954z.g(r1Var, x0Var.f); } } j10 = P(aVar5, j10, z14); } } c1 c1Var3 = this.E; - l0(r1Var, aVar5, c1Var3.b, c1Var3.f780c, fVar.f ? j10 : -9223372036854775807L); + l0(r1Var, aVar5, c1Var3.b, c1Var3.f781c, fVar.f ? j10 : -9223372036854775807L); if (z15 || j5 != this.E.d) { this.E = u(aVar5, j10, j5); } @@ -2365,7 +2364,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { z12 = false; gVar = null; c1 c1Var2 = this.E; - l0(r1Var, aVar5, c1Var2.b, c1Var2.f780c, !fVar.f ? j10 : -9223372036854775807L); + l0(r1Var, aVar5, c1Var2.b, c1Var2.f781c, !fVar.f ? j10 : -9223372036854775807L); this.E = u(aVar5, j10, j5); G(); J(r1Var, this.E.b); @@ -2378,7 +2377,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final void s(v vVar) throws ExoPlaybackException { - x0 x0Var = this.f953z.j; + x0 x0Var = this.f954z.j; if (x0Var != null && x0Var.a == vVar) { float f2 = this.v.c().b; r1 r1Var = this.E.b; @@ -2396,12 +2395,12 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { y0 y0Var2 = x0Var.f; x0Var.o = (y0Var2.b - a2) + j3; x0Var.f = y0Var2.b(a2); - this.m.d(this.i, x0Var.m, x0Var.n.f871c); - if (x0Var == this.f953z.h) { + this.m.d(this.i, x0Var.m, x0Var.n.f872c); + if (x0Var == this.f954z.h) { H(x0Var.f.b); h(); c1 c1Var = this.E; - this.E = u(c1Var.f780c, x0Var.f.b, c1Var.d); + this.E = u(c1Var.f781c, x0Var.f.b, c1Var.d); } y(); } @@ -2416,13 +2415,13 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { this.E = this.E.f(d1Var); } float f3 = d1Var.b; - x0 x0Var = this.f953z.h; + x0 x0Var = this.f954z.h; while (true) { i = 0; if (x0Var == null) { break; } - c.i.a.c.f2.g[] gVarArr = x0Var.n.f871c; + c.i.a.c.f2.g[] gVarArr = x0Var.n.f872c; int length = gVarArr.length; while (i < length) { c.i.a.c.f2.g gVar = gVarArr[i]; @@ -2451,17 +2450,17 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { TrackGroupArray trackGroupArray; u uVar2; int i = 0; - this.U = this.U || j != this.E.f781s || !aVar.equals(this.E.f780c); + this.U = this.U || j != this.E.f782s || !aVar.equals(this.E.f781c); G(); c1 c1Var = this.E; TrackGroupArray trackGroupArray2 = c1Var.h; m mVar2 = c1Var.i; List list = c1Var.j; if (this.A.j) { - x0 x0Var = this.f953z.h; + x0 x0Var = this.f954z.h; TrackGroupArray trackGroupArray3 = x0Var == null ? TrackGroupArray.i : x0Var.m; m mVar3 = x0Var == null ? this.l : x0Var.n; - c.i.a.c.f2.g[] gVarArr = mVar3.f871c; + c.i.a.c.f2.g[] gVarArr = mVar3.f872c; c.i.a.f.e.o.c.n(4, "initialCapacity"); Object[] objArr = new Object[4]; int length = gVarArr.length; @@ -2501,14 +2500,14 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } if (x0Var != null) { y0 y0Var = x0Var.f; - if (y0Var.f1019c != j2) { + if (y0Var.f1020c != j2) { x0Var.f = y0Var.a(j2); } } uVar = uVar2; trackGroupArray = trackGroupArray3; mVar = mVar3; - } else if (!aVar.equals(c1Var.f780c)) { + } else if (!aVar.equals(c1Var.f781c)) { TrackGroupArray trackGroupArray4 = TrackGroupArray.i; m mVar4 = this.l; c.i.b.b.a aVar3 = u.j; @@ -2524,7 +2523,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final boolean v() { - x0 x0Var = this.f953z.j; + x0 x0Var = this.f954z.j; if (x0Var == null) { return false; } @@ -2532,9 +2531,9 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } public final boolean x() { - x0 x0Var = this.f953z.h; + x0 x0Var = this.f954z.h; long j = x0Var.f.e; - return x0Var.d && (j == -9223372036854775807L || this.E.f781s < j || !e0()); + return x0Var.d && (j == -9223372036854775807L || this.E.f782s < j || !e0()); } public final void y() { @@ -2544,9 +2543,9 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { if (!v()) { z2 = false; } else { - x0 x0Var = this.f953z.j; + x0 x0Var = this.f954z.j; long o = o(!x0Var.d ? 0 : x0Var.a.c()); - if (x0Var == this.f953z.h) { + if (x0Var == this.f954z.h) { j2 = this.S; j = x0Var.o; } else { @@ -2557,9 +2556,9 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { } this.K = z2; if (z2) { - x0 x0Var2 = this.f953z.j; + x0 x0Var2 = this.f954z.j; long j3 = this.S; - AnimatableValueParser.D(x0Var2.g()); + c.c.a.a0.d.D(x0Var2.g()); x0Var2.a.g(j3 - x0Var2.o); } k0(); @@ -2572,7 +2571,7 @@ public final class q0 implements Handler.Callback, v.a, b1.d, m0.a, h1.a { dVar.a = z2; dVar.b = c1Var; if (z2) { - o0 o0Var = ((o) this.f952y).a; + o0 o0Var = ((o) this.f953y).a; o0Var.e.a.post(new t(o0Var, dVar)); this.F = new d(this.E); } diff --git a/app/src/main/java/c/i/a/c/q1.java b/app/src/main/java/c/i/a/c/q1.java index b714eed631..f2eb726a93 100644 --- a/app/src/main/java/c/i/a/c/q1.java +++ b/app/src/main/java/c/i/a/c/q1.java @@ -7,9 +7,9 @@ import android.content.IntentFilter; import android.media.AudioManager; import android.os.Handler; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.i2.f0; import c.i.a.c.i2.p; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Iterator; import org.webrtc.MediaStreamTrack; /* compiled from: StreamVolumeManager */ @@ -18,7 +18,7 @@ public final class q1 { public final Handler b; /* renamed from: c reason: collision with root package name */ - public final b f958c; + public final b f959c; public final AudioManager d; @Nullable public c e; @@ -46,9 +46,9 @@ public final class q1 { Context applicationContext = context.getApplicationContext(); this.a = applicationContext; this.b = handler; - this.f958c = bVar; + this.f959c = bVar; AudioManager audioManager = (AudioManager) applicationContext.getSystemService(MediaStreamTrack.AUDIO_TRACK_KIND); - AnimatableValueParser.H(audioManager); + d.H(audioManager); this.d = audioManager; this.g = b(audioManager, 3); this.h = a(audioManager, this.f); diff --git a/app/src/main/java/c/i/a/c/r1.java b/app/src/main/java/c/i/a/c/r1.java index bb014c248b..3c6b1ef94d 100644 --- a/app/src/main/java/c/i/a/c/r1.java +++ b/app/src/main/java/c/i/a/c/r1.java @@ -3,10 +3,10 @@ package c.i.a.c; import android.net.Uri; import android.util.Pair; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.d2.j0.a; import c.i.a.c.i2.f0; import c.i.a.c.v0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Objects; /* compiled from: Timeline */ public abstract class r1 { @@ -53,7 +53,7 @@ public abstract class r1 { public Object b; /* renamed from: c reason: collision with root package name */ - public int f959c; + public int f960c; public long d; public long e; public c.i.a.c.d2.j0.a f = c.i.a.c.d2.j0.a.a; @@ -129,7 +129,7 @@ public abstract class r1 { return false; } b bVar = (b) obj; - return f0.a(this.a, bVar.a) && f0.a(this.b, bVar.b) && this.f959c == bVar.f959c && this.d == bVar.d && this.e == bVar.e && f0.a(this.f, bVar.f); + return f0.a(this.a, bVar.a) && f0.a(this.b, bVar.b) && this.f960c == bVar.f960c && this.d == bVar.d && this.e == bVar.e && f0.a(this.f, bVar.f); } public int hashCode() { @@ -142,7 +142,7 @@ public abstract class r1 { } long j = this.d; long j2 = this.e; - return this.f.hashCode() + ((((((((hashCode + i) * 31) + this.f959c) * 31) + ((int) (j ^ (j >>> 32)))) * 31) + ((int) (j2 ^ (j2 >>> 32)))) * 31); + return this.f.hashCode() + ((((((((hashCode + i) * 31) + this.f960c) * 31) + ((int) (j ^ (j >>> 32)))) * 31) + ((int) (j2 ^ (j2 >>> 32)))) * 31); } } @@ -152,7 +152,7 @@ public abstract class r1 { public static final v0 b; /* renamed from: c reason: collision with root package name */ - public Object f960c = a; + public Object f961c = a; @Nullable @Deprecated public Object d; @@ -175,7 +175,7 @@ public abstract class r1 { public long r; /* renamed from: s reason: collision with root package name */ - public long f961s; + public long f962s; static { v0.c cVar = new v0.c(); @@ -193,13 +193,13 @@ public abstract class r1 { } public boolean c() { - AnimatableValueParser.D(this.l == (this.m != null)); + d.D(this.l == (this.m != null)); return this.m != null; } public c d(Object obj, @Nullable v0 v0Var, @Nullable Object obj2, long j, long j2, long j3, boolean z2, boolean z3, @Nullable v0.f fVar, long j4, long j5, int i, int i2, long j6) { v0.g gVar; - this.f960c = obj; + this.f961c = obj; this.e = v0Var != null ? v0Var : b; this.d = (v0Var == null || (gVar = v0Var.b) == null) ? null : gVar.h; this.f = obj2; @@ -214,7 +214,7 @@ public abstract class r1 { this.r = j5; this.o = i; this.p = i2; - this.f961s = j6; + this.f962s = j6; this.n = false; return this; } @@ -227,11 +227,11 @@ public abstract class r1 { return false; } c cVar = (c) obj; - return f0.a(this.f960c, cVar.f960c) && f0.a(this.e, cVar.e) && f0.a(this.f, cVar.f) && f0.a(this.m, cVar.m) && this.g == cVar.g && this.h == cVar.h && this.i == cVar.i && this.j == cVar.j && this.k == cVar.k && this.n == cVar.n && this.q == cVar.q && this.r == cVar.r && this.o == cVar.o && this.p == cVar.p && this.f961s == cVar.f961s; + return f0.a(this.f961c, cVar.f961c) && f0.a(this.e, cVar.e) && f0.a(this.f, cVar.f) && f0.a(this.m, cVar.m) && this.g == cVar.g && this.h == cVar.h && this.i == cVar.i && this.j == cVar.j && this.k == cVar.k && this.n == cVar.n && this.q == cVar.q && this.r == cVar.r && this.o == cVar.o && this.p == cVar.p && this.f962s == cVar.f962s; } public int hashCode() { - int hashCode = (this.e.hashCode() + ((this.f960c.hashCode() + 217) * 31)) * 31; + int hashCode = (this.e.hashCode() + ((this.f961c.hashCode() + 217) * 31)) * 31; Object obj = this.f; int i = 0; int hashCode2 = (hashCode + (obj == null ? 0 : obj.hashCode())) * 31; @@ -244,7 +244,7 @@ public abstract class r1 { long j3 = this.i; long j4 = this.q; long j5 = this.r; - long j6 = this.f961s; + long j6 = this.f962s; return ((((((((((((((((((((((hashCode2 + i) * 31) + ((int) (j ^ (j >>> 32)))) * 31) + ((int) (j2 ^ (j2 >>> 32)))) * 31) + ((int) (j3 ^ (j3 >>> 32)))) * 31) + (this.j ? 1 : 0)) * 31) + (this.k ? 1 : 0)) * 31) + (this.n ? 1 : 0)) * 31) + ((int) (j4 ^ (j4 >>> 32)))) * 31) + ((int) (j5 ^ (j5 >>> 32)))) * 31) + this.o) * 31) + this.p) * 31) + ((int) (j6 ^ (j6 >>> 32))); } } @@ -263,7 +263,7 @@ public abstract class r1 { } public final int d(int i, b bVar, c cVar, int i2, boolean z2) { - int i3 = g(i, bVar, false).f959c; + int i3 = g(i, bVar, false).f960c; if (n(i3, cVar).p != i) { return i + 1; } @@ -352,7 +352,7 @@ public abstract class r1 { @Nullable public final Pair k(c cVar, b bVar, int i, long j, long j2) { - AnimatableValueParser.t(i, 0, p()); + d.t(i, 0, p()); o(i, cVar, j2); if (j == -9223372036854775807L) { j = cVar.q; @@ -361,7 +361,7 @@ public abstract class r1 { } } int i2 = cVar.o; - long j3 = cVar.f961s + j; + long j3 = cVar.f962s + j; long j4 = g(i2, bVar, true).d; while (j4 != -9223372036854775807L && j3 >= j4 && i2 < cVar.p) { j3 -= j4; diff --git a/app/src/main/java/c/i/a/c/s1.java b/app/src/main/java/c/i/a/c/s1.java index e31b5f127b..99b6ae2edd 100644 --- a/app/src/main/java/c/i/a/c/s1.java +++ b/app/src/main/java/c/i/a/c/s1.java @@ -12,7 +12,7 @@ public final class s1 { public PowerManager.WakeLock b; /* renamed from: c reason: collision with root package name */ - public boolean f962c; + public boolean f963c; public boolean d; public s1(Context context) { @@ -23,7 +23,7 @@ public final class s1 { public final void a() { PowerManager.WakeLock wakeLock = this.b; if (wakeLock != null) { - if (!this.f962c || !this.d) { + if (!this.f963c || !this.d) { wakeLock.release(); } else { wakeLock.acquire(); diff --git a/app/src/main/java/c/i/a/c/t.java b/app/src/main/java/c/i/a/c/t.java index 945b1c7471..59039b1629 100644 --- a/app/src/main/java/c/i/a/c/t.java +++ b/app/src/main/java/c/i/a/c/t.java @@ -1,7 +1,7 @@ package c.i.a.c; +import c.c.a.a0.d; import c.i.a.c.q0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; import java.util.List; /* compiled from: lambda */ @@ -18,8 +18,8 @@ public final /* synthetic */ class t implements Runnable { public final void run() { o0 o0Var = this.i; q0.d dVar = this.j; - int i = o0Var.f939s - dVar.f955c; - o0Var.f939s = i; + int i = o0Var.f940s - dVar.f956c; + o0Var.f940s = i; boolean z2 = true; if (dVar.d) { o0Var.t = true; @@ -30,16 +30,16 @@ public final /* synthetic */ class t implements Runnable { } if (i == 0) { r1 r1Var = dVar.b.b; - if (!o0Var.f940x.b.q() && r1Var.q()) { - o0Var.f941y = -1; - o0Var.f942z = 0; + if (!o0Var.f941x.b.q() && r1Var.q()) { + o0Var.f942y = -1; + o0Var.f943z = 0; } if (!r1Var.q()) { List asList = Arrays.asList(((i1) r1Var).i); if (asList.size() != o0Var.j.size()) { z2 = false; } - AnimatableValueParser.D(z2); + d.D(z2); for (int i2 = 0; i2 < asList.size(); i2++) { o0Var.j.get(i2).b = (r1) asList.get(i2); } diff --git a/app/src/main/java/c/i/a/c/t1.java b/app/src/main/java/c/i/a/c/t1.java index d95d0ba37e..d820391789 100644 --- a/app/src/main/java/c/i/a/c/t1.java +++ b/app/src/main/java/c/i/a/c/t1.java @@ -11,7 +11,7 @@ public final class t1 { public WifiManager.WifiLock b; /* renamed from: c reason: collision with root package name */ - public boolean f963c; + public boolean f964c; public boolean d; public t1(Context context) { @@ -21,7 +21,7 @@ public final class t1 { public final void a() { WifiManager.WifiLock wifiLock = this.b; if (wifiLock != null) { - if (!this.f963c || !this.d) { + if (!this.f964c || !this.d) { wifiLock.release(); } else { wifiLock.acquire(); diff --git a/app/src/main/java/c/i/a/c/u1/b1.java b/app/src/main/java/c/i/a/c/u1/b1.java index 20d9d7799e..898710fea4 100644 --- a/app/src/main/java/c/i/a/c/u1/b1.java +++ b/app/src/main/java/c/i/a/c/u1/b1.java @@ -1,11 +1,11 @@ package c.i.a.c.u1; import android.util.SparseArray; +import c.c.a.a0.d; import c.i.a.c.g1; import c.i.a.c.i2.o; import c.i.a.c.i2.t; import c.i.a.c.u1.d1; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Objects; /* compiled from: lambda */ public final /* synthetic */ class b1 implements o.b { @@ -25,7 +25,7 @@ public final /* synthetic */ class b1 implements o.b { bVar.b.clear(); int i = 0; while (i < bVar.a.size()) { - AnimatableValueParser.k(i >= 0 && i < bVar.a.size()); + d.k(i >= 0 && i < bVar.a.size()); int keyAt = bVar.a.keyAt(i); SparseArray sparseArray2 = bVar.b; d1.a aVar = sparseArray.get(keyAt); diff --git a/app/src/main/java/c/i/a/c/u1/c1.java b/app/src/main/java/c/i/a/c/u1/c1.java index 7a538a22f4..cf806635e2 100644 --- a/app/src/main/java/c/i/a/c/u1/c1.java +++ b/app/src/main/java/c/i/a/c/u1/c1.java @@ -54,7 +54,7 @@ public class c1 implements g1.a, q, w, z, d.a, c.i.a.c.z1.q { public u b = q0.k; /* renamed from: c reason: collision with root package name */ - public c.i.b.b.w f964c = r0.l; + public c.i.b.b.w f965c = r0.l; @Nullable public y.a d; public y.a e; @@ -89,7 +89,7 @@ public class c1 implements g1.a, q, w, z, d.a, c.i.a.c.z1.q { if (!aVar.a.equals(obj)) { return false; } - return (z2 && aVar.b == i && aVar.f817c == i2) || (!z2 && aVar.b == -1 && aVar.e == i3); + return (z2 && aVar.b == i && aVar.f818c == i2) || (!z2 && aVar.b == -1 && aVar.e == i3); } public final void a(w.a aVar, @Nullable y.a aVar2, r1 r1Var) { @@ -98,7 +98,7 @@ public class c1 implements g1.a, q, w, z, d.a, c.i.a.c.z1.q { aVar.c(aVar2, r1Var); return; } - r1 r1Var2 = this.f964c.get(aVar2); + r1 r1Var2 = this.f965c.get(aVar2); if (r1Var2 != null) { aVar.c(aVar2, r1Var2); } @@ -123,7 +123,7 @@ public class c1 implements g1.a, q, w, z, d.a, c.i.a.c.z1.q { a(aVar, this.d, r1Var); } } - this.f964c = aVar.a(); + this.f965c = aVar.a(); } } @@ -379,7 +379,7 @@ public class c1 implements g1.a, q, w, z, d.a, c.i.a.c.z1.q { boolean z3 = r1Var.equals(this.o.D()) && i == this.o.o(); long j2 = 0; if (aVar2 != null && aVar2.a()) { - if (z3 && this.o.w() == aVar2.b && this.o.m() == aVar2.f817c) { + if (z3 && this.o.w() == aVar2.b && this.o.m() == aVar2.f818c) { z2 = true; } if (z2) { @@ -407,9 +407,9 @@ public class c1 implements g1.a, q, w, z, d.a, c.i.a.c.z1.q { public final d1.a a0(@Nullable y.a aVar) { Objects.requireNonNull(this.o); - r1 r1Var = aVar == null ? null : this.l.f964c.get(aVar); + r1 r1Var = aVar == null ? null : this.l.f965c.get(aVar); if (aVar != null && r1Var != null) { - return Z(r1Var, r1Var.h(aVar.a, this.j).f959c, aVar); + return Z(r1Var, r1Var.h(aVar.a, this.j).f960c, aVar); } int o = this.o.o(); r1 D = this.o.D(); @@ -433,7 +433,7 @@ public class c1 implements g1.a, q, w, z, d.a, c.i.a.c.z1.q { Objects.requireNonNull(this.o); boolean z2 = false; if (aVar != null) { - if (this.l.f964c.get(aVar) != null) { + if (this.l.f965c.get(aVar) != null) { z2 = true; } return z2 ? a0(aVar) : Z(r1.a, i, aVar); diff --git a/app/src/main/java/c/i/a/c/u1/d1.java b/app/src/main/java/c/i/a/c/u1/d1.java index beb41084d8..2d22cd3570 100644 --- a/app/src/main/java/c/i/a/c/u1/d1.java +++ b/app/src/main/java/c/i/a/c/u1/d1.java @@ -17,7 +17,7 @@ public interface d1 { public final r1 b; /* renamed from: c reason: collision with root package name */ - public final int f965c; + public final int f966c; @Nullable public final y.a d; public final long e; @@ -31,7 +31,7 @@ public interface d1 { public a(long j, r1 r1Var, int i, @Nullable y.a aVar, long j2, r1 r1Var2, int i2, @Nullable y.a aVar2, long j3, long j4) { this.a = j; this.b = r1Var; - this.f965c = i; + this.f966c = i; this.d = aVar; this.e = j2; this.f = r1Var2; @@ -49,11 +49,11 @@ public interface d1 { return false; } a aVar = (a) obj; - return this.a == aVar.a && this.f965c == aVar.f965c && this.e == aVar.e && this.g == aVar.g && this.i == aVar.i && this.j == aVar.j && c.B(this.b, aVar.b) && c.B(this.d, aVar.d) && c.B(this.f, aVar.f) && c.B(this.h, aVar.h); + return this.a == aVar.a && this.f966c == aVar.f966c && this.e == aVar.e && this.g == aVar.g && this.i == aVar.i && this.j == aVar.j && c.B(this.b, aVar.b) && c.B(this.d, aVar.d) && c.B(this.f, aVar.f) && c.B(this.h, aVar.h); } public int hashCode() { - return Arrays.hashCode(new Object[]{Long.valueOf(this.a), this.b, Integer.valueOf(this.f965c), this.d, Long.valueOf(this.e), this.f, Integer.valueOf(this.g), this.h, Long.valueOf(this.i), Long.valueOf(this.j)}); + return Arrays.hashCode(new Object[]{Long.valueOf(this.a), this.b, Integer.valueOf(this.f966c), this.d, Long.valueOf(this.e), this.f, Integer.valueOf(this.g), this.h, Long.valueOf(this.i), Long.valueOf(this.j)}); } } diff --git a/app/src/main/java/c/i/a/c/u1/f0.java b/app/src/main/java/c/i/a/c/u1/f0.java index c9300bcea5..fa0d0fb2ca 100644 --- a/app/src/main/java/c/i/a/c/u1/f0.java +++ b/app/src/main/java/c/i/a/c/u1/f0.java @@ -11,14 +11,14 @@ public final /* synthetic */ class f0 implements o.a { public final /* synthetic */ r b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ u f966c; + public final /* synthetic */ u f967c; public final /* synthetic */ IOException d; public final /* synthetic */ boolean e; public /* synthetic */ f0(d1.a aVar, r rVar, u uVar, IOException iOException, boolean z2) { this.a = aVar; this.b = rVar; - this.f966c = uVar; + this.f967c = uVar; this.d = iOException; this.e = z2; } diff --git a/app/src/main/java/c/i/a/c/u1/h.java b/app/src/main/java/c/i/a/c/u1/h.java index dee7a1557f..dfbe977d24 100644 --- a/app/src/main/java/c/i/a/c/u1/h.java +++ b/app/src/main/java/c/i/a/c/u1/h.java @@ -10,12 +10,12 @@ public final /* synthetic */ class h implements o.a { public final /* synthetic */ TrackGroupArray b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ k f967c; + public final /* synthetic */ k f968c; public /* synthetic */ h(d1.a aVar, TrackGroupArray trackGroupArray, k kVar) { this.a = aVar; this.b = trackGroupArray; - this.f967c = kVar; + this.f968c = kVar; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/i0.java b/app/src/main/java/c/i/a/c/u1/i0.java index afa36efb8b..a68acabd33 100644 --- a/app/src/main/java/c/i/a/c/u1/i0.java +++ b/app/src/main/java/c/i/a/c/u1/i0.java @@ -10,12 +10,12 @@ public final /* synthetic */ class i0 implements o.a { public final /* synthetic */ r b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ u f968c; + public final /* synthetic */ u f969c; public /* synthetic */ i0(d1.a aVar, r rVar, u uVar) { this.a = aVar; this.b = rVar; - this.f968c = uVar; + this.f969c = uVar; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/j.java b/app/src/main/java/c/i/a/c/u1/j.java index fcd6d4e360..acfc8ad4ac 100644 --- a/app/src/main/java/c/i/a/c/u1/j.java +++ b/app/src/main/java/c/i/a/c/u1/j.java @@ -8,14 +8,14 @@ public final /* synthetic */ class j implements o.a { public final /* synthetic */ int b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ int f969c; + public final /* synthetic */ int f970c; public final /* synthetic */ int d; public final /* synthetic */ float e; public /* synthetic */ j(d1.a aVar, int i, int i2, int i3, float f) { this.a = aVar; this.b = i; - this.f969c = i2; + this.f970c = i2; this.d = i3; this.e = f; } diff --git a/app/src/main/java/c/i/a/c/u1/k.java b/app/src/main/java/c/i/a/c/u1/k.java index 1c5f3e7982..0b48dda9e0 100644 --- a/app/src/main/java/c/i/a/c/u1/k.java +++ b/app/src/main/java/c/i/a/c/u1/k.java @@ -8,13 +8,13 @@ public final /* synthetic */ class k implements o.a { public final /* synthetic */ int b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ long f970c; + public final /* synthetic */ long f971c; public final /* synthetic */ long d; public /* synthetic */ k(d1.a aVar, int i, long j, long j2) { this.a = aVar; this.b = i; - this.f970c = j; + this.f971c = j; this.d = j2; } diff --git a/app/src/main/java/c/i/a/c/u1/l0.java b/app/src/main/java/c/i/a/c/u1/l0.java index c3a0a8a75f..36cb23a6e9 100644 --- a/app/src/main/java/c/i/a/c/u1/l0.java +++ b/app/src/main/java/c/i/a/c/u1/l0.java @@ -10,12 +10,12 @@ public final /* synthetic */ class l0 implements o.a { public final /* synthetic */ Format b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ e f971c; + public final /* synthetic */ e f972c; public /* synthetic */ l0(d1.a aVar, Format format, e eVar) { this.a = aVar; this.b = format; - this.f971c = eVar; + this.f972c = eVar; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/m.java b/app/src/main/java/c/i/a/c/u1/m.java index 56ce238c6c..76f1e788fd 100644 --- a/app/src/main/java/c/i/a/c/u1/m.java +++ b/app/src/main/java/c/i/a/c/u1/m.java @@ -8,12 +8,12 @@ public final /* synthetic */ class m implements o.a { public final /* synthetic */ String b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ long f972c; + public final /* synthetic */ long f973c; public /* synthetic */ m(d1.a aVar, String str, long j) { this.a = aVar; this.b = str; - this.f972c = j; + this.f973c = j; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/m0.java b/app/src/main/java/c/i/a/c/u1/m0.java index 6cc380ba7c..55d2925367 100644 --- a/app/src/main/java/c/i/a/c/u1/m0.java +++ b/app/src/main/java/c/i/a/c/u1/m0.java @@ -10,12 +10,12 @@ public final /* synthetic */ class m0 implements o.a { public final /* synthetic */ Format b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ e f973c; + public final /* synthetic */ e f974c; public /* synthetic */ m0(d1.a aVar, Format format, e eVar) { this.a = aVar; this.b = format; - this.f973c = eVar; + this.f974c = eVar; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/n.java b/app/src/main/java/c/i/a/c/u1/n.java index f8707a1ce2..5e6dc99a07 100644 --- a/app/src/main/java/c/i/a/c/u1/n.java +++ b/app/src/main/java/c/i/a/c/u1/n.java @@ -8,12 +8,12 @@ public final /* synthetic */ class n implements o.a { public final /* synthetic */ int b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ int f974c; + public final /* synthetic */ int f975c; public /* synthetic */ n(d1.a aVar, int i, int i2) { this.a = aVar; this.b = i; - this.f974c = i2; + this.f975c = i2; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/n0.java b/app/src/main/java/c/i/a/c/u1/n0.java index 3d822c6f83..3996ad8950 100644 --- a/app/src/main/java/c/i/a/c/u1/n0.java +++ b/app/src/main/java/c/i/a/c/u1/n0.java @@ -10,12 +10,12 @@ public final /* synthetic */ class n0 implements o.a { public final /* synthetic */ r b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ u f975c; + public final /* synthetic */ u f976c; public /* synthetic */ n0(d1.a aVar, r rVar, u uVar) { this.a = aVar; this.b = rVar; - this.f975c = uVar; + this.f976c = uVar; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/o.java b/app/src/main/java/c/i/a/c/u1/o.java index ed7b7567f6..b6b0984a32 100644 --- a/app/src/main/java/c/i/a/c/u1/o.java +++ b/app/src/main/java/c/i/a/c/u1/o.java @@ -9,12 +9,12 @@ public final /* synthetic */ class o implements o.a { public final /* synthetic */ v0 b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ int f976c; + public final /* synthetic */ int f977c; public /* synthetic */ o(d1.a aVar, v0 v0Var, int i) { this.a = aVar; this.b = v0Var; - this.f976c = i; + this.f977c = i; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/o0.java b/app/src/main/java/c/i/a/c/u1/o0.java index d7820130a7..0ff065aebc 100644 --- a/app/src/main/java/c/i/a/c/u1/o0.java +++ b/app/src/main/java/c/i/a/c/u1/o0.java @@ -8,12 +8,12 @@ public final /* synthetic */ class o0 implements o.a { public final /* synthetic */ long b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ int f977c; + public final /* synthetic */ int f978c; public /* synthetic */ o0(d1.a aVar, long j, int i) { this.a = aVar; this.b = j; - this.f977c = i; + this.f978c = i; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/s0.java b/app/src/main/java/c/i/a/c/u1/s0.java index fbb071ed5e..017206729a 100644 --- a/app/src/main/java/c/i/a/c/u1/s0.java +++ b/app/src/main/java/c/i/a/c/u1/s0.java @@ -8,12 +8,12 @@ public final /* synthetic */ class s0 implements o.a { public final /* synthetic */ boolean b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ int f978c; + public final /* synthetic */ int f979c; public /* synthetic */ s0(d1.a aVar, boolean z2, int i) { this.a = aVar; this.b = z2; - this.f978c = i; + this.f979c = i; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/t0.java b/app/src/main/java/c/i/a/c/u1/t0.java index 31c66f1e89..b7d5b41afd 100644 --- a/app/src/main/java/c/i/a/c/u1/t0.java +++ b/app/src/main/java/c/i/a/c/u1/t0.java @@ -8,12 +8,12 @@ public final /* synthetic */ class t0 implements o.a { public final /* synthetic */ boolean b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ int f979c; + public final /* synthetic */ int f980c; public /* synthetic */ t0(d1.a aVar, boolean z2, int i) { this.a = aVar; this.b = z2; - this.f979c = i; + this.f980c = i; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/v0.java b/app/src/main/java/c/i/a/c/u1/v0.java index 81a0ba375d..b07e0ff43e 100644 --- a/app/src/main/java/c/i/a/c/u1/v0.java +++ b/app/src/main/java/c/i/a/c/u1/v0.java @@ -8,12 +8,12 @@ public final /* synthetic */ class v0 implements o.a { public final /* synthetic */ String b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ long f980c; + public final /* synthetic */ long f981c; public /* synthetic */ v0(d1.a aVar, String str, long j) { this.a = aVar; this.b = str; - this.f980c = j; + this.f981c = j; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/w.java b/app/src/main/java/c/i/a/c/u1/w.java index c3dcc60ae3..1fd4e320c7 100644 --- a/app/src/main/java/c/i/a/c/u1/w.java +++ b/app/src/main/java/c/i/a/c/u1/w.java @@ -10,12 +10,12 @@ public final /* synthetic */ class w implements o.a { public final /* synthetic */ r b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ u f981c; + public final /* synthetic */ u f982c; public /* synthetic */ w(d1.a aVar, r rVar, u uVar) { this.a = aVar; this.b = rVar; - this.f981c = uVar; + this.f982c = uVar; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/z.java b/app/src/main/java/c/i/a/c/u1/z.java index 9416bf6942..ffd8677a05 100644 --- a/app/src/main/java/c/i/a/c/u1/z.java +++ b/app/src/main/java/c/i/a/c/u1/z.java @@ -8,12 +8,12 @@ public final /* synthetic */ class z implements o.a { public final /* synthetic */ int b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ long f982c; + public final /* synthetic */ long f983c; public /* synthetic */ z(d1.a aVar, int i, long j) { this.a = aVar; this.b = i; - this.f982c = j; + this.f983c = j; } @Override // c.i.a.c.i2.o.a diff --git a/app/src/main/java/c/i/a/c/u1/z0.java b/app/src/main/java/c/i/a/c/u1/z0.java index 182456dcd5..063166c3bc 100644 --- a/app/src/main/java/c/i/a/c/u1/z0.java +++ b/app/src/main/java/c/i/a/c/u1/z0.java @@ -8,13 +8,13 @@ public final /* synthetic */ class z0 implements o.a { public final /* synthetic */ int b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ long f983c; + public final /* synthetic */ long f984c; public final /* synthetic */ long d; public /* synthetic */ z0(d1.a aVar, int i, long j, long j2) { this.a = aVar; this.b = i; - this.f983c = j; + this.f984c = j; this.d = j2; } diff --git a/app/src/main/java/c/i/a/c/v0.java b/app/src/main/java/c/i/a/c/v0.java index fc51640e40..e065f91b56 100644 --- a/app/src/main/java/c/i/a/c/v0.java +++ b/app/src/main/java/c/i/a/c/v0.java @@ -3,7 +3,6 @@ package c.i.a.c; import android.net.Uri; import androidx.annotation.Nullable; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; import java.util.Collections; import java.util.List; @@ -17,7 +16,7 @@ public final class v0 { public final g b; /* renamed from: c reason: collision with root package name */ - public final f f984c; + public final f f985c; public final w0 d; public final d e; @@ -60,7 +59,7 @@ public final class v0 { @Nullable /* renamed from: c reason: collision with root package name */ - public String f985c; + public String f986c; public long d; public boolean e; public boolean f; @@ -83,7 +82,7 @@ public final class v0 { @Nullable /* renamed from: s reason: collision with root package name */ - public Uri f986s; + public Uri f987s; @Nullable public Object t; @Nullable @@ -93,23 +92,23 @@ public final class v0 { public long w = -9223372036854775807L; /* renamed from: x reason: collision with root package name */ - public long f987x = -9223372036854775807L; + public long f988x = -9223372036854775807L; /* renamed from: y reason: collision with root package name */ - public long f988y = -9223372036854775807L; + public long f989y = -9223372036854775807L; /* renamed from: z reason: collision with root package name */ - public float f989z = -3.4028235E38f; + public float f990z = -3.4028235E38f; public v0 a() { g gVar; - AnimatableValueParser.D(this.h == null || this.j != null); + c.c.a.a0.d.D(this.h == null || this.j != null); Uri uri = this.b; if (uri != null) { - String str = this.f985c; + String str = this.f986c; UUID uuid = this.j; e eVar = uuid != null ? new e(uuid, this.h, this.i, this.k, this.m, this.l, this.n, this.o, null) : null; - Uri uri2 = this.f986s; + Uri uri2 = this.f987s; g gVar2 = new g(uri, str, eVar, uri2 != null ? new b(uri2, this.t, null) : null, this.p, this.q, this.r, this.u, null); String str2 = this.a; if (str2 == null) { @@ -123,7 +122,7 @@ public final class v0 { String str3 = this.a; Objects.requireNonNull(str3); d dVar = new d(this.d, Long.MIN_VALUE, this.e, this.f, this.g, null); - f fVar = new f(this.w, this.f987x, this.f988y, this.f989z, this.A); + f fVar = new f(this.w, this.f988x, this.f989y, this.f990z, this.A); w0 w0Var = this.v; if (w0Var == null) { w0Var = new w0(null, null); @@ -138,14 +137,14 @@ public final class v0 { public final long b; /* renamed from: c reason: collision with root package name */ - public final boolean f990c; + public final boolean f991c; public final boolean d; public final boolean e; public d(long j, long j2, boolean z2, boolean z3, boolean z4, a aVar) { this.a = j; this.b = j2; - this.f990c = z2; + this.f991c = z2; this.d = z3; this.e = z4; } @@ -158,13 +157,13 @@ public final class v0 { return false; } d dVar = (d) obj; - return this.a == dVar.a && this.b == dVar.b && this.f990c == dVar.f990c && this.d == dVar.d && this.e == dVar.e; + return this.a == dVar.a && this.b == dVar.b && this.f991c == dVar.f991c && this.d == dVar.d && this.e == dVar.e; } public int hashCode() { long j = this.a; long j2 = this.b; - return (((((((((int) (j ^ (j >>> 32))) * 31) + ((int) (j2 ^ (j2 >>> 32)))) * 31) + (this.f990c ? 1 : 0)) * 31) + (this.d ? 1 : 0)) * 31) + (this.e ? 1 : 0); + return (((((((((int) (j ^ (j >>> 32))) * 31) + ((int) (j2 ^ (j2 >>> 32)))) * 31) + (this.f991c ? 1 : 0)) * 31) + (this.d ? 1 : 0)) * 31) + (this.e ? 1 : 0); } } @@ -175,7 +174,7 @@ public final class v0 { public final Uri b; /* renamed from: c reason: collision with root package name */ - public final Map f991c; + public final Map f992c; public final boolean d; public final boolean e; public final boolean f; @@ -184,10 +183,10 @@ public final class v0 { public final byte[] h; public e(UUID uuid, Uri uri, Map map, boolean z2, boolean z3, boolean z4, List list, byte[] bArr, a aVar) { - AnimatableValueParser.k(!z3 || uri != null); + c.c.a.a0.d.k(!z3 || uri != null); this.a = uuid; this.b = uri; - this.f991c = map; + this.f992c = map; this.d = z2; this.f = z3; this.e = z4; @@ -203,14 +202,14 @@ public final class v0 { return false; } e eVar = (e) obj; - return this.a.equals(eVar.a) && f0.a(this.b, eVar.b) && f0.a(this.f991c, eVar.f991c) && this.d == eVar.d && this.f == eVar.f && this.e == eVar.e && this.g.equals(eVar.g) && Arrays.equals(this.h, eVar.h); + return this.a.equals(eVar.a) && f0.a(this.b, eVar.b) && f0.a(this.f992c, eVar.f992c) && this.d == eVar.d && this.f == eVar.f && this.e == eVar.e && this.g.equals(eVar.g) && Arrays.equals(this.h, eVar.h); } public int hashCode() { int hashCode = this.a.hashCode() * 31; Uri uri = this.b; int hashCode2 = uri != null ? uri.hashCode() : 0; - int hashCode3 = this.f991c.hashCode(); + int hashCode3 = this.f992c.hashCode(); return Arrays.hashCode(this.h) + ((this.g.hashCode() + ((((((((hashCode3 + ((hashCode + hashCode2) * 31)) * 31) + (this.d ? 1 : 0)) * 31) + (this.f ? 1 : 0)) * 31) + (this.e ? 1 : 0)) * 31)) * 31); } } @@ -221,14 +220,14 @@ public final class v0 { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f992c; + public final long f993c; public final float d; public final float e; public f(long j, long j2, long j3, float f, float f2) { this.a = j; this.b = j2; - this.f992c = j3; + this.f993c = j3; this.d = f; this.e = f2; } @@ -241,13 +240,13 @@ public final class v0 { return false; } f fVar = (f) obj; - return this.a == fVar.a && this.b == fVar.b && this.f992c == fVar.f992c && this.d == fVar.d && this.e == fVar.e; + return this.a == fVar.a && this.b == fVar.b && this.f993c == fVar.f993c && this.d == fVar.d && this.e == fVar.e; } public int hashCode() { long j = this.a; long j2 = this.b; - long j3 = this.f992c; + long j3 = this.f993c; int i = ((((((int) (j ^ (j >>> 32))) * 31) + ((int) (j2 ^ (j2 >>> 32)))) * 31) + ((int) (j3 ^ (j3 >>> 32)))) * 31; float f = this.d; int i2 = 0; @@ -268,7 +267,7 @@ public final class v0 { @Nullable /* renamed from: c reason: collision with root package name */ - public final e f993c; + public final e f994c; @Nullable public final b d; public final List e; @@ -281,7 +280,7 @@ public final class v0 { public g(Uri uri, String str, e eVar, b bVar, List list, String str2, List list2, Object obj, a aVar) { this.a = uri; this.b = str; - this.f993c = eVar; + this.f994c = eVar; this.d = bVar; this.e = list; this.f = str2; @@ -297,7 +296,7 @@ public final class v0 { return false; } g gVar = (g) obj; - return this.a.equals(gVar.a) && f0.a(this.b, gVar.b) && f0.a(this.f993c, gVar.f993c) && f0.a(this.d, gVar.d) && this.e.equals(gVar.e) && f0.a(this.f, gVar.f) && this.g.equals(gVar.g) && f0.a(this.h, gVar.h); + return this.a.equals(gVar.a) && f0.a(this.b, gVar.b) && f0.a(this.f994c, gVar.f994c) && f0.a(this.d, gVar.d) && this.e.equals(gVar.e) && f0.a(this.f, gVar.f) && this.g.equals(gVar.g) && f0.a(this.h, gVar.h); } public int hashCode() { @@ -305,7 +304,7 @@ public final class v0 { String str = this.b; int i = 0; int hashCode2 = (hashCode + (str == null ? 0 : str.hashCode())) * 31; - e eVar = this.f993c; + e eVar = this.f994c; int hashCode3 = (hashCode2 + (eVar == null ? 0 : eVar.hashCode())) * 31; b bVar = this.d; int hashCode4 = (this.e.hashCode() + ((hashCode3 + (bVar == null ? 0 : bVar.hashCode())) * 31)) * 31; @@ -322,7 +321,7 @@ public final class v0 { public v0(String str, d dVar, g gVar, f fVar, w0 w0Var, a aVar) { this.a = str; this.b = gVar; - this.f984c = fVar; + this.f985c = fVar; this.d = w0Var; this.e = dVar; } @@ -335,14 +334,14 @@ public final class v0 { return false; } v0 v0Var = (v0) obj; - return f0.a(this.a, v0Var.a) && this.e.equals(v0Var.e) && f0.a(this.b, v0Var.b) && f0.a(this.f984c, v0Var.f984c) && f0.a(this.d, v0Var.d); + return f0.a(this.a, v0Var.a) && this.e.equals(v0Var.e) && f0.a(this.b, v0Var.b) && f0.a(this.f985c, v0Var.f985c) && f0.a(this.d, v0Var.d); } public int hashCode() { int hashCode = this.a.hashCode() * 31; g gVar = this.b; int hashCode2 = gVar != null ? gVar.hashCode() : 0; - int hashCode3 = this.f984c.hashCode(); + int hashCode3 = this.f985c.hashCode(); return this.d.hashCode() + ((this.e.hashCode() + ((hashCode3 + ((hashCode + hashCode2) * 31)) * 31)) * 31); } } diff --git a/app/src/main/java/c/i/a/c/v1/a0.java b/app/src/main/java/c/i/a/c/v1/a0.java index 8518f27971..a0e70bd415 100644 --- a/app/src/main/java/c/i/a/c/v1/a0.java +++ b/app/src/main/java/c/i/a/c/v1/a0.java @@ -84,7 +84,7 @@ public final class a0 extends u { public AudioProcessor.a f(AudioProcessor.a aVar) throws AudioProcessor.UnhandledAudioFormatException { int i = aVar.d; if (i == 3 || i == 2 || i == 268435456 || i == 536870912 || i == 805306368 || i == 4) { - return i != 2 ? new AudioProcessor.a(aVar.b, aVar.f2283c, 2) : AudioProcessor.a.a; + return i != 2 ? new AudioProcessor.a(aVar.b, aVar.f2286c, 2) : AudioProcessor.a.a; } throw new AudioProcessor.UnhandledAudioFormatException(aVar); } diff --git a/app/src/main/java/c/i/a/c/v1/b0.java b/app/src/main/java/c/i/a/c/v1/b0.java index 38165784cd..c43bc68849 100644 --- a/app/src/main/java/c/i/a/c/v1/b0.java +++ b/app/src/main/java/c/i/a/c/v1/b0.java @@ -1,7 +1,7 @@ package c.i.a.c.v1; +import c.c.a.a0.d; import c.i.a.c.i2.f0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.audio.AudioProcessor; import java.nio.ByteBuffer; /* compiled from: SilenceSkippingAudioProcessor */ @@ -18,11 +18,11 @@ public final class b0 extends u { public int r; /* renamed from: s reason: collision with root package name */ - public boolean f994s; + public boolean f995s; public long t; public b0() { - AnimatableValueParser.k(true); + d.k(true); byte[] bArr = f0.f; this.n = bArr; this.o = bArr; @@ -62,7 +62,7 @@ public final class b0 extends u { int remaining = byteBuffer.remaining(); j(remaining).put(byteBuffer).flip(); if (remaining > 0) { - this.f994s = true; + this.f995s = true; } } byteBuffer.limit(limit); @@ -82,7 +82,7 @@ public final class b0 extends u { this.q = i5; byte[] bArr2 = this.n; if (i5 == bArr2.length) { - if (this.f994s) { + if (this.f995s) { l(bArr2, this.r); this.t += (long) ((this.q - (this.r * 2)) / this.l); } else { @@ -144,7 +144,7 @@ public final class b0 extends u { this.p = 0; this.t = 0; this.q = 0; - this.f994s = false; + this.f995s = false; } @Override // c.i.a.c.v1.u @@ -153,7 +153,7 @@ public final class b0 extends u { if (i > 0) { l(this.n, i); } - if (!this.f994s) { + if (!this.f995s) { this.t += (long) (this.r / this.l); } } @@ -180,7 +180,7 @@ public final class b0 extends u { public final void l(byte[] bArr, int i) { j(i).put(bArr, 0, i).flip(); if (i > 0) { - this.f994s = true; + this.f995s = true; } } diff --git a/app/src/main/java/c/i/a/c/v1/c0.java b/app/src/main/java/c/i/a/c/v1/c0.java index 151387cbe2..c3156a0252 100644 --- a/app/src/main/java/c/i/a/c/v1/c0.java +++ b/app/src/main/java/c/i/a/c/v1/c0.java @@ -1,6 +1,6 @@ package c.i.a.c.v1; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.discord.utilities.rest.SendUtils; import java.util.Arrays; /* compiled from: Sonic */ @@ -9,7 +9,7 @@ public final class c0 { public final int b; /* renamed from: c reason: collision with root package name */ - public final float f995c; + public final float f996c; public final float d; public final float e; public final int f; @@ -27,7 +27,7 @@ public final class c0 { public int r; /* renamed from: s reason: collision with root package name */ - public int f996s; + public int f997s; public int t; public int u; public int v; @@ -35,7 +35,7 @@ public final class c0 { public c0(int i, int i2, float f, float f2, int i3) { this.a = i; this.b = i2; - this.f995c = f; + this.f996c = f; this.d = f2; this.e = ((float) i) / ((float) i3); this.f = i / 400; @@ -127,7 +127,7 @@ public final class c0 { int i6; int i7; int i8 = this.m; - float f = this.f995c; + float f = this.f996c; float f2 = this.d; float f3 = f / f2; float f4 = this.e * f2; @@ -178,9 +178,9 @@ public final class c0 { } } int i21 = this.u; - int i22 = i21 != 0 && this.f996s != 0 && this.v <= i21 * 3 && i21 * 2 > this.t * 3 ? this.f996s : i5; + int i22 = i21 != 0 && this.f997s != 0 && this.v <= i21 * 3 && i21 * 2 > this.t * 3 ? this.f997s : i5; this.t = i21; - this.f996s = i5; + this.f997s = i5; if (d > 1.0d) { short[] sArr2 = this.j; if (f3 >= 2.0f) { @@ -286,7 +286,7 @@ public final class c0 { this.p = i3; if (i3 == i27) { this.p = 0; - AnimatableValueParser.D(i4 == i28); + d.D(i4 == i28); this.q = 0; } i31++; diff --git a/app/src/main/java/c/i/a/c/v1/d0.java b/app/src/main/java/c/i/a/c/v1/d0.java index 96540f9898..1304d10d19 100644 --- a/app/src/main/java/c/i/a/c/v1/d0.java +++ b/app/src/main/java/c/i/a/c/v1/d0.java @@ -11,7 +11,7 @@ public final class d0 implements AudioProcessor { public int b; /* renamed from: c reason: collision with root package name */ - public float f997c = 1.0f; + public float f998c = 1.0f; public float d = 1.0f; public AudioProcessor.a e; public AudioProcessor.a f; @@ -42,7 +42,7 @@ public final class d0 implements AudioProcessor { @Override // com.google.android.exoplayer2.audio.AudioProcessor public boolean a() { - return this.f.b != -1 && (Math.abs(this.f997c - 1.0f) >= 1.0E-4f || Math.abs(this.d - 1.0f) >= 1.0E-4f || this.f.b != this.e.b); + return this.f.b != -1 && (Math.abs(this.f998c - 1.0f) >= 1.0E-4f || Math.abs(this.d - 1.0f) >= 1.0E-4f || this.f.b != this.e.b); } @Override // com.google.android.exoplayer2.audio.AudioProcessor @@ -79,7 +79,7 @@ public final class d0 implements AudioProcessor { i = aVar.b; } this.e = aVar; - AudioProcessor.a aVar2 = new AudioProcessor.a(i, aVar.f2283c, 2); + AudioProcessor.a aVar2 = new AudioProcessor.a(i, aVar.f2286c, 2); this.f = aVar2; this.i = true; return aVar2; @@ -93,7 +93,7 @@ public final class d0 implements AudioProcessor { c0 c0Var = this.j; if (c0Var != null) { int i2 = c0Var.k; - float f = c0Var.f995c; + float f = c0Var.f996c; float f2 = c0Var.d; float f3 = c0Var.e * f2; int i3 = c0Var.m + ((int) ((((((float) i2) / (f / f2)) + ((float) c0Var.o)) / f3) + 0.5f)); @@ -128,7 +128,7 @@ public final class d0 implements AudioProcessor { AudioProcessor.a aVar2 = this.f; this.h = aVar2; if (this.i) { - this.j = new c0(aVar.b, aVar.f2283c, this.f997c, this.d, aVar2.b); + this.j = new c0(aVar.b, aVar.f2286c, this.f998c, this.d, aVar2.b); } else { c0 c0Var = this.j; if (c0Var != null) { @@ -138,7 +138,7 @@ public final class d0 implements AudioProcessor { c0Var.p = 0; c0Var.q = 0; c0Var.r = 0; - c0Var.f996s = 0; + c0Var.f997s = 0; c0Var.t = 0; c0Var.u = 0; c0Var.v = 0; @@ -183,7 +183,7 @@ public final class d0 implements AudioProcessor { @Override // com.google.android.exoplayer2.audio.AudioProcessor public void reset() { - this.f997c = 1.0f; + this.f998c = 1.0f; this.d = 1.0f; AudioProcessor.a aVar = AudioProcessor.a.a; this.e = aVar; diff --git a/app/src/main/java/c/i/a/c/v1/k.java b/app/src/main/java/c/i/a/c/v1/k.java index 1c52765a14..16213cc9a6 100644 --- a/app/src/main/java/c/i/a/c/v1/k.java +++ b/app/src/main/java/c/i/a/c/v1/k.java @@ -15,12 +15,12 @@ public final class k { public final int b; /* renamed from: c reason: collision with root package name */ - public final String f998c; + public final String f999c; public b(int i, int i2, String str, a aVar) { this.a = i; this.b = i2; - this.f998c = str; + this.f999c = str; } } diff --git a/app/src/main/java/c/i/a/c/v1/l.java b/app/src/main/java/c/i/a/c/v1/l.java index f647fb9010..f9260698fb 100644 --- a/app/src/main/java/c/i/a/c/v1/l.java +++ b/app/src/main/java/c/i/a/c/v1/l.java @@ -5,7 +5,7 @@ public final class l { public static final int[] b = {48000, 44100, 32000}; /* renamed from: c reason: collision with root package name */ - public static final int[] f999c = {24000, 22050, 16000}; + public static final int[] f1000c = {24000, 22050, 16000}; public static final int[] d = {2, 1, 2, 3, 3, 4, 4, 5}; public static final int[] e = {32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384, 448, 512, 576, 640}; public static final int[] f = {69, 87, 104, 121, 139, 174, 208, 243, 278, 348, 417, 487, 557, 696, 835, 975, 1114, 1253, 1393}; diff --git a/app/src/main/java/c/i/a/c/v1/m.java b/app/src/main/java/c/i/a/c/v1/m.java index 1d93bb56e5..b91fc1d42d 100644 --- a/app/src/main/java/c/i/a/c/v1/m.java +++ b/app/src/main/java/c/i/a/c/v1/m.java @@ -13,12 +13,12 @@ public final class m { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1000c; + public final int f1001c; public b(int i, int i2, int i3, int i4, int i5, a aVar) { this.a = i3; this.b = i4; - this.f1000c = i5; + this.f1001c = i5; } } diff --git a/app/src/main/java/c/i/a/c/v1/n.java b/app/src/main/java/c/i/a/c/v1/n.java index 6c28f7fa4b..9ce158d816 100644 --- a/app/src/main/java/c/i/a/c/v1/n.java +++ b/app/src/main/java/c/i/a/c/v1/n.java @@ -10,7 +10,7 @@ public final class n { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1001c; + public final int f1002c; public final int d; public final int e; @Nullable @@ -18,7 +18,7 @@ public final class n { public n(int i, int i2, int i3, int i4, a aVar) { this.b = i; - this.f1001c = i2; + this.f1002c = i2; this.d = i3; this.e = i4; } @@ -26,7 +26,7 @@ public final class n { @RequiresApi(21) public AudioAttributes a() { if (this.f == null) { - AudioAttributes.Builder usage = new AudioAttributes.Builder().setContentType(this.b).setFlags(this.f1001c).setUsage(this.d); + AudioAttributes.Builder usage = new AudioAttributes.Builder().setContentType(this.b).setFlags(this.f1002c).setUsage(this.d); if (f0.a >= 29) { usage.setAllowedCapturePolicy(this.e); } @@ -43,10 +43,10 @@ public final class n { return false; } n nVar = (n) obj; - return this.b == nVar.b && this.f1001c == nVar.f1001c && this.d == nVar.d && this.e == nVar.e; + return this.b == nVar.b && this.f1002c == nVar.f1002c && this.d == nVar.d && this.e == nVar.e; } public int hashCode() { - return ((((((527 + this.b) * 31) + this.f1001c) * 31) + this.d) * 31) + this.e; + return ((((((527 + this.b) * 31) + this.f1002c) * 31) + this.d) * 31) + this.e; } } diff --git a/app/src/main/java/c/i/a/c/v1/o.java b/app/src/main/java/c/i/a/c/v1/o.java index 8a439ff98d..9ea263807b 100644 --- a/app/src/main/java/c/i/a/c/v1/o.java +++ b/app/src/main/java/c/i/a/c/v1/o.java @@ -9,22 +9,22 @@ public final class o { public static final o b = new o(new int[]{2, 5, 6}, 8); /* renamed from: c reason: collision with root package name */ - public final int[] f1002c; + public final int[] f1003c; public final int d; public o(@Nullable int[] iArr, int i) { if (iArr != null) { int[] copyOf = Arrays.copyOf(iArr, iArr.length); - this.f1002c = copyOf; + this.f1003c = copyOf; Arrays.sort(copyOf); } else { - this.f1002c = new int[0]; + this.f1003c = new int[0]; } this.d = i; } public boolean a(int i) { - return Arrays.binarySearch(this.f1002c, i) >= 0; + return Arrays.binarySearch(this.f1003c, i) >= 0; } public boolean equals(@Nullable Object obj) { @@ -35,19 +35,19 @@ public final class o { return false; } o oVar = (o) obj; - return Arrays.equals(this.f1002c, oVar.f1002c) && this.d == oVar.d; + return Arrays.equals(this.f1003c, oVar.f1003c) && this.d == oVar.d; } public int hashCode() { - return (Arrays.hashCode(this.f1002c) * 31) + this.d; + return (Arrays.hashCode(this.f1003c) * 31) + this.d; } public String toString() { - StringBuilder P = a.P("AudioCapabilities[maxChannelCount="); - P.append(this.d); - P.append(", supportedEncodings="); - P.append(Arrays.toString(this.f1002c)); - P.append("]"); - return P.toString(); + StringBuilder O = a.O("AudioCapabilities[maxChannelCount="); + O.append(this.d); + O.append(", supportedEncodings="); + O.append(Arrays.toString(this.f1003c)); + O.append("]"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/c/v1/r.java b/app/src/main/java/c/i/a/c/v1/r.java index f6d52c2ddc..355f34a5ea 100644 --- a/app/src/main/java/c/i/a/c/v1/r.java +++ b/app/src/main/java/c/i/a/c/v1/r.java @@ -12,7 +12,7 @@ public final class r { public int b; /* renamed from: c reason: collision with root package name */ - public long f1003c; + public long f1004c; public long d; public long e; public long f; @@ -24,7 +24,7 @@ public final class r { public final AudioTimestamp b = new AudioTimestamp(); /* renamed from: c reason: collision with root package name */ - public long f1004c; + public long f1005c; public long d; public long e; @@ -54,7 +54,7 @@ public final class r { if (i == 0) { this.e = 0; this.f = -1; - this.f1003c = System.nanoTime() / 1000; + this.f1004c = System.nanoTime() / 1000; this.d = 10000; } else if (i == 1) { this.d = 10000; diff --git a/app/src/main/java/c/i/a/c/v1/s.java b/app/src/main/java/c/i/a/c/v1/s.java index 9ac6b01dfb..d3569d19c5 100644 --- a/app/src/main/java/c/i/a/c/v1/s.java +++ b/app/src/main/java/c/i/a/c/v1/s.java @@ -19,7 +19,7 @@ public final class s { @Nullable /* renamed from: c reason: collision with root package name */ - public AudioTrack f1005c; + public AudioTrack f1006c; public int d; public int e; @Nullable @@ -39,20 +39,20 @@ public final class s { public long r; /* renamed from: s reason: collision with root package name */ - public long f1006s; + public long f1007s; public long t; public long u; public int v; public int w; /* renamed from: x reason: collision with root package name */ - public long f1007x; + public long f1008x; /* renamed from: y reason: collision with root package name */ - public long f1008y; + public long f1009y; /* renamed from: z reason: collision with root package name */ - public long f1009z; + public long f1010z; /* compiled from: AudioTrackPositionTracker */ public interface a { @@ -83,10 +83,10 @@ public final class s { } public final long b() { - AudioTrack audioTrack = this.f1005c; + AudioTrack audioTrack = this.f1006c; Objects.requireNonNull(audioTrack); - if (this.f1007x != -9223372036854775807L) { - return Math.min(this.A, this.f1009z + ((((SystemClock.elapsedRealtime() * 1000) - this.f1007x) * ((long) this.g)) / 1000000)); + if (this.f1008x != -9223372036854775807L) { + return Math.min(this.A, this.f1010z + ((((SystemClock.elapsedRealtime() * 1000) - this.f1008x) * ((long) this.g)) / 1000000)); } int playState = audioTrack.getPlayState(); if (playState == 1) { @@ -95,23 +95,23 @@ public final class s { long playbackHeadPosition = 4294967295L & ((long) audioTrack.getPlaybackHeadPosition()); if (this.h) { if (playState == 2 && playbackHeadPosition == 0) { - this.u = this.f1006s; + this.u = this.f1007s; } playbackHeadPosition += this.u; } if (f0.a <= 29) { - if (playbackHeadPosition == 0 && this.f1006s > 0 && playState == 3) { - if (this.f1008y == -9223372036854775807L) { - this.f1008y = SystemClock.elapsedRealtime(); + if (playbackHeadPosition == 0 && this.f1007s > 0 && playState == 3) { + if (this.f1009y == -9223372036854775807L) { + this.f1009y = SystemClock.elapsedRealtime(); } - return this.f1006s; + return this.f1007s; } - this.f1008y = -9223372036854775807L; + this.f1009y = -9223372036854775807L; } - if (this.f1006s > playbackHeadPosition) { + if (this.f1007s > playbackHeadPosition) { this.t++; } - this.f1006s = playbackHeadPosition; + this.f1007s = playbackHeadPosition; return playbackHeadPosition + (this.t << 32); } @@ -120,7 +120,7 @@ public final class s { boolean z2; if (j <= b()) { if (this.h) { - AudioTrack audioTrack = this.f1005c; + AudioTrack audioTrack = this.f1006c; Objects.requireNonNull(audioTrack); if (audioTrack.getPlayState() == 2 && b() == 0) { z2 = true; @@ -144,7 +144,7 @@ public final class s { this.C = 0; this.F = 0; this.k = false; - this.f1005c = null; + this.f1006c = null; this.f = null; } @@ -152,7 +152,7 @@ public final class s { if ((c.i.a.c.i2.f0.a < 23 && (r5 == 5 || r5 == 6)) != false) goto L_0x002a; */ public void e(AudioTrack audioTrack, boolean z2, int i, int i2, int i3) { - this.f1005c = audioTrack; + this.f1006c = audioTrack; this.d = i2; this.e = i3; this.f = new r(audioTrack); @@ -165,12 +165,12 @@ public final class s { boolean z4 = f0.z(i); this.q = z4; this.i = z4 ? a((long) (i3 / i2)) : -9223372036854775807L; - this.f1006s = 0; + this.f1007s = 0; this.t = 0; this.u = 0; this.p = false; - this.f1007x = -9223372036854775807L; - this.f1008y = -9223372036854775807L; + this.f1008x = -9223372036854775807L; + this.f1009y = -9223372036854775807L; this.r = 0; this.o = 0; this.j = 1.0f; diff --git a/app/src/main/java/c/i/a/c/v1/u.java b/app/src/main/java/c/i/a/c/v1/u.java index 109e0bdf81..d49a554fc1 100644 --- a/app/src/main/java/c/i/a/c/v1/u.java +++ b/app/src/main/java/c/i/a/c/v1/u.java @@ -9,7 +9,7 @@ public abstract class u implements AudioProcessor { public AudioProcessor.a b; /* renamed from: c reason: collision with root package name */ - public AudioProcessor.a f1010c; + public AudioProcessor.a f1011c; public AudioProcessor.a d; public AudioProcessor.a e; public ByteBuffer f; @@ -24,7 +24,7 @@ public abstract class u implements AudioProcessor { this.d = aVar; this.e = aVar; this.b = aVar; - this.f1010c = aVar; + this.f1011c = aVar; } @Override // com.google.android.exoplayer2.audio.AudioProcessor @@ -58,7 +58,7 @@ public abstract class u implements AudioProcessor { this.g = AudioProcessor.a; this.h = false; this.b = this.d; - this.f1010c = this.e; + this.f1011c = this.e; g(); } @@ -98,7 +98,7 @@ public abstract class u implements AudioProcessor { this.d = aVar; this.e = aVar; this.b = aVar; - this.f1010c = aVar; + this.f1011c = aVar; i(); } } diff --git a/app/src/main/java/c/i/a/c/v1/v.java b/app/src/main/java/c/i/a/c/v1/v.java index 4b70eda8ae..aae8afdd2d 100644 --- a/app/src/main/java/c/i/a/c/v1/v.java +++ b/app/src/main/java/c/i/a/c/v1/v.java @@ -17,7 +17,7 @@ public final class v extends u { Objects.requireNonNull(iArr); int position = byteBuffer.position(); int limit = byteBuffer.limit(); - ByteBuffer j = j(((limit - position) / this.b.e) * this.f1010c.e); + ByteBuffer j = j(((limit - position) / this.b.e) * this.f1011c.e); while (position < limit) { for (int i : iArr) { j.putShort(byteBuffer.getShort((i * 2) + position)); @@ -35,11 +35,11 @@ public final class v extends u { return AudioProcessor.a.a; } if (aVar.d == 2) { - boolean z2 = aVar.f2283c != iArr.length; + boolean z2 = aVar.f2286c != iArr.length; int i = 0; while (i < iArr.length) { int i2 = iArr[i]; - if (i2 < aVar.f2283c) { + if (i2 < aVar.f2286c) { z2 |= i2 != i; i++; } else { diff --git a/app/src/main/java/c/i/a/c/v1/w.java b/app/src/main/java/c/i/a/c/v1/w.java index 2b9bf91eff..644f860a33 100644 --- a/app/src/main/java/c/i/a/c/v1/w.java +++ b/app/src/main/java/c/i/a/c/v1/w.java @@ -5,5 +5,5 @@ public final class w { public static final int[] b = {-1, 8000, 16000, 32000, -1, -1, 11025, 22050, 44100, -1, -1, 12000, 24000, 48000, -1, -1}; /* renamed from: c reason: collision with root package name */ - public static final int[] f1011c = {64, 112, 128, 192, 224, 256, 384, 448, 512, 640, 768, 896, 1024, 1152, 1280, 1536, 1920, 2048, 2304, 2560, 2688, 2816, 2823, 2944, 3072, 3840, 4096, 6144, 7680}; + public static final int[] f1012c = {64, 112, 128, 192, 224, 256, 384, 448, 512, 640, 768, 896, 1024, 1152, 1280, 1536, 1920, 2048, 2304, 2560, 2688, 2816, 2823, 2944, 3072, 3840, 4096, 6144, 7680}; } diff --git a/app/src/main/java/c/i/a/c/v1/x.java b/app/src/main/java/c/i/a/c/v1/x.java index 4637e63ea7..e49e54ebb2 100644 --- a/app/src/main/java/c/i/a/c/v1/x.java +++ b/app/src/main/java/c/i/a/c/v1/x.java @@ -45,7 +45,7 @@ public final class x extends u { public AudioProcessor.a f(AudioProcessor.a aVar) throws AudioProcessor.UnhandledAudioFormatException { int i2 = aVar.d; if (f0.y(i2)) { - return i2 != 4 ? new AudioProcessor.a(aVar.b, aVar.f2283c, 4) : AudioProcessor.a.a; + return i2 != 4 ? new AudioProcessor.a(aVar.b, aVar.f2286c, 4) : AudioProcessor.a.a; } throw new AudioProcessor.UnhandledAudioFormatException(aVar); } diff --git a/app/src/main/java/c/i/a/c/v1/y.java b/app/src/main/java/c/i/a/c/v1/y.java index 6cd9eea0ec..bdee2ee595 100644 --- a/app/src/main/java/c/i/a/c/v1/y.java +++ b/app/src/main/java/c/i/a/c/v1/y.java @@ -18,7 +18,6 @@ import c.i.a.c.s0; import c.i.a.c.v1.q; import c.i.a.c.x1.d; import c.i.a.c.x1.e; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ExoPlaybackException; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.audio.AudioSink; @@ -189,19 +188,19 @@ public class y extends MediaCodecRenderer implements r { this.S0 = C0; String str = sVar.a; int i = f0.a; - if (i < 24 && "OMX.SEC.aac.dec".equals(str) && "samsung".equals(f0.f911c)) { + if (i < 24 && "OMX.SEC.aac.dec".equals(str) && "samsung".equals(f0.f912c)) { String str2 = f0.b; if (str2.startsWith("zeroflte") || str2.startsWith("herolte") || str2.startsWith("heroqlte")) { z2 = true; this.T0 = z2; - String str3 = sVar.f777c; + String str3 = sVar.f778c; int i2 = this.S0; mediaFormat = new MediaFormat(); mediaFormat.setString("mime", str3); mediaFormat.setInteger("channel-count", format.G); mediaFormat.setInteger("sample-rate", format.H); - AnimatableValueParser.z2(mediaFormat, format.v); - AnimatableValueParser.M1(mediaFormat, "max-input-size", i2); + c.c.a.a0.d.W1(mediaFormat, format.v); + c.c.a.a0.d.j1(mediaFormat, "max-input-size", i2); if (i >= 23) { mediaFormat.setInteger("priority", 0); if (f != -1.0f) { @@ -228,9 +227,9 @@ public class y extends MediaCodecRenderer implements r { int i4 = format.H; Format.b bVar = new Format.b(); bVar.k = "audio/raw"; - bVar.f2280x = i3; - bVar.f2281y = i4; - bVar.f2282z = 4; + bVar.f2283x = i3; + bVar.f2284y = i4; + bVar.f2285z = 4; if (audioSink.s(bVar.a()) == 2) { mediaFormat.setInteger("pcm-encoding", 4); } @@ -247,14 +246,14 @@ public class y extends MediaCodecRenderer implements r { } z2 = false; this.T0 = z2; - String str3 = sVar.f777c; + String str3 = sVar.f778c; int i2 = this.S0; mediaFormat = new MediaFormat(); mediaFormat.setString("mime", str3); mediaFormat.setInteger("channel-count", format.G); mediaFormat.setInteger("sample-rate", format.H); - AnimatableValueParser.z2(mediaFormat, format.v); - AnimatableValueParser.M1(mediaFormat, "max-input-size", i2); + c.c.a.a0.d.W1(mediaFormat, format.v); + c.c.a.a0.d.j1(mediaFormat, "max-input-size", i2); if (i >= 23) { } mediaFormat.setInteger("ac4-is-sync", 1); @@ -366,11 +365,11 @@ public class y extends MediaCodecRenderer implements r { int r = "audio/raw".equals(format.t) ? format.I : (f0.a < 24 || !mediaFormat.containsKey("pcm-encoding")) ? mediaFormat.containsKey("v-bits-per-sample") ? f0.r(mediaFormat.getInteger("v-bits-per-sample")) : "audio/raw".equals(format.t) ? format.I : 2 : mediaFormat.getInteger("pcm-encoding"); Format.b bVar = new Format.b(); bVar.k = "audio/raw"; - bVar.f2282z = r; + bVar.f2285z = r; bVar.A = format.J; bVar.B = format.K; - bVar.f2280x = mediaFormat.getInteger("channel-count"); - bVar.f2281y = mediaFormat.getInteger("sample-rate"); + bVar.f2283x = mediaFormat.getInteger("channel-count"); + bVar.f2284y = mediaFormat.getInteger("sample-rate"); Format a2 = bVar.a(); if (this.T0 && a2.G == 6 && (i = format.G) < 6) { iArr = new int[i]; @@ -511,9 +510,9 @@ public class y extends MediaCodecRenderer implements r { int i3 = format.H; Format.b bVar = new Format.b(); bVar.k = "audio/raw"; - bVar.f2280x = i2; - bVar.f2281y = i3; - bVar.f2282z = 2; + bVar.f2283x = i2; + bVar.f2284y = i3; + bVar.f2285z = 2; if (!audioSink.a(bVar.a())) { return 1; } diff --git a/app/src/main/java/c/i/a/c/v1/z.java b/app/src/main/java/c/i/a/c/v1/z.java index 2307194555..804e83d364 100644 --- a/app/src/main/java/c/i/a/c/v1/z.java +++ b/app/src/main/java/c/i/a/c/v1/z.java @@ -8,7 +8,7 @@ public final class z { public static final int[] b = {44100, 48000, 32000}; /* renamed from: c reason: collision with root package name */ - public static final int[] f1012c = {32000, 64000, 96000, 128000, 160000, 192000, 224000, 256000, 288000, 320000, 352000, 384000, 416000, 448000}; + public static final int[] f1013c = {32000, 64000, 96000, 128000, 160000, 192000, 224000, 256000, 288000, 320000, 352000, 384000, 416000, 448000}; public static final int[] d = {32000, 48000, 56000, 64000, RestAPIAbortCodes.RELATIONSHIP_INCOMING_DISABLED, 96000, 112000, 128000, 144000, 160000, 176000, 192000, 224000, 256000}; public static final int[] e = {32000, 48000, 56000, 64000, RestAPIAbortCodes.RELATIONSHIP_INCOMING_DISABLED, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000, 384000}; public static final int[] f = {32000, 40000, 48000, 56000, 64000, RestAPIAbortCodes.RELATIONSHIP_INCOMING_DISABLED, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000}; @@ -21,7 +21,7 @@ public final class z { public String b; /* renamed from: c reason: collision with root package name */ - public int f1013c; + public int f1014c; public int d; public int e; public int f; @@ -48,22 +48,22 @@ public final class z { int i8 = (i >>> 9) & 1; this.g = z.b(i2, i3); if (i3 == 3) { - int i9 = i2 == 3 ? z.f1012c[i4 - 1] : z.d[i4 - 1]; + int i9 = i2 == 3 ? z.f1013c[i4 - 1] : z.d[i4 - 1]; this.f = i9; - this.f1013c = (((i9 * 12) / this.d) + i8) * 4; + this.f1014c = (((i9 * 12) / this.d) + i8) * 4; } else { int i10 = 144; if (i2 == 3) { int i11 = i3 == 2 ? z.e[i4 - 1] : z.f[i4 - 1]; this.f = i11; - this.f1013c = ((i11 * 144) / this.d) + i8; + this.f1014c = ((i11 * 144) / this.d) + i8; } else { int i12 = z.g[i4 - 1]; this.f = i12; if (i3 == 1) { i10 = 72; } - this.f1013c = ((i10 * i12) / this.d) + i8; + this.f1014c = ((i10 * i12) / this.d) + i8; } } if (((i >> 6) & 3) == 3) { @@ -90,7 +90,7 @@ public final class z { } int i7 = (i >>> 9) & 1; if (i3 == 3) { - return ((((i2 == 3 ? f1012c[i4 - 1] : d[i4 - 1]) * 12) / i6) + i7) * 4; + return ((((i2 == 3 ? f1013c[i4 - 1] : d[i4 - 1]) * 12) / i6) + i7) * 4; } int i8 = i2 == 3 ? i3 == 2 ? e[i4 - 1] : f[i4 - 1] : g[i4 - 1]; int i9 = 144; diff --git a/app/src/main/java/c/i/a/c/x0.java b/app/src/main/java/c/i/a/c/x0.java index 54e8f2a54a..23fd4614e5 100644 --- a/app/src/main/java/c/i/a/c/x0.java +++ b/app/src/main/java/c/i/a/c/x0.java @@ -2,6 +2,7 @@ package c.i.a.c; import android.util.Pair; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.b1; import c.i.a.c.d2.f0; import c.i.a.c.d2.o; @@ -11,7 +12,6 @@ import c.i.a.c.f2.g; import c.i.a.c.f2.l; import c.i.a.c.f2.m; import c.i.a.c.i2.p; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.ExoPlaybackException; import com.google.android.exoplayer2.source.TrackGroupArray; import java.util.Objects; @@ -21,7 +21,7 @@ public final class x0 { public final Object b; /* renamed from: c reason: collision with root package name */ - public final f0[] f1014c; + public final f0[] f1015c; public boolean d; public boolean e; public y0 f; @@ -45,7 +45,7 @@ public final class x0 { this.b = aVar.a; this.f = y0Var; this.n = mVar2; - this.f1014c = new f0[l1VarArr.length]; + this.f1015c = new f0[l1VarArr.length]; this.h = new boolean[l1VarArr.length]; long j2 = y0Var.b; long j3 = y0Var.d; @@ -53,14 +53,14 @@ public final class x0 { Pair pair = (Pair) aVar.a; Object obj = pair.first; y.a b = aVar.b(pair.second); - b1.c cVar = b1Var.f768c.get(obj); + b1.c cVar = b1Var.f769c.get(obj); Objects.requireNonNull(cVar); b1Var.h.add(cVar); b1.b bVar = b1Var.g.get(cVar); if (bVar != null) { bVar.a.l(bVar.b); } - cVar.f770c.add(b); + cVar.f771c.add(b); v t = cVar.a.m(b, mVar, j2); b1Var.b.put(t, cVar); b1Var.d(); @@ -84,7 +84,7 @@ public final class x0 { zArr2[i] = z3; i++; } - f0[] f0VarArr = this.f1014c; + f0[] f0VarArr = this.f1015c; int i2 = 0; while (true) { l1[] l1VarArr = this.i; @@ -99,8 +99,8 @@ public final class x0 { b(); this.n = mVar; c(); - long m = this.a.m(mVar.f871c, this.h, this.f1014c, zArr, j); - f0[] f0VarArr2 = this.f1014c; + long m = this.a.m(mVar.f872c, this.h, this.f1015c, zArr, j); + f0[] f0VarArr2 = this.f1015c; int i3 = 0; while (true) { l1[] l1VarArr2 = this.i; @@ -115,17 +115,17 @@ public final class x0 { this.e = false; int i4 = 0; while (true) { - f0[] f0VarArr3 = this.f1014c; + f0[] f0VarArr3 = this.f1015c; if (i4 >= f0VarArr3.length) { return m; } if (f0VarArr3[i4] != null) { - AnimatableValueParser.D(mVar.b(i4)); + d.D(mVar.b(i4)); if (((g0) this.i[i4]).i != 7) { this.e = true; } } else { - AnimatableValueParser.D(mVar.f871c[i4] == null); + d.D(mVar.f872c[i4] == null); } i4++; } @@ -138,7 +138,7 @@ public final class x0 { m mVar = this.n; if (i < mVar.a) { boolean b = mVar.b(i); - g gVar = this.n.f871c[i]; + g gVar = this.n.f872c[i]; if (b && gVar != null) { gVar.g(); } @@ -157,7 +157,7 @@ public final class x0 { m mVar = this.n; if (i < mVar.a) { boolean b = mVar.b(i); - g gVar = this.n.f871c[i]; + g gVar = this.n.f872c[i]; if (b && gVar != null) { gVar.e(); } @@ -207,7 +207,7 @@ public final class x0 { public m i(float f, r1 r1Var) throws ExoPlaybackException { m b = this.j.b(this.i, this.m, this.f.a, r1Var); - g[] gVarArr = b.f871c; + g[] gVarArr = b.f872c; for (g gVar : gVarArr) { if (gVar != null) { gVar.i(f); diff --git a/app/src/main/java/c/i/a/c/x1/b.java b/app/src/main/java/c/i/a/c/x1/b.java index 0ff5a6efc2..099463573e 100644 --- a/app/src/main/java/c/i/a/c/x1/b.java +++ b/app/src/main/java/c/i/a/c/x1/b.java @@ -12,7 +12,7 @@ public final class b { public byte[] b; /* renamed from: c reason: collision with root package name */ - public int f1015c; + public int f1016c; @Nullable public int[] d; @Nullable diff --git a/app/src/main/java/c/i/a/c/x1/d.java b/app/src/main/java/c/i/a/c/x1/d.java index 7c5ef7602a..f2dff7e7c9 100644 --- a/app/src/main/java/c/i/a/c/x1/d.java +++ b/app/src/main/java/c/i/a/c/x1/d.java @@ -5,7 +5,7 @@ public final class d { public int b; /* renamed from: c reason: collision with root package name */ - public int f1016c; + public int f1017c; public int d; public int e; public int f; diff --git a/app/src/main/java/c/i/a/c/x1/e.java b/app/src/main/java/c/i/a/c/x1/e.java index 55cadd29be..7a1eb530c3 100644 --- a/app/src/main/java/c/i/a/c/x1/e.java +++ b/app/src/main/java/c/i/a/c/x1/e.java @@ -2,8 +2,8 @@ package c.i.a.c.x1; import android.text.TextUtils; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.d.b.a.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.Format; import java.util.Objects; /* compiled from: DecoderReuseEvaluation */ @@ -12,17 +12,17 @@ public final class e { public final Format b; /* renamed from: c reason: collision with root package name */ - public final Format f1017c; + public final Format f1018c; public final int d; public final int e; public e(String str, Format format, Format format2, int i, int i2) { - AnimatableValueParser.k(i == 0 || i2 == 0); + d.k(i == 0 || i2 == 0); if (!TextUtils.isEmpty(str)) { this.a = str; Objects.requireNonNull(format); this.b = format; - this.f1017c = format2; + this.f1018c = format2; this.d = i; this.e = i2; return; @@ -38,11 +38,11 @@ public final class e { return false; } e eVar = (e) obj; - return this.d == eVar.d && this.e == eVar.e && this.a.equals(eVar.a) && this.b.equals(eVar.b) && this.f1017c.equals(eVar.f1017c); + return this.d == eVar.d && this.e == eVar.e && this.a.equals(eVar.a) && this.b.equals(eVar.b) && this.f1018c.equals(eVar.f1018c); } public int hashCode() { int m = a.m(this.a, (((this.d + 527) * 31) + this.e) * 31, 31); - return this.f1017c.hashCode() + ((this.b.hashCode() + m) * 31); + return this.f1018c.hashCode() + ((this.b.hashCode() + m) * 31); } } diff --git a/app/src/main/java/c/i/a/c/x1/g.java b/app/src/main/java/c/i/a/c/x1/g.java index 9fb1adfa1e..d6c5bcea78 100644 --- a/app/src/main/java/c/i/a/c/x1/g.java +++ b/app/src/main/java/c/i/a/c/x1/g.java @@ -6,7 +6,6 @@ import c.i.a.c.e2.d; import c.i.a.c.e2.e; import c.i.a.c.e2.i; import c.i.a.c.x1.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.decoder.DecoderException; import com.google.android.exoplayer2.decoder.DecoderInputBuffer; import com.google.android.exoplayer2.text.SubtitleDecoderException; @@ -18,7 +17,7 @@ public abstract class g f1018c = new ArrayDeque<>(); + public final ArrayDeque f1019c = new ArrayDeque<>(); public final ArrayDeque d = new ArrayDeque<>(); public final I[] e; public final O[] f; @@ -82,7 +81,7 @@ public abstract class g 0) { + if (!this.f1019c.isEmpty() && this.h > 0) { break; } this.b.wait(); @@ -132,7 +131,7 @@ public abstract class g 0) { + if (!this.f1019c.isEmpty() && this.h > 0) { this.b.notify(); } } diff --git a/app/src/main/java/c/i/a/c/y.java b/app/src/main/java/c/i/a/c/y.java index 81b2f59e28..11ab0b68c0 100644 --- a/app/src/main/java/c/i/a/c/y.java +++ b/app/src/main/java/c/i/a/c/y.java @@ -21,7 +21,7 @@ public final /* synthetic */ class y implements Runnable { z0 z0Var = this.i; u.a aVar = this.j; y.a aVar2 = this.k; - c1 c1Var = z0Var.f1021c; + c1 c1Var = z0Var.f1022c; u c2 = aVar.c(); c1.a aVar3 = c1Var.l; g1 g1Var = c1Var.o; diff --git a/app/src/main/java/c/i/a/c/y0.java b/app/src/main/java/c/i/a/c/y0.java index b3d33942ce..0c028b0b6e 100644 --- a/app/src/main/java/c/i/a/c/y0.java +++ b/app/src/main/java/c/i/a/c/y0.java @@ -9,7 +9,7 @@ public final class y0 { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f1019c; + public final long f1020c; public final long d; public final long e; public final boolean f; @@ -19,7 +19,7 @@ public final class y0 { public y0(y.a aVar, long j, long j2, long j3, long j4, boolean z2, boolean z3, boolean z4) { this.a = aVar; this.b = j; - this.f1019c = j2; + this.f1020c = j2; this.d = j3; this.e = j4; this.f = z2; @@ -28,11 +28,11 @@ public final class y0 { } public y0 a(long j) { - return j == this.f1019c ? this : new y0(this.a, this.b, j, this.d, this.e, this.f, this.g, this.h); + return j == this.f1020c ? this : new y0(this.a, this.b, j, this.d, this.e, this.f, this.g, this.h); } public y0 b(long j) { - return j == this.b ? this : new y0(this.a, j, this.f1019c, this.d, this.e, this.f, this.g, this.h); + return j == this.b ? this : new y0(this.a, j, this.f1020c, this.d, this.e, this.f, this.g, this.h); } public boolean equals(@Nullable Object obj) { @@ -43,10 +43,10 @@ public final class y0 { return false; } y0 y0Var = (y0) obj; - return this.b == y0Var.b && this.f1019c == y0Var.f1019c && this.d == y0Var.d && this.e == y0Var.e && this.f == y0Var.f && this.g == y0Var.g && this.h == y0Var.h && f0.a(this.a, y0Var.a); + return this.b == y0Var.b && this.f1020c == y0Var.f1020c && this.d == y0Var.d && this.e == y0Var.e && this.f == y0Var.f && this.g == y0Var.g && this.h == y0Var.h && f0.a(this.a, y0Var.a); } public int hashCode() { - return ((((((((((((((this.a.hashCode() + 527) * 31) + ((int) this.b)) * 31) + ((int) this.f1019c)) * 31) + ((int) this.d)) * 31) + ((int) this.e)) * 31) + (this.f ? 1 : 0)) * 31) + (this.g ? 1 : 0)) * 31) + (this.h ? 1 : 0); + return ((((((((((((((this.a.hashCode() + 527) * 31) + ((int) this.b)) * 31) + ((int) this.f1020c)) * 31) + ((int) this.d)) * 31) + ((int) this.e)) * 31) + (this.f ? 1 : 0)) * 31) + (this.g ? 1 : 0)) * 31) + (this.h ? 1 : 0); } } diff --git a/app/src/main/java/c/i/a/c/y1/a.java b/app/src/main/java/c/i/a/c/y1/a.java index caa13dff6f..a306d0def8 100644 --- a/app/src/main/java/c/i/a/c/y1/a.java +++ b/app/src/main/java/c/i/a/c/y1/a.java @@ -7,12 +7,12 @@ public final class a { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1020c; + public final int f1021c; public a(int i, int i2, int i3) { this.a = i; this.b = i2; - this.f1020c = i3; + this.f1021c = i3; } public boolean equals(@Nullable Object obj) { @@ -23,10 +23,10 @@ public final class a { return false; } a aVar = (a) obj; - return this.a == aVar.a && this.b == aVar.b && this.f1020c == aVar.f1020c; + return this.a == aVar.a && this.b == aVar.b && this.f1021c == aVar.f1021c; } public int hashCode() { - return ((((527 + this.a) * 31) + this.b) * 31) + this.f1020c; + return ((((527 + this.a) * 31) + this.b) * 31) + this.f1021c; } } diff --git a/app/src/main/java/c/i/a/c/z0.java b/app/src/main/java/c/i/a/c/z0.java index e6127b5950..a766bb0613 100644 --- a/app/src/main/java/c/i/a/c/z0.java +++ b/app/src/main/java/c/i/a/c/z0.java @@ -4,12 +4,12 @@ import android.os.Handler; import android.util.Pair; import androidx.annotation.Nullable; import androidx.recyclerview.widget.RecyclerView; +import c.c.a.a0.d; import c.i.a.c.d2.j0.a; import c.i.a.c.d2.y; import c.i.a.c.r1; import c.i.a.c.u1.c1; import c.i.b.b.u; -import com.airbnb.lottie.parser.AnimatableValueParser; /* compiled from: MediaPeriodQueue */ public final class z0 { public final r1.b a = new r1.b(); @@ -17,7 +17,7 @@ public final class z0 { @Nullable /* renamed from: c reason: collision with root package name */ - public final c1 f1021c; + public final c1 f1022c; public final Handler d; public long e; public int f; @@ -34,7 +34,7 @@ public final class z0 { public long m; public z0(@Nullable c1 c1Var, Handler handler) { - this.f1021c = c1Var; + this.f1022c = c1Var; this.d = handler; } @@ -70,7 +70,7 @@ public final class z0 { public void b() { if (this.k != 0) { x0 x0Var = this.h; - AnimatableValueParser.H(x0Var); + d.H(x0Var); x0 x0Var2 = x0Var; this.l = x0Var2.b; this.m = x0Var2.f.a.d; @@ -97,7 +97,7 @@ public final class z0 { if (d == -1) { return null; } - int i = r1Var.g(d, this.a, true).f959c; + int i = r1Var.g(d, this.a, true).f960c; Object obj = this.a.b; long j5 = y0Var.a.d; if (r1Var.n(i, this.b).o == d) { @@ -130,21 +130,21 @@ public final class z0 { if (i3 == -1) { return null; } - int a = aVarArr[i2].a(aVar.f817c); + int a = aVarArr[i2].a(aVar.f818c); if (a < i3) { - return e(r1Var, aVar.a, i2, a, y0Var.f1019c, aVar.d); + return e(r1Var, aVar.a, i2, a, y0Var.f1020c, aVar.d); } - long j6 = y0Var.f1019c; + long j6 = y0Var.f1020c; if (j6 == -9223372036854775807L) { r1.c cVar = this.b; r1.b bVar = this.a; - Pair k2 = r1Var.k(cVar, bVar, bVar.f959c, -9223372036854775807L, Math.max(0L, j3)); + Pair k2 = r1Var.k(cVar, bVar, bVar.f960c, -9223372036854775807L, Math.max(0L, j3)); if (k2 == null) { return null; } j6 = ((Long) k2.second).longValue(); } - return f(r1Var, aVar.a, j6, y0Var.f1019c, aVar.d); + return f(r1Var, aVar.a, j6, y0Var.f1020c, aVar.d); } int c2 = this.a.c(y0Var.d); if (c2 == -1) { @@ -158,7 +158,7 @@ public final class z0 { @Nullable public final y0 d(r1 r1Var, y.a aVar, long j, long j2) { r1Var.h(aVar.a, this.a); - return aVar.a() ? e(r1Var, aVar.a, aVar.b, aVar.f817c, j, aVar.d) : f(r1Var, aVar.a, j2, j, aVar.d); + return aVar.a() ? e(r1Var, aVar.a, aVar.b, aVar.f818c, j, aVar.d) : f(r1Var, aVar.a, j2, j, aVar.d); } public final y0 e(r1 r1Var, Object obj, int i, int i2, long j, long j2) { @@ -192,14 +192,14 @@ public final class z0 { boolean i = i(r1Var, aVar, h); r1Var.h(y0Var.a.a, this.a); if (aVar.a()) { - j = this.a.a(aVar.b, aVar.f817c); + j = this.a.a(aVar.b, aVar.f818c); } else { j = y0Var.d; if (j == -9223372036854775807L || j == Long.MIN_VALUE) { j = this.a.d; } } - return new y0(aVar, y0Var.b, y0Var.f1019c, y0Var.d, j, h, j2, i); + return new y0(aVar, y0Var.b, y0Var.f1020c, y0Var.d, j, h, j2, i); } public final boolean h(y.a aVar) { @@ -208,7 +208,7 @@ public final class z0 { public final boolean i(r1 r1Var, y.a aVar, boolean z2) { int b = r1Var.b(aVar.a); - if (r1Var.n(r1Var.f(b, this.a).f959c, this.b).k) { + if (r1Var.n(r1Var.f(b, this.a).f960c, this.b).k) { return false; } return (r1Var.d(b, this.a, this.b, this.f, this.g) == -1) && z2; @@ -218,11 +218,11 @@ public final class z0 { if (!h(aVar)) { return false; } - return r1Var.n(r1Var.h(aVar.a, this.a).f959c, this.b).p == r1Var.b(aVar.a); + return r1Var.n(r1Var.h(aVar.a, this.a).f960c, this.b).p == r1Var.b(aVar.a); } public final void k() { - if (this.f1021c != null) { + if (this.f1022c != null) { c.i.b.b.a aVar = u.j; u.a aVar2 = new u.a(); for (x0 x0Var = this.h; x0Var != null; x0Var = x0Var.l) { @@ -236,7 +236,7 @@ public final class z0 { public void l(long j) { x0 x0Var = this.j; if (x0Var != null) { - AnimatableValueParser.D(x0Var.g()); + d.D(x0Var.g()); if (x0Var.d) { x0Var.a.s(j - x0Var.o); } @@ -245,7 +245,7 @@ public final class z0 { public boolean m(x0 x0Var) { boolean z2 = false; - AnimatableValueParser.D(x0Var != null); + d.D(x0Var != null); if (x0Var.equals(this.j)) { return false; } @@ -275,9 +275,9 @@ public final class z0 { public y.a n(r1 r1Var, Object obj, long j) { long j2; int b; - int i = r1Var.h(obj, this.a).f959c; + int i = r1Var.h(obj, this.a).f960c; Object obj2 = this.l; - if (obj2 == null || (b = r1Var.b(obj2)) == -1 || r1Var.f(b, this.a).f959c != i) { + if (obj2 == null || (b = r1Var.b(obj2)) == -1 || r1Var.f(b, this.a).f960c != i) { x0 x0Var = this.h; while (true) { if (x0Var == null) { @@ -285,7 +285,7 @@ public final class z0 { while (true) { if (x0Var2 != null) { int b2 = r1Var.b(x0Var2.b); - if (b2 != -1 && r1Var.f(b2, this.a).f959c == i) { + if (b2 != -1 && r1Var.f(b2, this.a).f960c == i) { j2 = x0Var2.f.a.d; break; } @@ -360,7 +360,7 @@ public final class z0 { } return !m; } - x0Var.f = y0Var.a(y0Var2.f1019c); + x0Var.f = y0Var.a(y0Var2.f1020c); long j3 = y0Var2.e; long j4 = y0Var.e; if (!(j3 == -9223372036854775807L || j3 == j4)) { diff --git a/app/src/main/java/c/i/a/c/z1/a0.java b/app/src/main/java/c/i/a/c/z1/a0.java index 0b47e5172d..5a6ef8bf75 100644 --- a/app/src/main/java/c/i/a/c/z1/a0.java +++ b/app/src/main/java/c/i/a/c/z1/a0.java @@ -3,6 +3,7 @@ package c.i.a.c.z1; import android.net.Uri; import android.text.TextUtils; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.c.h0; import c.i.a.c.h2.k; import c.i.a.c.h2.l; @@ -12,7 +13,6 @@ import c.i.a.c.h2.v; import c.i.a.c.i2.f0; import c.i.a.c.z1.x; import c.i.b.b.r0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.restapi.RestAPIBuilder; import com.google.android.exoplayer2.drm.MediaDrmCallbackException; import com.google.android.exoplayer2.upstream.HttpDataSource$InvalidResponseCodeException; @@ -30,14 +30,14 @@ public final class a0 implements b0 { public final String b; /* renamed from: c reason: collision with root package name */ - public final boolean f1022c; + public final boolean f1023c; public final Map d; public a0(@Nullable String str, boolean z2, s sVar) { - AnimatableValueParser.k(!z2 || !TextUtils.isEmpty(str)); + d.k(!z2 || !TextUtils.isEmpty(str)); this.a = sVar; this.b = str; - this.f1022c = z2; + this.f1023c = z2; this.d = new HashMap(); } @@ -46,7 +46,7 @@ public final class a0 implements b0 { v vVar = new v(((q.b) sVar).a()); Collections.emptyMap(); Uri parse = Uri.parse(str); - AnimatableValueParser.I(parse, "The uri must be set."); + d.I(parse, "The uri must be set."); l lVar = new l(parse, 0, 2, bArr, map, 0, -1, null, 1, null); l lVar2 = lVar; int i = 0; @@ -92,7 +92,7 @@ public final class a0 implements b0 { throw th; } } catch (Exception e2) { - Uri uri = vVar.f898c; + Uri uri = vVar.f899c; Objects.requireNonNull(uri); throw new MediaDrmCallbackException(lVar, uri, vVar.j(), vVar.b, e2); } @@ -101,13 +101,13 @@ public final class a0 implements b0 { public byte[] a(UUID uuid, x.a aVar) throws MediaDrmCallbackException { String str = aVar.b; - if (this.f1022c || TextUtils.isEmpty(str)) { + if (this.f1023c || TextUtils.isEmpty(str)) { str = this.b; } if (!TextUtils.isEmpty(str)) { HashMap hashMap = new HashMap(); UUID uuid2 = h0.e; - hashMap.put("Content-Type", uuid2.equals(uuid) ? "text/xml" : h0.f885c.equals(uuid) ? RestAPIBuilder.CONTENT_TYPE_JSON : "application/octet-stream"); + hashMap.put("Content-Type", uuid2.equals(uuid) ? "text/xml" : h0.f886c.equals(uuid) ? RestAPIBuilder.CONTENT_TYPE_JSON : "application/octet-stream"); if (uuid2.equals(uuid)) { hashMap.put("SOAPAction", "http://schemas.microsoft.com/DRM/2007/03/protocols/AcquireLicense"); } @@ -118,7 +118,7 @@ public final class a0 implements b0 { } Map emptyMap = Collections.emptyMap(); Uri uri = Uri.EMPTY; - AnimatableValueParser.I(uri, "The uri must be set."); + d.I(uri, "The uri must be set."); throw new MediaDrmCallbackException(new l(uri, 0, 1, null, emptyMap, 0, -1, null, 0, null), Uri.EMPTY, r0.l, 0, new IllegalStateException("No license URL")); } diff --git a/app/src/main/java/c/i/a/c/z1/m.java b/app/src/main/java/c/i/a/c/z1/m.java index 316ca2ad36..25b9a731e8 100644 --- a/app/src/main/java/c/i/a/c/z1/m.java +++ b/app/src/main/java/c/i/a/c/z1/m.java @@ -19,7 +19,7 @@ public final /* synthetic */ class m implements MediaDrm.OnEventListener { z zVar = this.a; x.b bVar = this.b; Objects.requireNonNull(zVar); - DefaultDrmSessionManager.c cVar = DefaultDrmSessionManager.this.f2298x; + DefaultDrmSessionManager.c cVar = DefaultDrmSessionManager.this.f2301x; Objects.requireNonNull(cVar); cVar.obtainMessage(i, bArr).sendToTarget(); } diff --git a/app/src/main/java/c/i/a/c/z1/p.java b/app/src/main/java/c/i/a/c/z1/p.java index 766ffe05ab..256688f05c 100644 --- a/app/src/main/java/c/i/a/c/z1/p.java +++ b/app/src/main/java/c/i/a/c/z1/p.java @@ -3,12 +3,12 @@ package c.i.a.c.z1; import android.net.Uri; import androidx.annotation.GuardedBy; import androidx.annotation.RequiresApi; +import c.c.a.a0.d; import c.i.a.c.h0; import c.i.a.c.h2.q; import c.i.a.c.h2.r; import c.i.a.c.v0; import c.i.a.f.e.o.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.exoplayer2.drm.DefaultDrmSessionManager; import java.util.Arrays; import java.util.HashMap; @@ -23,7 +23,7 @@ public final class p implements t { @GuardedBy("lock") /* renamed from: c reason: collision with root package name */ - public s f1023c; + public s f1024c; @RequiresApi(18) public final s a(v0.e eVar) { @@ -31,7 +31,7 @@ public final class p implements t { bVar.b = null; Uri uri = eVar.b; a0 a0Var = new a0(uri == null ? null : uri.toString(), eVar.f, bVar); - for (Map.Entry entry : eVar.f991c.entrySet()) { + for (Map.Entry entry : eVar.f992c.entrySet()) { String key = entry.getKey(); String value = entry.getValue(); Objects.requireNonNull(key); @@ -55,12 +55,12 @@ public final class p implements t { if (!(i2 == 2 || i2 == 1)) { z4 = false; } - AnimatableValueParser.k(z4); + d.k(z4); } DefaultDrmSessionManager defaultDrmSessionManager = new DefaultDrmSessionManager(uuid2, lVar, a0Var, hashMap, z2, (int[]) l0.clone(), z3, rVar, 300000, null); byte[] bArr = eVar.h; byte[] copyOf = bArr != null ? Arrays.copyOf(bArr, bArr.length) : null; - AnimatableValueParser.D(defaultDrmSessionManager.m.isEmpty()); + d.D(defaultDrmSessionManager.m.isEmpty()); defaultDrmSessionManager.v = 0; defaultDrmSessionManager.w = copyOf; return defaultDrmSessionManager; diff --git a/app/src/main/java/c/i/a/c/z1/q.java b/app/src/main/java/c/i/a/c/z1/q.java index ea983e3e3a..76cc6be09f 100644 --- a/app/src/main/java/c/i/a/c/z1/q.java +++ b/app/src/main/java/c/i/a/c/z1/q.java @@ -17,7 +17,7 @@ public interface q { public final y.a b; /* renamed from: c reason: collision with root package name */ - public final CopyOnWriteArrayList f1024c; + public final CopyOnWriteArrayList f1025c; /* compiled from: DrmSessionEventListener */ /* renamed from: c.i.a.c.z1.q$a$a reason: collision with other inner class name */ @@ -32,19 +32,19 @@ public interface q { } public a() { - this.f1024c = new CopyOnWriteArrayList<>(); + this.f1025c = new CopyOnWriteArrayList<>(); this.a = 0; this.b = null; } public a(CopyOnWriteArrayList copyOnWriteArrayList, int i, @Nullable y.a aVar) { - this.f1024c = copyOnWriteArrayList; + this.f1025c = copyOnWriteArrayList; this.a = i; this.b = aVar; } public void a() { - Iterator it = this.f1024c.iterator(); + Iterator it = this.f1025c.iterator(); while (it.hasNext()) { C0099a next = it.next(); f0.D(next.a, new h(this, next.b)); @@ -52,7 +52,7 @@ public interface q { } public void b() { - Iterator it = this.f1024c.iterator(); + Iterator it = this.f1025c.iterator(); while (it.hasNext()) { C0099a next = it.next(); f0.D(next.a, new g(this, next.b)); @@ -60,7 +60,7 @@ public interface q { } public void c() { - Iterator it = this.f1024c.iterator(); + Iterator it = this.f1025c.iterator(); while (it.hasNext()) { C0099a next = it.next(); f0.D(next.a, new i(this, next.b)); @@ -68,7 +68,7 @@ public interface q { } public void d() { - Iterator it = this.f1024c.iterator(); + Iterator it = this.f1025c.iterator(); while (it.hasNext()) { C0099a next = it.next(); f0.D(next.a, new e(this, next.b)); @@ -76,7 +76,7 @@ public interface q { } public void e(Exception exc) { - Iterator it = this.f1024c.iterator(); + Iterator it = this.f1025c.iterator(); while (it.hasNext()) { C0099a next = it.next(); f0.D(next.a, new j(this, next.b, exc)); @@ -84,7 +84,7 @@ public interface q { } public void f() { - Iterator it = this.f1024c.iterator(); + Iterator it = this.f1025c.iterator(); while (it.hasNext()) { C0099a next = it.next(); f0.D(next.a, new f(this, next.b)); @@ -93,7 +93,7 @@ public interface q { @CheckResult public a g(int i, @Nullable y.a aVar) { - return new a(this.f1024c, i, aVar); + return new a(this.f1025c, i, aVar); } } diff --git a/app/src/main/java/c/i/a/c/z1/y.java b/app/src/main/java/c/i/a/c/z1/y.java index 1611111a36..40bcddd231 100644 --- a/app/src/main/java/c/i/a/c/z1/y.java +++ b/app/src/main/java/c/i/a/c/z1/y.java @@ -8,12 +8,12 @@ public final class y implements w { public final UUID b; /* renamed from: c reason: collision with root package name */ - public final byte[] f1025c; + public final byte[] f1026c; public final boolean d; static { boolean z2; - if ("Amazon".equals(f0.f911c)) { + if ("Amazon".equals(f0.f912c)) { String str = f0.d; if ("AFTM".equals(str) || "AFTB".equals(str)) { z2 = true; @@ -26,7 +26,7 @@ public final class y implements w { public y(UUID uuid, byte[] bArr, boolean z2) { this.b = uuid; - this.f1025c = bArr; + this.f1026c = bArr; this.d = z2; } } diff --git a/app/src/main/java/c/i/a/c/z1/z.java b/app/src/main/java/c/i/a/c/z1/z.java index b4c8eaff12..816a272eb8 100644 --- a/app/src/main/java/c/i/a/c/z1/z.java +++ b/app/src/main/java/c/i/a/c/z1/z.java @@ -10,6 +10,7 @@ import android.text.TextUtils; import android.util.Log; import androidx.annotation.Nullable; import androidx.annotation.RequiresApi; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.c.a2.h0.j; import c.i.a.c.h0; @@ -17,7 +18,6 @@ import c.i.a.c.i2.f0; import c.i.a.c.i2.p; import c.i.a.c.z1.x; import c.i.b.a.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.widgets.chat.input.MentionUtilsKt; import com.google.android.exoplayer2.drm.DrmInitData; import java.nio.ByteBuffer; @@ -38,16 +38,16 @@ public final class z implements x { public final UUID b; /* renamed from: c reason: collision with root package name */ - public final MediaDrm f1026c; + public final MediaDrm f1027c; public int d; public z(UUID uuid) throws UnsupportedSchemeException { UUID uuid2; Objects.requireNonNull(uuid); - AnimatableValueParser.n(!h0.b.equals(uuid), "Use C.CLEARKEY_UUID instead"); + d.n(!h0.b.equals(uuid), "Use C.CLEARKEY_UUID instead"); this.b = uuid; - MediaDrm mediaDrm = new MediaDrm((f0.a >= 27 || !h0.f885c.equals(uuid)) ? uuid : uuid2); - this.f1026c = mediaDrm; + MediaDrm mediaDrm = new MediaDrm((f0.a >= 27 || !h0.f886c.equals(uuid)) ? uuid : uuid2); + this.f1027c = mediaDrm; this.d = 1; if (h0.d.equals(uuid) && "ASUS_Z00AD".equals(f0.d)) { mediaDrm.setPropertyString("securityLevel", "L3"); @@ -61,15 +61,15 @@ public final class z implements x { @Override // c.i.a.c.z1.x public Map b(byte[] bArr) { - return this.f1026c.queryKeyStatus(bArr); + return this.f1027c.queryKeyStatus(bArr); } @Override // c.i.a.c.z1.x public w c(byte[] bArr) throws MediaCryptoException { int i = f0.a; - boolean z2 = i < 21 && h0.d.equals(this.b) && "L3".equals(this.f1026c.getPropertyString("securityLevel")); + boolean z2 = i < 21 && h0.d.equals(this.b) && "L3".equals(this.f1027c.getPropertyString("securityLevel")); UUID uuid = this.b; - if (i < 27 && h0.f885c.equals(uuid)) { + if (i < 27 && h0.f886c.equals(uuid)) { uuid = h0.b; } return new y(uuid, bArr, z2); @@ -77,34 +77,34 @@ public final class z implements x { @Override // c.i.a.c.z1.x public x.d d() { - MediaDrm.ProvisionRequest provisionRequest = this.f1026c.getProvisionRequest(); + MediaDrm.ProvisionRequest provisionRequest = this.f1027c.getProvisionRequest(); return new x.d(provisionRequest.getData(), provisionRequest.getDefaultUrl()); } @Override // c.i.a.c.z1.x public byte[] e() throws MediaDrmException { - return this.f1026c.openSession(); + return this.f1027c.openSession(); } @Override // c.i.a.c.z1.x public void f(byte[] bArr, byte[] bArr2) { - this.f1026c.restoreKeys(bArr, bArr2); + this.f1027c.restoreKeys(bArr, bArr2); } @Override // c.i.a.c.z1.x public void g(byte[] bArr) { - this.f1026c.closeSession(bArr); + this.f1027c.closeSession(bArr); } @Override // c.i.a.c.z1.x public void h(@Nullable x.b bVar) { - this.f1026c.setOnEventListener(new m(this, bVar)); + this.f1027c.setOnEventListener(new m(this, bVar)); } @Override // c.i.a.c.z1.x @Nullable public byte[] i(byte[] bArr, byte[] bArr2) throws NotProvisionedException, DeniedByServerException { - if (h0.f885c.equals(this.b) && f0.a < 27) { + if (h0.f886c.equals(this.b) && f0.a < 27) { try { JSONObject jSONObject = new JSONObject(f0.l(bArr2)); StringBuilder sb = new StringBuilder("{\"keys\":["); @@ -125,17 +125,17 @@ public final class z implements x { sb.append("]}"); bArr2 = f0.w(sb.toString()); } catch (JSONException e) { - StringBuilder P = a.P("Failed to adjust response data: "); - P.append(f0.l(bArr2)); - p.b("ClearKeyUtil", P.toString(), e); + StringBuilder O = a.O("Failed to adjust response data: "); + O.append(f0.l(bArr2)); + p.b("ClearKeyUtil", O.toString(), e); } } - return this.f1026c.provideKeyResponse(bArr, bArr2); + return this.f1027c.provideKeyResponse(bArr, bArr2); } @Override // c.i.a.c.z1.x public void j(byte[] bArr) throws DeniedByServerException { - this.f1026c.provideProvisionResponse(bArr); + this.f1027c.provideProvisionResponse(bArr); } /* JADX WARNING: Code restructure failed: missing block: B:85:0x020a, code lost: @@ -171,7 +171,7 @@ public final class z implements x { if (!(f0.a(schemeData4.l, schemeData3.l) && f0.a(schemeData4.k, schemeData3.k))) { break; } - if (!(AnimatableValueParser.Y1(bArr4) != null)) { + if (!(d.v1(bArr4) != null)) { break; } i3 += bArr4.length; @@ -195,8 +195,8 @@ public final class z implements x { DrmInitData.SchemeData schemeData5 = list.get(i6); byte[] bArr7 = schemeData5.m; Objects.requireNonNull(bArr7); - j Y1 = AnimatableValueParser.Y1(bArr7); - int i7 = Y1 == null ? -1 : Y1.b; + j v1 = d.v1(bArr7); + int i7 = v1 == null ? -1 : v1.b; int i8 = f0.a; if ((i8 < 23 && i7 == 0) || (i8 >= 23 && i7 == 1)) { schemeData2 = schemeData5; @@ -211,9 +211,9 @@ public final class z implements x { Objects.requireNonNull(bArr8); UUID uuid2 = h0.e; if (uuid2.equals(uuid)) { - byte[] Z1 = AnimatableValueParser.Z1(bArr8, uuid); - if (Z1 != null) { - bArr8 = Z1; + byte[] w1 = d.w1(bArr8, uuid); + if (w1 != null) { + bArr8 = w1; } int i9 = (bArr8[0] & 255) | ((bArr8[1] & 255) << 8) | ((bArr8[2] & 255) << 16) | ((bArr8[3] & 255) << 24); short s2 = (short) (((bArr8[5] & 255) << 8) | (bArr8[4] & 255)); @@ -256,7 +256,7 @@ public final class z implements x { } int i12 = f0.a; if (i12 >= 23 || !h0.d.equals(uuid)) { - if (uuid2.equals(uuid) && "Amazon".equals(f0.f911c)) { + if (uuid2.equals(uuid) && "Amazon".equals(f0.f912c)) { String str4 = f0.d; if (!"AFTB".equals(str4)) { if (!"AFTS".equals(str4)) { @@ -269,17 +269,17 @@ public final class z implements x { UUID uuid3 = this.b; String str5 = schemeData2.l; bArr2 = bArr3; - str = (i12 >= 26 || !h0.f885c.equals(uuid3) || (!"video/mp4".equals(str5) && !"audio/mp4".equals(str5))) ? str5 : "cenc"; + str = (i12 >= 26 || !h0.f886c.equals(uuid3) || (!"video/mp4".equals(str5) && !"audio/mp4".equals(str5))) ? str5 : "cenc"; } - bArr3 = AnimatableValueParser.Z1(bArr8, uuid); + bArr3 = d.w1(bArr8, uuid); } else { bArr2 = null; str = null; } - MediaDrm.KeyRequest keyRequest = this.f1026c.getKeyRequest(bArr, bArr2, str, i, hashMap); + MediaDrm.KeyRequest keyRequest = this.f1027c.getKeyRequest(bArr, bArr2, str, i, hashMap); UUID uuid4 = this.b; byte[] data = keyRequest.getData(); - if (h0.f885c.equals(uuid4) && f0.a < 27) { + if (h0.f886c.equals(uuid4) && f0.a < 27) { data = f0.w(f0.l(data).replace('+', '-').replace(MentionUtilsKt.SLASH_CHAR, '_')); } String defaultUrl = keyRequest.getDefaultUrl(); @@ -297,7 +297,7 @@ public final class z implements x { int i = this.d - 1; this.d = i; if (i == 0) { - this.f1026c.release(); + this.f1027c.release(); } } } diff --git a/app/src/main/java/c/i/a/e/b.java b/app/src/main/java/c/i/a/e/b.java index 599e805c56..99d4429396 100644 --- a/app/src/main/java/c/i/a/e/b.java +++ b/app/src/main/java/c/i/a/e/b.java @@ -10,7 +10,7 @@ public class b { public int b = Integer.MAX_VALUE; /* renamed from: c reason: collision with root package name */ - public int f1027c = Integer.MIN_VALUE; + public int f1028c = Integer.MIN_VALUE; public int d = Integer.MIN_VALUE; public int e; public int f; @@ -35,7 +35,7 @@ public class b { FlexItem flexItem = (FlexItem) view.getLayoutParams(); this.a = Math.min(this.a, (view.getLeft() - flexItem.I()) - i); this.b = Math.min(this.b, (view.getTop() - flexItem.M()) - i2); - this.f1027c = Math.max(this.f1027c, flexItem.c0() + view.getRight() + i3); + this.f1028c = Math.max(this.f1028c, flexItem.c0() + view.getRight() + i3); this.d = Math.max(this.d, flexItem.H() + view.getBottom() + i4); } } diff --git a/app/src/main/java/c/i/a/e/c.java b/app/src/main/java/c/i/a/e/c.java index 75c6ec3c50..12efd99304 100644 --- a/app/src/main/java/c/i/a/e/c.java +++ b/app/src/main/java/c/i/a/e/c.java @@ -23,7 +23,7 @@ public class c { @Nullable /* renamed from: c reason: collision with root package name */ - public int[] f1028c; + public int[] f1029c; @Nullable public long[] d; @Nullable @@ -64,10 +64,10 @@ public class c { @Override // java.lang.Object @NonNull public String toString() { - StringBuilder P = c.d.b.a.a.P("Order{order="); - P.append(this.j); - P.append(", index="); - return c.d.b.a.a.y(P, this.i, '}'); + StringBuilder O = c.d.b.a.a.O("Order{order="); + O.append(this.j); + O.append(", index="); + return c.d.b.a.a.y(O, this.i, '}'); } } @@ -80,7 +80,7 @@ public class c { if (i < this.a.getFlexItemCount()) { int flexDirection = this.a.getFlexDirection(); if (this.a.getAlignItems() == 4) { - int[] iArr = this.f1028c; + int[] iArr = this.f1029c; List flexLinesInternal = this.a.getFlexLinesInternal(); int size = flexLinesInternal.size(); for (int i2 = iArr != null ? iArr[i] : 0; i2 < size; i2++) { @@ -332,7 +332,7 @@ public class c { } bVar3.q |= flexItem2.R() != 0.0f; bVar3.r |= flexItem2.w() != 0.0f; - iArr = this.f1028c; + iArr = this.f1029c; if (iArr != null) { iArr[i24] = arrayList.size(); } @@ -389,7 +389,7 @@ public class c { } bVar3.q |= flexItem2.R() != 0.0f; bVar3.r |= flexItem2.w() != 0.0f; - iArr = this.f1028c; + iArr = this.f1029c; if (iArr != null) { } bVar3.e = q(flexItem2, i23) + s(flexItem2, i23) + (i23 ? c2.getMeasuredWidth() : c2.getMeasuredHeight()) + bVar3.e; @@ -429,7 +429,7 @@ public class c { } bVar3.q |= flexItem2.R() != 0.0f; bVar3.r |= flexItem2.w() != 0.0f; - iArr = this.f1028c; + iArr = this.f1029c; if (iArr != null) { } bVar3.e = q(flexItem2, i23) + s(flexItem2, i23) + (i23 ? c2.getMeasuredWidth() : c2.getMeasuredHeight()) + bVar3.e; @@ -520,14 +520,14 @@ public class c { } public void d(List list, int i) { - int i2 = this.f1028c[i]; + int i2 = this.f1029c[i]; if (i2 == -1) { i2 = 0; } for (int size = list.size() - 1; size >= i2; size--) { list.remove(size); } - int[] iArr = this.f1028c; + int[] iArr = this.f1029c; int length = iArr.length - 1; if (i > length) { Arrays.fill(iArr, -1); @@ -723,7 +723,7 @@ public class c { throw new IllegalArgumentException(c.d.b.a.a.l("Invalid flex direction: ", flexDirection)); } int i8 = i4 + i6; - int[] iArr = this.f1028c; + int[] iArr = this.f1029c; if (iArr != null) { i7 = iArr[i3]; } @@ -743,18 +743,18 @@ public class c { } public void i(int i) { - int[] iArr = this.f1028c; + int[] iArr = this.f1029c; if (iArr == null) { if (i < 10) { i = 10; } - this.f1028c = new int[i]; + this.f1029c = new int[i]; } else if (iArr.length < i) { int length = iArr.length * 2; if (length >= i) { i = length; } - this.f1028c = Arrays.copyOf(iArr, i); + this.f1029c = Arrays.copyOf(iArr, i); } } diff --git a/app/src/main/java/c/i/a/f/b/f.java b/app/src/main/java/c/i/a/f/b/f.java index 6a5c838b40..bf69c4d3fa 100644 --- a/app/src/main/java/c/i/a/f/b/f.java +++ b/app/src/main/java/c/i/a/f/b/f.java @@ -19,7 +19,7 @@ public final class f { public final Context b; /* renamed from: c reason: collision with root package name */ - public final a f1029c = new a(); + public final a f1030c = new a(); public volatile f1 d; public Thread.UncaughtExceptionHandler e; @@ -75,6 +75,6 @@ public final class f { } public final void a(Runnable runnable) { - this.f1029c.submit(runnable); + this.f1030c.submit(runnable); } } diff --git a/app/src/main/java/c/i/a/f/c/a/a.java b/app/src/main/java/c/i/a/f/c/a/a.java index 4dc59f1708..7b96fe951f 100644 --- a/app/src/main/java/c/i/a/f/c/a/a.java +++ b/app/src/main/java/c/i/a/f/c/a/a.java @@ -1,13 +1,12 @@ package c.i.a.f.c.a; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.c.a.d.c; import c.i.a.f.c.a.f.b.f; import c.i.a.f.e.h.a; import c.i.a.f.h.c.h; import c.i.a.f.h.c.o; -import c.i.a.f.h.d.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.auth.api.signin.GoogleSignInOptions; import java.util.Arrays; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ @@ -16,7 +15,7 @@ public final class a { public static final a.g b; /* renamed from: c reason: collision with root package name */ - public static final a.AbstractC0105a f1030c; + public static final a.AbstractC0105a f1031c; public static final a.AbstractC0105a d; public static final c.i.a.f.e.h.a e; public static final c.i.a.f.e.h.a f; @@ -41,7 +40,7 @@ public final class a { @Nullable /* renamed from: c reason: collision with root package name */ - public String f1031c; + public String f1032c; public C0104a() { } @@ -49,14 +48,14 @@ public final class a { public C0104a(C0103a aVar) { this.a = aVar.j; this.b = Boolean.valueOf(aVar.k); - this.f1031c = aVar.l; + this.f1032c = aVar.l; } } public C0103a(C0104a aVar) { this.j = aVar.a; this.k = aVar.b.booleanValue(); - this.l = aVar.f1031c; + this.l = aVar.f1032c; } public boolean equals(@Nullable Object obj) { @@ -67,7 +66,7 @@ public final class a { return false; } C0103a aVar = (C0103a) obj; - return AnimatableValueParser.j0(this.j, aVar.j) && this.k == aVar.k && AnimatableValueParser.j0(this.l, aVar.l); + return d.j0(this.j, aVar.j) && this.k == aVar.k && d.j0(this.l, aVar.l); } public int hashCode() { @@ -81,12 +80,12 @@ public final class a { a.g gVar2 = new a.g<>(); b = gVar2; h hVar = new h(); - f1030c = hVar; + f1031c = hVar; i iVar = new i(); d = iVar; - c.i.a.f.e.h.a aVar = b.f1032c; + c.i.a.f.e.h.a aVar = b.f1033c; e = new c.i.a.f.e.h.a<>("Auth.CREDENTIALS_API", hVar, gVar); f = new c.i.a.f.e.h.a<>("Auth.GOOGLE_SIGN_IN_API", iVar, gVar2); - d dVar = b.d; + c.i.a.f.h.d.d dVar = b.d; } } diff --git a/app/src/main/java/c/i/a/f/c/a/b.java b/app/src/main/java/c/i/a/f/c/a/b.java index ea0de5969e..8e66d7beb9 100644 --- a/app/src/main/java/c/i/a/f/c/a/b.java +++ b/app/src/main/java/c/i/a/f/c/a/b.java @@ -7,7 +7,7 @@ public final class b { public static final a.AbstractC0105a b; /* renamed from: c reason: collision with root package name */ - public static final a f1032c; + public static final a f1033c; public static final d d = new d(); static { @@ -15,6 +15,6 @@ public final class b { a = gVar; g gVar2 = new g(); b = gVar2; - f1032c = new a<>("Auth.PROXY_API", gVar2, gVar); + f1033c = new a<>("Auth.PROXY_API", gVar2, gVar); } } diff --git a/app/src/main/java/c/i/a/f/c/a/d/e.java b/app/src/main/java/c/i/a/f/c/a/d/e.java index 5723e3fdc5..b7d96c2ec3 100644 --- a/app/src/main/java/c/i/a/f/c/a/d/e.java +++ b/app/src/main/java/c/i/a/f/c/a/d/e.java @@ -3,7 +3,7 @@ package c.i.a.f.c.a.d; import android.net.Uri; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.credentials.Credential; import com.google.android.gms.auth.api.credentials.IdToken; import java.util.ArrayList; @@ -12,7 +12,7 @@ public final class e implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final Credential createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; Uri uri = null; @@ -21,41 +21,41 @@ public final class e implements Parcelable.Creator { String str4 = null; String str5 = null; String str6 = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 2: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 3: - uri = (Uri) AnimatableValueParser.S(parcel, readInt, Uri.CREATOR); + uri = (Uri) d.S(parcel, readInt, Uri.CREATOR); break; case 4: - arrayList = AnimatableValueParser.X(parcel, readInt, IdToken.CREATOR); + arrayList = d.X(parcel, readInt, IdToken.CREATOR); break; case 5: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; case 6: - str4 = AnimatableValueParser.T(parcel, readInt); + str4 = d.T(parcel, readInt); break; case 7: case 8: default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; case 9: - str5 = AnimatableValueParser.T(parcel, readInt); + str5 = d.T(parcel, readInt); break; case 10: - str6 = AnimatableValueParser.T(parcel, readInt); + str6 = d.T(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new Credential(str, str2, uri, arrayList, str3, str4, str5, str6); } diff --git a/app/src/main/java/c/i/a/f/c/a/d/f.java b/app/src/main/java/c/i/a/f/c/a/d/f.java index 3f9a220593..9b3838b1e8 100644 --- a/app/src/main/java/c/i/a/f/c/a/d/f.java +++ b/app/src/main/java/c/i/a/f/c/a/d/f.java @@ -2,37 +2,37 @@ package c.i.a.f.c.a.d; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.credentials.CredentialPickerConfig; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ public final class f implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final CredentialPickerConfig createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; boolean z2 = false; boolean z3 = false; boolean z4 = false; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } else if (i3 == 2) { - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); } else if (i3 == 3) { - z4 = AnimatableValueParser.h2(parcel, readInt); + z4 = d.E1(parcel, readInt); } else if (i3 == 4) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new CredentialPickerConfig(i, z2, z3, z4, i2); } diff --git a/app/src/main/java/c/i/a/f/c/a/d/g.java b/app/src/main/java/c/i/a/f/c/a/d/g.java index a771453b87..96e00d0ba0 100644 --- a/app/src/main/java/c/i/a/f/c/a/d/g.java +++ b/app/src/main/java/c/i/a/f/c/a/d/g.java @@ -2,7 +2,7 @@ package c.i.a.f.c.a.d; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.credentials.CredentialPickerConfig; import com.google.android.gms.auth.api.credentials.CredentialRequest; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ @@ -10,7 +10,7 @@ public final class g implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final CredentialRequest createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String[] strArr = null; CredentialPickerConfig credentialPickerConfig = null; CredentialPickerConfig credentialPickerConfig2 = null; @@ -20,44 +20,44 @@ public final class g implements Parcelable.Creator { boolean z2 = false; boolean z3 = false; boolean z4 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 != 1000) { switch (i2) { case 1: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); continue; case 2: - strArr = AnimatableValueParser.U(parcel, readInt); + strArr = d.U(parcel, readInt); continue; case 3: - credentialPickerConfig = (CredentialPickerConfig) AnimatableValueParser.S(parcel, readInt, CredentialPickerConfig.CREATOR); + credentialPickerConfig = (CredentialPickerConfig) d.S(parcel, readInt, CredentialPickerConfig.CREATOR); continue; case 4: - credentialPickerConfig2 = (CredentialPickerConfig) AnimatableValueParser.S(parcel, readInt, CredentialPickerConfig.CREATOR); + credentialPickerConfig2 = (CredentialPickerConfig) d.S(parcel, readInt, CredentialPickerConfig.CREATOR); continue; case 5: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); continue; case 6: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); continue; case 7: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); continue; case 8: - z4 = AnimatableValueParser.h2(parcel, readInt); + z4 = d.E1(parcel, readInt); continue; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); continue; } } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new CredentialRequest(i, z2, strArr, credentialPickerConfig, credentialPickerConfig2, z3, str, str2, z4); } diff --git a/app/src/main/java/c/i/a/f/c/a/d/i.java b/app/src/main/java/c/i/a/f/c/a/d/i.java index c4f6873094..1486d59d40 100644 --- a/app/src/main/java/c/i/a/f/c/a/d/i.java +++ b/app/src/main/java/c/i/a/f/c/a/d/i.java @@ -2,28 +2,28 @@ package c.i.a.f.c.a.d; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.credentials.IdToken; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ public final class i implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final IdToken createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 1) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new IdToken(str, str2); } diff --git a/app/src/main/java/c/i/a/f/c/a/f/a.java b/app/src/main/java/c/i/a/f/c/a/f/a.java index 151c11176d..d409e68fc7 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/a.java +++ b/app/src/main/java/c/i/a/f/c/a/f/a.java @@ -17,7 +17,7 @@ public class a extends b { public final synchronized int f() { if (j == 1) { Context context = this.a; - Object obj = GoogleApiAvailability.f2366c; + Object obj = GoogleApiAvailability.f2369c; GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.d; int b = googleApiAvailability.b(context, 12451000); if (b == 0) { diff --git a/app/src/main/java/c/i/a/f/c/a/f/b/a.java b/app/src/main/java/c/i/a/f/c/a/f/b/a.java index f416363813..6d67112e07 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/b/a.java +++ b/app/src/main/java/c/i/a/f/c/a/f/b/a.java @@ -29,7 +29,7 @@ public class a { public static a b; /* renamed from: c reason: collision with root package name */ - public final Lock f1033c = new ReentrantLock(); + public final Lock f1034c = new ReentrantLock(); public final SharedPreferences d; public a(Context context) { @@ -109,7 +109,7 @@ public class a { if (str5 != null) { jSONObject.put("displayName", str5); } - String str6 = googleSignInAccount.f2361s; + String str6 = googleSignInAccount.f2364s; if (str6 != null) { jSONObject.put("givenName", str6); } @@ -157,7 +157,7 @@ public class a { } jSONObject2.put("idTokenRequested", googleSignInOptions.r); jSONObject2.put("forceCodeForRefreshToken", googleSignInOptions.t); - jSONObject2.put("serverAuthRequested", googleSignInOptions.f2362s); + jSONObject2.put("serverAuthRequested", googleSignInOptions.f2365s); if (!TextUtils.isEmpty(googleSignInOptions.u)) { jSONObject2.put("serverClientId", googleSignInOptions.u); } @@ -174,21 +174,21 @@ public class a { } public final void e(String str, String str2) { - this.f1033c.lock(); + this.f1034c.lock(); try { this.d.edit().putString(str, str2).apply(); } finally { - this.f1033c.unlock(); + this.f1034c.unlock(); } } @Nullable public final String g(String str) { - this.f1033c.lock(); + this.f1034c.lock(); try { return this.d.getString(str, null); } finally { - this.f1033c.unlock(); + this.f1034c.unlock(); } } } diff --git a/app/src/main/java/c/i/a/f/c/a/f/b/b.java b/app/src/main/java/c/i/a/f/c/a/f/b/b.java index 6d419db0da..60b56eec13 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/b/b.java +++ b/app/src/main/java/c/i/a/f/c/a/f/b/b.java @@ -3,31 +3,31 @@ package c.i.a.f.c.a.f.b; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class b implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final GoogleSignInOptionsExtensionParcelable createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; Bundle bundle = null; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i3 == 2) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new GoogleSignInOptionsExtensionParcelable(i, i2, bundle); } diff --git a/app/src/main/java/c/i/a/f/c/a/f/b/e.java b/app/src/main/java/c/i/a/f/c/a/f/b/e.java index 128cbeb8b9..fa6bd6f49d 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/b/e.java +++ b/app/src/main/java/c/i/a/f/c/a/f/b/e.java @@ -1,9 +1,9 @@ package c.i.a.f.c.a.f.b; import androidx.browser.trusted.sharing.ShareTarget; +import c.c.a.a0.d; import c.i.a.f.e.h.j.o; import c.i.a.f.e.l.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Status; import java.io.IOException; import java.net.HttpURLConnection; @@ -15,7 +15,7 @@ public final class e implements Runnable { public final o k = new o(null); public e(String str) { - AnimatableValueParser.w(str); + d.w(str); this.j = str; } diff --git a/app/src/main/java/c/i/a/f/c/a/f/b/f.java b/app/src/main/java/c/i/a/f/c/a/f/b/f.java index a08f3f6f9b..99c43dbb01 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/b/f.java +++ b/app/src/main/java/c/i/a/f/c/a/f/b/f.java @@ -23,8 +23,8 @@ public final class f extends d { byte[] bArr = new byte[16]; a.a.nextBytes(bArr); aVar2.i = Base64.encodeToString(bArr, 11); - if (!cVar.f1062c.isEmpty()) { - for (Scope scope : cVar.f1062c) { + if (!cVar.f1063c.isEmpty()) { + for (Scope scope : cVar.f1063c) { aVar2.a.add(scope); aVar2.a.addAll(Arrays.asList(new Scope[0])); } diff --git a/app/src/main/java/c/i/a/f/c/a/f/b/m.java b/app/src/main/java/c/i/a/f/c/a/f/b/m.java index e9ed56f72f..110f752a9e 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/b/m.java +++ b/app/src/main/java/c/i/a/f/c/a/f/b/m.java @@ -34,11 +34,11 @@ public final class m { public final synchronized void a() { a aVar = this.b; - aVar.f1033c.lock(); + aVar.f1034c.lock(); try { aVar.d.edit().clear().apply(); } finally { - aVar.f1033c.unlock(); + aVar.f1034c.unlock(); } } } diff --git a/app/src/main/java/c/i/a/f/c/a/f/b/q.java b/app/src/main/java/c/i/a/f/c/a/f/b/q.java index 59cece2ed2..69a68d7f43 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/b/q.java +++ b/app/src/main/java/c/i/a/f/c/a/f/b/q.java @@ -4,13 +4,13 @@ import android.content.Context; import android.os.Binder; import android.os.IInterface; import android.os.Parcel; +import c.c.a.a0.d; import c.i.a.f.c.a.f.a; import c.i.a.f.e.h.c; import c.i.a.f.e.h.e; import c.i.a.f.e.h.j.o; import c.i.a.f.e.k.l; import c.i.a.f.h.c.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.auth.api.signin.GoogleSignInOptions; import com.google.android.gms.common.api.Status; @@ -51,8 +51,8 @@ public final class q extends b implements IInterface { c.i.a.f.e.l.a aVar2 = e.i; if (g == null) { Status status = new Status(4, null); - AnimatableValueParser.z(status, "Result must not be null"); - AnimatableValueParser.p(!status.v0(), "Status code must not be SUCCESS"); + d.z(status, "Result must not be null"); + d.p(!status.v0(), "Status code must not be SUCCESS"); basePendingResult2 = new e(null, status); basePendingResult2.b(status); } else { @@ -73,7 +73,7 @@ public final class q extends b implements IInterface { g.a(context3); if (z3) { Status status2 = Status.i; - AnimatableValueParser.z(status2, "Result must not be null"); + d.z(status2, "Result must not be null"); basePendingResult = new o(cVar2); basePendingResult.b(status2); } else { diff --git a/app/src/main/java/c/i/a/f/c/a/f/b/s.java b/app/src/main/java/c/i/a/f/c/a/f/b/s.java index 50052730da..07da42f9e3 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/b/s.java +++ b/app/src/main/java/c/i/a/f/c/a/f/b/s.java @@ -2,7 +2,7 @@ package c.i.a.f.c.a.f.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.signin.GoogleSignInOptions; import com.google.android.gms.auth.api.signin.internal.SignInConfiguration; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ @@ -10,21 +10,21 @@ public final class s implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final SignInConfiguration createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; GoogleSignInOptions googleSignInOptions = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 2) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i != 5) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - googleSignInOptions = (GoogleSignInOptions) AnimatableValueParser.S(parcel, readInt, GoogleSignInOptions.CREATOR); + googleSignInOptions = (GoogleSignInOptions) d.S(parcel, readInt, GoogleSignInOptions.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new SignInConfiguration(str, googleSignInOptions); } diff --git a/app/src/main/java/c/i/a/f/c/a/f/d.java b/app/src/main/java/c/i/a/f/c/a/f/d.java index f7a9120cfb..bc7d7a28ab 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/d.java +++ b/app/src/main/java/c/i/a/f/c/a/f/d.java @@ -3,7 +3,6 @@ package c.i.a.f.c.a.f; import android.net.Uri; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.common.api.Scope; import java.util.ArrayList; @@ -12,7 +11,7 @@ public final class d implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final GoogleSignInAccount createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = c.c.a.a0.d.l2(parcel); String str = null; String str2 = null; String str3 = null; @@ -25,51 +24,51 @@ public final class d implements Parcelable.Creator { String str8 = null; long j = 0; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = c.c.a.a0.d.G1(parcel, readInt); break; case 2: - str = AnimatableValueParser.T(parcel, readInt); + str = c.c.a.a0.d.T(parcel, readInt); break; case 3: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = c.c.a.a0.d.T(parcel, readInt); break; case 4: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = c.c.a.a0.d.T(parcel, readInt); break; case 5: - str4 = AnimatableValueParser.T(parcel, readInt); + str4 = c.c.a.a0.d.T(parcel, readInt); break; case 6: - uri = (Uri) AnimatableValueParser.S(parcel, readInt, Uri.CREATOR); + uri = (Uri) c.c.a.a0.d.S(parcel, readInt, Uri.CREATOR); break; case 7: - str5 = AnimatableValueParser.T(parcel, readInt); + str5 = c.c.a.a0.d.T(parcel, readInt); break; case 8: - j = AnimatableValueParser.k2(parcel, readInt); + j = c.c.a.a0.d.H1(parcel, readInt); break; case 9: - str6 = AnimatableValueParser.T(parcel, readInt); + str6 = c.c.a.a0.d.T(parcel, readInt); break; case 10: - arrayList = AnimatableValueParser.X(parcel, readInt, Scope.CREATOR); + arrayList = c.c.a.a0.d.X(parcel, readInt, Scope.CREATOR); break; case 11: - str7 = AnimatableValueParser.T(parcel, readInt); + str7 = c.c.a.a0.d.T(parcel, readInt); break; case 12: - str8 = AnimatableValueParser.T(parcel, readInt); + str8 = c.c.a.a0.d.T(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + c.c.a.a0.d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + c.c.a.a0.d.h0(parcel, l2); return new GoogleSignInAccount(i, str, str2, str3, str4, uri, str5, j, str6, arrayList, str7, str8); } diff --git a/app/src/main/java/c/i/a/f/c/a/f/f.java b/app/src/main/java/c/i/a/f/c/a/f/f.java index 8c1b5563bd..2bd76a8324 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/f.java +++ b/app/src/main/java/c/i/a/f/c/a/f/f.java @@ -3,7 +3,7 @@ package c.i.a.f.c.a.f; import android.accounts.Account; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.signin.GoogleSignInOptions; import com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable; import com.google.android.gms.common.api.Scope; @@ -13,7 +13,7 @@ public final class f implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final GoogleSignInOptions createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); ArrayList arrayList = null; ArrayList arrayList2 = null; Account account = null; @@ -24,45 +24,45 @@ public final class f implements Parcelable.Creator { boolean z2 = false; boolean z3 = false; boolean z4 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - arrayList2 = AnimatableValueParser.X(parcel, readInt, Scope.CREATOR); + arrayList2 = d.X(parcel, readInt, Scope.CREATOR); break; case 3: - account = (Account) AnimatableValueParser.S(parcel, readInt, Account.CREATOR); + account = (Account) d.S(parcel, readInt, Account.CREATOR); break; case 4: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 5: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); break; case 6: - z4 = AnimatableValueParser.h2(parcel, readInt); + z4 = d.E1(parcel, readInt); break; case 7: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 8: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 9: - arrayList = AnimatableValueParser.X(parcel, readInt, GoogleSignInOptionsExtensionParcelable.CREATOR); + arrayList = d.X(parcel, readInt, GoogleSignInOptionsExtensionParcelable.CREATOR); break; case 10: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new GoogleSignInOptions(i, arrayList2, account, z2, z3, z4, str, str2, GoogleSignInOptions.x0(arrayList), str3); } diff --git a/app/src/main/java/c/i/a/f/c/a/f/g.java b/app/src/main/java/c/i/a/f/c/a/f/g.java index 4f697be54d..c29eeddfee 100644 --- a/app/src/main/java/c/i/a/f/c/a/f/g.java +++ b/app/src/main/java/c/i/a/f/c/a/f/g.java @@ -2,7 +2,7 @@ package c.i.a.f.c.a.f; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.auth.api.signin.SignInAccount; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ @@ -10,24 +10,24 @@ public final class g implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final SignInAccount createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = ""; GoogleSignInAccount googleSignInAccount = null; String str2 = str; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 4) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i == 7) { - googleSignInAccount = (GoogleSignInAccount) AnimatableValueParser.S(parcel, readInt, GoogleSignInAccount.CREATOR); + googleSignInAccount = (GoogleSignInAccount) d.S(parcel, readInt, GoogleSignInAccount.CREATOR); } else if (i != 8) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new SignInAccount(str, googleSignInAccount, str2); } diff --git a/app/src/main/java/c/i/a/f/d/a.java b/app/src/main/java/c/i/a/f/d/a.java index bf3a398afe..81e296a539 100644 --- a/app/src/main/java/c/i/a/f/d/a.java +++ b/app/src/main/java/c/i/a/f/d/a.java @@ -98,7 +98,7 @@ public abstract class a extends BroadcastReceiver { c.d(task, TimeUnit.SECONDS.toMillis(1), TimeUnit.MILLISECONDS); } catch (InterruptedException | ExecutionException | TimeoutException e2) { String valueOf = String.valueOf(e2); - c.d.b.a.a.c0(valueOf.length() + 20, "Message ack failed: ", valueOf, "CloudMessagingReceiver"); + c.d.b.a.a.b0(valueOf.length() + 20, "Message ack failed: ", valueOf, "CloudMessagingReceiver"); } return i2; } diff --git a/app/src/main/java/c/i/a/f/d/b.java b/app/src/main/java/c/i/a/f/d/b.java index 602c4e1297..d9a2508550 100644 --- a/app/src/main/java/c/i/a/f/d/b.java +++ b/app/src/main/java/c/i/a/f/d/b.java @@ -30,7 +30,7 @@ public class b { public static PendingIntent b; /* renamed from: c reason: collision with root package name */ - public final SimpleArrayMap> f1034c = new SimpleArrayMap<>(); + public final SimpleArrayMap> f1035c = new SimpleArrayMap<>(); public final Context d; public final r e; public final ScheduledExecutorService f; @@ -49,8 +49,8 @@ public class b { } public final void a(String str, @Nullable Bundle bundle) { - synchronized (this.f1034c) { - TaskCompletionSource remove = this.f1034c.remove(str); + synchronized (this.f1035c) { + TaskCompletionSource remove = this.f1035c.remove(str); if (remove == null) { String valueOf = String.valueOf(str); Log.w("Rpc", valueOf.length() != 0 ? "Missing callback for ".concat(valueOf) : new String("Missing callback for ")); @@ -69,8 +69,8 @@ public class b { num = Integer.toString(i); } TaskCompletionSource taskCompletionSource = new TaskCompletionSource<>(); - synchronized (this.f1034c) { - this.f1034c.put(num, taskCompletionSource); + synchronized (this.f1035c) { + this.f1035c.put(num, taskCompletionSource); } Intent intent = new Intent(); intent.setPackage("com.google.android.gms"); diff --git a/app/src/main/java/c/i/a/f/d/c.java b/app/src/main/java/c/i/a/f/d/c.java index ae27386d82..6f66e8badd 100644 --- a/app/src/main/java/c/i/a/f/d/c.java +++ b/app/src/main/java/c/i/a/f/d/c.java @@ -3,24 +3,24 @@ package c.i.a.f.d; import android.content.Intent; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.cloudmessaging.CloudMessage; /* compiled from: com.google.android.gms:play-services-cloud-messaging@@16.0.0 */ public final class c implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final CloudMessage createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Intent intent = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 1) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - intent = (Intent) AnimatableValueParser.S(parcel, readInt, Intent.CREATOR); + intent = (Intent) d.S(parcel, readInt, Intent.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new CloudMessage(intent); } diff --git a/app/src/main/java/c/i/a/f/d/f.java b/app/src/main/java/c/i/a/f/d/f.java index bf9a6516f3..6b3d7537d0 100644 --- a/app/src/main/java/c/i/a/f/d/f.java +++ b/app/src/main/java/c/i/a/f/d/f.java @@ -15,13 +15,13 @@ public final class f { public final Context b; /* renamed from: c reason: collision with root package name */ - public final ScheduledExecutorService f1035c; + public final ScheduledExecutorService f1036c; public g d = new g(this, null); public int e = 1; @VisibleForTesting public f(Context context, ScheduledExecutorService scheduledExecutorService) { - this.f1035c = scheduledExecutorService; + this.f1036c = scheduledExecutorService; this.b = context.getApplicationContext(); } diff --git a/app/src/main/java/c/i/a/f/d/g.java b/app/src/main/java/c/i/a/f/d/g.java index 7faa8651d0..aefec600b7 100644 --- a/app/src/main/java/c/i/a/f/d/g.java +++ b/app/src/main/java/c/i/a/f/d/g.java @@ -10,8 +10,8 @@ import android.util.Log; import android.util.SparseArray; import androidx.annotation.MainThread; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.h.f.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.cloudmessaging.zzp; import java.util.ArrayDeque; import java.util.Queue; @@ -67,7 +67,7 @@ public final class g implements ServiceConnection { int i = this.i; if (i == 0) { this.l.add(qVar); - AnimatableValueParser.F(this.i == 0); + d.F(this.i == 0); if (Log.isLoggable("MessengerIpcClient", 2)) { Log.v("MessengerIpcClient", "Starting bind to GmsCore"); } @@ -77,7 +77,7 @@ public final class g implements ServiceConnection { if (!c.i.a.f.e.n.a.b().a(this.n.b, intent, this, 1)) { a(0, "Unable to bind to service"); } else { - this.n.f1035c.schedule(new i(this), 30, TimeUnit.SECONDS); + this.n.f1036c.schedule(new i(this), 30, TimeUnit.SECONDS); } return true; } else if (i == 1) { @@ -96,7 +96,7 @@ public final class g implements ServiceConnection { return false; } else { this.l.add(qVar); - this.n.f1035c.execute(new k(this)); + this.n.f1036c.execute(new k(this)); return true; } } @@ -117,7 +117,7 @@ public final class g implements ServiceConnection { if (Log.isLoggable("MessengerIpcClient", 2)) { Log.v("MessengerIpcClient", "Service connected"); } - this.n.f1035c.execute(new l(this, iBinder)); + this.n.f1036c.execute(new l(this, iBinder)); } @Override // android.content.ServiceConnection @@ -126,6 +126,6 @@ public final class g implements ServiceConnection { if (Log.isLoggable("MessengerIpcClient", 2)) { Log.v("MessengerIpcClient", "Service disconnected"); } - this.n.f1035c.execute(new n(this)); + this.n.f1036c.execute(new n(this)); } } diff --git a/app/src/main/java/c/i/a/f/d/k.java b/app/src/main/java/c/i/a/f/d/k.java index 15ca57d183..10d932c39e 100644 --- a/app/src/main/java/c/i/a/f/d/k.java +++ b/app/src/main/java/c/i/a/f/d/k.java @@ -30,7 +30,7 @@ public final /* synthetic */ class k implements Runnable { } poll = gVar.l.poll(); gVar.m.put(poll.a, poll); - gVar.n.f1035c.schedule(new m(gVar, poll), 30, TimeUnit.SECONDS); + gVar.n.f1036c.schedule(new m(gVar, poll), 30, TimeUnit.SECONDS); } else { return; } @@ -45,7 +45,7 @@ public final /* synthetic */ class k implements Runnable { Context context = gVar.n.b; Messenger messenger = gVar.j; Message obtain = Message.obtain(); - obtain.what = poll.f1036c; + obtain.what = poll.f1037c; obtain.arg1 = poll.a; obtain.replyTo = messenger; Bundle bundle = new Bundle(); diff --git a/app/src/main/java/c/i/a/f/d/l.java b/app/src/main/java/c/i/a/f/d/l.java index 0db222899f..a8409b21cc 100644 --- a/app/src/main/java/c/i/a/f/d/l.java +++ b/app/src/main/java/c/i/a/f/d/l.java @@ -24,7 +24,7 @@ public final /* synthetic */ class l implements Runnable { try { gVar.k = new p(iBinder); gVar.i = 2; - gVar.n.f1035c.execute(new k(gVar)); + gVar.n.f1036c.execute(new k(gVar)); } catch (RemoteException e) { gVar.a(0, e.getMessage()); } diff --git a/app/src/main/java/c/i/a/f/d/q.java b/app/src/main/java/c/i/a/f/d/q.java index 3ea3c69611..268b51c7bc 100644 --- a/app/src/main/java/c/i/a/f/d/q.java +++ b/app/src/main/java/c/i/a/f/d/q.java @@ -11,12 +11,12 @@ public abstract class q { public final TaskCompletionSource b = new TaskCompletionSource<>(); /* renamed from: c reason: collision with root package name */ - public final int f1036c; + public final int f1037c; public final Bundle d; public q(int i, int i2, Bundle bundle) { this.a = i; - this.f1036c = i2; + this.f1037c = i2; this.d = bundle; } @@ -43,7 +43,7 @@ public abstract class q { public abstract boolean d(); public String toString() { - int i = this.f1036c; + int i = this.f1037c; int i2 = this.a; boolean d = d(); StringBuilder sb = new StringBuilder(55); diff --git a/app/src/main/java/c/i/a/f/d/r.java b/app/src/main/java/c/i/a/f/d/r.java index 672660f606..1fe817bc33 100644 --- a/app/src/main/java/c/i/a/f/d/r.java +++ b/app/src/main/java/c/i/a/f/d/r.java @@ -17,14 +17,14 @@ public final class r { public int b; /* renamed from: c reason: collision with root package name */ - public int f1037c = 0; + public int f1038c = 0; public r(Context context) { this.a = context; } public final synchronized int a() { - int i = this.f1037c; + int i = this.f1038c; if (i != 0) { return i; } @@ -38,7 +38,7 @@ public final class r { intent.setPackage("com.google.android.gms"); List queryIntentServices = packageManager.queryIntentServices(intent, 0); if (queryIntentServices != null && queryIntentServices.size() > 0) { - this.f1037c = 1; + this.f1038c = 1; return 1; } } @@ -48,13 +48,13 @@ public final class r { if (queryBroadcastReceivers == null || queryBroadcastReceivers.size() <= 0) { Log.w("Metadata", "Failed to resolve IID implementation package, falling back"); if (c.R()) { - this.f1037c = 2; + this.f1038c = 2; } else { - this.f1037c = 1; + this.f1038c = 1; } - return this.f1037c; + return this.f1038c; } - this.f1037c = 2; + this.f1038c = 2; return 2; } @@ -64,7 +64,7 @@ public final class r { return b.a(this.a).a.getPackageManager().getPackageInfo(str, 0); } catch (PackageManager.NameNotFoundException e) { String valueOf = String.valueOf(e); - a.c0(valueOf.length() + 23, "Failed to find package ", valueOf, "Metadata"); + a.b0(valueOf.length() + 23, "Failed to find package ", valueOf, "Metadata"); return null; } } diff --git a/app/src/main/java/c/i/a/f/d/x.java b/app/src/main/java/c/i/a/f/d/x.java index 9f635f6784..665d573897 100644 --- a/app/src/main/java/c/i/a/f/d/x.java +++ b/app/src/main/java/c/i/a/f/d/x.java @@ -9,21 +9,21 @@ public final /* synthetic */ class x implements c { public final String b; /* renamed from: c reason: collision with root package name */ - public final ScheduledFuture f1038c; + public final ScheduledFuture f1039c; public x(b bVar, String str, ScheduledFuture scheduledFuture) { this.a = bVar; this.b = str; - this.f1038c = scheduledFuture; + this.f1039c = scheduledFuture; } @Override // c.i.a.f.n.c public final void onComplete(Task task) { b bVar = this.a; String str = this.b; - ScheduledFuture scheduledFuture = this.f1038c; - synchronized (bVar.f1034c) { - bVar.f1034c.remove(str); + ScheduledFuture scheduledFuture = this.f1039c; + synchronized (bVar.f1035c) { + bVar.f1035c.remove(str); } scheduledFuture.cancel(false); } diff --git a/app/src/main/java/c/i/a/f/d/y.java b/app/src/main/java/c/i/a/f/d/y.java index 62e8055b8c..55478a5052 100644 --- a/app/src/main/java/c/i/a/f/d/y.java +++ b/app/src/main/java/c/i/a/f/d/y.java @@ -51,7 +51,7 @@ public final class y extends a { String stringExtra2 = intent2.getStringExtra("error"); if (stringExtra2 == null) { String valueOf = String.valueOf(intent2.getExtras()); - c.d.b.a.a.c0(valueOf.length() + 49, "Unexpected response, no error or registration id ", valueOf, "Rpc"); + c.d.b.a.a.b0(valueOf.length() + 49, "Unexpected response, no error or registration id ", valueOf, "Rpc"); return; } if (Log.isLoggable("Rpc", 3)) { @@ -71,9 +71,9 @@ public final class y extends a { bVar.a(str, intent2.putExtra("error", str2).getExtras()); return; } - synchronized (bVar.f1034c) { - for (int i = 0; i < bVar.f1034c.size(); i++) { - bVar.a(bVar.f1034c.keyAt(i), intent2.getExtras()); + synchronized (bVar.f1035c) { + for (int i = 0; i < bVar.f1035c.size(); i++) { + bVar.a(bVar.f1035c.keyAt(i), intent2.getExtras()); } } return; diff --git a/app/src/main/java/c/i/a/f/e/a.java b/app/src/main/java/c/i/a/f/e/a.java index 262c7e7091..c8c55f728e 100644 --- a/app/src/main/java/c/i/a/f/e/a.java +++ b/app/src/main/java/c/i/a/f/e/a.java @@ -4,7 +4,7 @@ import android.content.ComponentName; import android.content.ServiceConnection; import android.os.IBinder; import androidx.annotation.RecentlyNonNull; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.TimeUnit; @@ -16,7 +16,7 @@ public class a implements ServiceConnection { @RecentlyNonNull public IBinder a(@RecentlyNonNull long j, @RecentlyNonNull TimeUnit timeUnit) throws InterruptedException, TimeoutException { - AnimatableValueParser.x("BlockingServiceConnection.getServiceWithTimeout() called on main thread"); + d.x("BlockingServiceConnection.getServiceWithTimeout() called on main thread"); if (!this.i) { this.i = true; IBinder poll = this.j.poll(j, timeUnit); diff --git a/app/src/main/java/c/i/a/f/e/a0.java b/app/src/main/java/c/i/a/f/e/a0.java index f14dab16b5..5058906a2d 100644 --- a/app/src/main/java/c/i/a/f/e/a0.java +++ b/app/src/main/java/c/i/a/f/e/a0.java @@ -7,12 +7,12 @@ public class a0 { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final String f1039c; + public final String f1040c; public final Throwable d; public a0(boolean z2, String str, Throwable th) { this.b = z2; - this.f1039c = str; + this.f1040c = str; this.d = th; } @@ -25,6 +25,6 @@ public class a0 { } public String c() { - return this.f1039c; + return this.f1040c; } } diff --git a/app/src/main/java/c/i/a/f/e/b0.java b/app/src/main/java/c/i/a/f/e/b0.java index 93393126e4..7f9974cf73 100644 --- a/app/src/main/java/c/i/a/f/e/b0.java +++ b/app/src/main/java/c/i/a/f/e/b0.java @@ -3,34 +3,34 @@ package c.i.a.f.e; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.zzj; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ public final class b0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzj createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); boolean z2 = false; String str = null; IBinder iBinder = null; boolean z3 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 1) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i == 2) { - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); } else if (i == 3) { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } else if (i != 4) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzj(str, iBinder, z2, z3); } diff --git a/app/src/main/java/c/i/a/f/e/c.java b/app/src/main/java/c/i/a/f/e/c.java index e551d11be7..3e676e73b0 100644 --- a/app/src/main/java/c/i/a/f/e/c.java +++ b/app/src/main/java/c/i/a/f/e/c.java @@ -11,11 +11,11 @@ import android.util.Log; import androidx.annotation.Nullable; import androidx.annotation.RecentlyNonNull; import androidx.annotation.RecentlyNullable; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.f.e.k.h0; import c.i.a.f.e.k.q0; import c.i.a.f.e.p.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.common.R; import java.util.Objects; @@ -33,24 +33,24 @@ public class c { public Intent a(@Nullable Context context, @RecentlyNonNull int i, @Nullable String str) { if (i == 1 || i == 2) { if (context == null || !c.i.a.f.e.o.c.V(context)) { - StringBuilder P = a.P("gcore_"); - P.append(a); - P.append("-"); + StringBuilder O = a.O("gcore_"); + O.append(a); + O.append("-"); if (!TextUtils.isEmpty(str)) { - P.append(str); + O.append(str); } - P.append("-"); + O.append("-"); if (context != null) { - P.append(context.getPackageName()); + O.append(context.getPackageName()); } - P.append("-"); + O.append("-"); if (context != null) { try { - P.append(b.a(context).b(context.getPackageName(), 0).versionCode); + O.append(b.a(context).b(context.getPackageName(), 0).versionCode); } catch (PackageManager.NameNotFoundException unused) { } } - String sb = P.toString(); + String sb = O.toString(); int i2 = h0.a; Intent intent = new Intent("android.intent.action.VIEW"); Uri.Builder appendQueryParameter = Uri.parse("market://details").buildUpon().appendQueryParameter(ModelAuditLogEntry.CHANGE_KEY_ID, "com.google.android.gms"); @@ -114,12 +114,12 @@ public class c { } boolean z4 = true; if (!c.i.a.f.e.o.c.V(context)) { - if (c.i.a.f.e.o.c.f1073c == null) { - c.i.a.f.e.o.c.f1073c = Boolean.valueOf(context.getPackageManager().hasSystemFeature("android.hardware.type.iot") || context.getPackageManager().hasSystemFeature("android.hardware.type.embedded")); + if (c.i.a.f.e.o.c.f1074c == null) { + c.i.a.f.e.o.c.f1074c = Boolean.valueOf(context.getPackageManager().hasSystemFeature("android.hardware.type.iot") || context.getPackageManager().hasSystemFeature("android.hardware.type.embedded")); } - if (!c.i.a.f.e.o.c.f1073c.booleanValue()) { + if (!c.i.a.f.e.o.c.f1074c.booleanValue()) { z2 = true; - AnimatableValueParser.m(i < 0); + d.m(i < 0); packageName = context.getPackageName(); PackageManager packageManager = context.getPackageManager(); PackageInfo packageInfo2 = null; @@ -184,7 +184,7 @@ public class c { } } z2 = false; - AnimatableValueParser.m(i < 0); + d.m(i < 0); packageName = context.getPackageName(); PackageManager packageManager = context.getPackageManager(); PackageInfo packageInfo2 = null; diff --git a/app/src/main/java/c/i/a/f/e/e.java b/app/src/main/java/c/i/a/f/e/e.java index d50bf63b70..a73963c5c0 100644 --- a/app/src/main/java/c/i/a/f/e/e.java +++ b/app/src/main/java/c/i/a/f/e/e.java @@ -20,7 +20,7 @@ public class e { public static boolean b = false; /* renamed from: c reason: collision with root package name */ - public static final AtomicBoolean f1040c = new AtomicBoolean(); + public static final AtomicBoolean f1041c = new AtomicBoolean(); public static final AtomicBoolean d = new AtomicBoolean(); @RecentlyNonNull diff --git a/app/src/main/java/c/i/a/f/e/f.java b/app/src/main/java/c/i/a/f/e/f.java index 1a6aa00bba..7d032ecfaa 100644 --- a/app/src/main/java/c/i/a/f/e/f.java +++ b/app/src/main/java/c/i/a/f/e/f.java @@ -16,7 +16,7 @@ public class f { public final Context b; /* renamed from: c reason: collision with root package name */ - public volatile String f1041c; + public volatile String f1042c; public f(Context context) { this.b = context.getApplicationContext(); @@ -29,8 +29,8 @@ public class f { if (a == null) { o0 o0Var = s.a; synchronized (s.class) { - if (s.f1075c == null) { - s.f1075c = context.getApplicationContext(); + if (s.f1076c == null) { + s.f1076c = context.getApplicationContext(); } else { Log.w("GoogleCertificates", "GoogleCertificates has been initialized already"); } @@ -90,7 +90,7 @@ public class f { String str = packagesForUid[i2]; if (str == null) { a0Var = a0.a("null pkg"); - } else if (str.equals(this.f1041c)) { + } else if (str.equals(this.f1042c)) { a0Var = a0.a; } else { try { @@ -131,7 +131,7 @@ public class f { } } if (a0Var2.b) { - this.f1041c = str; + this.f1042c = str; } a0Var = a0Var2; } catch (PackageManager.NameNotFoundException e) { diff --git a/app/src/main/java/c/i/a/f/e/h/a.java b/app/src/main/java/c/i/a/f/e/h/a.java index 9bef0e5111..5c1ab08f1a 100644 --- a/app/src/main/java/c/i/a/f/e/h/a.java +++ b/app/src/main/java/c/i/a/f/e/h/a.java @@ -9,7 +9,6 @@ import c.i.a.f.e.h.a.d; import c.i.a.f.e.h.c; import c.i.a.f.e.h.j.l; import c.i.a.f.e.k.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.common.Feature; import com.google.android.gms.common.api.Scope; @@ -22,7 +21,7 @@ public final class a { public final g b; /* renamed from: c reason: collision with root package name */ - public final String f1042c; + public final String f1043c; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ /* renamed from: c.i.a.f.e.h.a$a reason: collision with other inner class name */ @@ -109,9 +108,9 @@ public final class a { /* JADX DEBUG: Multi-variable search result rejected for r4v0, resolved type: c.i.a.f.e.h.a$g */ /* JADX WARN: Multi-variable type inference failed */ public a(String str, AbstractC0105a aVar, g gVar) { - AnimatableValueParser.z(aVar, "Cannot construct an Api with a null ClientBuilder"); - AnimatableValueParser.z(gVar, "Cannot construct an Api with a null ClientKey"); - this.f1042c = str; + c.c.a.a0.d.z(aVar, "Cannot construct an Api with a null ClientBuilder"); + c.c.a.a0.d.z(gVar, "Cannot construct an Api with a null ClientKey"); + this.f1043c = str; this.a = aVar; this.b = gVar; } diff --git a/app/src/main/java/c/i/a/f/e/h/b.java b/app/src/main/java/c/i/a/f/e/h/b.java index 49c48d4ecf..ef214f7a48 100644 --- a/app/src/main/java/c/i/a/f/e/h/b.java +++ b/app/src/main/java/c/i/a/f/e/h/b.java @@ -26,7 +26,6 @@ import c.i.a.f.e.h.j.y; import c.i.a.f.e.k.c; import c.i.a.f.e.o.c; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.common.api.GoogleApiActivity; import com.google.android.gms.common.api.Scope; @@ -45,7 +44,7 @@ public class b { public final a b; /* renamed from: c reason: collision with root package name */ - public final O f1043c; + public final O f1044c; public final c.i.a.f.e.h.j.b d; public final Looper e; public final int f; @@ -60,25 +59,25 @@ public class b { public final n b; /* renamed from: c reason: collision with root package name */ - public final Looper f1044c; + public final Looper f1045c; public a(n nVar, Account account, Looper looper) { this.b = nVar; - this.f1044c = looper; + this.f1045c = looper; } } @MainThread public b(@NonNull Activity activity, a aVar, O o, a aVar2) { - AnimatableValueParser.z(activity, "Null activity is not permitted."); - AnimatableValueParser.z(aVar, "Api must not be null."); - AnimatableValueParser.z(aVar2, "Settings must not be null; use Settings.DEFAULT_SETTINGS instead."); + c.c.a.a0.d.z(activity, "Null activity is not permitted."); + c.c.a.a0.d.z(aVar, "Api must not be null."); + c.c.a.a0.d.z(aVar2, "Settings must not be null; use Settings.DEFAULT_SETTINGS instead."); Context applicationContext = activity.getApplicationContext(); this.a = applicationContext; e(activity); this.b = aVar; - this.f1043c = o; - this.e = aVar2.f1044c; + this.f1044c = o; + this.e = aVar2.f1045c; c.i.a.f.e.h.j.b bVar = new c.i.a.f.e.h.j.b<>(aVar, o); this.d = bVar; this.g = new y(this); @@ -97,15 +96,15 @@ public class b { } public b(@NonNull Context context, a aVar, O o, a aVar2) { - AnimatableValueParser.z(context, "Null context is not permitted."); - AnimatableValueParser.z(aVar, "Api must not be null."); - AnimatableValueParser.z(aVar2, "Settings must not be null; use Settings.DEFAULT_SETTINGS instead."); + c.c.a.a0.d.z(context, "Null context is not permitted."); + c.c.a.a0.d.z(aVar, "Api must not be null."); + c.c.a.a0.d.z(aVar2, "Settings must not be null; use Settings.DEFAULT_SETTINGS instead."); Context applicationContext = context.getApplicationContext(); this.a = applicationContext; e(context); this.b = aVar; - this.f1043c = o; - this.e = aVar2.f1044c; + this.f1044c = o; + this.e = aVar2.f1045c; this.d = new c.i.a.f.e.h.j.b<>(aVar, o); this.g = new y(this); g a2 = g.a(applicationContext); @@ -120,7 +119,7 @@ public class b { @Deprecated public b(@NonNull Context context, a aVar, O o, n nVar) { this(context, aVar, o, new a(nVar, null, Looper.getMainLooper())); - AnimatableValueParser.z(nVar, "StatusExceptionMapper must not be null."); + c.c.a.a0.d.z(nVar, "StatusExceptionMapper must not be null."); } /* JADX WARNING: Removed duplicated region for block: B:42:0x0093 */ @@ -170,10 +169,10 @@ public class b { GoogleSignInAccount K; GoogleSignInAccount K2; c.a aVar = new c.a(); - O o = this.f1043c; + O o = this.f1044c; Account account = null; if (!(o instanceof a.d.b) || (K2 = ((a.d.b) o).K()) == null) { - O o2 = this.f1043c; + O o2 = this.f1044c; if (o2 instanceof a.d.AbstractC0106a) { account = ((a.d.AbstractC0106a) o2).S(); } @@ -181,19 +180,19 @@ public class b { account = new Account(K2.l, "com.google"); } aVar.a = account; - O o3 = this.f1043c; + O o3 = this.f1044c; Set emptySet = (!(o3 instanceof a.d.b) || (K = ((a.d.b) o3).K()) == null) ? Collections.emptySet() : K.v0(); if (aVar.b == null) { aVar.b = new ArraySet<>(); } aVar.b.addAll(emptySet); aVar.d = this.a.getClass().getName(); - aVar.f1063c = this.a.getPackageName(); + aVar.f1064c = this.a.getPackageName(); return aVar; } public Task b(@NonNull k.a aVar) { - AnimatableValueParser.z(aVar, "Listener key cannot be null."); + c.c.a.a0.d.z(aVar, "Listener key cannot be null."); g gVar = this.i; Objects.requireNonNull(gVar); TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); diff --git a/app/src/main/java/c/i/a/f/e/h/j/a.java b/app/src/main/java/c/i/a/f/e/h/j/a.java index 8c637cc874..c631794f21 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/a.java +++ b/app/src/main/java/c/i/a/f/e/h/j/a.java @@ -1,11 +1,11 @@ package c.i.a.f.e.h.j; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.api.Status; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public class a implements n { @Override // c.i.a.f.e.h.j.n public Exception a(Status status) { - return AnimatableValueParser.n0(status); + return d.n0(status); } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/a1.java b/app/src/main/java/c/i/a/f/e/h/j/a1.java index f3e9162ad4..c363888966 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/a1.java +++ b/app/src/main/java/c/i/a/f/e/h/j/a1.java @@ -3,7 +3,7 @@ package c.i.a.f.e.h.j; import android.app.Activity; import android.os.Handler; import androidx.collection.ArraySet; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.GoogleApiAvailability; import com.google.android.gms.common.api.internal.LifecycleCallback; @@ -16,7 +16,7 @@ public class a1 extends t0 { /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public a1(j jVar, g gVar) { super(jVar, GoogleApiAvailability.d); - Object obj = GoogleApiAvailability.f2366c; + Object obj = GoogleApiAvailability.f2369c; this.o = gVar; jVar.a("ConnectionlessLifecycleHelper", this); } @@ -27,7 +27,7 @@ public class a1 extends t0 { if (a1Var == null) { a1Var = new a1(c2, gVar); } - AnimatableValueParser.z(bVar, "ApiKey cannot be null"); + d.z(bVar, "ApiKey cannot be null"); a1Var.n.add(bVar); gVar.b(a1Var); } diff --git a/app/src/main/java/c/i/a/f/e/h/j/b.java b/app/src/main/java/c/i/a/f/e/h/j/b.java index 24c377ccff..373cd07778 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/b.java +++ b/app/src/main/java/c/i/a/f/e/h/j/b.java @@ -3,7 +3,6 @@ package c.i.a.f.e.h.j; import androidx.annotation.Nullable; import c.i.a.f.e.h.a; import c.i.a.f.e.h.a.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class b { @@ -12,11 +11,11 @@ public final class b { @Nullable /* renamed from: c reason: collision with root package name */ - public final O f1045c; + public final O f1046c; public b(a aVar, @Nullable O o) { this.b = aVar; - this.f1045c = o; + this.f1046c = o; this.a = Arrays.hashCode(new Object[]{aVar, o}); } @@ -31,7 +30,7 @@ public final class b { return false; } b bVar = (b) obj; - return AnimatableValueParser.j0(this.b, bVar.b) && AnimatableValueParser.j0(this.f1045c, bVar.f1045c); + return c.c.a.a0.d.j0(this.b, bVar.b) && c.c.a.a0.d.j0(this.f1046c, bVar.f1046c); } public final int hashCode() { diff --git a/app/src/main/java/c/i/a/f/e/h/j/b0.java b/app/src/main/java/c/i/a/f/e/h/j/b0.java index 37a3670e48..70c1142433 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/b0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/b0.java @@ -1,8 +1,8 @@ package c.i.a.f.e.h.j; import android.app.Activity; +import c.c.a.a0.d; import c.i.a.f.e.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.GoogleApiAvailability; import com.google.android.gms.common.api.ApiException; @@ -16,7 +16,7 @@ public class b0 extends t0 { /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public b0(j jVar) { super(jVar, GoogleApiAvailability.d); - Object obj = GoogleApiAvailability.f2366c; + Object obj = GoogleApiAvailability.f2369c; jVar.a("GmsAvailabilityHelper", this); } @@ -43,6 +43,6 @@ public class b0 extends t0 { @Override // c.i.a.f.e.h.j.t0 public final void l(ConnectionResult connectionResult, int i) { TaskCompletionSource taskCompletionSource = this.n; - taskCompletionSource.a.s(AnimatableValueParser.n0(new Status(connectionResult.k, connectionResult.m, connectionResult.l))); + taskCompletionSource.a.s(d.n0(new Status(connectionResult.k, connectionResult.m, connectionResult.l))); } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/c0.java b/app/src/main/java/c/i/a/f/e/h/j/c0.java index 0f47565463..5ec5b9e146 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/c0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/c0.java @@ -7,11 +7,11 @@ public final class c0 { public final int b; /* renamed from: c reason: collision with root package name */ - public final b f1046c; + public final b f1047c; public c0(s sVar, int i, b bVar) { this.a = sVar; this.b = i; - this.f1046c = bVar; + this.f1047c = bVar; } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/d.java b/app/src/main/java/c/i/a/f/e/h/j/d.java index f8dfe85306..e918f76584 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/d.java +++ b/app/src/main/java/c/i/a/f/e/h/j/d.java @@ -8,7 +8,6 @@ import c.i.a.f.e.h.a.b; import c.i.a.f.e.h.c; import c.i.a.f.e.h.h; import c.i.a.f.e.k.z; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Status; import com.google.android.gms.common.api.internal.BasePendingResult; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ @@ -16,8 +15,8 @@ public abstract class d extends BasePendingResult /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public d(@NonNull a aVar, @NonNull c cVar) { super(cVar); - AnimatableValueParser.z(cVar, "GoogleApiClient must not be null"); - AnimatableValueParser.z(aVar, "Api must not be null"); + c.c.a.a0.d.z(cVar, "GoogleApiClient must not be null"); + c.c.a.a0.d.z(aVar, "Api must not be null"); if (aVar.b == null) { throw new IllegalStateException("This API was constructed with null client keys. This should not be possible."); } @@ -25,7 +24,7 @@ public abstract class d extends BasePendingResult @Override // c.i.a.f.e.h.j.e public final void a(@NonNull Status status) { - AnimatableValueParser.p(!status.v0(), "Failed result must not be success"); + c.c.a.a0.d.p(!status.v0(), "Failed result must not be success"); b(d(status)); } diff --git a/app/src/main/java/c/i/a/f/e/h/j/d0.java b/app/src/main/java/c/i/a/f/e/h/j/d0.java index 8c742f8587..7349082b37 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/d0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/d0.java @@ -8,11 +8,11 @@ public final class d0 { public final q b; /* renamed from: c reason: collision with root package name */ - public final Runnable f1047c; + public final Runnable f1048c; public d0(@NonNull m mVar, @NonNull q qVar, @NonNull Runnable runnable) { this.a = mVar; this.b = qVar; - this.f1047c = runnable; + this.f1048c = runnable; } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/g.java b/app/src/main/java/c/i/a/f/e/h/j/g.java index 52e07a140b..cd9a79a5b7 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/g.java +++ b/app/src/main/java/c/i/a/f/e/h/j/g.java @@ -19,6 +19,7 @@ import androidx.annotation.Nullable; import androidx.annotation.WorkerThread; import androidx.collection.ArrayMap; import androidx.collection.ArraySet; +import c.c.a.a0.d; import c.i.a.f.e.e; import c.i.a.f.e.h.a; import c.i.a.f.e.h.c; @@ -29,7 +30,6 @@ import c.i.a.f.e.k.z; import c.i.a.f.j.b.e.i; import c.i.a.f.j.b.e.v; import c.i.a.f.l.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.Feature; import com.google.android.gms.common.GoogleApiAvailability; @@ -67,7 +67,7 @@ public class g implements Handler.Callback { public final AtomicInteger r; /* renamed from: s reason: collision with root package name */ - public final Map, a> f1048s; + public final Map, a> f1049s; @Nullable public a1 t; public final Set> u; @@ -76,7 +76,7 @@ public class g implements Handler.Callback { public final Handler w; /* renamed from: x reason: collision with root package name */ - public volatile boolean f1049x; + public volatile boolean f1050x; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public class a implements c.a, c.b { @@ -85,7 +85,7 @@ public class g implements Handler.Callback { public final a.f b; /* renamed from: c reason: collision with root package name */ - public final a.b f1050c; + public final a.b f1051c; public final b d; public final x0 e; public final Set f = new HashSet(); @@ -103,13 +103,13 @@ public class g implements Handler.Callback { Looper looper = g.this.w.getLooper(); c.i.a.f.e.k.c a = bVar.a().a(); c.i.a.f.e.h.a aVar = bVar.b; - AnimatableValueParser.G(aVar.a != null, "This API was constructed with a SimpleClientBuilder. Use getSimpleClientBuilder"); + d.G(aVar.a != null, "This API was constructed with a SimpleClientBuilder. Use getSimpleClientBuilder"); a.AbstractC0105a aVar2 = aVar.a; Objects.requireNonNull(aVar2, "null reference"); - a.f a2 = aVar2.a(bVar.a, looper, a, bVar.f1043c, this, this); + a.f a2 = aVar2.a(bVar.a, looper, a, bVar.f1044c, this, this); this.b = a2; if (!(a2 instanceof z)) { - this.f1050c = a2; + this.f1051c = a2; this.d = bVar.d; this.e = new x0(); this.h = bVar.f; @@ -148,7 +148,7 @@ public class g implements Handler.Callback { @WorkerThread public final void b() { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); Status status = g.i; f(status); x0 x0Var = this.e; @@ -191,14 +191,14 @@ public class g implements Handler.Callback { handler2.sendMessageDelayed(obtain2, 120000); g.this.p.a.clear(); for (d0 d0Var : this.g.values()) { - d0Var.f1047c.run(); + d0Var.f1048c.run(); } } @WorkerThread public final void d(@NonNull ConnectionResult connectionResult, @Nullable Exception exc) { f fVar; - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); g0 g0Var = this.i; if (!(g0Var == null || (fVar = g0Var.g) == null)) { fVar.h(); @@ -211,11 +211,11 @@ public class g implements Handler.Callback { } else if (this.a.isEmpty()) { this.l = connectionResult; } else if (exc != null) { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); i(null, exc, false); - } else if (!g.this.f1049x) { + } else if (!g.this.f1050x) { Status p = p(connectionResult); - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); i(p, null, false); } else { i(p(connectionResult), null, true); @@ -231,7 +231,7 @@ public class g implements Handler.Callback { return; } Status p2 = p(connectionResult); - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); i(p2, null, false); } } @@ -248,7 +248,7 @@ public class g implements Handler.Callback { @WorkerThread public final void f(Status status) { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); i(status, null, false); } @@ -269,7 +269,7 @@ public class g implements Handler.Callback { @WorkerThread public final void i(@Nullable Status status, @Nullable Exception exc, boolean z2) { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); boolean z3 = true; boolean z4 = status == null; if (exc != null) { @@ -295,7 +295,7 @@ public class g implements Handler.Callback { @WorkerThread public final void j(s sVar) { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); if (!this.b.j()) { this.a.add(sVar); ConnectionResult connectionResult = this.l; @@ -313,7 +313,7 @@ public class g implements Handler.Callback { @WorkerThread public final boolean k(boolean z2) { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); if (!this.b.j() || this.g.size() != 0) { return false; } @@ -352,14 +352,14 @@ public class g implements Handler.Callback { o(sVar); return true; } - String name = this.f1050c.getClass().getName(); + String name = this.f1051c.getClass().getName(); String str = a.i; long v0 = a.v0(); - StringBuilder O = c.d.b.a.a.O(c.d.b.a.a.b(str, name.length() + 77), name, " could not execute call because it requires feature (", str, ", "); - O.append(v0); - O.append(")."); - Log.w("GoogleApiManager", O.toString()); - if (!g.this.f1049x || !m0Var.g(this)) { + StringBuilder N = c.d.b.a.a.N(c.d.b.a.a.b(str, name.length() + 77), name, " could not execute call because it requires feature (", str, ", "); + N.append(v0); + N.append(")."); + Log.w("GoogleApiManager", N.toString()); + if (!g.this.f1050x || !m0Var.g(this)) { m0Var.e(new UnsupportedApiCallException(a)); return true; } @@ -396,7 +396,7 @@ public class g implements Handler.Callback { Iterator it = this.f.iterator(); if (it.hasNext()) { r0 next = it.next(); - if (AnimatableValueParser.j0(connectionResult, ConnectionResult.i)) { + if (d.j0(connectionResult, ConnectionResult.i)) { this.b.f(); } Objects.requireNonNull(next); @@ -414,32 +414,32 @@ public class g implements Handler.Callback { e(1); this.b.c("DeadObjectException thrown while running ApiCallRunner."); } catch (Throwable th) { - throw new IllegalStateException(String.format("Error in GoogleApi implementation for client %s.", this.f1050c.getClass().getName()), th); + throw new IllegalStateException(String.format("Error in GoogleApi implementation for client %s.", this.f1051c.getClass().getName()), th); } } public final Status p(ConnectionResult connectionResult) { - String str = this.d.b.f1042c; + String str = this.d.b.f1043c; String valueOf = String.valueOf(connectionResult); return new Status(17, c.d.b.a.a.h(valueOf.length() + c.d.b.a.a.b(str, 63), "API: ", str, " is not available on this device. Connection failed with: ", valueOf)); } @WorkerThread public final void q() { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); this.l = null; } @WorkerThread public final void r() { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); if (!this.b.j() && !this.b.e()) { try { g gVar = g.this; int a = gVar.p.a(gVar.n, this.b); if (a != 0) { ConnectionResult connectionResult = new ConnectionResult(a, null); - String name = this.f1050c.getClass().getName(); + String name = this.f1051c.getClass().getName(); String valueOf = String.valueOf(connectionResult); StringBuilder sb = new StringBuilder(name.length() + 35 + valueOf.length()); sb.append("The service for "); @@ -463,13 +463,13 @@ public class g implements Handler.Callback { g0Var.f.h = Integer.valueOf(System.identityHashCode(g0Var)); a.AbstractC0105a aVar = g0Var.d; Context context = g0Var.b; - Looper looper = g0Var.f1052c.getLooper(); + Looper looper = g0Var.f1053c.getLooper(); c.i.a.f.e.k.c cVar = g0Var.f; g0Var.g = (f) aVar.a(context, looper, cVar, cVar.g, g0Var, g0Var); g0Var.h = bVar; Set set = g0Var.e; if (set == null || set.isEmpty()) { - g0Var.f1052c.post(new f0(g0Var)); + g0Var.f1053c.post(new f0(g0Var)); } else { g0Var.g.p(); } @@ -503,11 +503,11 @@ public class g implements Handler.Callback { } else { try { m mVar = next.a; - a.b bVar = this.f1050c; + a.b bVar = this.f1051c; TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); v vVar = (v) mVar; Objects.requireNonNull(vVar); - vVar.b.a((c.i.a.f.j.b.e.f) bVar, i.j(vVar.f1224c, taskCompletionSource)); + vVar.b.a((c.i.a.f.j.b.e.f) bVar, i.j(vVar.f1225c, taskCompletionSource)); } catch (DeadObjectException unused) { e(3); this.b.c("DeadObjectException thrown while calling register listener method."); @@ -561,7 +561,7 @@ public class g implements Handler.Callback { @Nullable /* renamed from: c reason: collision with root package name */ - public c.i.a.f.e.k.g f1051c = null; + public c.i.a.f.e.k.g f1052c = null; @Nullable public Set d = null; public boolean e = false; @@ -578,11 +578,11 @@ public class g implements Handler.Callback { @WorkerThread public final void b(ConnectionResult connectionResult) { - a aVar = g.this.f1048s.get(this.b); + a aVar = g.this.f1049s.get(this.b); if (aVar != null) { - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); a.f fVar = aVar.b; - String name = aVar.f1050c.getClass().getName(); + String name = aVar.f1051c.getClass().getName(); String valueOf = String.valueOf(connectionResult); fVar.c(c.d.b.a.a.h(valueOf.length() + name.length() + 25, "onSignInFailed for ", name, " with ", valueOf)); aVar.d(connectionResult, null); @@ -603,7 +603,7 @@ public class g implements Handler.Callback { public final boolean equals(@Nullable Object obj) { if (obj != null && (obj instanceof c)) { c cVar = (c) obj; - if (AnimatableValueParser.j0(this.a, cVar.a) && AnimatableValueParser.j0(this.b, cVar.b)) { + if (d.j0(this.a, cVar.a) && d.j0(this.b, cVar.b)) { return true; } } @@ -626,11 +626,11 @@ public class g implements Handler.Callback { boolean z2 = true; this.q = new AtomicInteger(1); this.r = new AtomicInteger(0); - this.f1048s = new ConcurrentHashMap(5, 0.75f, 1); + this.f1049s = new ConcurrentHashMap(5, 0.75f, 1); this.t = null; this.u = new ArraySet(); this.v = new ArraySet(); - this.f1049x = true; + this.f1050x = true; this.n = context; c.i.a.f.h.e.c cVar = new c.i.a.f.h.e.c(looper, this); this.w = cVar; @@ -641,7 +641,7 @@ public class g implements Handler.Callback { c.i.a.f.e.o.c.d = Boolean.valueOf((!c.i.a.f.e.o.c.R() || !packageManager.hasSystemFeature("android.hardware.type.automotive")) ? false : z2); } if (c.i.a.f.e.o.c.d.booleanValue()) { - this.f1049x = false; + this.f1050x = false; } cVar.sendMessage(cVar.obtainMessage(6)); } @@ -654,7 +654,7 @@ public class g implements Handler.Callback { handlerThread.start(); Looper looper = handlerThread.getLooper(); Context applicationContext = context.getApplicationContext(); - Object obj = GoogleApiAvailability.f2366c; + Object obj = GoogleApiAvailability.f2369c; l = new g(applicationContext, looper, GoogleApiAvailability.d); } gVar = l; @@ -699,10 +699,10 @@ public class g implements Handler.Callback { @WorkerThread public final a d(c.i.a.f.e.h.b bVar) { b bVar2 = bVar.d; - a aVar = this.f1048s.get(bVar2); + a aVar = this.f1049s.get(bVar2); if (aVar == null) { aVar = new a<>(bVar); - this.f1048s.put(bVar2, aVar); + this.f1049s.put(bVar2, aVar); } if (aVar.s()) { this.v.add(bVar2); @@ -726,7 +726,7 @@ public class g implements Handler.Callback { } this.m = j2; this.w.removeMessages(12); - for (b bVar : this.f1048s.keySet()) { + for (b bVar : this.f1049s.keySet()) { Handler handler = this.w; handler.sendMessageDelayed(handler.obtainMessage(12, bVar), this.m); } @@ -735,7 +735,7 @@ public class g implements Handler.Callback { Objects.requireNonNull((r0) message.obj); throw null; case 3: - for (a aVar2 : this.f1048s.values()) { + for (a aVar2 : this.f1049s.values()) { aVar2.q(); aVar2.r(); } @@ -744,9 +744,9 @@ public class g implements Handler.Callback { case 8: case 13: c0 c0Var = (c0) message.obj; - a aVar3 = this.f1048s.get(c0Var.f1046c.d); + a aVar3 = this.f1049s.get(c0Var.f1047c.d); if (aVar3 == null) { - aVar3 = d(c0Var.f1046c); + aVar3 = d(c0Var.f1047c); } if (!aVar3.s() || this.r.get() == c0Var.b) { aVar3.j(c0Var.a); @@ -759,7 +759,7 @@ public class g implements Handler.Callback { case 5: int i4 = message.arg1; ConnectionResult connectionResult = (ConnectionResult) message.obj; - Iterator> it = this.f1048s.values().iterator(); + Iterator> it = this.f1049s.values().iterator(); while (true) { if (it.hasNext()) { aVar = it.next(); @@ -777,7 +777,7 @@ public class g implements Handler.Callback { String x0 = ConnectionResult.x0(i5); String str = connectionResult.m; Status status = new Status(17, c.d.b.a.a.h(c.d.b.a.a.b(str, c.d.b.a.a.b(x0, 69)), "Error resolution was canceled by the user, original error message: ", x0, ": ", str)); - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); aVar.i(status, null, false); break; } else { @@ -814,9 +814,9 @@ public class g implements Handler.Callback { d((c.i.a.f.e.h.b) message.obj); break; case 9: - if (this.f1048s.containsKey(message.obj)) { - a aVar4 = this.f1048s.get(message.obj); - AnimatableValueParser.s(g.this.w); + if (this.f1049s.containsKey(message.obj)) { + a aVar4 = this.f1049s.get(message.obj); + d.s(g.this.w); if (aVar4.j) { aVar4.r(); break; @@ -825,7 +825,7 @@ public class g implements Handler.Callback { break; case 10: for (b bVar2 : this.v) { - a remove = this.f1048s.remove(bVar2); + a remove = this.f1049s.remove(bVar2); if (remove != null) { remove.b(); } @@ -833,14 +833,14 @@ public class g implements Handler.Callback { this.v.clear(); break; case 11: - if (this.f1048s.containsKey(message.obj)) { - a aVar5 = this.f1048s.get(message.obj); - AnimatableValueParser.s(g.this.w); + if (this.f1049s.containsKey(message.obj)) { + a aVar5 = this.f1049s.get(message.obj); + d.s(g.this.w); if (aVar5.j) { aVar5.v(); g gVar = g.this; Status status2 = gVar.o.c(gVar.n) == 18 ? new Status(8, "Connection timed out while waiting for Google Play services update to complete.") : new Status(8, "API failed to connect while resuming due to an unknown error."); - AnimatableValueParser.s(g.this.w); + d.s(g.this.w); aVar5.i(status2, null, false); aVar5.b.c("Timing out connection while resuming."); break; @@ -848,22 +848,22 @@ public class g implements Handler.Callback { } break; case 12: - if (this.f1048s.containsKey(message.obj)) { - this.f1048s.get(message.obj).k(true); + if (this.f1049s.containsKey(message.obj)) { + this.f1049s.get(message.obj).k(true); break; } break; case 14: Objects.requireNonNull((b1) message.obj); - if (!this.f1048s.containsKey(null)) { + if (!this.f1049s.containsKey(null)) { throw null; } - this.f1048s.get(null).k(false); + this.f1049s.get(null).k(false); throw null; case 15: c cVar2 = (c) message.obj; - if (this.f1048s.containsKey(cVar2.a)) { - a aVar6 = this.f1048s.get(cVar2.a); + if (this.f1049s.containsKey(cVar2.a)) { + a aVar6 = this.f1049s.get(cVar2.a); if (aVar6.k.contains(cVar2) && !aVar6.j) { if (!aVar6.b.j()) { aVar6.r(); @@ -877,8 +877,8 @@ public class g implements Handler.Callback { break; case 16: c cVar3 = (c) message.obj; - if (this.f1048s.containsKey(cVar3.a)) { - a aVar7 = this.f1048s.get(cVar3.a); + if (this.f1049s.containsKey(cVar3.a)) { + a aVar7 = this.f1049s.get(cVar3.a); if (aVar7.k.remove(cVar3)) { g.this.w.removeMessages(15, cVar3); g.this.w.removeMessages(16, cVar3); @@ -891,7 +891,7 @@ public class g implements Handler.Callback { while (true) { if (i6 >= length) { i6 = -1; - } else if (!AnimatableValueParser.j0(f[i6], feature)) { + } else if (!d.j0(f[i6], feature)) { i6++; } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/g0.java b/app/src/main/java/c/i/a/f/e/h/j/g0.java index fff10e0730..8ade71b4ac 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/g0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/g0.java @@ -11,17 +11,16 @@ import c.i.a.f.e.h.c; import c.i.a.f.e.h.j.g; import c.i.a.f.l.b.d; import c.i.a.f.l.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.api.Scope; import java.util.Set; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class g0 extends d implements c.a, c.b { - public static a.AbstractC0105a a = c.i.a.f.l.c.f1228c; + public static a.AbstractC0105a a = c.i.a.f.l.c.f1229c; public final Context b; /* renamed from: c reason: collision with root package name */ - public final Handler f1052c; + public final Handler f1053c; public final a.AbstractC0105a d; public Set e; public c.i.a.f.e.k.c f; @@ -32,8 +31,8 @@ public final class g0 extends d implements c.a, c.b { public g0(Context context, Handler handler, @NonNull c.i.a.f.e.k.c cVar) { a.AbstractC0105a aVar = a; this.b = context; - this.f1052c = handler; - AnimatableValueParser.z(cVar, "ClientSettings must not be null"); + this.f1053c = handler; + c.c.a.a0.d.z(cVar, "ClientSettings must not be null"); this.f = cVar; this.e = cVar.b; this.d = aVar; diff --git a/app/src/main/java/c/i/a/f/e/h/j/h.java b/app/src/main/java/c/i/a/f/e/h/j/h.java index 435dd0fbb5..808c48036e 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/h.java +++ b/app/src/main/java/c/i/a/f/e/h/j/h.java @@ -16,7 +16,7 @@ public final class h { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f1053c; + public final String f1054c; public final Status d; public final boolean e; @@ -31,7 +31,7 @@ public final class h { this.e = false; } q0.a(context); - String str = q0.f1069c; + String str = q0.f1070c; if (str == null) { Resources resources2 = context.getResources(); int identifier2 = resources2.getIdentifier("google_app_id", "string", resources2.getResourcePackageName(i)); @@ -39,10 +39,10 @@ public final class h { } if (TextUtils.isEmpty(str)) { this.d = new Status(10, "Missing google app id value from from string resources with name google_app_id."); - this.f1053c = null; + this.f1054c = null; return; } - this.f1053c = str; + this.f1054c = str; this.d = Status.i; } diff --git a/app/src/main/java/c/i/a/f/e/h/j/i0.java b/app/src/main/java/c/i/a/f/e/h/j/i0.java index ae00b57d7b..5dd4454e81 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/i0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/i0.java @@ -47,7 +47,7 @@ public final class i0 implements Runnable { Log.wtf("GoogleApiManager", "Received null response from onSignInSuccess", new Exception()); bVar.b(new ConnectionResult(4)); } else { - bVar.f1051c = v0; + bVar.f1052c = v0; bVar.d = set; if (bVar.e) { bVar.a.b(v0, set); diff --git a/app/src/main/java/c/i/a/f/e/h/j/k.java b/app/src/main/java/c/i/a/f/e/h/j/k.java index 530e7ef70b..ecd59c50ab 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/k.java +++ b/app/src/main/java/c/i/a/f/e/h/j/k.java @@ -4,7 +4,7 @@ import android.os.Looper; import android.os.Message; import androidx.annotation.NonNull; import androidx.annotation.Nullable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class k { public final c a; @@ -13,7 +13,7 @@ public final class k { @Nullable /* renamed from: c reason: collision with root package name */ - public volatile a f1054c; + public volatile a f1055c; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public static final class a { @@ -60,7 +60,7 @@ public final class k { if (message.what != 1) { z2 = false; } - AnimatableValueParser.m(z2); + d.m(z2); b bVar = (b) message.obj; L l = k.this.b; if (l == null) { @@ -78,14 +78,14 @@ public final class k { public k(@NonNull Looper looper, @NonNull L l, @NonNull String str) { this.a = new c(looper); - AnimatableValueParser.z(l, "Listener must not be null"); + d.z(l, "Listener must not be null"); this.b = l; - AnimatableValueParser.w(str); - this.f1054c = new a<>(l, str); + d.w(str); + this.f1055c = new a<>(l, str); } public final void a(b bVar) { - AnimatableValueParser.z(bVar, "Notifier must not be null"); + d.z(bVar, "Notifier must not be null"); this.a.sendMessage(this.a.obtainMessage(1, bVar)); } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/k0.java b/app/src/main/java/c/i/a/f/e/h/j/k0.java index c2403f16a7..c37498bf0c 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/k0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/k0.java @@ -10,17 +10,17 @@ import java.util.Objects; public final class k0 extends p { /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ p.a f1055c; + public final /* synthetic */ p.a f1056c; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public k0(p.a aVar, Feature[] featureArr, boolean z2) { super(featureArr, z2, null); - this.f1055c = aVar; + this.f1056c = aVar; } @Override // c.i.a.f.e.h.j.p public final void c(A a, TaskCompletionSource taskCompletionSource) throws RemoteException { - Objects.requireNonNull(this.f1055c.a); + Objects.requireNonNull(this.f1056c.a); a.w().W(new k(taskCompletionSource)); } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/n0.java b/app/src/main/java/c/i/a/f/e/h/j/n0.java index 702b6cd41c..bb34e020a8 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/n0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/n0.java @@ -16,11 +16,11 @@ import java.util.Objects; public final class n0 extends e0 { /* renamed from: c reason: collision with root package name */ - public final d0 f1056c; + public final d0 f1057c; public n0(d0 d0Var, TaskCompletionSource taskCompletionSource) { super(3, taskCompletionSource); - this.f1056c = d0Var; + this.f1057c = d0Var; } @Override // c.i.a.f.e.h.j.s @@ -30,27 +30,27 @@ public final class n0 extends e0 { @Override // c.i.a.f.e.h.j.m0 @Nullable public final Feature[] f(g.a aVar) { - Objects.requireNonNull(this.f1056c.a); + Objects.requireNonNull(this.f1057c.a); return null; } @Override // c.i.a.f.e.h.j.m0 public final boolean g(g.a aVar) { - Objects.requireNonNull(this.f1056c.a); + Objects.requireNonNull(this.f1057c.a); return false; } @Override // c.i.a.f.e.h.j.e0 public final void h(g.a aVar) throws RemoteException { - m mVar = this.f1056c.a; + m mVar = this.f1057c.a; a.f fVar = aVar.b; TaskCompletionSource taskCompletionSource = this.b; v vVar = (v) mVar; Objects.requireNonNull(vVar); - vVar.b.a((f) fVar, i.j(vVar.f1224c, taskCompletionSource)); - k.a aVar2 = this.f1056c.a.a.f1054c; + vVar.b.a((f) fVar, i.j(vVar.f1225c, taskCompletionSource)); + k.a aVar2 = this.f1057c.a.a.f1055c; if (aVar2 != null) { - aVar.g.put(aVar2, this.f1056c); + aVar.g.put(aVar2, this.f1057c); } } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/o0.java b/app/src/main/java/c/i/a/f/e/h/j/o0.java index 0022f4568f..f6b6f8a595 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/o0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/o0.java @@ -6,7 +6,6 @@ import c.i.a.f.e.h.a; import c.i.a.f.e.h.h; import c.i.a.f.e.h.j.d; import c.i.a.f.e.h.j.g; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Status; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class o0> extends s { @@ -14,7 +13,7 @@ public final class o0> extends s { public o0(int i, A a) { super(i); - AnimatableValueParser.z(a, "Null methods are not runnable."); + c.c.a.a0.d.z(a, "Null methods are not runnable."); this.b = a; } diff --git a/app/src/main/java/c/i/a/f/e/h/j/p0.java b/app/src/main/java/c/i/a/f/e/h/j/p0.java index a4f02498dd..0c651b07be 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/p0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/p0.java @@ -16,11 +16,11 @@ import java.util.Objects; public final class p0 extends e0 { /* renamed from: c reason: collision with root package name */ - public final k.a f1057c; + public final k.a f1058c; public p0(k.a aVar, TaskCompletionSource taskCompletionSource) { super(4, taskCompletionSource); - this.f1057c = aVar; + this.f1058c = aVar; } @Override // c.i.a.f.e.h.j.s @@ -30,7 +30,7 @@ public final class p0 extends e0 { @Override // c.i.a.f.e.h.j.m0 @Nullable public final Feature[] f(g.a aVar) { - d0 d0Var = aVar.g.get(this.f1057c); + d0 d0Var = aVar.g.get(this.f1058c); if (d0Var == null) { return null; } @@ -40,7 +40,7 @@ public final class p0 extends e0 { @Override // c.i.a.f.e.h.j.m0 public final boolean g(g.a aVar) { - d0 d0Var = aVar.g.get(this.f1057c); + d0 d0Var = aVar.g.get(this.f1058c); if (d0Var == null) { return false; } @@ -50,17 +50,17 @@ public final class p0 extends e0 { @Override // c.i.a.f.e.h.j.e0 public final void h(g.a aVar) throws RemoteException { - d0 remove = aVar.g.remove(this.f1057c); + d0 remove = aVar.g.remove(this.f1058c); if (remove != null) { q qVar = remove.b; a.f fVar = aVar.b; TaskCompletionSource taskCompletionSource = this.b; x xVar = (x) qVar; Objects.requireNonNull(xVar); - xVar.b.a((f) fVar, i.j(xVar.f1225c, taskCompletionSource)); + xVar.b.a((f) fVar, i.j(xVar.f1226c, taskCompletionSource)); k kVar = remove.a.a; kVar.b = null; - kVar.f1054c = null; + kVar.f1055c = null; return; } this.b.b(Boolean.FALSE); diff --git a/app/src/main/java/c/i/a/f/e/h/j/q0.java b/app/src/main/java/c/i/a/f/e/h/j/q0.java index 0113b00790..130f3aa55f 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/q0.java +++ b/app/src/main/java/c/i/a/f/e/h/j/q0.java @@ -16,12 +16,12 @@ public final class q0 extends m0 { public final p b; /* renamed from: c reason: collision with root package name */ - public final TaskCompletionSource f1058c; + public final TaskCompletionSource f1059c; public final n d; public q0(int i, p pVar, TaskCompletionSource taskCompletionSource, n nVar) { super(i); - this.f1058c = taskCompletionSource; + this.f1059c = taskCompletionSource; this.b = pVar; this.d = nVar; if (i == 2 && pVar.b) { @@ -31,25 +31,25 @@ public final class q0 extends m0 { @Override // c.i.a.f.e.h.j.s public final void b(@NonNull Status status) { - this.f1058c.a(this.d.a(status)); + this.f1059c.a(this.d.a(status)); } @Override // c.i.a.f.e.h.j.s public final void c(g.a aVar) throws DeadObjectException { try { - this.b.c(aVar.b, this.f1058c); + this.b.c(aVar.b, this.f1059c); } catch (DeadObjectException e) { throw e; } catch (RemoteException e2) { - this.f1058c.a(this.d.a(s.a(e2))); + this.f1059c.a(this.d.a(s.a(e2))); } catch (RuntimeException e3) { - this.f1058c.a(e3); + this.f1059c.a(e3); } } @Override // c.i.a.f.e.h.j.s public final void d(@NonNull x0 x0Var, boolean z2) { - TaskCompletionSource taskCompletionSource = this.f1058c; + TaskCompletionSource taskCompletionSource = this.f1059c; x0Var.b.put(taskCompletionSource, Boolean.valueOf(z2)); b0 b0Var = taskCompletionSource.a; y0 y0Var = new y0(x0Var, taskCompletionSource); @@ -59,7 +59,7 @@ public final class q0 extends m0 { @Override // c.i.a.f.e.h.j.s public final void e(@NonNull Exception exc) { - this.f1058c.a(exc); + this.f1059c.a(exc); } @Override // c.i.a.f.e.h.j.m0 diff --git a/app/src/main/java/c/i/a/f/e/h/j/w.java b/app/src/main/java/c/i/a/f/e/h/j/w.java index 34adfc4b30..2d28624670 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/w.java +++ b/app/src/main/java/c/i/a/f/e/h/j/w.java @@ -12,6 +12,6 @@ public final class w implements Runnable { @Override // java.lang.Runnable public final void run() { g.a aVar = this.i.a; - aVar.b.c(aVar.f1050c.getClass().getName().concat(" disconnecting because it was signed out.")); + aVar.b.c(aVar.f1051c.getClass().getName().concat(" disconnecting because it was signed out.")); } } diff --git a/app/src/main/java/c/i/a/f/e/h/j/z.java b/app/src/main/java/c/i/a/f/e/h/j/z.java index eed00214c8..b817c9325a 100644 --- a/app/src/main/java/c/i/a/f/e/h/j/z.java +++ b/app/src/main/java/c/i/a/f/e/h/j/z.java @@ -18,14 +18,14 @@ public final class z implements Runnable { public final void run() { c.i.a.f.e.k.g gVar; g.b bVar = this.j; - g.a aVar = g.this.f1048s.get(bVar.b); + g.a aVar = g.this.f1049s.get(bVar.b); if (aVar != null) { if (this.i.w0()) { g.b bVar2 = this.j; bVar2.e = true; if (bVar2.a.o()) { g.b bVar3 = this.j; - if (bVar3.e && (gVar = bVar3.f1051c) != null) { + if (bVar3.e && (gVar = bVar3.f1052c) != null) { bVar3.a.b(gVar, bVar3.d); return; } diff --git a/app/src/main/java/c/i/a/f/e/h/l.java b/app/src/main/java/c/i/a/f/e/h/l.java index a6a22e522e..6c0d2ab5c1 100644 --- a/app/src/main/java/c/i/a/f/e/h/l.java +++ b/app/src/main/java/c/i/a/f/e/h/l.java @@ -2,28 +2,28 @@ package c.i.a.f.e.h; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.api.Scope; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ public final class l implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final Scope createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; String str = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new Scope(i, str); } diff --git a/app/src/main/java/c/i/a/f/e/h/m.java b/app/src/main/java/c/i/a/f/e/h/m.java index a080a0a3d9..7170ed4290 100644 --- a/app/src/main/java/c/i/a/f/e/h/m.java +++ b/app/src/main/java/c/i/a/f/e/h/m.java @@ -3,7 +3,7 @@ package c.i.a.f.e.h; import android.app.PendingIntent; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.api.Status; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ @@ -11,30 +11,30 @@ public final class m implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final Status createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; PendingIntent pendingIntent = null; ConnectionResult connectionResult = null; int i = 0; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 == 2) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i3 == 3) { - pendingIntent = (PendingIntent) AnimatableValueParser.S(parcel, readInt, PendingIntent.CREATOR); + pendingIntent = (PendingIntent) d.S(parcel, readInt, PendingIntent.CREATOR); } else if (i3 == 4) { - connectionResult = (ConnectionResult) AnimatableValueParser.S(parcel, readInt, ConnectionResult.CREATOR); + connectionResult = (ConnectionResult) d.S(parcel, readInt, ConnectionResult.CREATOR); } else if (i3 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new Status(i, i2, str, pendingIntent, connectionResult); } diff --git a/app/src/main/java/c/i/a/f/e/j/a.java b/app/src/main/java/c/i/a/f/e/j/a.java index d9eb372572..c5dcf96237 100644 --- a/app/src/main/java/c/i/a/f/e/j/a.java +++ b/app/src/main/java/c/i/a/f/e/j/a.java @@ -4,38 +4,38 @@ import android.database.CursorWindow; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.data.DataHolder; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class a implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final DataHolder createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; String[] strArr = null; CursorWindow[] cursorWindowArr = null; Bundle bundle = null; int i2 = 0; int i3 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i4 = 65535 & readInt; if (i4 == 1) { - strArr = AnimatableValueParser.U(parcel, readInt); + strArr = d.U(parcel, readInt); } else if (i4 == 2) { - cursorWindowArr = (CursorWindow[]) AnimatableValueParser.W(parcel, readInt, CursorWindow.CREATOR); + cursorWindowArr = (CursorWindow[]) d.W(parcel, readInt, CursorWindow.CREATOR); } else if (i4 == 3) { - i3 = AnimatableValueParser.j2(parcel, readInt); + i3 = d.G1(parcel, readInt); } else if (i4 == 4) { - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); } else if (i4 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); DataHolder dataHolder = new DataHolder(i2, strArr, cursorWindowArr, i3, bundle); dataHolder.k = new Bundle(); int i5 = 0; diff --git a/app/src/main/java/c/i/a/f/e/k/a0.java b/app/src/main/java/c/i/a/f/e/k/a0.java index eff41e778d..3cdaccf759 100644 --- a/app/src/main/java/c/i/a/f/e/k/a0.java +++ b/app/src/main/java/c/i/a/f/e/k/a0.java @@ -3,7 +3,7 @@ package c.i.a.f.e.k; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.Feature; import com.google.android.gms.common.internal.ConnectionTelemetryConfiguration; import com.google.android.gms.common.internal.zzc; @@ -12,26 +12,26 @@ public final class a0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzc createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Bundle bundle = null; Feature[] featureArr = null; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); } else if (i2 == 2) { - featureArr = (Feature[]) AnimatableValueParser.W(parcel, readInt, Feature.CREATOR); + featureArr = (Feature[]) d.W(parcel, readInt, Feature.CREATOR); } else if (i2 == 3) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 != 4) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - ConnectionTelemetryConfiguration connectionTelemetryConfiguration = (ConnectionTelemetryConfiguration) AnimatableValueParser.S(parcel, readInt, ConnectionTelemetryConfiguration.CREATOR); + ConnectionTelemetryConfiguration connectionTelemetryConfiguration = (ConnectionTelemetryConfiguration) d.S(parcel, readInt, ConnectionTelemetryConfiguration.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzc(bundle, featureArr, i); } diff --git a/app/src/main/java/c/i/a/f/e/k/b.java b/app/src/main/java/c/i/a/f/e/k/b.java index a30ef904f1..661db7417a 100644 --- a/app/src/main/java/c/i/a/f/e/k/b.java +++ b/app/src/main/java/c/i/a/f/e/k/b.java @@ -26,7 +26,6 @@ import c.i.a.f.e.h.j.w; import c.i.a.f.e.h.j.x; import c.i.a.f.e.k.e; import c.i.a.f.e.k.h; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.Feature; import com.google.android.gms.common.api.Scope; @@ -44,7 +43,7 @@ public abstract class b { public volatile String b = null; /* renamed from: c reason: collision with root package name */ - public j0 f1059c; + public j0 f1060c; public final Context d; public final e e; public final c.i.a.f.e.c f; @@ -69,7 +68,7 @@ public abstract class b { @Nullable /* renamed from: s reason: collision with root package name */ - public final String f1060s; + public final String f1061s; @Nullable public ConnectionResult t = null; public boolean u = false; @@ -346,7 +345,7 @@ public abstract class b { @BinderThread public final void g(int i, @NonNull IBinder iBinder, @Nullable Bundle bundle) { - AnimatableValueParser.z(this.a, "onPostInitComplete can be called only once per call to getRemoteService"); + c.c.a.a0.d.z(this.a, "onPostInitComplete can be called only once per call to getRemoteService"); b bVar = this.a; int i2 = this.b; Handler handler = bVar.g; @@ -429,18 +428,18 @@ public abstract class b { } public b(@RecentlyNonNull Context context, @RecentlyNonNull Looper looper, @RecentlyNonNull e eVar, @RecentlyNonNull c.i.a.f.e.c cVar, @RecentlyNonNull int i2, @Nullable a aVar, @Nullable AbstractC0107b bVar, @Nullable String str) { - AnimatableValueParser.z(context, "Context must not be null"); + c.c.a.a0.d.z(context, "Context must not be null"); this.d = context; - AnimatableValueParser.z(looper, "Looper must not be null"); - AnimatableValueParser.z(eVar, "Supervisor must not be null"); + c.c.a.a0.d.z(looper, "Looper must not be null"); + c.c.a.a0.d.z(eVar, "Supervisor must not be null"); this.e = eVar; - AnimatableValueParser.z(cVar, "API availability must not be null"); + c.c.a.a0.d.z(cVar, "API availability must not be null"); this.f = cVar; this.g = new g(looper); this.r = i2; this.p = aVar; this.q = bVar; - this.f1060s = str; + this.f1061s = str; } public static void D(b bVar) { @@ -490,13 +489,13 @@ public abstract class b { } public final String B() { - String str = this.f1060s; + String str = this.f1061s; return str == null ? this.d.getClass().getName() : str; } public final void C(int i2, @Nullable T t) { j0 j0Var; - AnimatableValueParser.m((i2 == 4) == (t != null)); + c.c.a.a0.d.m((i2 == 4) == (t != null)); synchronized (this.h) { this.o = i2; this.l = t; @@ -504,18 +503,18 @@ public abstract class b { i iVar = this.n; if (iVar != null) { e eVar = this.e; - String str = this.f1059c.a; + String str = this.f1060c.a; Objects.requireNonNull(str, "null reference"); - Objects.requireNonNull(this.f1059c); + Objects.requireNonNull(this.f1060c); String B = B(); - Objects.requireNonNull(this.f1059c); + Objects.requireNonNull(this.f1060c); Objects.requireNonNull(eVar); eVar.c(new e.a(str, "com.google.android.gms", 4225, false), iVar, B); this.n = null; } } else if (i2 == 2 || i2 == 3) { i iVar2 = this.n; - if (!(iVar2 == null || (j0Var = this.f1059c) == null)) { + if (!(iVar2 == null || (j0Var = this.f1060c) == null)) { String str2 = j0Var.a; StringBuilder sb = new StringBuilder(String.valueOf(str2).length() + 70 + "com.google.android.gms".length()); sb.append("Calling connect() while still connected, missing disconnect() for "); @@ -524,11 +523,11 @@ public abstract class b { sb.append("com.google.android.gms"); Log.e("GmsClient", sb.toString()); e eVar2 = this.e; - String str3 = this.f1059c.a; + String str3 = this.f1060c.a; Objects.requireNonNull(str3, "null reference"); - Objects.requireNonNull(this.f1059c); + Objects.requireNonNull(this.f1060c); String B2 = B(); - Objects.requireNonNull(this.f1059c); + Objects.requireNonNull(this.f1060c); Objects.requireNonNull(eVar2); eVar2.c(new e.a(str3, "com.google.android.gms", 4225, false), iVar2, B2); this.w.incrementAndGet(); @@ -537,14 +536,14 @@ public abstract class b { this.n = iVar3; String y2 = y(); Object obj = e.a; - this.f1059c = new j0("com.google.android.gms", y2, false, 4225, false); + this.f1060c = new j0("com.google.android.gms", y2, false, 4225, false); e eVar3 = this.e; Objects.requireNonNull(y2, "null reference"); - Objects.requireNonNull(this.f1059c); + Objects.requireNonNull(this.f1060c); String B3 = B(); - Objects.requireNonNull(this.f1059c); + Objects.requireNonNull(this.f1060c); if (!eVar3.b(new e.a(y2, "com.google.android.gms", 4225, false), iVar3, B3)) { - String str4 = this.f1059c.a; + String str4 = this.f1060c.a; StringBuilder sb2 = new StringBuilder(String.valueOf(str4).length() + 34 + "com.google.android.gms".length()); sb2.append("unable to connect to service: "); sb2.append(str4); @@ -629,7 +628,7 @@ public abstract class b { @RecentlyNonNull public String f() { j0 j0Var; - if (!j() || (j0Var = this.f1059c) == null) { + if (!j() || (j0Var = this.f1060c) == null) { throw new RuntimeException("Failed to connect when checking package"); } Objects.requireNonNull(j0Var); @@ -637,7 +636,7 @@ public abstract class b { } public void g(@RecentlyNonNull c cVar) { - AnimatableValueParser.z(cVar, "Connection progress callbacks cannot be null."); + c.c.a.a0.d.z(cVar, "Connection progress callbacks cannot be null."); this.k = cVar; C(2, null); } @@ -712,7 +711,7 @@ public abstract class b { if (b != 0) { C(1, null); d dVar = new d(); - AnimatableValueParser.z(dVar, "Connection progress callbacks cannot be null."); + c.c.a.a0.d.z(dVar, "Connection progress callbacks cannot be null."); this.k = dVar; Handler handler = this.g; handler.sendMessage(handler.obtainMessage(3, this.w.get(), b, null)); @@ -752,7 +751,7 @@ public abstract class b { throw new DeadObjectException(); } else if (j()) { T t2 = this.l; - AnimatableValueParser.z(t2, "Client is connected but service is null"); + c.c.a.a0.d.z(t2, "Client is connected but service is null"); t = t2; } else { throw new IllegalStateException("Not connected. Call connect() and wait for onConnected() to be called."); diff --git a/app/src/main/java/c/i/a/f/e/k/b0.java b/app/src/main/java/c/i/a/f/e/k/b0.java index 8ccf6dacbd..1fc15779d1 100644 --- a/app/src/main/java/c/i/a/f/e/k/b0.java +++ b/app/src/main/java/c/i/a/f/e/k/b0.java @@ -2,7 +2,7 @@ package c.i.a.f.e.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.internal.ConnectionTelemetryConfiguration; import com.google.android.gms.common.internal.RootTelemetryConfiguration; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ @@ -10,37 +10,37 @@ public final class b0 implements Parcelable.Creator b; /* renamed from: c reason: collision with root package name */ - public final Set f1062c; + public final Set f1063c; public final Map, b> d; public final String e; public final String f; @@ -28,11 +28,11 @@ public final class c { public ArraySet b; /* renamed from: c reason: collision with root package name */ - public String f1063c; + public String f1064c; public String d; public final c a() { - return new c(this.a, this.b, null, 0, null, this.f1063c, this.d, c.i.a.f.l.a.i); + return new c(this.a, this.b, null, 0, null, this.f1064c, this.d, c.i.a.f.l.a.i); } } @@ -55,6 +55,6 @@ public final class c { Objects.requireNonNull(bVar); hashSet.addAll(null); } - this.f1062c = Collections.unmodifiableSet(hashSet); + this.f1063c = Collections.unmodifiableSet(hashSet); } } diff --git a/app/src/main/java/c/i/a/f/e/k/c0.java b/app/src/main/java/c/i/a/f/e/k/c0.java index 53d057657d..10c1053a4c 100644 --- a/app/src/main/java/c/i/a/f/e/k/c0.java +++ b/app/src/main/java/c/i/a/f/e/k/c0.java @@ -5,7 +5,7 @@ import android.os.Bundle; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.Feature; import com.google.android.gms.common.api.Scope; import com.google.android.gms.common.internal.GetServiceRequest; @@ -14,7 +14,7 @@ public final class c0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final GetServiceRequest createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; IBinder iBinder = null; Scope[] scopeArr = null; @@ -28,55 +28,55 @@ public final class c0 implements Parcelable.Creator { boolean z2 = false; int i4 = 0; boolean z3 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); break; case 3: - i3 = AnimatableValueParser.j2(parcel, readInt); + i3 = d.G1(parcel, readInt); break; case 4: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 5: - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); break; case 6: - scopeArr = (Scope[]) AnimatableValueParser.W(parcel, readInt, Scope.CREATOR); + scopeArr = (Scope[]) d.W(parcel, readInt, Scope.CREATOR); break; case 7: - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); break; case 8: - account = (Account) AnimatableValueParser.S(parcel, readInt, Account.CREATOR); + account = (Account) d.S(parcel, readInt, Account.CREATOR); break; case 9: default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; case 10: - featureArr = (Feature[]) AnimatableValueParser.W(parcel, readInt, Feature.CREATOR); + featureArr = (Feature[]) d.W(parcel, readInt, Feature.CREATOR); break; case 11: - featureArr2 = (Feature[]) AnimatableValueParser.W(parcel, readInt, Feature.CREATOR); + featureArr2 = (Feature[]) d.W(parcel, readInt, Feature.CREATOR); break; case 12: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 13: - i4 = AnimatableValueParser.j2(parcel, readInt); + i4 = d.G1(parcel, readInt); break; case 14: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new GetServiceRequest(i, i2, i3, str, iBinder, scopeArr, bundle, account, featureArr, featureArr2, z2, i4, z3); } diff --git a/app/src/main/java/c/i/a/f/e/k/d.java b/app/src/main/java/c/i/a/f/e/k/d.java index 2b929f6095..b6567266a5 100644 --- a/app/src/main/java/c/i/a/f/e/k/d.java +++ b/app/src/main/java/c/i/a/f/e/k/d.java @@ -18,48 +18,48 @@ import java.util.Set; public abstract class d extends b implements a.f { /* renamed from: x reason: collision with root package name */ - public final c f1064x; + public final c f1065x; /* renamed from: y reason: collision with root package name */ - public final Set f1065y; + public final Set f1066y; @Nullable /* renamed from: z reason: collision with root package name */ - public final Account f1066z; + public final Account f1067z; /* JADX WARNING: Illegal instructions before constructor call */ public d(Context context, Looper looper, int i, c cVar, f fVar, l lVar) { super(context, looper, r3, r4, i, new r(fVar), new q(lVar), cVar.f); e a = e.a(context); - Object obj = GoogleApiAvailability.f2366c; + Object obj = GoogleApiAvailability.f2369c; GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.d; Objects.requireNonNull(fVar, "null reference"); Objects.requireNonNull(lVar, "null reference"); - this.f1064x = cVar; - this.f1066z = cVar.a; - Set set = cVar.f1062c; + this.f1065x = cVar; + this.f1067z = cVar.a; + Set set = cVar.f1063c; for (Scope scope : set) { if (!set.contains(scope)) { throw new IllegalStateException("Expanding scopes is not permitted, use implied scopes instead"); } } - this.f1065y = set; + this.f1066y = set; } @Override // c.i.a.f.e.h.a.f @NonNull public Set a() { - return o() ? this.f1065y : Collections.emptySet(); + return o() ? this.f1066y : Collections.emptySet(); } @Override // c.i.a.f.e.k.b @Nullable public final Account s() { - return this.f1066z; + return this.f1067z; } @Override // c.i.a.f.e.k.b public final Set v() { - return this.f1065y; + return this.f1066y; } } diff --git a/app/src/main/java/c/i/a/f/e/k/e.java b/app/src/main/java/c/i/a/f/e/k/e.java index 1bbd68e226..d2fed2ea4c 100644 --- a/app/src/main/java/c/i/a/f/e/k/e.java +++ b/app/src/main/java/c/i/a/f/e/k/e.java @@ -5,7 +5,7 @@ import android.content.ServiceConnection; import android.net.Uri; import androidx.annotation.Nullable; import androidx.annotation.RecentlyNonNull; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Arrays; import java.util.Objects; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ @@ -21,15 +21,15 @@ public abstract class e { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f1067c; + public final String f1068c; public final int d; public final boolean e; public a(String str, String str2, int i, boolean z2) { - AnimatableValueParser.w(str); + d.w(str); this.b = str; - AnimatableValueParser.w(str2); - this.f1067c = str2; + d.w(str2); + this.f1068c = str2; this.d = i; this.e = z2; } @@ -42,11 +42,11 @@ public abstract class e { return false; } a aVar = (a) obj; - return AnimatableValueParser.j0(this.b, aVar.b) && AnimatableValueParser.j0(this.f1067c, aVar.f1067c) && AnimatableValueParser.j0(null, null) && this.d == aVar.d && this.e == aVar.e; + return d.j0(this.b, aVar.b) && d.j0(this.f1068c, aVar.f1068c) && d.j0(null, null) && this.d == aVar.d && this.e == aVar.e; } public final int hashCode() { - return Arrays.hashCode(new Object[]{this.b, this.f1067c, null, Integer.valueOf(this.d), Boolean.valueOf(this.e)}); + return Arrays.hashCode(new Object[]{this.b, this.f1068c, null, Integer.valueOf(this.d), Boolean.valueOf(this.e)}); } public final String toString() { diff --git a/app/src/main/java/c/i/a/f/e/k/e0.java b/app/src/main/java/c/i/a/f/e/k/e0.java index bb29632a65..830ba7ad61 100644 --- a/app/src/main/java/c/i/a/f/e/k/e0.java +++ b/app/src/main/java/c/i/a/f/e/k/e0.java @@ -7,13 +7,12 @@ import c.i.a.f.e.k.b; import c.i.a.f.e.k.e; import c.i.a.f.e.n.a; import c.i.a.f.h.g.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.HashMap; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ public final class e0 extends e { /* renamed from: c reason: collision with root package name */ - public final HashMap f1068c = new HashMap<>(); + public final HashMap f1069c = new HashMap<>(); public final Context d; public final Handler e; public final a f; @@ -31,14 +30,14 @@ public final class e0 extends e { @Override // c.i.a.f.e.k.e public final boolean b(e.a aVar, ServiceConnection serviceConnection, String str) { boolean z2; - AnimatableValueParser.z(serviceConnection, "ServiceConnection must not be null"); - synchronized (this.f1068c) { - g0 g0Var = this.f1068c.get(aVar); + c.c.a.a0.d.z(serviceConnection, "ServiceConnection must not be null"); + synchronized (this.f1069c) { + g0 g0Var = this.f1069c.get(aVar); if (g0Var == null) { g0Var = new g0(this, aVar); g0Var.i.put(serviceConnection, serviceConnection); g0Var.a(str); - this.f1068c.put(aVar, g0Var); + this.f1069c.put(aVar, g0Var); } else { this.e.removeMessages(0, aVar); if (!g0Var.i.containsKey(serviceConnection)) { @@ -64,9 +63,9 @@ public final class e0 extends e { @Override // c.i.a.f.e.k.e public final void c(e.a aVar, ServiceConnection serviceConnection, String str) { - AnimatableValueParser.z(serviceConnection, "ServiceConnection must not be null"); - synchronized (this.f1068c) { - g0 g0Var = this.f1068c.get(aVar); + c.c.a.a0.d.z(serviceConnection, "ServiceConnection must not be null"); + synchronized (this.f1069c) { + g0 g0Var = this.f1069c.get(aVar); if (g0Var == null) { String valueOf = String.valueOf(aVar); StringBuilder sb = new StringBuilder(valueOf.length() + 50); diff --git a/app/src/main/java/c/i/a/f/e/k/f.java b/app/src/main/java/c/i/a/f/e/k/f.java index aef61ee2ee..f7007d47c1 100644 --- a/app/src/main/java/c/i/a/f/e/k/f.java +++ b/app/src/main/java/c/i/a/f/e/k/f.java @@ -1,11 +1,11 @@ package c.i.a.f.e.k; import androidx.annotation.RecentlyNonNull; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ public final class f { public f(@RecentlyNonNull String str) { - AnimatableValueParser.z(str, "log tag cannot be null"); - AnimatableValueParser.o(str.length() <= 23, "tag \"%s\" is longer than the %d character maximum", str, 23); + d.z(str, "log tag cannot be null"); + d.o(str.length() <= 23, "tag \"%s\" is longer than the %d character maximum", str, 23); } } diff --git a/app/src/main/java/c/i/a/f/e/k/f0.java b/app/src/main/java/c/i/a/f/e/k/f0.java index 0dcd3333fe..91b679125c 100644 --- a/app/src/main/java/c/i/a/f/e/k/f0.java +++ b/app/src/main/java/c/i/a/f/e/k/f0.java @@ -19,9 +19,9 @@ public final class f0 implements Handler.Callback { public final boolean handleMessage(Message message) { int i = message.what; if (i == 0) { - synchronized (this.i.f1068c) { + synchronized (this.i.f1069c) { e.a aVar = (e.a) message.obj; - g0 g0Var = this.i.f1068c.get(aVar); + g0 g0Var = this.i.f1069c.get(aVar); if (g0Var != null && g0Var.i.isEmpty()) { if (g0Var.k) { g0Var.o.e.removeMessages(1, g0Var.m); @@ -30,16 +30,16 @@ public final class f0 implements Handler.Callback { g0Var.k = false; g0Var.j = 2; } - this.i.f1068c.remove(aVar); + this.i.f1069c.remove(aVar); } } return true; } else if (i != 1) { return false; } else { - synchronized (this.i.f1068c) { + synchronized (this.i.f1069c) { e.a aVar2 = (e.a) message.obj; - g0 g0Var2 = this.i.f1068c.get(aVar2); + g0 g0Var2 = this.i.f1069c.get(aVar2); if (g0Var2 != null && g0Var2.j == 3) { String valueOf = String.valueOf(aVar2); StringBuilder sb = new StringBuilder(valueOf.length() + 47); @@ -52,7 +52,7 @@ public final class f0 implements Handler.Callback { componentName = null; } if (componentName == null) { - String str = aVar2.f1067c; + String str = aVar2.f1068c; Objects.requireNonNull(str, "null reference"); componentName = new ComponentName(str, EnvironmentCompat.MEDIA_UNKNOWN); } diff --git a/app/src/main/java/c/i/a/f/e/k/g0.java b/app/src/main/java/c/i/a/f/e/k/g0.java index 42497b26e7..c7e7ac6917 100644 --- a/app/src/main/java/c/i/a/f/e/k/g0.java +++ b/app/src/main/java/c/i/a/f/e/k/g0.java @@ -49,7 +49,7 @@ public final class g0 implements ServiceConnection, i0 { bundle = context.getContentResolver().call(e.a.a, "serviceIntentCall", (String) null, bundle2); } catch (IllegalArgumentException e) { String valueOf = String.valueOf(e); - c.d.b.a.a.c0(valueOf.length() + 34, "Dynamic intent resolution failed: ", valueOf, "ConnectionStatusConfig"); + c.d.b.a.a.b0(valueOf.length() + 34, "Dynamic intent resolution failed: ", valueOf, "ConnectionStatusConfig"); bundle = null; } if (bundle != null) { @@ -61,7 +61,7 @@ public final class g0 implements ServiceConnection, i0 { } } if (intent2 == null) { - intent = new Intent(aVar2.b).setPackage(aVar2.f1067c); + intent = new Intent(aVar2.b).setPackage(aVar2.f1068c); } d = aVar.d(context, str, intent2, this, this.m.d); this.k = d; @@ -91,7 +91,7 @@ public final class g0 implements ServiceConnection, i0 { @Override // android.content.ServiceConnection public final void onServiceConnected(ComponentName componentName, IBinder iBinder) { - synchronized (this.o.f1068c) { + synchronized (this.o.f1069c) { this.o.e.removeMessages(1, this.m); this.l = iBinder; this.n = componentName; @@ -104,7 +104,7 @@ public final class g0 implements ServiceConnection, i0 { @Override // android.content.ServiceConnection public final void onServiceDisconnected(ComponentName componentName) { - synchronized (this.o.f1068c) { + synchronized (this.o.f1069c) { this.o.e.removeMessages(1, this.m); this.l = null; this.n = componentName; diff --git a/app/src/main/java/c/i/a/f/e/k/h.java b/app/src/main/java/c/i/a/f/e/k/h.java index 9460626002..587115190b 100644 --- a/app/src/main/java/c/i/a/f/e/k/h.java +++ b/app/src/main/java/c/i/a/f/e/k/h.java @@ -6,9 +6,9 @@ import android.os.IInterface; import android.os.Parcel; import android.os.RemoteException; import android.util.Log; +import c.c.a.a0.d; import c.i.a.f.e.k.b; import c.i.a.f.h.g.c; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.internal.zzc; import java.util.Objects; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ @@ -36,7 +36,7 @@ public interface h extends IInterface { zzc zzc = (zzc) c.a(parcel, zzc.CREATOR); b.j jVar = (b.j) this; b bVar = jVar.a; - AnimatableValueParser.z(bVar, "onPostInitCompleteWithConnectionInfo can be called only once per call togetRemoteService"); + d.z(bVar, "onPostInitCompleteWithConnectionInfo can be called only once per call togetRemoteService"); Objects.requireNonNull(zzc, "null reference"); bVar.v = zzc; jVar.g(readInt, readStrongBinder, zzc.i); diff --git a/app/src/main/java/c/i/a/f/e/k/q0.java b/app/src/main/java/c/i/a/f/e/k/q0.java index 3a362fc9aa..676198a9ea 100644 --- a/app/src/main/java/c/i/a/f/e/k/q0.java +++ b/app/src/main/java/c/i/a/f/e/k/q0.java @@ -13,7 +13,7 @@ public final class q0 { @Nullable /* renamed from: c reason: collision with root package name */ - public static String f1069c; + public static String f1070c; public static int d; public static void a(Context context) { @@ -23,7 +23,7 @@ public final class q0 { try { Bundle bundle = b.a(context).a(context.getPackageName(), 128).metaData; if (bundle != null) { - f1069c = bundle.getString("com.google.app.id"); + f1070c = bundle.getString("com.google.app.id"); d = bundle.getInt("com.google.android.gms.version"); } } catch (PackageManager.NameNotFoundException e) { diff --git a/app/src/main/java/c/i/a/f/e/k/s0.java b/app/src/main/java/c/i/a/f/e/k/s0.java index 0f3aecc2b0..6949114dc1 100644 --- a/app/src/main/java/c/i/a/f/e/k/s0.java +++ b/app/src/main/java/c/i/a/f/e/k/s0.java @@ -2,37 +2,37 @@ package c.i.a.f.e.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.internal.RootTelemetryConfiguration; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ public final class s0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final RootTelemetryConfiguration createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; boolean z2 = false; boolean z3 = false; int i2 = 0; int i3 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i4 = 65535 & readInt; if (i4 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i4 == 2) { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } else if (i4 == 3) { - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); } else if (i4 == 4) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i4 != 5) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i3 = AnimatableValueParser.j2(parcel, readInt); + i3 = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new RootTelemetryConfiguration(i, z2, z3, i2, i3); } diff --git a/app/src/main/java/c/i/a/f/e/k/t.java b/app/src/main/java/c/i/a/f/e/k/t.java index 0672516bb9..1137a9e588 100644 --- a/app/src/main/java/c/i/a/f/e/k/t.java +++ b/app/src/main/java/c/i/a/f/e/k/t.java @@ -3,7 +3,6 @@ package c.i.a.f.e.k; import c.i.a.f.e.h.d; import c.i.a.f.e.h.h; import c.i.a.f.e.k.l; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Status; import com.google.android.gms.common.api.internal.BasePendingResult; import com.google.android.gms.tasks.TaskCompletionSource; @@ -15,12 +14,12 @@ public final class t implements d.a { public final /* synthetic */ TaskCompletionSource b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ l.a f1070c; + public final /* synthetic */ l.a f1071c; public t(d dVar, TaskCompletionSource taskCompletionSource, l.a aVar, l.b bVar) { this.a = dVar; this.b = taskCompletionSource; - this.f1070c = aVar; + this.f1071c = aVar; } @Override // c.i.a.f.e.h.d.a @@ -30,8 +29,8 @@ public final class t implements d.a { TimeUnit timeUnit = TimeUnit.MILLISECONDS; BasePendingResult basePendingResult = (BasePendingResult) dVar; Objects.requireNonNull(basePendingResult); - AnimatableValueParser.G(!basePendingResult.i, "Result has already been consumed."); - AnimatableValueParser.G(true, "Cannot await if then() has been called."); + c.c.a.a0.d.G(!basePendingResult.i, "Result has already been consumed."); + c.c.a.a0.d.G(true, "Cannot await if then() has been called."); try { if (!basePendingResult.d.await(0, timeUnit)) { basePendingResult.e(Status.l); @@ -39,13 +38,13 @@ public final class t implements d.a { } catch (InterruptedException unused) { basePendingResult.e(Status.j); } - AnimatableValueParser.G(basePendingResult.f(), "Result is not ready."); + c.c.a.a0.d.G(basePendingResult.f(), "Result is not ready."); h j = basePendingResult.j(); TaskCompletionSource taskCompletionSource = this.b; - taskCompletionSource.a.t(this.f1070c.a(j)); + taskCompletionSource.a.t(this.f1071c.a(j)); return; } TaskCompletionSource taskCompletionSource2 = this.b; - taskCompletionSource2.a.s(AnimatableValueParser.n0(status)); + taskCompletionSource2.a.s(c.c.a.a0.d.n0(status)); } } diff --git a/app/src/main/java/c/i/a/f/e/k/x.java b/app/src/main/java/c/i/a/f/e/k/x.java index d579aa5be5..da393a4c97 100644 --- a/app/src/main/java/c/i/a/f/e/k/x.java +++ b/app/src/main/java/c/i/a/f/e/k/x.java @@ -3,7 +3,7 @@ package c.i.a.f.e.k; import android.accounts.Account; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.common.internal.zas; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ @@ -11,27 +11,27 @@ public final class x implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zas createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; Account account = null; GoogleSignInAccount googleSignInAccount = null; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i3 == 2) { - account = (Account) AnimatableValueParser.S(parcel, readInt, Account.CREATOR); + account = (Account) d.S(parcel, readInt, Account.CREATOR); } else if (i3 == 3) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 != 4) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - googleSignInAccount = (GoogleSignInAccount) AnimatableValueParser.S(parcel, readInt, GoogleSignInAccount.CREATOR); + googleSignInAccount = (GoogleSignInAccount) d.S(parcel, readInt, GoogleSignInAccount.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zas(i, account, i2, googleSignInAccount); } diff --git a/app/src/main/java/c/i/a/f/e/k/y.java b/app/src/main/java/c/i/a/f/e/k/y.java index 49fb0e271a..078eb5e614 100644 --- a/app/src/main/java/c/i/a/f/e/k/y.java +++ b/app/src/main/java/c/i/a/f/e/k/y.java @@ -3,7 +3,7 @@ package c.i.a.f.e.k; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.internal.zau; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ @@ -11,30 +11,30 @@ public final class y implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zau createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); IBinder iBinder = null; ConnectionResult connectionResult = null; int i = 0; boolean z2 = false; boolean z3 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 == 2) { - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); } else if (i2 == 3) { - connectionResult = (ConnectionResult) AnimatableValueParser.S(parcel, readInt, ConnectionResult.CREATOR); + connectionResult = (ConnectionResult) d.S(parcel, readInt, ConnectionResult.CREATOR); } else if (i2 == 4) { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } else if (i2 != 5) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zau(i, iBinder, connectionResult, z2, z3); } diff --git a/app/src/main/java/c/i/a/f/e/l/a.java b/app/src/main/java/c/i/a/f/e/l/a.java index beccfa024e..f71a7de8fd 100644 --- a/app/src/main/java/c/i/a/f/e/l/a.java +++ b/app/src/main/java/c/i/a/f/e/l/a.java @@ -11,23 +11,23 @@ public class a { public final String b; /* renamed from: c reason: collision with root package name */ - public final int f1071c; + public final int f1072c; public a(@RecentlyNonNull String str, @RecentlyNonNull String... strArr) { String str2; if (strArr.length == 0) { str2 = ""; } else { - StringBuilder N = c.d.b.a.a.N('['); + StringBuilder M = c.d.b.a.a.M('['); for (String str3 : strArr) { - if (N.length() > 1) { - N.append(","); + if (M.length() > 1) { + M.append(","); } - N.append(str3); + M.append(str3); } - N.append(']'); - N.append(' '); - str2 = N.toString(); + M.append(']'); + M.append(' '); + str2 = M.toString(); } this.b = str2; this.a = str; @@ -36,11 +36,11 @@ public class a { while (7 >= i && !Log.isLoggable(this.a, i)) { i++; } - this.f1071c = i; + this.f1072c = i; } public void a(@RecentlyNonNull String str, @Nullable Object... objArr) { - if (this.f1071c <= 3) { + if (this.f1072c <= 3) { String str2 = this.a; if (objArr.length > 0) { str = String.format(Locale.US, str, objArr); diff --git a/app/src/main/java/c/i/a/f/e/n/a.java b/app/src/main/java/c/i/a/f/e/n/a.java index 46e6b813cc..f7c32fb02c 100644 --- a/app/src/main/java/c/i/a/f/e/n/a.java +++ b/app/src/main/java/c/i/a/f/e/n/a.java @@ -18,7 +18,7 @@ public class a { public static volatile a b; /* renamed from: c reason: collision with root package name */ - public ConcurrentHashMap f1072c = new ConcurrentHashMap<>(); + public ConcurrentHashMap f1073c = new ConcurrentHashMap<>(); @RecentlyNonNull public static a b() { @@ -41,7 +41,7 @@ public class a { @SuppressLint({"UntrackedBindService"}) public void c(@RecentlyNonNull Context context, @RecentlyNonNull ServiceConnection serviceConnection) { - if (!(!(serviceConnection instanceof i0)) || !this.f1072c.containsKey(serviceConnection)) { + if (!(!(serviceConnection instanceof i0)) || !this.f1073c.containsKey(serviceConnection)) { try { context.unbindService(serviceConnection); } catch (IllegalArgumentException | IllegalStateException unused) { @@ -49,11 +49,11 @@ public class a { } else { try { try { - context.unbindService(this.f1072c.get(serviceConnection)); + context.unbindService(this.f1073c.get(serviceConnection)); } catch (IllegalArgumentException | IllegalStateException unused2) { } } finally { - this.f1072c.remove(serviceConnection); + this.f1073c.remove(serviceConnection); } } } @@ -76,7 +76,7 @@ public class a { return false; } if (!(serviceConnection instanceof i0)) { - ServiceConnection putIfAbsent = this.f1072c.putIfAbsent(serviceConnection, serviceConnection); + ServiceConnection putIfAbsent = this.f1073c.putIfAbsent(serviceConnection, serviceConnection); if (!(putIfAbsent == null || serviceConnection == putIfAbsent)) { Log.w("ConnectionTracker", String.format("Duplicate binding with the same ServiceConnection: %s, %s, %s.", serviceConnection, str, intent.getAction())); } @@ -85,7 +85,7 @@ public class a { if (!z3) { } } finally { - this.f1072c.remove(serviceConnection, serviceConnection); + this.f1073c.remove(serviceConnection, serviceConnection); } } else { z3 = context.bindService(intent, serviceConnection, i); diff --git a/app/src/main/java/c/i/a/f/e/o/c.java b/app/src/main/java/c/i/a/f/e/o/c.java index 491d7df4bf..56a722d606 100644 --- a/app/src/main/java/c/i/a/f/e/o/c.java +++ b/app/src/main/java/c/i/a/f/e/o/c.java @@ -56,7 +56,6 @@ import c.i.c.x.f; import c.i.c.x.g; import c.o.a.x.i; import c.o.a.x.j; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.discord.widgets.chat.input.MentionUtilsKt; import com.google.android.gms.common.R; @@ -134,7 +133,7 @@ public final class c { @Nullable /* renamed from: c reason: collision with root package name */ - public static Boolean f1073c; + public static Boolean f1074c; @Nullable public static Boolean d; public static Boolean e; @@ -760,7 +759,7 @@ public final class c { c7 c7Var = ((u4) c6Var).zzb; if (c7Var != null) { for (int i2 = 0; i2 < c7Var.b; i2++) { - U0(sb, i, String.valueOf(c7Var.f1098c[i2] >>> 3), c7Var.d[i2]); + U0(sb, i, String.valueOf(c7Var.f1099c[i2] >>> 3), c7Var.d[i2]); } } } @@ -1107,10 +1106,10 @@ public final class c { if (i2 < 0) { throw zzij.b(); } else if (i2 == 0) { - s3Var.f1137c = ""; + s3Var.f1138c = ""; return A0; } else { - s3Var.f1137c = new String(bArr, A0, i2, w4.a); + s3Var.f1138c = new String(bArr, A0, i2, w4.a); return A0 + i2; } } @@ -1131,17 +1130,17 @@ public final class c { if (i2 < 0) { throw zzij.b(); } else if (i2 == 0) { - s3Var.f1137c = ""; + s3Var.f1138c = ""; return A0; } else { - s3Var.f1137c = k7.a.c(bArr, A0, i2); + s3Var.f1138c = k7.a.c(bArr, A0, i2); return A0 + i2; } } public static TResult c(@NonNull Task task) throws ExecutionException, InterruptedException { - AnimatableValueParser.x("Must not be called on the main application thread"); - AnimatableValueParser.z(task, "Task must not be null"); + c.c.a.a0.d.x("Must not be called on the main application thread"); + c.c.a.a0.d.z(task, "Task must not be null"); if (task.o()) { return (TResult) G0(task); } @@ -1166,18 +1165,18 @@ public final class c { } else if (i2 > bArr.length - A0) { throw zzij.a(); } else if (i2 == 0) { - s3Var.f1137c = t3.i; + s3Var.f1138c = t3.i; return A0; } else { - s3Var.f1137c = t3.h(bArr, A0, i2); + s3Var.f1138c = t3.h(bArr, A0, i2); return A0 + i2; } } public static TResult d(@NonNull Task task, long j, @NonNull TimeUnit timeUnit) throws ExecutionException, InterruptedException, TimeoutException { - AnimatableValueParser.x("Must not be called on the main application thread"); - AnimatableValueParser.z(task, "Task must not be null"); - AnimatableValueParser.z(timeUnit, "TimeUnit must not be null"); + c.c.a.a0.d.x("Must not be called on the main application thread"); + c.c.a.a0.d.z(task, "Task must not be null"); + c.c.a.a0.d.z(timeUnit, "TimeUnit must not be null"); if (task.o()) { return (TResult) G0(task); } @@ -1244,8 +1243,8 @@ public final class c { @NonNull @Deprecated public static Task g(@NonNull Executor executor, @NonNull Callable callable) { - AnimatableValueParser.z(executor, "Executor must not be null"); - AnimatableValueParser.z(callable, "Callback must not be null"); + c.c.a.a0.d.z(executor, "Executor must not be null"); + c.c.a.a0.d.z(callable, "Callback must not be null"); b0 b0Var = new b0(); executor.execute(new d0(b0Var, callable)); return b0Var; @@ -1711,14 +1710,14 @@ public final class c { public static int w0(q6 q6Var, int i, byte[] bArr, int i2, int i3, b5 b5Var, s3 s3Var) throws IOException { int y0 = y0(q6Var, bArr, i2, i3, s3Var); - b5Var.add(s3Var.f1137c); + b5Var.add(s3Var.f1138c); while (y0 < i3) { int A0 = A0(bArr, y0, s3Var); if (i != s3Var.a) { break; } y0 = y0(q6Var, bArr, A0, i3, s3Var); - b5Var.add(s3Var.f1137c); + b5Var.add(s3Var.f1138c); } return y0; } @@ -1734,7 +1733,7 @@ public final class c { Object b2 = e6Var.m.b(e6Var.g); int m = e6Var.m(b2, bArr, i, i2, i3, s3Var); e6Var.d(b2); - s3Var.f1137c = b2; + s3Var.f1138c = b2; return m; } @@ -1759,7 +1758,7 @@ public final class c { int i4 = (b3 == 1 ? 1 : 0) + i3; q6Var.h(a2, bArr, i3, i4, s3Var); q6Var.d(a2); - s3Var.f1137c = a2; + s3Var.f1138c = a2; return i4; } diff --git a/app/src/main/java/c/i/a/f/e/o/i.java b/app/src/main/java/c/i/a/f/e/o/i.java index a7764c50f8..67ce68bf5d 100644 --- a/app/src/main/java/c/i/a/f/e/o/i.java +++ b/app/src/main/java/c/i/a/f/e/o/i.java @@ -18,7 +18,7 @@ public class i { @Nullable /* renamed from: c reason: collision with root package name */ - public static final Method f1074c; + public static final Method f1075c; @Nullable public static final Method d; @@ -45,7 +45,7 @@ public class i { } catch (Exception unused3) { method3 = null; } - f1074c = method3; + f1075c = method3; try { WorkSource.class.getMethod("get", Integer.TYPE); } catch (Exception unused4) { diff --git a/app/src/main/java/c/i/a/f/e/o/j/a.java b/app/src/main/java/c/i/a/f/e/o/j/a.java index f657c7176f..15dfb6767c 100644 --- a/app/src/main/java/c/i/a/f/e/o/j/a.java +++ b/app/src/main/java/c/i/a/f/e/o/j/a.java @@ -1,7 +1,7 @@ package c.i.a.f.e.o.j; import androidx.annotation.RecentlyNonNull; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.concurrent.Executors; import java.util.concurrent.ThreadFactory; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ @@ -10,7 +10,7 @@ public class a implements ThreadFactory { public final ThreadFactory j = Executors.defaultThreadFactory(); public a(@RecentlyNonNull String str) { - AnimatableValueParser.z(str, "Name must not be null"); + d.z(str, "Name must not be null"); this.i = str; } diff --git a/app/src/main/java/c/i/a/f/e/q.java b/app/src/main/java/c/i/a/f/e/q.java index 2be32f3580..1f5524e885 100644 --- a/app/src/main/java/c/i/a/f/e/q.java +++ b/app/src/main/java/c/i/a/f/e/q.java @@ -3,34 +3,34 @@ package c.i.a.f.e; import android.app.PendingIntent; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.ConnectionResult; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ public final class q implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final ConnectionResult createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; PendingIntent pendingIntent = null; String str = null; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i3 == 2) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 == 3) { - pendingIntent = (PendingIntent) AnimatableValueParser.S(parcel, readInt, PendingIntent.CREATOR); + pendingIntent = (PendingIntent) d.S(parcel, readInt, PendingIntent.CREATOR); } else if (i3 != 4) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new ConnectionResult(i, i2, pendingIntent, str); } diff --git a/app/src/main/java/c/i/a/f/e/r.java b/app/src/main/java/c/i/a/f/e/r.java index 3e9034edb0..06c8a6c2cb 100644 --- a/app/src/main/java/c/i/a/f/e/r.java +++ b/app/src/main/java/c/i/a/f/e/r.java @@ -2,31 +2,31 @@ package c.i.a.f.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.Feature; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ public final class r implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final Feature createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; int i = 0; long j = -1; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i2 == 2) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new Feature(str, i, j); } diff --git a/app/src/main/java/c/i/a/f/e/s.java b/app/src/main/java/c/i/a/f/e/s.java index f391f5e506..53aa92f2a4 100644 --- a/app/src/main/java/c/i/a/f/e/s.java +++ b/app/src/main/java/c/i/a/f/e/s.java @@ -18,16 +18,16 @@ public final class s { public static final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public static Context f1075c; + public static Context f1076c; public static a0 a(String str, t tVar, boolean z2, boolean z3) { o0 o0Var; try { if (a == null) { - Objects.requireNonNull(f1075c, "null reference"); + Objects.requireNonNull(f1076c, "null reference"); synchronized (b) { if (a == null) { - IBinder b2 = DynamiteModule.c(f1075c, DynamiteModule.i, "com.google.android.gms.googlecertificates").b("com.google.android.gms.common.GoogleCertificatesImpl"); + IBinder b2 = DynamiteModule.c(f1076c, DynamiteModule.i, "com.google.android.gms.googlecertificates").b("com.google.android.gms.common.GoogleCertificatesImpl"); int i = n0.a; if (b2 == null) { o0Var = null; @@ -39,9 +39,9 @@ public final class s { } } } - Objects.requireNonNull(f1075c, "null reference"); + Objects.requireNonNull(f1076c, "null reference"); try { - return a.t0(new zzj(str, tVar, z2, z3), new b(f1075c.getPackageManager())) ? a0.a : new c0(new u(z2, str, tVar), null); + return a.t0(new zzj(str, tVar, z2, z3), new b(f1076c.getPackageManager())) ? a0.a : new c0(new u(z2, str, tVar), null); } catch (RemoteException e) { Log.e("GoogleCertificates", "Failed to get Google certificates from remote", e); return a0.b("module call", e); diff --git a/app/src/main/java/c/i/a/f/e/t.java b/app/src/main/java/c/i/a/f/e/t.java index 6b6a5f5f11..1ae4f95e10 100644 --- a/app/src/main/java/c/i/a/f/e/t.java +++ b/app/src/main/java/c/i/a/f/e/t.java @@ -3,11 +3,11 @@ package c.i.a.f.e; import android.os.RemoteException; import android.util.Log; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.e.k.k0; import c.i.a.f.e.k.m0; import c.i.a.f.f.a; import c.i.a.f.f.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.UnsupportedEncodingException; import java.util.Arrays; /* compiled from: com.google.android.gms:play-services-basement@@17.4.0 */ @@ -15,7 +15,7 @@ public abstract class t extends m0 { public int b; public t(byte[] bArr) { - AnimatableValueParser.m(bArr.length == 25); + d.m(bArr.length == 25); this.b = Arrays.hashCode(bArr); } diff --git a/app/src/main/java/c/i/a/f/e/v.java b/app/src/main/java/c/i/a/f/e/v.java index 6d5528d63a..39b3c8e4a0 100644 --- a/app/src/main/java/c/i/a/f/e/v.java +++ b/app/src/main/java/c/i/a/f/e/v.java @@ -5,8 +5,8 @@ import java.lang.ref.WeakReference; public abstract class v extends t { /* renamed from: c reason: collision with root package name */ - public static final WeakReference f1076c = new WeakReference<>(null); - public WeakReference d = f1076c; + public static final WeakReference f1077c = new WeakReference<>(null); + public WeakReference d = f1077c; public v(byte[] bArr) { super(bArr); diff --git a/app/src/main/java/c/i/a/f/e/w.java b/app/src/main/java/c/i/a/f/e/w.java index a87a09e8d1..454f2fca90 100644 --- a/app/src/main/java/c/i/a/f/e/w.java +++ b/app/src/main/java/c/i/a/f/e/w.java @@ -5,15 +5,15 @@ import java.util.Arrays; public final class w extends t { /* renamed from: c reason: collision with root package name */ - public final byte[] f1077c; + public final byte[] f1078c; public w(byte[] bArr) { super(Arrays.copyOfRange(bArr, 0, 25)); - this.f1077c = bArr; + this.f1078c = bArr; } @Override // c.i.a.f.e.t public final byte[] g() { - return this.f1077c; + return this.f1078c; } } diff --git a/app/src/main/java/c/i/a/f/g/b.java b/app/src/main/java/c/i/a/f/g/b.java index 998ee60925..b245c1372c 100644 --- a/app/src/main/java/c/i/a/f/g/b.java +++ b/app/src/main/java/c/i/a/f/g/b.java @@ -10,12 +10,12 @@ public final class b implements DynamiteModule.a { int b = bVar.b(context, str); aVar.a = b; if (b != 0) { - aVar.f2370c = -1; + aVar.f2373c = -1; } else { int a = bVar.a(context, str, true); aVar.b = a; if (a != 0) { - aVar.f2370c = 1; + aVar.f2373c = 1; } } return aVar; diff --git a/app/src/main/java/c/i/a/f/g/c.java b/app/src/main/java/c/i/a/f/g/c.java index c989e3cc51..ce0089c642 100644 --- a/app/src/main/java/c/i/a/f/g/c.java +++ b/app/src/main/java/c/i/a/f/g/c.java @@ -16,11 +16,11 @@ public final class c implements DynamiteModule.a { } int i = aVar.a; if (i == 0 && aVar.b == 0) { - aVar.f2370c = 0; + aVar.f2373c = 0; } else if (i >= aVar.b) { - aVar.f2370c = -1; + aVar.f2373c = -1; } else { - aVar.f2370c = 1; + aVar.f2373c = 1; } return aVar; } diff --git a/app/src/main/java/c/i/a/f/g/d.java b/app/src/main/java/c/i/a/f/g/d.java index 8b67440af8..4fd608d08d 100644 --- a/app/src/main/java/c/i/a/f/g/d.java +++ b/app/src/main/java/c/i/a/f/g/d.java @@ -12,11 +12,11 @@ public final class d implements DynamiteModule.a { aVar.b = a; int i = aVar.a; if (i == 0 && a == 0) { - aVar.f2370c = 0; + aVar.f2373c = 0; } else if (a >= i) { - aVar.f2370c = 1; + aVar.f2373c = 1; } else { - aVar.f2370c = -1; + aVar.f2373c = -1; } return aVar; } diff --git a/app/src/main/java/c/i/a/f/h/b/a.java b/app/src/main/java/c/i/a/f/h/b/a.java index d0ff35357e..ecac177028 100644 --- a/app/src/main/java/c/i/a/f/h/b/a.java +++ b/app/src/main/java/c/i/a/f/h/b/a.java @@ -6,7 +6,7 @@ import android.os.IInterface; import android.os.Parcel; import android.os.Parcelable; import android.os.RemoteException; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.api.Status; /* compiled from: com.google.android.gms:play-services-auth-api-phone@@17.4.0 */ public class a extends Binder implements IInterface { @@ -37,7 +37,7 @@ public class a extends Binder implements IInterface { } Parcelable.Creator creator = Status.CREATOR; int i3 = c.a; - AnimatableValueParser.B2(parcel.readInt() == 0 ? null : creator.createFromParcel(parcel), null, ((k) fVar).a); + d.Y1(parcel.readInt() == 0 ? null : creator.createFromParcel(parcel), null, ((k) fVar).a); return true; } } diff --git a/app/src/main/java/c/i/a/f/h/b/b.java b/app/src/main/java/c/i/a/f/h/b/b.java index e3c5162d27..b7b424c8a9 100644 --- a/app/src/main/java/c/i/a/f/h/b/b.java +++ b/app/src/main/java/c/i/a/f/h/b/b.java @@ -7,7 +7,7 @@ public final class b { public static final Feature b; /* renamed from: c reason: collision with root package name */ - public static final Feature f1078c; + public static final Feature f1079c; public static final Feature[] d; static { @@ -16,7 +16,7 @@ public final class b { Feature feature2 = new Feature("sms_retrieve", 1); b = feature2; Feature feature3 = new Feature("user_consent", 3); - f1078c = feature3; + f1079c = feature3; d = new Feature[]{feature, feature2, feature3}; } } diff --git a/app/src/main/java/c/i/a/f/h/c/o.java b/app/src/main/java/c/i/a/f/h/c/o.java index 3d37fc9fe5..cac9cb8f79 100644 --- a/app/src/main/java/c/i/a/f/h/c/o.java +++ b/app/src/main/java/c/i/a/f/h/c/o.java @@ -20,7 +20,7 @@ public final class o extends d { a.C0103a.C0104a aVar3 = new a.C0103a.C0104a(aVar == null ? a.C0103a.i : aVar); byte[] bArr = new byte[16]; a.a.nextBytes(bArr); - aVar3.f1031c = Base64.encodeToString(bArr, 11); + aVar3.f1032c = Base64.encodeToString(bArr, 11); this.A = new a.C0103a(aVar3); } diff --git a/app/src/main/java/c/i/a/f/h/c/p.java b/app/src/main/java/c/i/a/f/h/c/p.java index 815f62cced..a325861081 100644 --- a/app/src/main/java/c/i/a/f/h/c/p.java +++ b/app/src/main/java/c/i/a/f/h/c/p.java @@ -2,7 +2,7 @@ package c.i.a.f.h.c; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.credentials.Credential; import com.google.android.gms.internal.p000authapi.zzt; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ @@ -10,17 +10,17 @@ public final class p implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzt createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Credential credential = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 1) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - credential = (Credential) AnimatableValueParser.S(parcel, readInt, Credential.CREATOR); + credential = (Credential) d.S(parcel, readInt, Credential.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzt(credential); } diff --git a/app/src/main/java/c/i/a/f/h/c/u.java b/app/src/main/java/c/i/a/f/h/c/u.java index 816b5d8504..e46106b56a 100644 --- a/app/src/main/java/c/i/a/f/h/c/u.java +++ b/app/src/main/java/c/i/a/f/h/c/u.java @@ -2,7 +2,7 @@ package c.i.a.f.h.c; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.auth.api.credentials.Credential; import com.google.android.gms.internal.p000authapi.zzz; /* compiled from: com.google.android.gms:play-services-auth@@19.0.0 */ @@ -10,17 +10,17 @@ public final class u implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzz createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Credential credential = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 1) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - credential = (Credential) AnimatableValueParser.S(parcel, readInt, Credential.CREATOR); + credential = (Credential) d.S(parcel, readInt, Credential.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzz(credential); } diff --git a/app/src/main/java/c/i/a/f/h/d/a.java b/app/src/main/java/c/i/a/f/h/d/a.java index 905dd91c3e..b79e7ac009 100644 --- a/app/src/main/java/c/i/a/f/h/d/a.java +++ b/app/src/main/java/c/i/a/f/h/d/a.java @@ -30,12 +30,12 @@ public final class a extends d { @Override // c.i.a.f.e.k.b, c.i.a.f.e.h.a.f public final boolean o() { - c.i.a.f.e.k.c cVar = this.f1064x; + c.i.a.f.e.k.c cVar = this.f1065x; Account account = cVar.a; if (TextUtils.isEmpty(account != null ? account.name : null)) { return false; } - if (cVar.d.get(b.f1032c) == null) { + if (cVar.d.get(b.f1033c) == null) { return !cVar.b.isEmpty(); } throw null; diff --git a/app/src/main/java/c/i/a/f/h/e/a.java b/app/src/main/java/c/i/a/f/h/e/a.java index 258bbf0f00..0a0e2a3586 100644 --- a/app/src/main/java/c/i/a/f/h/e/a.java +++ b/app/src/main/java/c/i/a/f/h/e/a.java @@ -58,7 +58,7 @@ public class a extends Binder implements IInterface { break; case 8: g0 g0Var = (g0) fVar; - g0Var.f1052c.post(new i0(g0Var, (zam) b.a(parcel, zam.CREATOR))); + g0Var.f1053c.post(new i0(g0Var, (zam) b.a(parcel, zam.CREATOR))); break; case 9: zag zag = (zag) b.a(parcel, zag.CREATOR); diff --git a/app/src/main/java/c/i/a/f/h/h/a.java b/app/src/main/java/c/i/a/f/h/h/a.java index ea8bf3f49f..91ab7e9ca0 100644 --- a/app/src/main/java/c/i/a/f/h/h/a.java +++ b/app/src/main/java/c/i/a/f/h/h/a.java @@ -6,9 +6,9 @@ import android.os.IBinder; import android.os.IInterface; import android.os.Parcel; import android.os.RemoteException; +import c.c.a.a0.d; import c.i.c.o.b.g; import c.i.c.o.b.k; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Status; import com.google.firebase.dynamiclinks.PendingDynamicLinkData; import com.google.firebase.dynamiclinks.internal.DynamicLinkData; @@ -41,7 +41,7 @@ public class a extends Binder implements IInterface { Status status = (Status) b.a(parcel, Status.CREATOR); DynamicLinkData dynamicLinkData = (DynamicLinkData) b.a(parcel, DynamicLinkData.CREATOR); g gVar = (g) kVar; - AnimatableValueParser.B2(status, dynamicLinkData == null ? null : new PendingDynamicLinkData(dynamicLinkData), gVar.a); + d.Y1(status, dynamicLinkData == null ? null : new PendingDynamicLinkData(dynamicLinkData), gVar.a); if (dynamicLinkData != null) { Bundle bundle = dynamicLinkData.m; if (bundle == null) { diff --git a/app/src/main/java/c/i/a/f/h/j/a0.java b/app/src/main/java/c/i/a/f/h/j/a0.java index 5cb028e536..23e886ca07 100644 --- a/app/src/main/java/c/i/a/f/h/j/a0.java +++ b/app/src/main/java/c/i/a/f/h/j/a0.java @@ -8,7 +8,7 @@ public abstract class a0 { public final g b; /* renamed from: c reason: collision with root package name */ - public final Runnable f1079c = new b0(this); + public final Runnable f1080c = new b0(this); public volatile long d; public a0(g gVar) { @@ -18,7 +18,7 @@ public abstract class a0 { public final void a() { this.d = 0; - b().removeCallbacks(this.f1079c); + b().removeCallbacks(this.f1080c); } public final Handler b() { @@ -46,7 +46,7 @@ public abstract class a0 { if (j >= 0) { Objects.requireNonNull((d) this.b.d); this.d = System.currentTimeMillis(); - if (!b().postDelayed(this.f1079c, j)) { + if (!b().postDelayed(this.f1080c, j)) { this.b.c().B("Failed to schedule delayed post. time", Long.valueOf(j)); } } diff --git a/app/src/main/java/c/i/a/f/h/j/a1.java b/app/src/main/java/c/i/a/f/h/j/a1.java index ce1f7b0635..5025e08294 100644 --- a/app/src/main/java/c/i/a/f/h/j/a1.java +++ b/app/src/main/java/c/i/a/f/h/j/a1.java @@ -38,7 +38,7 @@ public final class a1 extends e { if (bundle != null && (i = bundle.getInt("com.google.android.gms.analytics.globalConfigResource")) > 0) { g0 g0Var = new g0(this.i); try { - i0Var = g0Var.I(g0Var.i.f1087c.getResources().getXml(i)); + i0Var = g0Var.I(g0Var.i.f1088c.getResources().getXml(i)); } catch (Resources.NotFoundException e2) { g0Var.x("inflate() called with unknown resourceId", e2); } @@ -55,7 +55,7 @@ public final class a1 extends e { this.k = str2; d("XML config - app version", str2); } - String str3 = i0Var.f1088c; + String str3 = i0Var.f1089c; if (str3 != null) { String lowerCase = str3.toLowerCase(Locale.US); int i2 = "verbose".equals(lowerCase) ? 0 : "info".equals(lowerCase) ? 1 : "warning".equals(lowerCase) ? 2 : "error".equals(lowerCase) ? 3 : -1; diff --git a/app/src/main/java/c/i/a/f/h/j/b1.java b/app/src/main/java/c/i/a/f/h/j/b1.java index 465bda1570..f336aeef21 100644 --- a/app/src/main/java/c/i/a/f/h/j/b1.java +++ b/app/src/main/java/c/i/a/f/h/j/b1.java @@ -16,7 +16,7 @@ public final class b1 { public static final Method b; /* renamed from: c reason: collision with root package name */ - public static volatile d1 f1080c = c1.a; + public static volatile d1 f1081c = c1.a; /* JADX WARNING: Removed duplicated region for block: B:12:0x003b */ static { diff --git a/app/src/main/java/c/i/a/f/h/j/e0.java b/app/src/main/java/c/i/a/f/h/j/e0.java index 453400f896..c37a9b895c 100644 --- a/app/src/main/java/c/i/a/f/h/j/e0.java +++ b/app/src/main/java/c/i/a/f/h/j/e0.java @@ -11,7 +11,7 @@ public final class e0 { public static f0 b = f0.c("analytics.log_tag", "GAv4", "GAv4-SVC"); /* renamed from: c reason: collision with root package name */ - public static f0 f1081c = f0.b("analytics.local_dispatch_millis", StoreGuildScheduledEvents.FETCH_GUILD_EVENTS_THRESHOLD, 120000); + public static f0 f1082c = f0.b("analytics.local_dispatch_millis", StoreGuildScheduledEvents.FETCH_GUILD_EVENTS_THRESHOLD, 120000); public static f0 d = f0.b("analytics.initial_local_dispatch_millis", 5000, 5000); public static f0 e = f0.b("analytics.dispatch_alarm_millis", 7200000, 7200000); public static f0 f = f0.b("analytics.max_dispatch_alarm_millis", 32400000, 32400000); @@ -29,20 +29,20 @@ public final class e0 { public static f0 r = f0.a("analytics.max_batch_post_length", 8192, 8192); /* renamed from: s reason: collision with root package name */ - public static f0 f1082s = f0.c("analytics.fallback_responses.k", "404,502", "404,502"); + public static f0 f1083s = f0.c("analytics.fallback_responses.k", "404,502", "404,502"); public static f0 t = f0.a("analytics.batch_retry_interval.seconds.k", 3600, 3600); public static f0 u = f0.a("analytics.http_connection.connect_timeout_millis", 60000, 60000); public static f0 v = f0.a("analytics.http_connection.read_timeout_millis", 61000, 61000); public static f0 w = f0.d("analytics.test.disable_receiver", false, false); /* renamed from: x reason: collision with root package name */ - public static f0 f1083x = f0.b("analytics.service_client.idle_disconnect_millis", 10000, 10000); + public static f0 f1084x = f0.b("analytics.service_client.idle_disconnect_millis", 10000, 10000); /* renamed from: y reason: collision with root package name */ - public static f0 f1084y = f0.b("analytics.service_client.connect_timeout_millis", 5000, 5000); + public static f0 f1085y = f0.b("analytics.service_client.connect_timeout_millis", 5000, 5000); /* renamed from: z reason: collision with root package name */ - public static f0 f1085z = f0.b("analytics.service_client.reconnect_throttle_millis", StoreGuildScheduledEvents.FETCH_GUILD_EVENTS_THRESHOLD, StoreGuildScheduledEvents.FETCH_GUILD_EVENTS_THRESHOLD); + public static f0 f1086z = f0.b("analytics.service_client.reconnect_throttle_millis", StoreGuildScheduledEvents.FETCH_GUILD_EVENTS_THRESHOLD, StoreGuildScheduledEvents.FETCH_GUILD_EVENTS_THRESHOLD); static { f0.d("analytics.service_enabled", false, false); diff --git a/app/src/main/java/c/i/a/f/h/j/f1.java b/app/src/main/java/c/i/a/f/h/j/f1.java index 4c51db2f1a..d7d279534f 100644 --- a/app/src/main/java/c/i/a/f/h/j/f1.java +++ b/app/src/main/java/c/i/a/f/h/j/f1.java @@ -7,14 +7,14 @@ public final class f1 extends e { public String b; /* renamed from: c reason: collision with root package name */ - public String f1086c; + public String f1087c; public String d; public final String toString() { HashMap hashMap = new HashMap(); hashMap.put("appName", this.a); hashMap.put("appVersion", this.b); - hashMap.put("appId", this.f1086c); + hashMap.put("appId", this.f1087c); hashMap.put("appInstallerId", this.d); return e.a(hashMap, 0); } diff --git a/app/src/main/java/c/i/a/f/h/j/g.java b/app/src/main/java/c/i/a/f/h/j/g.java index 94ad39f3f6..feea16f17a 100644 --- a/app/src/main/java/c/i/a/f/h/j/g.java +++ b/app/src/main/java/c/i/a/f/h/j/g.java @@ -3,11 +3,10 @@ package c.i.a.f.h.j; import android.annotation.SuppressLint; import android.content.Context; import android.os.SystemClock; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.f.b.f; import c.i.a.f.e.o.b; -import c.i.a.f.e.o.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.List; import java.util.Objects; @SuppressLint({"StaticFieldLeak"}) @@ -16,7 +15,7 @@ public class g { public final Context b; /* renamed from: c reason: collision with root package name */ - public final Context f1087c; + public final Context f1088c; public final b d; public final z e = new z(this); public final m0 f; @@ -28,12 +27,12 @@ public class g { public g(i iVar) { Context context = iVar.a; - AnimatableValueParser.z(context, "Application context can't be null"); + d.z(context, "Application context can't be null"); Context context2 = iVar.b; Objects.requireNonNull(context2, "null reference"); this.b = context; - this.f1087c = context2; - d dVar = d.a; + this.f1088c = context2; + c.i.a.f.e.o.d dVar = c.i.a.f.e.o.d.a; this.d = dVar; m0 m0Var = new m0(this); m0Var.K(); @@ -78,14 +77,14 @@ public class g { a1Var2.N(); r rVar = aVar.k; rVar.N(); - AnimatableValueParser.G(!rVar.k, "Analytics backend already started"); + d.G(!rVar.k, "Analytics backend already started"); rVar.k = true; rVar.r().a(new u(rVar)); } public static void a(e eVar) { - AnimatableValueParser.z(eVar, "Analytics service not created/initialized"); - AnimatableValueParser.p(eVar.I(), "Analytics service not initialized"); + d.z(eVar, "Analytics service not created/initialized"); + d.p(eVar.I(), "Analytics service not initialized"); } public static g b(Context context) { diff --git a/app/src/main/java/c/i/a/f/h/j/h0.java b/app/src/main/java/c/i/a/f/h/j/h0.java index 61a5750362..086ed2bee3 100644 --- a/app/src/main/java/c/i/a/f/h/j/h0.java +++ b/app/src/main/java/c/i/a/f/h/j/h0.java @@ -29,7 +29,7 @@ public final class h0 { } else if ("ga_appVersion".equals(str)) { this.b.b = str2; } else if ("ga_logLevel".equals(str)) { - this.b.f1088c = str2; + this.b.f1089c = str2; } else { this.a.c().x("String xml configuration name not recognized", str); } diff --git a/app/src/main/java/c/i/a/f/h/j/i.java b/app/src/main/java/c/i/a/f/h/j/i.java index 935d150ea1..915c888043 100644 --- a/app/src/main/java/c/i/a/f/h/j/i.java +++ b/app/src/main/java/c/i/a/f/h/j/i.java @@ -1,14 +1,14 @@ package c.i.a.f.h.j; import android.content.Context; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; public final class i { public final Context a; public final Context b; public i(Context context) { Context applicationContext = context.getApplicationContext(); - AnimatableValueParser.z(applicationContext, "Application context can't be null"); + d.z(applicationContext, "Application context can't be null"); this.a = applicationContext; this.b = applicationContext; } diff --git a/app/src/main/java/c/i/a/f/h/j/i0.java b/app/src/main/java/c/i/a/f/h/j/i0.java index 034779f801..a7a8ee660e 100644 --- a/app/src/main/java/c/i/a/f/h/j/i0.java +++ b/app/src/main/java/c/i/a/f/h/j/i0.java @@ -4,7 +4,7 @@ public final class i0 { public String b; /* renamed from: c reason: collision with root package name */ - public String f1088c; + public String f1089c; public int d = -1; public int e = -1; } diff --git a/app/src/main/java/c/i/a/f/h/j/j.java b/app/src/main/java/c/i/a/f/h/j/j.java index 98d798770b..f29f1748e9 100644 --- a/app/src/main/java/c/i/a/f/h/j/j.java +++ b/app/src/main/java/c/i/a/f/h/j/j.java @@ -66,6 +66,6 @@ public final class j extends e { public final void T() { this.n.a(); - this.m.e(e0.f1083x.a.longValue()); + this.m.e(e0.f1084x.a.longValue()); } } diff --git a/app/src/main/java/c/i/a/f/h/j/j0.java b/app/src/main/java/c/i/a/f/h/j/j0.java index a426e8849d..f751108536 100644 --- a/app/src/main/java/c/i/a/f/h/j/j0.java +++ b/app/src/main/java/c/i/a/f/h/j/j0.java @@ -14,7 +14,7 @@ public final class j0 { public final List b = Collections.emptyList(); /* renamed from: c reason: collision with root package name */ - public final long f1089c; + public final long f1090c; public final long d; public final int e; public final boolean f; @@ -26,7 +26,7 @@ public final class j0 { Objects.requireNonNull(map, "null reference"); this.d = j; this.f = z2; - this.f1089c = j2; + this.f1090c = j2; this.e = i; TextUtils.isEmpty(null); this.g = null; @@ -92,15 +92,15 @@ public final class j0 { } public final String toString() { - StringBuilder P = a.P("ht="); - P.append(this.d); - if (this.f1089c != 0) { - P.append(", dbId="); - P.append(this.f1089c); + StringBuilder O = a.O("ht="); + O.append(this.d); + if (this.f1090c != 0) { + O.append(", dbId="); + O.append(this.f1090c); } if (this.e != 0) { - P.append(", appUID="); - P.append(this.e); + O.append(", appUID="); + O.append(this.e); } ArrayList arrayList = new ArrayList(this.a.keySet()); Collections.sort(arrayList); @@ -110,11 +110,11 @@ public final class j0 { Object obj = arrayList.get(i); i++; String str = (String) obj; - P.append(", "); - P.append(str); - P.append("="); - P.append(this.a.get(str)); + O.append(", "); + O.append(str); + O.append("="); + O.append(this.a.get(str)); } - return P.toString(); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/f/h/j/l.java b/app/src/main/java/c/i/a/f/h/j/l.java index d693a4cf25..96c1cd5b47 100644 --- a/app/src/main/java/c/i/a/f/h/j/l.java +++ b/app/src/main/java/c/i/a/f/h/j/l.java @@ -5,8 +5,8 @@ import android.content.ServiceConnection; import android.os.IBinder; import android.os.IInterface; import android.os.RemoteException; +import c.c.a.a0.d; import c.i.a.f.e.n.a; -import com.airbnb.lottie.parser.AnimatableValueParser; public final class l implements ServiceConnection { public volatile k0 i; public volatile boolean j; @@ -18,7 +18,7 @@ public final class l implements ServiceConnection { @Override // android.content.ServiceConnection public final void onServiceConnected(ComponentName componentName, IBinder iBinder) { - AnimatableValueParser.u("AnalyticsServiceConnection.onServiceConnected"); + d.u("AnalyticsServiceConnection.onServiceConnected"); synchronized (this) { if (iBinder == null) { try { @@ -60,7 +60,7 @@ public final class l implements ServiceConnection { @Override // android.content.ServiceConnection public final void onServiceDisconnected(ComponentName componentName) { - AnimatableValueParser.u("AnalyticsServiceConnection.onServiceDisconnected"); + d.u("AnalyticsServiceConnection.onServiceDisconnected"); this.k.r().a(new n(this, componentName)); } } diff --git a/app/src/main/java/c/i/a/f/h/j/m0.java b/app/src/main/java/c/i/a/f/h/j/m0.java index 559afd2715..b86535c8e4 100644 --- a/app/src/main/java/c/i/a/f/h/j/m0.java +++ b/app/src/main/java/c/i/a/f/h/j/m0.java @@ -27,12 +27,12 @@ public class m0 extends e { str = ""; } String valueOf = String.valueOf(Math.abs(l.longValue())); - StringBuilder P = a.P(str); - P.append(Math.round(Math.pow(10.0d, (double) (valueOf.length() - 1)))); - P.append("..."); - P.append(str); - P.append(Math.round(Math.pow(10.0d, (double) valueOf.length()) - 1.0d)); - return P.toString(); + StringBuilder O = a.O(str); + O.append(Math.round(Math.pow(10.0d, (double) (valueOf.length() - 1)))); + O.append("..."); + O.append(str); + O.append(Math.round(Math.pow(10.0d, (double) valueOf.length()) - 1.0d)); + return O.toString(); } @Override // c.i.a.f.h.j.e diff --git a/app/src/main/java/c/i/a/f/h/j/n0.java b/app/src/main/java/c/i/a/f/h/j/n0.java index 1ee36d5a8b..530d6c4db4 100644 --- a/app/src/main/java/c/i/a/f/h/j/n0.java +++ b/app/src/main/java/c/i/a/f/h/j/n0.java @@ -12,7 +12,7 @@ public class n0 extends BroadcastReceiver { public final g b; /* renamed from: c reason: collision with root package name */ - public boolean f1090c; + public boolean f1091c; public boolean d; public n0(g gVar) { @@ -21,9 +21,9 @@ public class n0 extends BroadcastReceiver { } public final void a() { - if (this.f1090c) { + if (this.f1091c) { this.b.c().C("Unregistering connectivity change receiver"); - this.f1090c = false; + this.f1091c = false; this.d = false; try { this.b.b.unregisterReceiver(this); diff --git a/app/src/main/java/c/i/a/f/h/j/o.java b/app/src/main/java/c/i/a/f/h/j/o.java index 6c4e606547..1251535af1 100644 --- a/app/src/main/java/c/i/a/f/h/j/o.java +++ b/app/src/main/java/c/i/a/f/h/j/o.java @@ -4,10 +4,9 @@ import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteException; import android.text.TextUtils; +import c.c.a.a0.d; import c.i.a.f.b.f; -import c.i.a.f.e.o.d; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.widgets.chat.list.adapter.WidgetChatListAdapterItemGuildWelcomeKt; import java.io.Closeable; import java.net.URI; @@ -99,7 +98,7 @@ public final class o extends e implements Closeable { public final List T(long j) { boolean z2; - AnimatableValueParser.m(j >= 0); + d.m(j >= 0); f.b(); N(); Cursor cursor = null; @@ -146,7 +145,7 @@ public final class o extends e implements Closeable { this.n.a(); C("Deleting stale hits (if any)"); SQLiteDatabase Q = Q(); - Objects.requireNonNull((d) this.i.d); + Objects.requireNonNull((c.i.a.f.e.o.d) this.i.d); int delete = Q.delete("hits2", "hit_time < ?", new String[]{Long.toString(System.currentTimeMillis() - WidgetChatListAdapterItemGuildWelcomeKt.OLD_GUILD_AGE_THRESHOLD)}); b("Deleted stale hits, count", Integer.valueOf(delete)); return delete; diff --git a/app/src/main/java/c/i/a/f/h/j/o0.java b/app/src/main/java/c/i/a/f/h/j/o0.java index eac1aed500..c6b6ae8fd9 100644 --- a/app/src/main/java/c/i/a/f/h/j/o0.java +++ b/app/src/main/java/c/i/a/f/h/j/o0.java @@ -9,7 +9,6 @@ import c.d.b.a.a; import c.i.a.f.b.f; import c.i.a.f.e.o.d; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; @@ -174,8 +173,8 @@ public final class o0 extends e { Objects.requireNonNull((d) this.i.d); S(sb, "qt", String.valueOf(System.currentTimeMillis() - j0Var.d)); if (z2) { - AnimatableValueParser.w("_s"); - AnimatableValueParser.p(true, "Short param name required"); + c.c.a.a0.d.w("_s"); + c.c.a.a0.d.p(true, "Short param name required"); String str = j0Var.a.get("_s"); if (str == null) { str = "0"; @@ -185,7 +184,7 @@ public final class o0 extends e { } catch (NumberFormatException unused) { j = 0; } - S(sb, "z", j != 0 ? String.valueOf(j) : String.valueOf(j0Var.f1089c)); + S(sb, "z", j != 0 ? String.valueOf(j) : String.valueOf(j0Var.f1090c)); } return sb.toString(); } catch (UnsupportedEncodingException e) { @@ -299,7 +298,7 @@ public final class o0 extends e { if (("GZIP".equalsIgnoreCase(e0.o.a) ? xVar : x.NONE) == xVar) { z2 = true; if (!z3) { - AnimatableValueParser.m(!list.isEmpty()); + c.c.a.a0.d.m(!list.isEmpty()); a(2, "Uploading batched hits. compression, count", Boolean.valueOf(z2), Integer.valueOf(list.size()), null); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); ArrayList arrayList = new ArrayList(); @@ -337,7 +336,7 @@ public final class o0 extends e { if (z5) { break; } - arrayList.add(Long.valueOf(j0Var.f1089c)); + arrayList.add(Long.valueOf(j0Var.f1090c)); } z5 = false; if (z5) { @@ -599,7 +598,7 @@ public final class o0 extends e { if (z4) { break; } - arrayList2.add(Long.valueOf(j0Var2.f1089c)); + arrayList2.add(Long.valueOf(j0Var2.f1090c)); if (arrayList2.size() >= z.c()) { break; } diff --git a/app/src/main/java/c/i/a/f/h/j/q.java b/app/src/main/java/c/i/a/f/h/j/q.java index 4563ce3f98..3b067ac225 100644 --- a/app/src/main/java/c/i/a/f/h/j/q.java +++ b/app/src/main/java/c/i/a/f/h/j/q.java @@ -21,7 +21,7 @@ public final class q extends e { f1 f1Var = new f1(); PackageManager packageManager = r.b.getPackageManager(); String packageName = r.b.getPackageName(); - f1Var.f1086c = packageName; + f1Var.f1087c = packageName; f1Var.d = packageManager.getInstallerPackageName(packageName); String str = null; try { @@ -51,8 +51,8 @@ public final class q extends e { if (!TextUtils.isEmpty(f1Var2.b)) { f1Var3.b = f1Var2.b; } - if (!TextUtils.isEmpty(f1Var2.f1086c)) { - f1Var3.f1086c = f1Var2.f1086c; + if (!TextUtils.isEmpty(f1Var2.f1087c)) { + f1Var3.f1087c = f1Var2.f1087c; } if (!TextUtils.isEmpty(f1Var2.d)) { f1Var3.d = f1Var2.d; diff --git a/app/src/main/java/c/i/a/f/h/j/r.java b/app/src/main/java/c/i/a/f/h/j/r.java index 3b0e19180d..51793ddf77 100644 --- a/app/src/main/java/c/i/a/f/h/j/r.java +++ b/app/src/main/java/c/i/a/f/h/j/r.java @@ -14,7 +14,6 @@ import c.i.a.f.b.f; import c.i.a.f.e.n.a; import c.i.a.f.e.o.d; import c.i.a.f.e.p.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Iterator; @@ -31,7 +30,7 @@ public final class r extends e { public final a0 r; /* renamed from: s reason: collision with root package name */ - public final y0 f1091s; + public final y0 f1092s; public long t; public boolean u; @@ -41,7 +40,7 @@ public final class r extends e { this.l = new o(gVar); this.m = new o0(gVar); this.o = new j(gVar); - this.f1091s = new y0(this.i.d); + this.f1092s = new y0(this.i.d); this.q = new s(this, gVar); this.r = new t(this, gVar); } @@ -82,7 +81,7 @@ public final class r extends e { } arrayList.remove(j0Var); try { - this.l.W(j0Var.f1089c); + this.l.W(j0Var.f1090c); } catch (SQLiteException e) { B("Failed to remove hit that was send for delivery", e); W(); @@ -143,8 +142,8 @@ public final class r extends e { public final void S() { k0 k0Var; if (!this.u && e0.a.a.booleanValue() && !this.o.R()) { - if (this.f1091s.b(e0.f1085z.a.longValue())) { - this.f1091s.a(); + if (this.f1092s.b(e0.f1086z.a.longValue())) { + this.f1092s.a(); C("Connecting to service"); j jVar = this.o; Objects.requireNonNull(jVar); @@ -170,7 +169,7 @@ public final class r extends e { lVar.j = false; } else { try { - lVar.wait(e0.f1084y.a.longValue()); + lVar.wait(e0.f1085y.a.longValue()); } catch (InterruptedException unused) { lVar.k.G("Wait for service connect was interrupted"); } @@ -192,7 +191,7 @@ public final class r extends e { } if (z2) { C("Connected to service"); - this.f1091s.b = 0; + this.f1092s.b = 0; Q(); } } @@ -234,7 +233,7 @@ public final class r extends e { b("Hits loaded from store. count", Integer.valueOf(arrayList2.size())); Iterator it = arrayList2.iterator(); while (it.hasNext()) { - if (((j0) it.next()).f1089c == j) { + if (((j0) it.next()).f1090c == j) { z("Database contains successfully uploaded hit", Long.valueOf(j), Integer.valueOf(arrayList2.size())); W(); try { @@ -253,12 +252,12 @@ public final class r extends e { if (!this.o.S(j0Var)) { break; } - j = Math.max(j, j0Var.f1089c); + j = Math.max(j, j0Var.f1090c); arrayList2.remove(j0Var); d("Hit sent do device AnalyticsService for delivery", j0Var); try { - this.l.W(j0Var.f1089c); - arrayList.add(Long.valueOf(j0Var.f1089c)); + this.l.W(j0Var.f1090c); + arrayList.add(Long.valueOf(j0Var.f1090c)); } catch (SQLiteException e3) { B("Failed to remove hit that was send for delivery", e3); W(); @@ -365,7 +364,7 @@ public final class r extends e { n0 n0Var = this.n; n0Var.b.c(); n0Var.b.e(); - if (!n0Var.f1090c) { + if (!n0Var.f1091c) { Context context = n0Var.b.b; context.registerReceiver(n0Var, new IntentFilter("android.net.conn.CONNECTIVITY_CHANGE")); IntentFilter intentFilter = new IntentFilter("com.google.analytics.RADIO_POWERED"); @@ -373,10 +372,10 @@ public final class r extends e { context.registerReceiver(n0Var, intentFilter); n0Var.d = n0Var.b(); n0Var.b.c().b("Registering connectivity change receiver. Network connected", Boolean.valueOf(n0Var.d)); - n0Var.f1090c = true; + n0Var.f1091c = true; } n0 n0Var2 = this.n; - if (!n0Var2.f1090c) { + if (!n0Var2.f1091c) { n0Var2.b.c().G("Connectivity unknown. Receiver not registered"); } z2 = n0Var2.d; @@ -415,8 +414,8 @@ public final class r extends e { if (abs >= 0) { j3 = abs; } - a0Var2.b().removeCallbacks(a0Var2.f1079c); - if (!a0Var2.b().postDelayed(a0Var2.f1079c, j3)) { + a0Var2.b().removeCallbacks(a0Var2.f1080c); + if (!a0Var2.b().postDelayed(a0Var2.f1080c, j3)) { a0Var2.b.c().B("Failed to adjust delayed post. time", Long.valueOf(j3)); return; } @@ -451,7 +450,7 @@ public final class r extends e { if (Math.abs(System.currentTimeMillis() - j) <= e0.f.a.longValue()) { b("Dispatch alarm scheduled (ms)", Long.valueOf(z.b())); c0Var.N(); - AnimatableValueParser.G(c0Var.k, "Receiver not registered"); + c.c.a.a0.d.G(c0Var.k, "Receiver not registered"); long b = z.b(); if (b > 0) { c0Var.Q(); @@ -471,7 +470,7 @@ public final class r extends e { Method method = b1.a; JobScheduler jobScheduler = (JobScheduler) context.getSystemService("jobscheduler"); if (b1.a != null) { - Objects.requireNonNull((c1) b1.f1080c); + Objects.requireNonNull((c1) b1.f1081c); } jobScheduler.schedule(build); return; @@ -502,7 +501,7 @@ public final class r extends e { if (j != Long.MIN_VALUE) { return j; } - long longValue = e0.f1081c.a.longValue(); + long longValue = e0.f1082c.a.longValue(); a1 t = t(); t.N(); if (!t.m) { diff --git a/app/src/main/java/c/i/a/f/h/j/r0.java b/app/src/main/java/c/i/a/f/h/j/r0.java index 941c53921a..4c53cb7835 100644 --- a/app/src/main/java/c/i/a/f/h/j/r0.java +++ b/app/src/main/java/c/i/a/f/h/j/r0.java @@ -2,8 +2,7 @@ package c.i.a.f.h.j; import android.content.SharedPreferences; import androidx.recyclerview.widget.RecyclerView; -import c.i.a.f.e.o.d; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Objects; import java.util.UUID; public final class r0 { @@ -12,14 +11,14 @@ public final class r0 { public r0(p0 p0Var, String str, long j, q0 q0Var) { this.b = p0Var; - AnimatableValueParser.w(str); - AnimatableValueParser.m(j > 0); + d.w(str); + d.m(j > 0); this.a = str; } public final void a(String str) { if (this.b.k.getLong(String.valueOf(this.a).concat(":start"), 0) == 0) { - Objects.requireNonNull((d) this.b.i.d); + Objects.requireNonNull((c.i.a.f.e.o.d) this.b.i.d); long currentTimeMillis = System.currentTimeMillis(); SharedPreferences.Editor edit = this.b.k.edit(); edit.remove(b()); diff --git a/app/src/main/java/c/i/a/f/h/j/s0.java b/app/src/main/java/c/i/a/f/h/j/s0.java index 7c7c0c3208..1529550e25 100644 --- a/app/src/main/java/c/i/a/f/h/j/s0.java +++ b/app/src/main/java/c/i/a/f/h/j/s0.java @@ -8,16 +8,16 @@ public final class s0 { public static a b; /* renamed from: c reason: collision with root package name */ - public static Boolean f1092c; + public static Boolean f1093c; public static boolean a(Context context) { Objects.requireNonNull(context, "null reference"); - Boolean bool = f1092c; + Boolean bool = f1093c; if (bool != null) { return bool.booleanValue(); } boolean a2 = z0.a(context, "com.google.android.gms.analytics.AnalyticsReceiver", false); - f1092c = Boolean.valueOf(a2); + f1093c = Boolean.valueOf(a2); return a2; } } diff --git a/app/src/main/java/c/i/a/f/h/j/t0.java b/app/src/main/java/c/i/a/f/h/j/t0.java index 0062bbb7af..c48713a479 100644 --- a/app/src/main/java/c/i/a/f/h/j/t0.java +++ b/app/src/main/java/c/i/a/f/h/j/t0.java @@ -15,10 +15,10 @@ public final class t0 { public final Handler b = new e1(); /* renamed from: c reason: collision with root package name */ - public final T f1093c; + public final T f1094c; public t0(T t) { - this.f1093c = t; + this.f1094c = t; } public static boolean c(Context context) { @@ -44,13 +44,13 @@ public final class t0 { try { synchronized (s0.a) { a aVar = s0.b; - if (aVar != null && aVar.f1229c.isHeld()) { + if (aVar != null && aVar.f1230c.isHeld()) { aVar.b(); } } } catch (SecurityException unused) { } - m0 c2 = g.b(this.f1093c).c(); + m0 c2 = g.b(this.f1094c).c(); if (intent == null) { c2.G("AnalyticsService started with null intent"); return 2; @@ -64,7 +64,7 @@ public final class t0 { } public final void b(Runnable runnable) { - a e = g.b(this.f1093c).e(); + a e = g.b(this.f1094c).e(); w0 w0Var = new w0(this, runnable); e.N(); e.r().a(new c(e, w0Var)); diff --git a/app/src/main/java/c/i/a/f/h/j/u0.java b/app/src/main/java/c/i/a/f/h/j/u0.java index f655bcd7c9..dab997e51f 100644 --- a/app/src/main/java/c/i/a/f/h/j/u0.java +++ b/app/src/main/java/c/i/a/f/h/j/u0.java @@ -15,7 +15,7 @@ public final /* synthetic */ class u0 implements Runnable { t0 t0Var = this.i; int i = this.j; m0 m0Var = this.k; - if (t0Var.f1093c.b(i)) { + if (t0Var.f1094c.b(i)) { m0Var.C("Local AnalyticsService processed last dispatch request"); } } diff --git a/app/src/main/java/c/i/a/f/h/j/v0.java b/app/src/main/java/c/i/a/f/h/j/v0.java index 8858dfe1bd..475b512fc4 100644 --- a/app/src/main/java/c/i/a/f/h/j/v0.java +++ b/app/src/main/java/c/i/a/f/h/j/v0.java @@ -20,6 +20,6 @@ public final /* synthetic */ class v0 implements Runnable { JobParameters jobParameters = this.k; Objects.requireNonNull(t0Var); m0Var.C("AnalyticsJobService processed last dispatch request"); - t0Var.f1093c.a(jobParameters, false); + t0Var.f1094c.a(jobParameters, false); } } diff --git a/app/src/main/java/c/i/a/f/h/j/z.java b/app/src/main/java/c/i/a/f/h/j/z.java index 5f23459a39..a912f25fd6 100644 --- a/app/src/main/java/c/i/a/f/h/j/z.java +++ b/app/src/main/java/c/i/a/f/h/j/z.java @@ -10,7 +10,7 @@ public final class z { public volatile Boolean b; /* renamed from: c reason: collision with root package name */ - public String f1094c; + public String f1095c; public Set d; public z(g gVar) { @@ -62,8 +62,8 @@ public final class z { public final Set g() { String str; - String str2 = e0.f1082s.a; - if (this.d == null || (str = this.f1094c) == null || !str.equals(str2)) { + String str2 = e0.f1083s.a; + if (this.d == null || (str = this.f1095c) == null || !str.equals(str2)) { String[] split = TextUtils.split(str2, ","); HashSet hashSet = new HashSet(); for (String str3 : split) { @@ -72,7 +72,7 @@ public final class z { } catch (NumberFormatException unused) { } } - this.f1094c = str2; + this.f1095c = str2; this.d = hashSet; } return this.d; diff --git a/app/src/main/java/c/i/a/f/h/k/k.java b/app/src/main/java/c/i/a/f/h/k/k.java index b08534c3ba..509b66d283 100644 --- a/app/src/main/java/c/i/a/f/h/k/k.java +++ b/app/src/main/java/c/i/a/f/h/k/k.java @@ -7,13 +7,13 @@ public final class k { public static final a.AbstractC0105a b; /* renamed from: c reason: collision with root package name */ - public static final a f1095c; + public static final a f1096c; static { a.g gVar = new a.g<>(); a = gVar; j jVar = new j(); b = jVar; - f1095c = new a<>("AppDataSearch.LIGHTWEIGHT_API", jVar, gVar); + f1096c = new a<>("AppDataSearch.LIGHTWEIGHT_API", jVar, gVar); } } diff --git a/app/src/main/java/c/i/a/f/h/k/m.java b/app/src/main/java/c/i/a/f/h/k/m.java index 50b7d8899f..e71ab2f9a4 100644 --- a/app/src/main/java/c/i/a/f/h/k/m.java +++ b/app/src/main/java/c/i/a/f/h/k/m.java @@ -3,7 +3,7 @@ package c.i.a.f.h.k; import android.accounts.Account; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.icing.zzh; import com.google.android.gms.internal.icing.zzk; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ @@ -11,27 +11,27 @@ public final class m implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzh createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); zzk[] zzkArr = null; String str = null; Account account = null; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 1) { - zzkArr = (zzk[]) AnimatableValueParser.W(parcel, readInt, zzk.CREATOR); + zzkArr = (zzk[]) d.W(parcel, readInt, zzk.CREATOR); } else if (i == 2) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i == 3) { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } else if (i != 4) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - account = (Account) AnimatableValueParser.S(parcel, readInt, Account.CREATOR); + account = (Account) d.S(parcel, readInt, Account.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzh(zzkArr, str, z2, account); } diff --git a/app/src/main/java/c/i/a/f/h/k/n.java b/app/src/main/java/c/i/a/f/h/k/n.java index 444349304a..12b18a5899 100644 --- a/app/src/main/java/c/i/a/f/h/k/n.java +++ b/app/src/main/java/c/i/a/f/h/k/n.java @@ -2,31 +2,31 @@ package c.i.a.f.h.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.icing.zzi; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ public final class n implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzi createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; String str3 = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 1) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i == 2) { - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); } else if (i != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzi(str, str2, str3); } diff --git a/app/src/main/java/c/i/a/f/h/k/o.java b/app/src/main/java/c/i/a/f/h/k/o.java index 27fa9f35f6..9a56dc56b0 100644 --- a/app/src/main/java/c/i/a/f/h/k/o.java +++ b/app/src/main/java/c/i/a/f/h/k/o.java @@ -2,7 +2,7 @@ package c.i.a.f.h.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.icing.zzk; import com.google.android.gms.internal.icing.zzt; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ @@ -10,27 +10,27 @@ public final class o implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzk createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; zzt zzt = null; byte[] bArr = null; int i = -1; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i2 == 3) { - zzt = (zzt) AnimatableValueParser.S(parcel, readInt, zzt.CREATOR); + zzt = (zzt) d.S(parcel, readInt, zzt.CREATOR); } else if (i2 == 4) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 != 5) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzk(str, zzt, i, bArr); } diff --git a/app/src/main/java/c/i/a/f/h/k/p.java b/app/src/main/java/c/i/a/f/h/k/p.java index 0a55fbaa02..97554a8636 100644 --- a/app/src/main/java/c/i/a/f/h/k/p.java +++ b/app/src/main/java/c/i/a/f/h/k/p.java @@ -3,28 +3,28 @@ package c.i.a.f.h.k; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.icing.zzm; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ public final class p implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzm createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; Bundle bundle = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzm(i, bundle); } diff --git a/app/src/main/java/c/i/a/f/h/k/r.java b/app/src/main/java/c/i/a/f/h/k/r.java index 1d8f5b9930..f74ecce29b 100644 --- a/app/src/main/java/c/i/a/f/h/k/r.java +++ b/app/src/main/java/c/i/a/f/h/k/r.java @@ -2,7 +2,7 @@ package c.i.a.f.h.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.api.Status; import com.google.android.gms.internal.icing.zzo; import com.google.android.gms.internal.icing.zzw; @@ -12,24 +12,24 @@ public final class r implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzo createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Status status = null; ArrayList arrayList = null; String[] strArr = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 1) { - status = (Status) AnimatableValueParser.S(parcel, readInt, Status.CREATOR); + status = (Status) d.S(parcel, readInt, Status.CREATOR); } else if (i == 2) { - arrayList = AnimatableValueParser.X(parcel, readInt, zzw.CREATOR); + arrayList = d.X(parcel, readInt, zzw.CREATOR); } else if (i != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - strArr = AnimatableValueParser.U(parcel, readInt); + strArr = d.U(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzo(status, arrayList, strArr); } diff --git a/app/src/main/java/c/i/a/f/h/k/s.java b/app/src/main/java/c/i/a/f/h/k/s.java index ce1692f823..997b592cfe 100644 --- a/app/src/main/java/c/i/a/f/h/k/s.java +++ b/app/src/main/java/c/i/a/f/h/k/s.java @@ -2,7 +2,7 @@ package c.i.a.f.h.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.icing.zzm; import com.google.android.gms.internal.icing.zzt; import com.google.android.gms.internal.icing.zzu; @@ -11,7 +11,7 @@ public final class s implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzt createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; String str3 = null; @@ -21,43 +21,43 @@ public final class s implements Parcelable.Creator { boolean z2 = false; int i = 1; boolean z3 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 11) { - str4 = AnimatableValueParser.T(parcel, readInt); + str4 = d.T(parcel, readInt); } else if (i2 != 12) { switch (i2) { case 1: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); continue; case 2: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); continue; case 3: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); continue; case 4: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); continue; case 5: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); continue; case 6: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); continue; case 7: - zzmArr = (zzm[]) AnimatableValueParser.W(parcel, readInt, zzm.CREATOR); + zzmArr = (zzm[]) d.W(parcel, readInt, zzm.CREATOR); continue; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); continue; } } else { - zzu = (zzu) AnimatableValueParser.S(parcel, readInt, zzu.CREATOR); + zzu = (zzu) d.S(parcel, readInt, zzu.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzt(str, str2, z2, i, z3, str3, zzmArr, str4, zzu); } diff --git a/app/src/main/java/c/i/a/f/h/k/t.java b/app/src/main/java/c/i/a/f/h/k/t.java index ceb31179ef..ff1a4703ca 100644 --- a/app/src/main/java/c/i/a/f/h/k/t.java +++ b/app/src/main/java/c/i/a/f/h/k/t.java @@ -2,24 +2,24 @@ package c.i.a.f.h.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.icing.zzu; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ public final class t implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzu createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 1) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzu(z2); } diff --git a/app/src/main/java/c/i/a/f/h/k/u.java b/app/src/main/java/c/i/a/f/h/k/u.java index 3f9e48f420..fe94f7ad9b 100644 --- a/app/src/main/java/c/i/a/f/h/k/u.java +++ b/app/src/main/java/c/i/a/f/h/k/u.java @@ -2,7 +2,7 @@ package c.i.a.f.h.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.icing.zzh; import com.google.android.gms.internal.icing.zzi; import com.google.android.gms.internal.icing.zzw; @@ -11,7 +11,7 @@ public final class u implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzw createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); zzi zzi = null; String str = null; zzh zzh = null; @@ -21,42 +21,42 @@ public final class u implements Parcelable.Creator { boolean z2 = false; int i2 = -1; int i3 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - zzi = (zzi) AnimatableValueParser.S(parcel, readInt, zzi.CREATOR); + zzi = (zzi) d.S(parcel, readInt, zzi.CREATOR); break; case 2: - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); break; case 3: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 4: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 5: - zzh = (zzh) AnimatableValueParser.S(parcel, readInt, zzh.CREATOR); + zzh = (zzh) d.S(parcel, readInt, zzh.CREATOR); break; case 6: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 7: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); break; case 8: - i3 = AnimatableValueParser.j2(parcel, readInt); + i3 = d.G1(parcel, readInt); break; case 9: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzw(zzi, j, i, str, zzh, z2, i2, i3, str2); } diff --git a/app/src/main/java/c/i/a/f/h/l/c0.java b/app/src/main/java/c/i/a/f/h/l/c0.java index 7d69ff5c1d..c35e6a1e77 100644 --- a/app/src/main/java/c/i/a/f/h/l/c0.java +++ b/app/src/main/java/c/i/a/f/h/l/c0.java @@ -13,12 +13,12 @@ public final class c0 extends g.a { public final /* synthetic */ boolean r; /* renamed from: s reason: collision with root package name */ - public final /* synthetic */ g f1096s; + public final /* synthetic */ g f1097s; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public c0(g gVar, Long l, String str, String str2, Bundle bundle, boolean z2, boolean z3) { super(true); - this.f1096s = gVar; + this.f1097s = gVar; this.m = l; this.n = str; this.o = str2; @@ -30,6 +30,6 @@ public final class c0 extends g.a { @Override // c.i.a.f.h.l.g.a public final void a() throws RemoteException { Long l = this.m; - this.f1096s.j.logEvent(this.n, this.o, this.p, this.q, this.r, l == null ? this.i : l.longValue()); + this.f1097s.j.logEvent(this.n, this.o, this.p, this.q, this.r, l == null ? this.i : l.longValue()); } } diff --git a/app/src/main/java/c/i/a/f/h/l/c2.java b/app/src/main/java/c/i/a/f/h/l/c2.java index 08ad0c87cd..fe48b9eae7 100644 --- a/app/src/main/java/c/i/a/f/h/l/c2.java +++ b/app/src/main/java/c/i/a/f/h/l/c2.java @@ -13,17 +13,17 @@ public final class c2 implements b2 { public final Context b; /* renamed from: c reason: collision with root package name */ - public final ContentObserver f1097c; + public final ContentObserver f1098c; public c2() { this.b = null; - this.f1097c = null; + this.f1098c = null; } public c2(Context context) { this.b = context; f2 f2Var = new f2(); - this.f1097c = f2Var; + this.f1098c = f2Var; context.getContentResolver().registerContentObserver(u1.a, true, f2Var); } diff --git a/app/src/main/java/c/i/a/f/h/l/c7.java b/app/src/main/java/c/i/a/f/h/l/c7.java index 071463bf68..24daf66083 100644 --- a/app/src/main/java/c/i/a/f/h/l/c7.java +++ b/app/src/main/java/c/i/a/f/h/l/c7.java @@ -12,7 +12,7 @@ public final class c7 { public int b; /* renamed from: c reason: collision with root package name */ - public int[] f1098c; + public int[] f1099c; public Object[] d; public int e; public boolean f; @@ -24,7 +24,7 @@ public final class c7 { public c7(int i, int[] iArr, Object[] objArr, boolean z2) { this.e = -1; this.b = i; - this.f1098c = iArr; + this.f1099c = iArr; this.d = objArr; this.f = z2; } @@ -58,13 +58,13 @@ public final class c7 { public final void a(int i, Object obj) { if (this.f) { int i2 = this.b; - int[] iArr = this.f1098c; + int[] iArr = this.f1099c; if (i2 == iArr.length) { int i3 = i2 + (i2 < 4 ? 8 : i2 >> 1); - this.f1098c = Arrays.copyOf(iArr, i3); + this.f1099c = Arrays.copyOf(iArr, i3); this.d = Arrays.copyOf(this.d, i3); } - int[] iArr2 = this.f1098c; + int[] iArr2 = this.f1099c; int i4 = this.b; iArr2[i4] = i; this.d[i4] = obj; @@ -78,7 +78,7 @@ public final class c7 { if (this.b != 0) { Objects.requireNonNull(v7Var); for (int i = 0; i < this.b; i++) { - b(this.f1098c[i], this.d[i], v7Var); + b(this.f1099c[i], this.d[i], v7Var); } } } @@ -91,7 +91,7 @@ public final class c7 { } int i3 = 0; for (int i4 = 0; i4 < this.b; i4++) { - int i5 = this.f1098c[i4]; + int i5 = this.f1099c[i4]; int i6 = i5 >>> 3; int i7 = i5 & 7; if (i7 == 0) { @@ -128,8 +128,8 @@ public final class c7 { c7 c7Var = (c7) obj; int i = this.b; if (i == c7Var.b) { - int[] iArr = this.f1098c; - int[] iArr2 = c7Var.f1098c; + int[] iArr = this.f1099c; + int[] iArr2 = c7Var.f1099c; int i2 = 0; while (true) { if (i2 >= i) { @@ -169,7 +169,7 @@ public final class c7 { public final int hashCode() { int i = this.b; int i2 = (i + 527) * 31; - int[] iArr = this.f1098c; + int[] iArr = this.f1099c; int i3 = 17; int i4 = 17; for (int i5 = 0; i5 < i; i5++) { diff --git a/app/src/main/java/c/i/a/f/h/l/d5.java b/app/src/main/java/c/i/a/f/h/l/d5.java index a62b98b723..1272a3f2b0 100644 --- a/app/src/main/java/c/i/a/f/h/l/d5.java +++ b/app/src/main/java/c/i/a/f/h/l/d5.java @@ -3,7 +3,7 @@ package c.i.a.f.h.l; public final class d5 extends h5 { /* renamed from: c reason: collision with root package name */ - public static final /* synthetic */ int f1099c = 0; + public static final /* synthetic */ int f1100c = 0; @Override // c.i.a.f.h.l.h5 public final boolean equals(Object obj) { diff --git a/app/src/main/java/c/i/a/f/h/l/e6.java b/app/src/main/java/c/i/a/f/h/l/e6.java index 86b4e7419a..9e3f3c7a76 100644 --- a/app/src/main/java/c/i/a/f/h/l/e6.java +++ b/app/src/main/java/c/i/a/f/h/l/e6.java @@ -20,7 +20,7 @@ public final class e6 implements q6 { public static final Unsafe b = j7.k(); /* renamed from: c reason: collision with root package name */ - public final int[] f1101c; + public final int[] f1102c; public final Object[] d; public final int e; public final int f; @@ -38,7 +38,7 @@ public final class e6 implements q6 { /* JADX WARN: Incorrect args count in method signature: ([I[Ljava/lang/Object;IILc/i/a/f/h/l/c6;ZZ[IIILc/i/a/f/h/l/i6;Lc/i/a/f/h/l/m5;Lc/i/a/f/h/l/d7<**>;Lc/i/a/f/h/l/j4<*>;Lc/i/a/f/h/l/v5;)V */ public e6(int[] iArr, Object[] objArr, int i, int i2, c6 c6Var, boolean z2, int[] iArr2, int i3, int i4, i6 i6Var, m5 m5Var, d7 d7Var, j4 j4Var, v5 v5Var) { - this.f1101c = iArr; + this.f1102c = iArr; this.d = objArr; this.e = i; this.f = i2; @@ -333,7 +333,7 @@ public final class e6 implements q6 { i33 = i57; } Unsafe unsafe = b; - Object[] objArr2 = o6Var2.f1126c; + Object[] objArr2 = o6Var2.f1127c; Class cls = o6Var2.a.getClass(); int[] iArr2 = new int[(i4 * 3)]; Object[] objArr3 = new Object[(i4 << 1)]; @@ -578,7 +578,7 @@ public final class e6 implements q6 { } String name = cls.getName(); String arrays = Arrays.toString(declaredFields); - throw new RuntimeException(a.H(a.O(a.b(arrays, name.length() + a.b(str, 40)), "Field ", str, " for ", name), " not found. Known fields are ", arrays)); + throw new RuntimeException(a.G(a.N(a.b(arrays, name.length() + a.b(str, 40)), "Field ", str, " for ", name), " not found. Known fields are ", arrays)); } } @@ -607,7 +607,7 @@ public final class e6 implements q6 { } public final void B(T t, int i) { - int i2 = this.f1101c[i + 2]; + int i2 = this.f1102c[i + 2]; long j = (long) (1048575 & i2); if (j != 1048575) { j7.e.e(t, j, (1 << (i2 >>> 20)) | j7.b(t, j)); @@ -615,7 +615,7 @@ public final class e6 implements q6 { } public final void C(T t, int i, int i2) { - j7.e.e(t, (long) (this.f1101c[i2 + 2] & 1048575), i); + j7.e.e(t, (long) (this.f1102c[i2 + 2] & 1048575), i); } /* JADX WARNING: Removed duplicated region for block: B:168:0x0527 */ @@ -631,13 +631,13 @@ public final class e6 implements q6 { if (!b2.b.isEmpty()) { it = b2.l(); entry = it.next(); - length = this.f1101c.length; + length = this.f1102c.length; Unsafe unsafe = b; int i3 = 1048575; int i4 = 0; for (i = 0; i < length; i += 3) { int I = I(i); - int[] iArr = this.f1101c; + int[] iArr = this.f1102c; int i5 = iArr[i]; int i6 = (I & 267386880) >>> 20; if (i6 <= 17) { @@ -765,100 +765,100 @@ public final class e6 implements q6 { continue; } case 18: - s6.h(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.h(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 19: - s6.q(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.q(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 20: - s6.u(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.u(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 21: - s6.x(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.x(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 22: - s6.J(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.J(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 23: - s6.D(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.D(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 24: - s6.O(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.O(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 25: - s6.R(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.R(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 26: - s6.f(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var); + s6.f(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var); break; case 27: - s6.g(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, o(i)); + s6.g(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, o(i)); break; case 28: - s6.o(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var); + s6.o(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var); break; case 29: - s6.M(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.M(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 30: - s6.Q(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.Q(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 31: - s6.P(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.P(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 32: - s6.G(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.G(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 33: - s6.N(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.N(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 34: - s6.A(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, false); + s6.A(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, false); break; case 35: - s6.h(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.h(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 36: - s6.q(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.q(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 37: - s6.u(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.u(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 38: - s6.x(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.x(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 39: - s6.J(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.J(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 40: - s6.D(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.D(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 41: - s6.O(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.O(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 42: - s6.R(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.R(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 43: - s6.M(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.M(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 44: - s6.Q(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.Q(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 45: - s6.P(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.P(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 46: - s6.G(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.G(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 47: - s6.N(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.N(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 48: - s6.A(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, true); + s6.A(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, true); break; case 49: - s6.p(this.f1101c[i], (List) unsafe.getObject(t, j), v7Var, o(i)); + s6.p(this.f1102c[i], (List) unsafe.getObject(t, j), v7Var, o(i)); break; case 50: t(v7Var, i5, unsafe.getObject(t, j), i); @@ -982,7 +982,7 @@ public final class e6 implements q6 { } it = null; entry = null; - length = this.f1101c.length; + length = this.f1102c.length; Unsafe unsafe = b; int i3 = 1048575; int i4 = 0; @@ -994,7 +994,7 @@ public final class e6 implements q6 { } public final void E(T t, T t2, int i) { - int[] iArr = this.f1101c; + int[] iArr = this.f1102c; int i2 = iArr[i + 1]; int i3 = iArr[i]; long j = (long) (i2 & 1048575); @@ -1023,11 +1023,11 @@ public final class e6 implements q6 { } public final int I(int i) { - return this.f1101c[i + 1]; + return this.f1102c[i + 1]; } public final int K(int i) { - return this.f1101c[i + 2]; + return this.f1102c[i + 2]; } @Override // c.i.a.f.h.l.q6 @@ -1039,11 +1039,11 @@ public final class e6 implements q6 { public final int b(T t) { int i; int i2; - int length = this.f1101c.length; + int length = this.f1102c.length; int i3 = 0; for (int i4 = 0; i4 < length; i4 += 3) { int I = I(i4); - int i5 = this.f1101c[i4]; + int i5 = this.f1102c[i4]; long j = (long) (1048575 & I); int i6 = 37; switch ((I & 267386880) >>> 20) { @@ -1367,9 +1367,9 @@ public final class e6 implements q6 { return !this.h || this.p.b(t).m(); } int i6 = this.j[i5]; - int i7 = this.f1101c[i6]; + int i7 = this.f1102c[i6]; int I = I(i6); - int i8 = this.f1101c[i6 + 2]; + int i8 = this.f1102c[i6 + 2]; int i9 = i8 & 1048575; int i10 = 1 << (i8 >>> 20); if (i9 != i3) { @@ -1467,13 +1467,13 @@ public final class e6 implements q6 { if (this.i) { Unsafe unsafe = b; int i10 = 0; - for (int i11 = 0; i11 < this.f1101c.length; i11 += 3) { + for (int i11 = 0; i11 < this.f1102c.length; i11 += 3) { int I = I(i11); int i12 = (I & 267386880) >>> 20; - int i13 = this.f1101c[i11]; + int i13 = this.f1102c[i11]; long j = (long) (I & 1048575); if (i12 >= o4.DOUBLE_LIST_PACKED.a() && i12 <= o4.SINT64_LIST_PACKED.a()) { - int i14 = this.f1101c[i11 + 2]; + int i14 = this.f1102c[i11 + 2]; } switch (i12) { case 0: @@ -1995,9 +1995,9 @@ public final class e6 implements q6 { int i15 = 0; int i16 = 1048575; int i17 = 0; - for (int i18 = 0; i18 < this.f1101c.length; i18 += 3) { + for (int i18 = 0; i18 < this.f1102c.length; i18 += 3) { int I2 = I(i18); - int[] iArr = this.f1101c; + int[] iArr = this.f1102c; int i19 = iArr[i18]; int i20 = (I2 & 267386880) >>> 20; if (i20 <= 17) { @@ -2600,7 +2600,7 @@ public final class e6 implements q6 { */ @Override // c.i.a.f.h.l.q6 public final boolean f(T t, T t2) { - int length = this.f1101c.length; + int length = this.f1102c.length; int i = 0; while (true) { boolean z2 = true; @@ -2808,10 +2808,10 @@ public final class e6 implements q6 { if (!b2.b.isEmpty()) { it = b2.l(); entry = it.next(); - length = this.f1101c.length; + length = this.f1102c.length; for (i = 0; i < length; i += 3) { int I = I(i); - int i2 = this.f1101c[i]; + int i2 = this.f1102c[i]; while (entry != null && this.p.a(entry) <= i2) { this.p.d(v7Var, entry); entry = it.hasNext() ? it.next() : null; @@ -2944,100 +2944,100 @@ public final class e6 implements q6 { break; } case 18: - s6.h(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.h(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 19: - s6.q(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.q(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 20: - s6.u(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.u(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 21: - s6.x(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.x(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 22: - s6.J(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.J(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 23: - s6.D(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.D(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 24: - s6.O(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.O(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 25: - s6.R(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.R(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 26: - s6.f(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var); + s6.f(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var); break; case 27: - s6.g(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, o(i)); + s6.g(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, o(i)); break; case 28: - s6.o(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var); + s6.o(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var); break; case 29: - s6.M(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.M(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 30: - s6.Q(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.Q(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 31: - s6.P(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.P(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 32: - s6.G(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.G(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 33: - s6.N(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.N(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 34: - s6.A(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); + s6.A(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, false); break; case 35: - s6.h(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.h(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 36: - s6.q(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.q(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 37: - s6.u(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.u(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 38: - s6.x(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.x(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 39: - s6.J(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.J(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 40: - s6.D(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.D(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 41: - s6.O(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.O(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 42: - s6.R(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.R(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 43: - s6.M(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.M(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 44: - s6.Q(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.Q(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 45: - s6.P(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.P(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 46: - s6.G(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.G(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 47: - s6.N(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.N(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 48: - s6.A(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); + s6.A(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, true); break; case 49: - s6.p(this.f1101c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, o(i)); + s6.p(this.f1102c[i], (List) j7.r(t, (long) (I & 1048575)), v7Var, o(i)); break; case 50: t(v7Var, i2, j7.r(t, (long) (I & 1048575)), i); @@ -3180,7 +3180,7 @@ public final class e6 implements q6 { } it = null; entry = null; - length = this.f1101c.length; + length = this.f1102c.length; while (i < length) { } while (entry != null) { @@ -3270,7 +3270,7 @@ public final class e6 implements q6 { i5 = i26; i6 = 0; } else { - int[] iArr = e6Var5.f1101c; + int[] iArr = e6Var5.f1102c; int i29 = iArr[i4 + 1]; int i30 = (i29 & 267386880) >>> 20; long j = (long) (i29 & 1048575); @@ -3472,7 +3472,7 @@ public final class e6 implements q6 { t4 = t7; if (i27 == 2) { i20 = (536870912 & i29) == 0 ? c.a1(bArr3, i3, s3Var4) : c.b1(bArr3, i3, s3Var4); - unsafe2.putObject(t4, j, s3Var4.f1137c); + unsafe2.putObject(t4, j, s3Var4.f1138c); s3Var3 = s3Var4; e6Var3 = e6Var6; t3 = t4; @@ -3503,9 +3503,9 @@ public final class e6 implements q6 { i20 = c.y0(o, bArr3, i3, i2, s3Var4); Object object = unsafe2.getObject(t4, j); if (object == null) { - unsafe2.putObject(t4, j, s3Var4.f1137c); + unsafe2.putObject(t4, j, s3Var4.f1138c); } else { - unsafe2.putObject(t4, j, w4.c(object, s3Var4.f1137c)); + unsafe2.putObject(t4, j, w4.c(object, s3Var4.f1138c)); } s3Var3 = s3Var4; e6Var3 = e6Var6; @@ -3537,7 +3537,7 @@ public final class e6 implements q6 { break; } else { i20 = c.c1(bArr3, i3, s3Var6); - unsafe2.putObject(t6, j, s3Var6.f1137c); + unsafe2.putObject(t6, j, s3Var6.f1138c); i24 |= i32; i17 = i2; e6Var2 = e6Var4; @@ -3778,10 +3778,10 @@ public final class e6 implements q6 { @Override // c.i.a.f.h.l.q6 public final void i(T t, T t2) { Objects.requireNonNull(t2); - for (int i = 0; i < this.f1101c.length; i += 3) { + for (int i = 0; i < this.f1102c.length; i += 3) { int I = I(i); long j = (long) (1048575 & I); - int i2 = this.f1101c[i]; + int i2 = this.f1102c[i]; switch ((I & 267386880) >>> 20) { case 0: if (v(t2, i)) { @@ -4005,7 +4005,7 @@ public final class e6 implements q6 { public final int j(T t, byte[] bArr, int i, int i2, int i3, int i4, int i5, int i6, int i7, long j, int i8, s3 s3Var) throws IOException { int i9; Unsafe unsafe = b; - long j2 = (long) (this.f1101c[i8 + 2] & 1048575); + long j2 = (long) (this.f1102c[i8 + 2] & 1048575); boolean z2 = true; switch (i7) { case 51: @@ -4092,9 +4092,9 @@ public final class e6 implements q6 { int y0 = c.y0(o(i8), bArr, i, i2, s3Var); Object object = unsafe.getInt(t, j2) == i4 ? unsafe.getObject(t, j) : null; if (object == null) { - unsafe.putObject(t, j, s3Var.f1137c); + unsafe.putObject(t, j, s3Var.f1138c); } else { - unsafe.putObject(t, j, w4.c(object, s3Var.f1137c)); + unsafe.putObject(t, j, w4.c(object, s3Var.f1138c)); } unsafe.putInt(t, j2, i4); return y0; @@ -4103,7 +4103,7 @@ public final class e6 implements q6 { case 61: if (i5 == 2) { i9 = c.c1(bArr, i, s3Var); - unsafe.putObject(t, j, s3Var.f1137c); + unsafe.putObject(t, j, s3Var.f1138c); unsafe.putInt(t, j2, i4); return i9; } @@ -4144,9 +4144,9 @@ public final class e6 implements q6 { i9 = c.x0(o(i8), bArr, i, i2, (i3 & -8) | 4, s3Var); Object object2 = unsafe.getInt(t, j2) == i4 ? unsafe.getObject(t, j) : null; if (object2 == null) { - unsafe.putObject(t, j, s3Var.f1137c); + unsafe.putObject(t, j, s3Var.f1138c); } else { - unsafe.putObject(t, j, w4.c(object2, s3Var.f1137c)); + unsafe.putObject(t, j, w4.c(object2, s3Var.f1138c)); } unsafe.putInt(t, j2, i4); return i9; @@ -4335,7 +4335,7 @@ public final class e6 implements q6 { i24 = i6; } } else { - int[] iArr = e6Var2.f1101c; + int[] iArr = e6Var2.f1102c; int i29 = iArr[i4 + 1]; int i30 = (i29 & 267386880) >>> 20; long j2 = (long) (i29 & 1048575); @@ -4670,7 +4670,7 @@ public final class e6 implements q6 { i13 = i4; if (i28 == 2) { i20 = (536870912 & i29) == 0 ? c.a1(bArr2, i26, s3Var3) : c.b1(bArr2, i26, s3Var3); - unsafe2.putObject(t5, j, s3Var3.f1137c); + unsafe2.putObject(t5, j, s3Var3.f1138c); i18 = i7 | i32; i19 = i2; b10 = b8; @@ -4715,9 +4715,9 @@ public final class e6 implements q6 { if (i28 == 2) { i20 = c.y0(e6Var2.o(i13), bArr2, i26, i2, s3Var3); if ((i7 & i32) == 0) { - unsafe2.putObject(t5, j, s3Var3.f1137c); + unsafe2.putObject(t5, j, s3Var3.f1138c); } else { - unsafe2.putObject(t5, j, w4.c(unsafe2.getObject(t5, j), s3Var3.f1137c)); + unsafe2.putObject(t5, j, w4.c(unsafe2.getObject(t5, j), s3Var3.f1138c)); } i18 = i7 | i32; i19 = i2; @@ -4762,7 +4762,7 @@ public final class e6 implements q6 { i13 = i4; if (i28 == 2) { i20 = c.c1(bArr2, i26, s3Var3); - unsafe2.putObject(t5, j, s3Var3.f1137c); + unsafe2.putObject(t5, j, s3Var3.f1138c); b5 = b9; i7 |= i32; i24 = i17; @@ -4944,9 +4944,9 @@ public final class e6 implements q6 { if (i28 == 3) { i20 = c.x0(e6Var2.o(i4), bArr, i26, i2, (i27 << 3) | 4, s3Var); if ((i7 & i32) == 0) { - unsafe2.putObject(t5, j, s3Var3.f1137c); + unsafe2.putObject(t5, j, s3Var3.f1138c); } else { - unsafe2.putObject(t5, j, w4.c(unsafe2.getObject(t5, j), s3Var3.f1137c)); + unsafe2.putObject(t5, j, w4.c(unsafe2.getObject(t5, j), s3Var3.f1138c)); } i18 = i7 | i32; i19 = i2; @@ -5176,7 +5176,7 @@ public final class e6 implements q6 { for (int i35 = e6Var.k; i35 < e6Var.l; i35++) { int i36 = e6Var.j[i35]; d7 d7Var = e6Var.o; - int[] iArr2 = e6Var.f1101c; + int[] iArr2 = e6Var.f1102c; int i37 = iArr2[i36]; Object r = j7.r(t2, (long) (iArr2[i36 + 1] & 1048575)); if (r != null) { @@ -5241,7 +5241,7 @@ public final class e6 implements q6 { } public final void u(T t, T t2, int i) { - long j = (long) (this.f1101c[i + 1] & 1048575); + long j = (long) (this.f1102c[i + 1] & 1048575); if (v(t2, i)) { Object r = j7.r(t, j); Object r2 = j7.r(t2, j); @@ -5256,7 +5256,7 @@ public final class e6 implements q6 { } public final boolean v(T t, int i) { - int[] iArr = this.f1101c; + int[] iArr = this.f1102c; int i2 = iArr[i + 2]; long j = (long) (i2 & 1048575); if (j == 1048575) { @@ -5315,7 +5315,7 @@ public final class e6 implements q6 { } public final boolean w(T t, int i, int i2) { - return j7.b(t, (long) (this.f1101c[i2 + 2] & 1048575)) == i; + return j7.b(t, (long) (this.f1102c[i2 + 2] & 1048575)) == i; } public final boolean x(T t, int i, int i2, int i3, int i4) { @@ -5323,11 +5323,11 @@ public final class e6 implements q6 { } public final int z(int i, int i2) { - int length = (this.f1101c.length / 3) - 1; + int length = (this.f1102c.length / 3) - 1; while (i2 <= length) { int i3 = (length + i2) >>> 1; int i4 = i3 * 3; - int i5 = this.f1101c[i4]; + int i5 = this.f1102c[i4]; if (i == i5) { return i4; } diff --git a/app/src/main/java/c/i/a/f/h/l/f5.java b/app/src/main/java/c/i/a/f/h/l/f5.java index 91136cf49f..5254dc3e4f 100644 --- a/app/src/main/java/c/i/a/f/h/l/f5.java +++ b/app/src/main/java/c/i/a/f/h/l/f5.java @@ -19,7 +19,7 @@ public final class f5 implements Map.Entry { if (this.i.getValue() == null) { return null; } - int i = d5.f1099c; + int i = d5.f1100c; throw new NoSuchMethodError(); } diff --git a/app/src/main/java/c/i/a/f/h/l/f7.java b/app/src/main/java/c/i/a/f/h/l/f7.java index c501724d2a..26cdaaa7b6 100644 --- a/app/src/main/java/c/i/a/f/h/l/f7.java +++ b/app/src/main/java/c/i/a/f/h/l/f7.java @@ -43,7 +43,7 @@ public final class f7 extends d7 { Objects.requireNonNull(c7Var2); Objects.requireNonNull(v7Var); for (int i = 0; i < c7Var2.b; i++) { - ((g4) v7Var).c(c7Var2.f1098c[i] >>> 3, c7Var2.d[i]); + ((g4) v7Var).c(c7Var2.f1099c[i] >>> 3, c7Var2.d[i]); } } @@ -57,8 +57,8 @@ public final class f7 extends d7 { return c7Var3; } int i = c7Var3.b + c7Var4.b; - int[] copyOf = Arrays.copyOf(c7Var3.f1098c, i); - System.arraycopy(c7Var4.f1098c, 0, copyOf, c7Var3.b, c7Var4.b); + int[] copyOf = Arrays.copyOf(c7Var3.f1099c, i); + System.arraycopy(c7Var4.f1099c, 0, copyOf, c7Var3.b, c7Var4.b); Object[] copyOf2 = Arrays.copyOf(c7Var3.d, i); System.arraycopy(c7Var4.d, 0, copyOf2, c7Var3.b, c7Var4.b); return new c7(i, copyOf, copyOf2, true); @@ -79,7 +79,7 @@ public final class f7 extends d7 { } int i2 = 0; for (int i3 = 0; i3 < c7Var2.b; i3++) { - int M = zzhi.M(2, c7Var2.f1098c[i3] >>> 3); + int M = zzhi.M(2, c7Var2.f1099c[i3] >>> 3); i2 += zzhi.w(3, (t3) c7Var2.d[i3]) + M + (zzhi.L(8) << 1); } c7Var2.e = i2; diff --git a/app/src/main/java/c/i/a/f/h/l/g.java b/app/src/main/java/c/i/a/f/h/l/g.java index abc01b5b3a..38e89d2dcd 100644 --- a/app/src/main/java/c/i/a/f/h/l/g.java +++ b/app/src/main/java/c/i/a/f/h/l/g.java @@ -14,7 +14,6 @@ import android.util.Pair; import androidx.annotation.GuardedBy; import c.i.a.f.e.o.d; import c.i.a.f.i.b.z5; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.ArrayList; import java.util.List; import java.util.Objects; @@ -29,7 +28,7 @@ public class g { public static Boolean b; /* renamed from: c reason: collision with root package name */ - public final String f1102c; + public final String f1103c; public final c.i.a.f.e.o.b d; public final ExecutorService e; public final c.i.a.f.i.a.a f; @@ -152,9 +151,9 @@ public class g { boolean z3; boolean z4; if (str == null || !e(str2, str3)) { - this.f1102c = "FA"; + this.f1103c = "FA"; } else { - this.f1102c = str; + this.f1103c = str; } this.d = d.a; ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(1, 1, 60, TimeUnit.SECONDS, new LinkedBlockingQueue(), new o()); @@ -177,22 +176,22 @@ public class g { z3 = false; if (!z3) { this.i = true; - Log.w(this.f1102c, "Disabling data collection. Found google_app_id in strings.xml but Google Analytics for Firebase is missing. Remove this value or add Google Analytics for Firebase to resume data collection."); + Log.w(this.f1103c, "Disabling data collection. Found google_app_id in strings.xml but Google Analytics for Firebase is missing. Remove this value or add Google Analytics for Firebase to resume data collection."); return; } if (!e(str2, str3)) { if (str2 == null || str3 == null) { if ((str2 == null) ^ (str3 != null ? false : z5)) { - Log.w(this.f1102c, "Specified origin or custom app id is null. Both parameters will be ignored."); + Log.w(this.f1103c, "Specified origin or custom app id is null. Both parameters will be ignored."); } } else { - Log.v(this.f1102c, "Deferring to Google Analytics for Firebase for event data collection. https://goo.gl/J1sWQy"); + Log.v(this.f1103c, "Deferring to Google Analytics for Firebase for event data collection. https://goo.gl/J1sWQy"); } } this.e.execute(new j(this, str2, str3, context, bundle)); Application application = (Application) context.getApplicationContext(); if (application == null) { - Log.w(this.f1102c, "Unable to register lifecycle notifications. Application null."); + Log.w(this.f1103c, "Unable to register lifecycle notifications. Application null."); return; } else { application.registerActivityLifecycleCallbacks(new b()); @@ -233,7 +232,7 @@ public class g { synchronized (g.class) { try { if (b == null) { - AnimatableValueParser.w("app_measurement_internal_disable_startup_flags"); + c.c.a.a0.d.w("app_measurement_internal_disable_startup_flags"); try { ApplicationInfo a2 = c.i.a.f.e.p.b.a(context).a(context.getPackageName(), 128); if (a2 != null) { @@ -284,13 +283,13 @@ public class g { public final void b(Exception exc, boolean z2, boolean z3) { this.i |= z2; if (z2) { - Log.w(this.f1102c, "Data collection startup failed. No data will be collected.", exc); + Log.w(this.f1103c, "Data collection startup failed. No data will be collected.", exc); return; } if (z3) { this.e.execute(new y(this, "Error with data collection. Data lost.", exc)); } - Log.w(this.f1102c, "Error with data collection. Data lost.", exc); + Log.w(this.f1103c, "Error with data collection. Data lost.", exc); } public final void c(String str, String str2, Bundle bundle, boolean z2, boolean z3, Long l) { diff --git a/app/src/main/java/c/i/a/f/h/l/g4.java b/app/src/main/java/c/i/a/f/h/l/g4.java index 17c70b5098..e080cdb4cf 100644 --- a/app/src/main/java/c/i/a/f/h/l/g4.java +++ b/app/src/main/java/c/i/a/f/h/l/g4.java @@ -11,7 +11,7 @@ public final class g4 implements v7 { public g4(zzhi zzhi) { Charset charset = w4.a; this.a = zzhi; - zzhi.f2371c = this; + zzhi.f2374c = this; } public final void a(int i, double d) throws IOException { @@ -41,7 +41,7 @@ public final class g4 implements v7 { public final void e(int i, Object obj, q6 q6Var) throws IOException { zzhi zzhi = this.a; zzhi.f(i, 3); - q6Var.g((c6) obj, zzhi.f2371c); + q6Var.g((c6) obj, zzhi.f2374c); zzhi.f(i, 4); } diff --git a/app/src/main/java/c/i/a/f/h/l/g6.java b/app/src/main/java/c/i/a/f/h/l/g6.java index a14fe13dc1..5d4823a914 100644 --- a/app/src/main/java/c/i/a/f/h/l/g6.java +++ b/app/src/main/java/c/i/a/f/h/l/g6.java @@ -12,12 +12,12 @@ public final class g6 implements q6 { public final d7 b; /* renamed from: c reason: collision with root package name */ - public final boolean f1103c; + public final boolean f1104c; public final j4 d; public g6(d7 d7Var, j4 j4Var, c6 c6Var) { this.b = d7Var; - this.f1103c = j4Var.e(c6Var); + this.f1104c = j4Var.e(c6Var); this.d = j4Var; this.a = c6Var; } @@ -30,7 +30,7 @@ public final class g6 implements q6 { @Override // c.i.a.f.h.l.q6 public final int b(T t) { int hashCode = this.b.e(t).hashCode(); - return this.f1103c ? (hashCode * 53) + this.d.b(t).hashCode() : hashCode; + return this.f1104c ? (hashCode * 53) + this.d.b(t).hashCode() : hashCode; } @Override // c.i.a.f.h.l.q6 @@ -48,7 +48,7 @@ public final class g6 implements q6 { public final int e(T t) { d7 d7Var = this.b; int i = d7Var.i(d7Var.e(t)) + 0; - if (!this.f1103c) { + if (!this.f1104c) { return i; } n4 b = this.d.b(t); @@ -67,7 +67,7 @@ public final class g6 implements q6 { if (!this.b.e(t).equals(this.b.e(t2))) { return false; } - if (this.f1103c) { + if (this.f1104c) { return this.d.b(t).equals(this.d.b(t2)); } return true; @@ -119,7 +119,7 @@ public final class g6 implements q6 { throw new NoSuchMethodError(); } else if (i7 == 2) { A0 = c.c1(bArr, A0, s3Var); - t3Var = (t3) s3Var.f1137c; + t3Var = (t3) s3Var.f1138c; } } } else if (i7 == 0) { @@ -158,7 +158,7 @@ public final class g6 implements q6 { d7 d7Var = this.b; Class cls = s6.a; d7Var.d(t, d7Var.g(d7Var.e(t), d7Var.e(t2))); - if (this.f1103c) { + if (this.f1104c) { s6.i(this.d, t, t2); } } diff --git a/app/src/main/java/c/i/a/f/h/l/ga.java b/app/src/main/java/c/i/a/f/h/l/ga.java index 8a047a1b5f..9f160e0f45 100644 --- a/app/src/main/java/c/i/a/f/h/l/ga.java +++ b/app/src/main/java/c/i/a/f/h/l/ga.java @@ -5,13 +5,13 @@ public final class ga implements ha { public static final l2 b; /* renamed from: c reason: collision with root package name */ - public static final l2 f1104c; + public static final l2 f1105c; static { q2 q2Var = new q2(i2.a("com.google.android.gms.measurement")); a = q2Var.c("measurement.client.global_params", true); b = q2Var.c("measurement.service.global_params_in_payload", true); - f1104c = q2Var.c("measurement.service.global_params", true); + f1105c = q2Var.c("measurement.service.global_params", true); q2Var.a("measurement.id.service.global_params", 0); } @@ -32,6 +32,6 @@ public final class ga implements ha { @Override // c.i.a.f.h.l.ha public final boolean d() { - return f1104c.d().booleanValue(); + return f1105c.d().booleanValue(); } } diff --git a/app/src/main/java/c/i/a/f/h/l/h.java b/app/src/main/java/c/i/a/f/h/l/h.java index be602865fe..e89a36eb7c 100644 --- a/app/src/main/java/c/i/a/f/h/l/h.java +++ b/app/src/main/java/c/i/a/f/h/l/h.java @@ -3,14 +3,14 @@ package c.i.a.f.h.l; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.measurement.zzae; /* compiled from: com.google.android.gms:play-services-measurement-base@@18.0.0 */ public final class h implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzae createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); long j = 0; long j2 = 0; String str = null; @@ -18,36 +18,36 @@ public final class h implements Parcelable.Creator { String str3 = null; Bundle bundle = null; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); break; case 2: - j2 = AnimatableValueParser.k2(parcel, readInt); + j2 = d.H1(parcel, readInt); break; case 3: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 4: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 5: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 6: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; case 7: - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzae(j, j2, z2, str, str2, str3, bundle); } diff --git a/app/src/main/java/c/i/a/f/h/l/h4.java b/app/src/main/java/c/i/a/f/h/l/h4.java index 1852a9d265..d6c8965cdc 100644 --- a/app/src/main/java/c/i/a/f/h/l/h4.java +++ b/app/src/main/java/c/i/a/f/h/l/h4.java @@ -10,7 +10,7 @@ public class h4 { public static volatile h4 b; /* renamed from: c reason: collision with root package name */ - public static final h4 f1105c = new h4(true); + public static final h4 f1106c = new h4(true); public final Map> d; /* compiled from: com.google.android.gms:play-services-measurement-base@@18.0.0 */ @@ -50,7 +50,7 @@ public class h4 { synchronized (h4.class) { h4Var = a; if (h4Var == null) { - h4Var = f1105c; + h4Var = f1106c; a = h4Var; } } diff --git a/app/src/main/java/c/i/a/f/h/l/h9.java b/app/src/main/java/c/i/a/f/h/l/h9.java index ab95e07b0d..e762aa6ed8 100644 --- a/app/src/main/java/c/i/a/f/h/l/h9.java +++ b/app/src/main/java/c/i/a/f/h/l/h9.java @@ -5,14 +5,14 @@ public final class h9 implements e9 { public static final l2 b; /* renamed from: c reason: collision with root package name */ - public static final l2 f1106c; + public static final l2 f1107c; static { q2 q2Var = new q2(i2.a("com.google.android.gms.measurement")); q2Var.c("measurement.service.audience.fix_skip_audience_with_failed_filters", true); a = q2Var.c("measurement.audience.refresh_event_count_filters_timestamp", false); b = q2Var.c("measurement.audience.use_bundle_end_timestamp_for_non_sequence_property_filters", false); - f1106c = q2Var.c("measurement.audience.use_bundle_timestamp_for_event_count_filters", false); + f1107c = q2Var.c("measurement.audience.use_bundle_timestamp_for_event_count_filters", false); } @Override // c.i.a.f.h.l.e9 @@ -32,6 +32,6 @@ public final class h9 implements e9 { @Override // c.i.a.f.h.l.e9 public final boolean d() { - return f1106c.d().booleanValue(); + return f1107c.d().booleanValue(); } } diff --git a/app/src/main/java/c/i/a/f/h/l/j.java b/app/src/main/java/c/i/a/f/h/l/j.java index 94ce99b2ac..f28d87ba22 100644 --- a/app/src/main/java/c/i/a/f/h/l/j.java +++ b/app/src/main/java/c/i/a/f/h/l/j.java @@ -45,7 +45,7 @@ public final class j extends g.a { if (g.e(this.m, this.n)) { str = this.n; str2 = this.m; - str3 = this.q.f1102c; + str3 = this.q.f1103c; } else { str3 = null; str2 = null; @@ -70,7 +70,7 @@ public final class j extends g.a { ecVar = dc.asInterface(DynamiteModule.c(context, aVar, ModuleDescriptor.MODULE_ID).b("com.google.android.gms.measurement.internal.AppMeasurementDynamiteService")); gVar.j = ecVar; if (this.q.j != null) { - Log.w(this.q.f1102c, "Failed to connect to measurement client."); + Log.w(this.q.f1103c, "Failed to connect to measurement client."); return; } int a = DynamiteModule.a(this.o, ModuleDescriptor.MODULE_ID); diff --git a/app/src/main/java/c/i/a/f/h/l/j7.java b/app/src/main/java/c/i/a/f/h/l/j7.java index 36e88f3083..3217bc7458 100644 --- a/app/src/main/java/c/i/a/f/h/l/j7.java +++ b/app/src/main/java/c/i/a/f/h/l/j7.java @@ -13,7 +13,7 @@ public final class j7 { public static final Class b = q3.a; /* renamed from: c reason: collision with root package name */ - public static final boolean f1107c; + public static final boolean f1108c; public static final boolean d; public static final c e; public static final boolean f; @@ -253,7 +253,7 @@ public final class j7 { a = k; Class cls = Long.TYPE; boolean p = p(cls); - f1107c = p; + f1108c = p; Class cls2 = Integer.TYPE; boolean p2 = p(cls2); d = p2; diff --git a/app/src/main/java/c/i/a/f/h/l/l2.java b/app/src/main/java/c/i/a/f/h/l/l2.java index 48ad2237bc..0155220300 100644 --- a/app/src/main/java/c/i/a/f/h/l/l2.java +++ b/app/src/main/java/c/i/a/f/h/l/l2.java @@ -13,7 +13,7 @@ public abstract class l2 { public static volatile t2 b; /* renamed from: c reason: collision with root package name */ - public static u2 f1108c = new u2(n2.a); + public static u2 f1109c = new u2(n2.a); public static final AtomicInteger d = new AtomicInteger(); public final q2 e; public final String f; @@ -64,7 +64,7 @@ public abstract class l2 { Object g; boolean z2 = true; if (!this.j) { - u2 u2Var = f1108c; + u2 u2Var = f1109c; String str = this.f; Objects.requireNonNull(u2Var); Objects.requireNonNull(str, "flagName must not be null"); @@ -77,7 +77,7 @@ public abstract class l2 { t2 t2Var = b; c.Z0(t2Var != null, "Must call PhenotypeFlag.init() first"); String str2 = (String) c2.a(t2Var.a()).g("gms:phenotype:phenotype_flag:debug_bypass_phenotype"); - if (str2 == null || !u1.f1139c.matcher(str2).matches()) { + if (str2 == null || !u1.f1140c.matcher(str2).matches()) { z2 = false; } String str3 = null; diff --git a/app/src/main/java/c/i/a/f/h/l/l3.java b/app/src/main/java/c/i/a/f/h/l/l3.java index 5d4751ed5c..d671c1a0bd 100644 --- a/app/src/main/java/c/i/a/f/h/l/l3.java +++ b/app/src/main/java/c/i/a/f/h/l/l3.java @@ -90,9 +90,9 @@ public abstract class l3, Build throw new IllegalStateException("Did not write as much data as expected."); } catch (IOException e) { String name = getClass().getName(); - StringBuilder O = a.O(name.length() + 62 + 10, "Serializing ", name, " to a ", "ByteString"); - O.append(" threw an IOException (should never happen)."); - throw new RuntimeException(O.toString(), e); + StringBuilder N = a.N(name.length() + 62 + 10, "Serializing ", name, " to a ", "ByteString"); + N.append(" threw an IOException (should never happen)."); + throw new RuntimeException(N.toString(), e); } } @@ -110,9 +110,9 @@ public abstract class l3, Build throw new IllegalStateException("Did not write as much data as expected."); } catch (IOException e) { String name = getClass().getName(); - StringBuilder O = a.O(name.length() + 62 + 10, "Serializing ", name, " to a ", "byte array"); - O.append(" threw an IOException (should never happen)."); - throw new RuntimeException(O.toString(), e); + StringBuilder N = a.N(name.length() + 62 + 10, "Serializing ", name, " to a ", "byte array"); + N.append(" threw an IOException (should never happen)."); + throw new RuntimeException(N.toString(), e); } } diff --git a/app/src/main/java/c/i/a/f/h/l/la.java b/app/src/main/java/c/i/a/f/h/l/la.java index 5ec0bf11d9..3cf41ef1db 100644 --- a/app/src/main/java/c/i/a/f/h/l/la.java +++ b/app/src/main/java/c/i/a/f/h/l/la.java @@ -5,14 +5,14 @@ public final class la implements ia { public static final l2 b; /* renamed from: c reason: collision with root package name */ - public static final l2 f1109c; + public static final l2 f1110c; public static final l2 d; static { q2 q2Var = new q2(i2.a("com.google.android.gms.measurement")); a = q2Var.c("measurement.sdk.collection.enable_extend_user_property_size", true); b = q2Var.c("measurement.sdk.collection.last_deep_link_referrer2", true); - f1109c = q2Var.c("measurement.sdk.collection.last_deep_link_referrer_campaign2", false); + f1110c = q2Var.c("measurement.sdk.collection.last_deep_link_referrer_campaign2", false); d = q2Var.c("measurement.sdk.collection.last_gclid_from_referrer2", false); q2Var.a("measurement.id.sdk.collection.last_deep_link_referrer2", 0); } @@ -29,7 +29,7 @@ public final class la implements ia { @Override // c.i.a.f.h.l.ia public final boolean c() { - return f1109c.d().booleanValue(); + return f1110c.d().booleanValue(); } @Override // c.i.a.f.h.l.ia diff --git a/app/src/main/java/c/i/a/f/h/l/n4.java b/app/src/main/java/c/i/a/f/h/l/n4.java index 5d1bc6129e..d3cda7664a 100644 --- a/app/src/main/java/c/i/a/f/h/l/n4.java +++ b/app/src/main/java/c/i/a/f/h/l/n4.java @@ -16,7 +16,7 @@ public final class n4> { public final r6 b = new t6(16); /* renamed from: c reason: collision with root package name */ - public boolean f1110c; + public boolean f1111c; public boolean d; public n4() { @@ -263,7 +263,7 @@ public final class n4> { return obj; } d5 d5Var = (d5) obj; - int i = d5.f1099c; + int i = d5.f1100c; throw new NoSuchMethodError(); } @@ -291,9 +291,9 @@ public final class n4> { } public final void h() { - if (!this.f1110c) { + if (!this.f1111c) { this.b.c(); - this.f1110c = true; + this.f1111c = true; } } @@ -329,7 +329,7 @@ public final class n4> { Object value = entry.getValue(); if (value instanceof d5) { d5 d5Var = (d5) value; - int i = d5.f1099c; + int i = d5.f1100c; throw new NoSuchMethodError(); } else if (key.d()) { Object c2 = c(key); diff --git a/app/src/main/java/c/i/a/f/h/l/n6.java b/app/src/main/java/c/i/a/f/h/l/n6.java index 1b29e1c51d..4bced09c51 100644 --- a/app/src/main/java/c/i/a/f/h/l/n6.java +++ b/app/src/main/java/c/i/a/f/h/l/n6.java @@ -10,7 +10,7 @@ public final class n6 { public final p6 b = new p5(); /* renamed from: c reason: collision with root package name */ - public final ConcurrentMap, q6> f1111c = new ConcurrentHashMap(); + public final ConcurrentMap, q6> f1112c = new ConcurrentHashMap(); public final q6 a(Class cls) { q6 q6Var; @@ -18,7 +18,7 @@ public final class n6 { Class cls2; Charset charset = w4.a; Objects.requireNonNull(cls, "messageType"); - q6 q6Var2 = (q6) this.f1111c.get(cls); + q6 q6Var2 = (q6) this.f1112c.get(cls); if (q6Var2 != null) { return q6Var2; } @@ -72,11 +72,11 @@ public final class n6 { throw new IllegalStateException("Protobuf runtime is not correctly loaded."); } } else { - q6Var = e6.n(b, k6.a, m5.a, s6.f1138c, null, x5.a); + q6Var = e6.n(b, k6.a, m5.a, s6.f1139c, null, x5.a); } } } - q6 q6Var3 = (q6) this.f1111c.putIfAbsent(cls, q6Var); + q6 q6Var3 = (q6) this.f1112c.putIfAbsent(cls, q6Var); return q6Var3 != null ? q6Var3 : q6Var; } throw new IllegalArgumentException("Message classes must extend GeneratedMessage or GeneratedMessageLite"); diff --git a/app/src/main/java/c/i/a/f/h/l/o4.java b/app/src/main/java/c/i/a/f/h/l/o4.java index 64790a799f..8f4437e3ba 100644 --- a/app/src/main/java/c/i/a/f/h/l/o4.java +++ b/app/src/main/java/c/i/a/f/h/l/o4.java @@ -105,7 +105,7 @@ public enum o4 { /* renamed from: h0 reason: collision with root package name */ - public static final o4[] f1119h0 = new o4[51]; + public static final o4[] f1120h0 = new o4[51]; private final e5 zzaz; private final int zzba; private final q4 zzbb; @@ -129,7 +129,7 @@ public enum o4 { o4[] values = values(); for (int i = 0; i < 51; i++) { o4 o4Var = values[i]; - f1119h0[o4Var.zzba] = o4Var; + f1120h0[o4Var.zzba] = o4Var; } } diff --git a/app/src/main/java/c/i/a/f/h/l/o5.java b/app/src/main/java/c/i/a/f/h/l/o5.java index 7a1edca068..2f890b1e0f 100644 --- a/app/src/main/java/c/i/a/f/h/l/o5.java +++ b/app/src/main/java/c/i/a/f/h/l/o5.java @@ -7,7 +7,7 @@ import java.util.List; public final class o5 extends m5 { /* renamed from: c reason: collision with root package name */ - public static final Class f1125c = Collections.unmodifiableList(Collections.emptyList()).getClass(); + public static final Class f1126c = Collections.unmodifiableList(Collections.emptyList()).getClass(); public o5(l5 l5Var) { super(null); @@ -23,7 +23,7 @@ public final class o5 extends m5 { list2 = list2 instanceof j5 ? new k5(size) : (!(list2 instanceof l6) || !(list2 instanceof b5)) ? new ArrayList(size) : ((b5) list2).f(size); j7.f(obj, j, list2); } else { - if (f1125c.isAssignableFrom(list2.getClass())) { + if (f1126c.isAssignableFrom(list2.getClass())) { ArrayList arrayList2 = new ArrayList(list2.size() + size); arrayList2.addAll(list2); j7.f(obj, j, arrayList2); @@ -59,7 +59,7 @@ public final class o5 extends m5 { List list = (List) j7.r(obj, j); if (list instanceof j5) { obj2 = ((j5) list).r(); - } else if (!f1125c.isAssignableFrom(list.getClass())) { + } else if (!f1126c.isAssignableFrom(list.getClass())) { if (!(list instanceof l6) || !(list instanceof b5)) { obj2 = Collections.unmodifiableList(list); } else { diff --git a/app/src/main/java/c/i/a/f/h/l/o6.java b/app/src/main/java/c/i/a/f/h/l/o6.java index 3b70bfd079..3ada8b63de 100644 --- a/app/src/main/java/c/i/a/f/h/l/o6.java +++ b/app/src/main/java/c/i/a/f/h/l/o6.java @@ -5,13 +5,13 @@ public final class o6 implements a6 { public final String b; /* renamed from: c reason: collision with root package name */ - public final Object[] f1126c; + public final Object[] f1127c; public final int d; public o6(c6 c6Var, String str, Object[] objArr) { this.a = c6Var; this.b = str; - this.f1126c = objArr; + this.f1127c = objArr; char charAt = str.charAt(0); if (charAt < 55296) { this.d = charAt; diff --git a/app/src/main/java/c/i/a/f/h/l/p2.java b/app/src/main/java/c/i/a/f/h/l/p2.java index ef248cd185..1a91767709 100644 --- a/app/src/main/java/c/i/a/f/h/l/p2.java +++ b/app/src/main/java/c/i/a/f/h/l/p2.java @@ -16,7 +16,7 @@ public final class p2 extends l2 { } if (obj instanceof String) { String str = (String) obj; - if (u1.f1139c.matcher(str).matches()) { + if (u1.f1140c.matcher(str).matches()) { return Boolean.TRUE; } if (u1.d.matcher(str).matches()) { diff --git a/app/src/main/java/c/i/a/f/h/l/p8.java b/app/src/main/java/c/i/a/f/h/l/p8.java index 69f7f61e2f..a3e65512fb 100644 --- a/app/src/main/java/c/i/a/f/h/l/p8.java +++ b/app/src/main/java/c/i/a/f/h/l/p8.java @@ -16,7 +16,7 @@ public final class p8 implements m8 { public static final l2 b; /* renamed from: c reason: collision with root package name */ - public static final l2 f1131c; + public static final l2 f1132c; public static final l2 d; public static final l2 e; public static final l2 f; @@ -34,27 +34,27 @@ public final class p8 implements m8 { public static final l2 r; /* renamed from: s reason: collision with root package name */ - public static final l2 f1132s; + public static final l2 f1133s; public static final l2 t; public static final l2 u; public static final l2 v; public static final l2 w; /* renamed from: x reason: collision with root package name */ - public static final l2 f1133x; + public static final l2 f1134x; /* renamed from: y reason: collision with root package name */ - public static final l2 f1134y; + public static final l2 f1135y; /* renamed from: z reason: collision with root package name */ - public static final l2 f1135z; + public static final l2 f1136z; static { q2 q2Var = new q2(i2.a("com.google.android.gms.measurement")); a = q2Var.a("measurement.ad_id_cache_time", 10000); b = q2Var.a("measurement.config.cache_time", 86400000); q2Var.b("measurement.log_tag", "FA"); - f1131c = q2Var.b("measurement.config.url_authority", "app-measurement.com"); + f1132c = q2Var.b("measurement.config.url_authority", "app-measurement.com"); d = q2Var.b("measurement.config.url_scheme", Constants.SCHEME); e = q2Var.a("measurement.upload.debug_upload_interval", 1000); f = q2Var.a("measurement.lifetimevalue.max_currency_tracked", 4); @@ -72,14 +72,14 @@ public final class p8 implements m8 { p = q2Var.a("measurement.upload.stale_data_deletion_interval", 86400000); q = q2Var.a("measurement.upload.backoff_period", 43200000); r = q2Var.a("measurement.upload.initial_upload_delay_time", 15000); - f1132s = q2Var.a("measurement.upload.interval", 3600000); + f1133s = q2Var.a("measurement.upload.interval", 3600000); t = q2Var.a("measurement.upload.max_bundle_size", Permission.READ_MESSAGE_HISTORY); u = q2Var.a("measurement.upload.max_bundles", 100); v = q2Var.a("measurement.upload.max_conversions_per_day", 500); w = q2Var.a("measurement.upload.max_error_events_per_day", 1000); - f1133x = q2Var.a("measurement.upload.max_events_per_bundle", 1000); - f1134y = q2Var.a("measurement.upload.max_events_per_day", 100000); - f1135z = q2Var.a("measurement.upload.max_public_events_per_day", 50000); + f1134x = q2Var.a("measurement.upload.max_events_per_bundle", 1000); + f1135y = q2Var.a("measurement.upload.max_events_per_day", 100000); + f1136z = q2Var.a("measurement.upload.max_public_events_per_day", 50000); A = q2Var.a("measurement.upload.max_queue_time", 2419200000L); B = q2Var.a("measurement.upload.max_realtime_events_per_day", 10); C = q2Var.a("measurement.upload.max_batch_size", Permission.READ_MESSAGE_HISTORY); @@ -116,7 +116,7 @@ public final class p8 implements m8 { @Override // c.i.a.f.h.l.m8 public final long F() { - return f1132s.d().longValue(); + return f1133s.d().longValue(); } @Override // c.i.a.f.h.l.m8 @@ -141,7 +141,7 @@ public final class p8 implements m8 { @Override // c.i.a.f.h.l.m8 public final String c() { - return f1131c.d(); + return f1132c.d(); } @Override // c.i.a.f.h.l.m8 @@ -181,7 +181,7 @@ public final class p8 implements m8 { @Override // c.i.a.f.h.l.m8 public final long l() { - return f1134y.d().longValue(); + return f1135y.d().longValue(); } @Override // c.i.a.f.h.l.m8 @@ -196,7 +196,7 @@ public final class p8 implements m8 { @Override // c.i.a.f.h.l.m8 public final long o() { - return f1135z.d().longValue(); + return f1136z.d().longValue(); } @Override // c.i.a.f.h.l.m8 @@ -241,7 +241,7 @@ public final class p8 implements m8 { @Override // c.i.a.f.h.l.m8 public final long x() { - return f1133x.d().longValue(); + return f1134x.d().longValue(); } @Override // c.i.a.f.h.l.m8 diff --git a/app/src/main/java/c/i/a/f/h/l/s2.java b/app/src/main/java/c/i/a/f/h/l/s2.java index 06d22f2d9b..974ce1ad70 100644 --- a/app/src/main/java/c/i/a/f/h/l/s2.java +++ b/app/src/main/java/c/i/a/f/h/l/s2.java @@ -13,7 +13,7 @@ public final class s2 implements b2 { public final SharedPreferences b; /* renamed from: c reason: collision with root package name */ - public final SharedPreferences.OnSharedPreferenceChangeListener f1136c; + public final SharedPreferences.OnSharedPreferenceChangeListener f1137c; public final Object d; public volatile Map e; @@ -40,7 +40,7 @@ public final class s2 implements b2 { public static synchronized void b() { synchronized (s2.class) { for (s2 s2Var : a.values()) { - s2Var.b.unregisterOnSharedPreferenceChangeListener(s2Var.f1136c); + s2Var.b.unregisterOnSharedPreferenceChangeListener(s2Var.f1137c); } a.clear(); } diff --git a/app/src/main/java/c/i/a/f/h/l/s3.java b/app/src/main/java/c/i/a/f/h/l/s3.java index 8cd1760419..ae7890cf14 100644 --- a/app/src/main/java/c/i/a/f/h/l/s3.java +++ b/app/src/main/java/c/i/a/f/h/l/s3.java @@ -7,7 +7,7 @@ public final class s3 { public long b; /* renamed from: c reason: collision with root package name */ - public Object f1137c; + public Object f1138c; public final h4 d; public s3(h4 h4Var) { diff --git a/app/src/main/java/c/i/a/f/h/l/s6.java b/app/src/main/java/c/i/a/f/h/l/s6.java index 1d6b63d051..733ffd6993 100644 --- a/app/src/main/java/c/i/a/f/h/l/s6.java +++ b/app/src/main/java/c/i/a/f/h/l/s6.java @@ -12,7 +12,7 @@ public final class s6 { public static final d7 b = e(false); /* renamed from: c reason: collision with root package name */ - public static final d7 f1138c = e(true); + public static final d7 f1139c = e(true); public static final d7 d = new f7(); static { diff --git a/app/src/main/java/c/i/a/f/h/l/u1.java b/app/src/main/java/c/i/a/f/h/l/u1.java index 2f3cc2b272..4f3510babb 100644 --- a/app/src/main/java/c/i/a/f/h/l/u1.java +++ b/app/src/main/java/c/i/a/f/h/l/u1.java @@ -10,7 +10,7 @@ public class u1 { public static final Uri b = Uri.parse("content://com.google.android.gsf.gservices/prefix"); /* renamed from: c reason: collision with root package name */ - public static final Pattern f1139c = Pattern.compile("^(1|true|t|on|yes|y)$", 2); + public static final Pattern f1140c = Pattern.compile("^(1|true|t|on|yes|y)$", 2); public static final Pattern d = Pattern.compile("^(0|false|f|off|no|n)$", 2); public static final AtomicBoolean e = new AtomicBoolean(); public static HashMap f; diff --git a/app/src/main/java/c/i/a/f/h/l/u4.java b/app/src/main/java/c/i/a/f/h/l/u4.java index 45f46fd65f..0c6b6c420e 100644 --- a/app/src/main/java/c/i/a/f/h/l/u4.java +++ b/app/src/main/java/c/i/a/f/h/l/u4.java @@ -149,7 +149,7 @@ public abstract class u4, Build public final n4 u() { n4 n4Var = this.zzc; - if (n4Var.f1110c) { + if (n4Var.f1111c) { this.zzc = (n4) n4Var.clone(); } return this.zzc; @@ -270,7 +270,7 @@ public abstract class u4, Build @Override // c.i.a.f.h.l.c6 public final void i(zzhi zzhi) throws IOException { q6 b2 = n6.a.b(this); - g4 g4Var = zzhi.f2371c; + g4 g4Var = zzhi.f2374c; if (g4Var == null) { g4Var = new g4(zzhi); } diff --git a/app/src/main/java/c/i/a/f/h/l/v1.java b/app/src/main/java/c/i/a/f/h/l/v1.java index e1d2cf613d..9c1c0f56cb 100644 --- a/app/src/main/java/c/i/a/f/h/l/v1.java +++ b/app/src/main/java/c/i/a/f/h/l/v1.java @@ -45,8 +45,8 @@ public final class v1 extends t2 { public final String toString() { String valueOf = String.valueOf(this.a); String valueOf2 = String.valueOf(this.b); - StringBuilder O = a.O(valueOf2.length() + valueOf.length() + 46, "FlagsContext{context=", valueOf, ", hermeticFileOverrides=", valueOf2); - O.append("}"); - return O.toString(); + StringBuilder N = a.N(valueOf2.length() + valueOf.length() + 46, "FlagsContext{context=", valueOf, ", hermeticFileOverrides=", valueOf2); + N.append("}"); + return N.toString(); } } diff --git a/app/src/main/java/c/i/a/f/h/l/v8.java b/app/src/main/java/c/i/a/f/h/l/v8.java index 886bf7fa54..a29699ff69 100644 --- a/app/src/main/java/c/i/a/f/h/l/v8.java +++ b/app/src/main/java/c/i/a/f/h/l/v8.java @@ -5,14 +5,14 @@ public final class v8 implements s8 { public static final l2 b; /* renamed from: c reason: collision with root package name */ - public static final l2 f1140c; + public static final l2 f1141c; public static final l2 d; static { q2 q2Var = new q2(i2.a("com.google.android.gms.measurement")); a = q2Var.c("measurement.client.consent_state_v1", false); b = q2Var.c("measurement.client.3p_consent_state_v1", false); - f1140c = q2Var.c("measurement.service.consent_state_v1_W36", false); + f1141c = q2Var.c("measurement.service.consent_state_v1_W36", false); q2Var.a("measurement.id.service.consent_state_v1_W36", 0); d = q2Var.a("measurement.service.storage_consent_support_version", 203590); } @@ -34,7 +34,7 @@ public final class v8 implements s8 { @Override // c.i.a.f.h.l.s8 public final boolean d() { - return f1140c.d().booleanValue(); + return f1141c.d().booleanValue(); } @Override // c.i.a.f.h.l.s8 diff --git a/app/src/main/java/c/i/a/f/h/l/x1.java b/app/src/main/java/c/i/a/f/h/l/x1.java index 730247fbb0..9c1fd2b5d5 100644 --- a/app/src/main/java/c/i/a/f/h/l/x1.java +++ b/app/src/main/java/c/i/a/f/h/l/x1.java @@ -16,7 +16,7 @@ public final /* synthetic */ class x1 implements d2 { @Override // c.i.a.f.h.l.d2 public final Object a() { y1 y1Var = this.a; - Cursor query = y1Var.f1141c.query(y1Var.d, y1.b, null, null, null); + Cursor query = y1Var.f1142c.query(y1Var.d, y1.b, null, null, null); if (query == null) { return Collections.emptyMap(); } diff --git a/app/src/main/java/c/i/a/f/h/l/y1.java b/app/src/main/java/c/i/a/f/h/l/y1.java index 572664c048..f2964c6286 100644 --- a/app/src/main/java/c/i/a/f/h/l/y1.java +++ b/app/src/main/java/c/i/a/f/h/l/y1.java @@ -21,7 +21,7 @@ public final class y1 implements b2 { public static final String[] b = {"key", "value"}; /* renamed from: c reason: collision with root package name */ - public final ContentResolver f1141c; + public final ContentResolver f1142c; public final Uri d; public final ContentObserver e; public final Object f = new Object(); @@ -34,7 +34,7 @@ public final class y1 implements b2 { this.e = a2Var; Objects.requireNonNull(contentResolver); Objects.requireNonNull(uri); - this.f1141c = contentResolver; + this.f1142c = contentResolver; this.d = uri; contentResolver.registerContentObserver(uri, false, a2Var); } @@ -62,7 +62,7 @@ public final class y1 implements b2 { public static synchronized void c() { synchronized (y1.class) { for (y1 y1Var : a.values()) { - y1Var.f1141c.unregisterContentObserver(y1Var.e); + y1Var.f1142c.unregisterContentObserver(y1Var.e); } a.clear(); } diff --git a/app/src/main/java/c/i/a/f/h/l/y7.java b/app/src/main/java/c/i/a/f/h/l/y7.java index aca9247902..53fed1620b 100644 --- a/app/src/main/java/c/i/a/f/h/l/y7.java +++ b/app/src/main/java/c/i/a/f/h/l/y7.java @@ -5,13 +5,13 @@ public final class y7 implements z7 { public static final l2 b; /* renamed from: c reason: collision with root package name */ - public static final l2 f1142c; + public static final l2 f1143c; static { q2 q2Var = new q2(i2.a("com.google.android.gms.measurement")); a = q2Var.c("measurement.client.ad_impression", true); b = q2Var.c("measurement.service.separate_public_internal_event_blacklisting", true); - f1142c = q2Var.c("measurement.service.ad_impression", true); + f1143c = q2Var.c("measurement.service.ad_impression", true); q2Var.a("measurement.id.service.ad_impression", 0); } @@ -32,6 +32,6 @@ public final class y7 implements z7 { @Override // c.i.a.f.h.l.z7 public final boolean d() { - return f1142c.d().booleanValue(); + return f1143c.d().booleanValue(); } } diff --git a/app/src/main/java/c/i/a/f/h/l/ya.java b/app/src/main/java/c/i/a/f/h/l/ya.java index fe25dd414f..693d0d8629 100644 --- a/app/src/main/java/c/i/a/f/h/l/ya.java +++ b/app/src/main/java/c/i/a/f/h/l/ya.java @@ -5,7 +5,7 @@ public final class ya implements za { public static final l2 b; /* renamed from: c reason: collision with root package name */ - public static final l2 f1143c; + public static final l2 f1144c; public static final l2 d; public static final l2 e; @@ -14,7 +14,7 @@ public final class ya implements za { a = q2Var.c("measurement.test.boolean_flag", false); Object obj = l2.a; b = new o2(q2Var, "measurement.test.double_flag", Double.valueOf(-3.0d)); - f1143c = q2Var.a("measurement.test.int_flag", -2); + f1144c = q2Var.a("measurement.test.int_flag", -2); d = q2Var.a("measurement.test.long_flag", -1); e = q2Var.b("measurement.test.string_flag", "---"); } @@ -31,7 +31,7 @@ public final class ya implements za { @Override // c.i.a.f.h.l.za public final long c() { - return f1143c.d().longValue(); + return f1144c.d().longValue(); } @Override // c.i.a.f.h.l.za diff --git a/app/src/main/java/c/i/a/f/h/m/d.java b/app/src/main/java/c/i/a/f/h/m/d.java index b211f03f83..c150437fbf 100644 --- a/app/src/main/java/c/i/a/f/h/m/d.java +++ b/app/src/main/java/c/i/a/f/h/m/d.java @@ -3,13 +3,12 @@ package c.i.a.f.h.m; import android.os.Parcel; import android.os.ParcelUuid; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.internal.nearby.zzgp; public final class d implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzgp createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = c.c.a.a0.d.l2(parcel); ParcelUuid parcelUuid = null; ParcelUuid parcelUuid2 = null; ParcelUuid parcelUuid3 = null; @@ -19,44 +18,44 @@ public final class d implements Parcelable.Creator { byte[] bArr4 = null; int i = 0; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 != 1) { switch (i3) { case 4: - parcelUuid = (ParcelUuid) AnimatableValueParser.S(parcel, readInt, ParcelUuid.CREATOR); + parcelUuid = (ParcelUuid) c.c.a.a0.d.S(parcel, readInt, ParcelUuid.CREATOR); continue; case 5: - parcelUuid2 = (ParcelUuid) AnimatableValueParser.S(parcel, readInt, ParcelUuid.CREATOR); + parcelUuid2 = (ParcelUuid) c.c.a.a0.d.S(parcel, readInt, ParcelUuid.CREATOR); continue; case 6: - parcelUuid3 = (ParcelUuid) AnimatableValueParser.S(parcel, readInt, ParcelUuid.CREATOR); + parcelUuid3 = (ParcelUuid) c.c.a.a0.d.S(parcel, readInt, ParcelUuid.CREATOR); continue; case 7: - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = c.c.a.a0.d.Q(parcel, readInt); continue; case 8: - bArr2 = AnimatableValueParser.Q(parcel, readInt); + bArr2 = c.c.a.a0.d.Q(parcel, readInt); continue; case 9: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = c.c.a.a0.d.G1(parcel, readInt); continue; case 10: - bArr3 = AnimatableValueParser.Q(parcel, readInt); + bArr3 = c.c.a.a0.d.Q(parcel, readInt); continue; case 11: - bArr4 = AnimatableValueParser.Q(parcel, readInt); + bArr4 = c.c.a.a0.d.Q(parcel, readInt); continue; default: - AnimatableValueParser.G2(parcel, readInt); + c.c.a.a0.d.c2(parcel, readInt); continue; } } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = c.c.a.a0.d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + c.c.a.a0.d.h0(parcel, l2); return new zzgp(i, parcelUuid, parcelUuid2, parcelUuid3, bArr, bArr2, i2, bArr3, bArr4); } diff --git a/app/src/main/java/c/i/a/f/h/m/e.java b/app/src/main/java/c/i/a/f/h/m/e.java index d41ef8b424..843c110e0e 100644 --- a/app/src/main/java/c/i/a/f/h/m/e.java +++ b/app/src/main/java/c/i/a/f/h/m/e.java @@ -16,7 +16,7 @@ public final class e { @Nullable /* renamed from: c reason: collision with root package name */ - public final List f1144c; + public final List f1145c; @Nullable public final SparseArray d; @Nullable @@ -27,7 +27,7 @@ public final class e { public final byte[] h; public e(@Nullable List list, @Nullable SparseArray sparseArray, @Nullable Map map, int i, int i2, @Nullable String str, byte[] bArr) { - this.f1144c = list; + this.f1145c = list; this.d = sparseArray; this.e = map; this.g = str; @@ -87,7 +87,7 @@ public final class e { public final String toString() { String str; int i = this.b; - String valueOf = String.valueOf(this.f1144c); + String valueOf = String.valueOf(this.f1145c); SparseArray sparseArray = this.d; StringBuilder sb = new StringBuilder(); String str2 = "{}"; @@ -133,7 +133,7 @@ public final class e { sb3.append(i); sb3.append(", mServiceUuids="); sb3.append(valueOf); - a.o0(sb3, ", mManufacturerSpecificData=", str, ", mServiceData=", str2); + a.n0(sb3, ", mManufacturerSpecificData=", str, ", mServiceData=", str2); sb3.append(", mTxPowerLevel="); sb3.append(i4); sb3.append(", mDeviceName="); diff --git a/app/src/main/java/c/i/a/f/h/m/f.java b/app/src/main/java/c/i/a/f/h/m/f.java index 333f5be790..3351fd4c86 100644 --- a/app/src/main/java/c/i/a/f/h/m/f.java +++ b/app/src/main/java/c/i/a/f/h/m/f.java @@ -2,30 +2,30 @@ package c.i.a.f.h.m; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.nearby.zzgs; public final class f implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzgs createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 3) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i2 == 6) { - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); } else if (i2 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzgs(i, str, str2); } diff --git a/app/src/main/java/c/i/a/f/h/m/g.java b/app/src/main/java/c/i/a/f/h/m/g.java index 127298256a..905cdbb28a 100644 --- a/app/src/main/java/c/i/a/f/h/m/g.java +++ b/app/src/main/java/c/i/a/f/h/m/g.java @@ -2,33 +2,33 @@ package c.i.a.f.h.m; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.nearby.zzgu; public final class g implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzgu createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; byte[] bArr = null; int i2 = 0; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 == 2) { - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); } else if (i3 == 3) { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } else if (i3 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzgu(i, i2, bArr, z2); } diff --git a/app/src/main/java/c/i/a/f/h/m/p.java b/app/src/main/java/c/i/a/f/h/m/p.java index 4d22c435a8..8be08708f1 100644 --- a/app/src/main/java/c/i/a/f/h/m/p.java +++ b/app/src/main/java/c/i/a/f/h/m/p.java @@ -10,7 +10,7 @@ public class p { public static final Uri b = Uri.parse("content://com.google.android.gsf.gservices/prefix"); /* renamed from: c reason: collision with root package name */ - public static final Pattern f1145c = Pattern.compile("^(1|true|t|on|yes|y)$", 2); + public static final Pattern f1146c = Pattern.compile("^(1|true|t|on|yes|y)$", 2); public static final Pattern d = Pattern.compile("^(0|false|f|off|no|n)$", 2); public static final AtomicBoolean e = new AtomicBoolean(); public static HashMap f; diff --git a/app/src/main/java/c/i/a/f/h/o/d.java b/app/src/main/java/c/i/a/f/h/o/d.java index 3e5bdff991..831094f1f0 100644 --- a/app/src/main/java/c/i/a/f/h/o/d.java +++ b/app/src/main/java/c/i/a/f/h/o/d.java @@ -5,6 +5,6 @@ import c.i.a.f.e.h.h; import c.i.a.f.k.a; public abstract class d extends c.i.a.f.e.h.j.d { public d(c cVar) { - super(a.f1227c, cVar); + super(a.f1228c, cVar); } } diff --git a/app/src/main/java/c/i/a/f/i/a/a.java b/app/src/main/java/c/i/a/f/i/a/a.java index 5d1c51ea9e..d90ff81617 100644 --- a/app/src/main/java/c/i/a/f/i/a/a.java +++ b/app/src/main/java/c/i/a/f/i/a/a.java @@ -29,7 +29,7 @@ public class a { synchronized (gVar.g) { for (int i = 0; i < gVar.g.size(); i++) { if (aVar.equals(gVar.g.get(i).first)) { - Log.w(gVar.f1102c, "OnEventListener already registered."); + Log.w(gVar.f1103c, "OnEventListener already registered."); return; } } @@ -41,7 +41,7 @@ public class a { gVar.j.registerOnMeasurementEventListener(cVar); return; } catch (BadParcelableException | NetworkOnMainThreadException | RemoteException | IllegalArgumentException | IllegalStateException | NullPointerException | SecurityException | UnsupportedOperationException unused) { - Log.w(gVar.f1102c, "Failed to register event listener on calling thread. Trying again on the dynamite thread."); + Log.w(gVar.f1103c, "Failed to register event listener on calling thread. Trying again on the dynamite thread."); } } gVar.e.execute(new a0(gVar, cVar)); diff --git a/app/src/main/java/c/i/a/f/i/b/a.java b/app/src/main/java/c/i/a/f/i/b/a.java index 892970227d..373c81d02f 100644 --- a/app/src/main/java/c/i/a/f/i/b/a.java +++ b/app/src/main/java/c/i/a/f/i/b/a.java @@ -9,7 +9,7 @@ public final class a extends z1 { public final Map b = new ArrayMap(); /* renamed from: c reason: collision with root package name */ - public final Map f1146c = new ArrayMap(); + public final Map f1147c = new ArrayMap(); public long d; public a(u4 u4Var) { diff --git a/app/src/main/java/c/i/a/f/i/b/a4.java b/app/src/main/java/c/i/a/f/i/b/a4.java index b899297e63..a2a52ca642 100644 --- a/app/src/main/java/c/i/a/f/i/b/a4.java +++ b/app/src/main/java/c/i/a/f/i/b/a4.java @@ -3,7 +3,7 @@ package c.i.a.f.i.b; import android.text.TextUtils; import androidx.annotation.Nullable; import androidx.annotation.WorkerThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.ArrayList; import java.util.List; import java.util.Objects; @@ -20,7 +20,7 @@ public final class a4 { public final String b; /* renamed from: c reason: collision with root package name */ - public String f1147c; + public String f1148c; public String d; public String e; public String f; @@ -38,25 +38,25 @@ public final class a4 { public boolean r; /* renamed from: s reason: collision with root package name */ - public String f1148s; + public String f1149s; public Boolean t; public long u; public List v; public String w; /* renamed from: x reason: collision with root package name */ - public long f1149x; + public long f1150x; /* renamed from: y reason: collision with root package name */ - public long f1150y; + public long f1151y; /* renamed from: z reason: collision with root package name */ - public long f1151z; + public long f1152z; @WorkerThread public a4(u4 u4Var, String str) { Objects.requireNonNull(u4Var, "null reference"); - AnimatableValueParser.w(str); + d.w(str); this.a = u4Var; this.b = str; u4Var.f().b(); @@ -78,7 +78,7 @@ public final class a4 { @WorkerThread public final void C(long j) { boolean z2 = true; - AnimatableValueParser.m(j >= 0); + d.m(j >= 0); this.a.f().b(); boolean z3 = this.E; if (this.g == j) { @@ -245,8 +245,8 @@ public final class a4 { @WorkerThread public final void c(String str) { this.a.f().b(); - this.E |= !t9.q0(this.f1147c, str); - this.f1147c = str; + this.E |= !t9.q0(this.f1148c, str); + this.f1148c = str; } @WorkerThread @@ -348,8 +348,8 @@ public final class a4 { if (TextUtils.isEmpty(str)) { str = null; } - this.E |= !t9.q0(this.f1148s, str); - this.f1148s = str; + this.E |= !t9.q0(this.f1149s, str); + this.f1149s = str; } @WorkerThread @@ -362,7 +362,7 @@ public final class a4 { @WorkerThread public final String s() { this.a.f().b(); - return this.f1147c; + return this.f1148c; } @WorkerThread @@ -405,7 +405,7 @@ public final class a4 { @WorkerThread public final String y() { this.a.f().b(); - return this.f1148s; + return this.f1149s; } @WorkerThread diff --git a/app/src/main/java/c/i/a/f/i/b/a9.java b/app/src/main/java/c/i/a/f/i/b/a9.java index 0b450bd071..27e1d598f5 100644 --- a/app/src/main/java/c/i/a/f/i/b/a9.java +++ b/app/src/main/java/c/i/a/f/i/b/a9.java @@ -19,11 +19,11 @@ public final /* synthetic */ class a9 implements Runnable { x8Var.b.g().m.a("Application going to the background"); boolean z2 = true; if (x8Var.b.a.h.o(p.v0)) { - x8Var.b.l().f1159x.a(true); + x8Var.b.l().f1160x.a(true); } Bundle bundle = new Bundle(); if (!x8Var.b.a.h.z().booleanValue()) { - x8Var.b.e.f1162c.c(); + x8Var.b.e.f1163c.c(); if (x8Var.b.a.h.o(p.m0)) { d9 d9Var = x8Var.b.e; d9Var.b = j2; diff --git a/app/src/main/java/c/i/a/f/i/b/b4.java b/app/src/main/java/c/i/a/f/i/b/b4.java index 42ac7e081b..067dc2b326 100644 --- a/app/src/main/java/c/i/a/f/i/b/b4.java +++ b/app/src/main/java/c/i/a/f/i/b/b4.java @@ -11,7 +11,7 @@ public class b4 extends BroadcastReceiver { public boolean b; /* renamed from: c reason: collision with root package name */ - public boolean f1152c; + public boolean f1153c; public b4(k9 k9Var) { this.a = k9Var; @@ -25,7 +25,7 @@ public class b4 extends BroadcastReceiver { if (this.b) { this.a.g().n.a("Unregistering connectivity change receiver"); this.b = false; - this.f1152c = false; + this.f1153c = false; try { this.a.k.b.unregisterReceiver(this); } catch (IllegalArgumentException e) { @@ -42,8 +42,8 @@ public class b4 extends BroadcastReceiver { this.a.g().n.b("NetworkBroadcastReceiver received action", action); if ("android.net.conn.CONNECTIVITY_CHANGE".equals(action)) { boolean u = this.a.J().u(); - if (this.f1152c != u) { - this.f1152c = u; + if (this.f1153c != u) { + this.f1153c = u; this.a.f().v(new e4(this, u)); return; } diff --git a/app/src/main/java/c/i/a/f/i/b/ba.java b/app/src/main/java/c/i/a/f/i/b/ba.java index 59721db1f3..4be0f18054 100644 --- a/app/src/main/java/c/i/a/f/i/b/ba.java +++ b/app/src/main/java/c/i/a/f/i/b/ba.java @@ -5,6 +5,7 @@ import android.database.Cursor; import android.database.sqlite.SQLiteException; import androidx.annotation.WorkerThread; import androidx.collection.ArrayMap; +import c.c.a.a0.d; import c.i.a.f.h.l.a1; import c.i.a.f.h.l.f9; import c.i.a.f.h.l.g1; @@ -16,7 +17,6 @@ import c.i.a.f.h.l.o0; import c.i.a.f.h.l.u4; import c.i.a.f.h.l.y0; import c.i.a.f.h.l.z0; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.io.IOException; import java.util.ArrayList; import java.util.BitSet; @@ -124,7 +124,7 @@ public final class ba extends i9 { Throwable th2; Cursor cursor5; SQLiteException e4; - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(list, "null reference"); Objects.requireNonNull(list2, "null reference"); this.d = str; @@ -146,14 +146,14 @@ public final class ba extends i9 { break; } } - boolean z4 = f9.b() && this.a.h.u(this.d, p.f1191c0); - boolean z5 = f9.b() && this.a.h.u(this.d, p.f1189b0); + boolean z4 = f9.b() && this.a.h.u(this.d, p.f1192c0); + boolean z5 = f9.b() && this.a.h.u(this.d, p.f1190b0); if (z2) { g q2 = q(); String str6 = this.d; q2.n(); q2.b(); - AnimatableValueParser.w(str6); + d.w(str6); ContentValues contentValues = new ContentValues(); contentValues.put("current_session_count", (Integer) 0); try { @@ -167,7 +167,7 @@ public final class ba extends i9 { g q3 = q(); String str7 = this.d; Objects.requireNonNull(q3); - AnimatableValueParser.w(str7); + d.w(str7); ArrayMap arrayMap8 = new ArrayMap(); try { cursor5 = q3.t().query("event_filters", new String[]{"audience_id", "data"}, "app_id=?", new String[]{str7}, null, null, null); @@ -184,7 +184,7 @@ public final class ba extends i9 { str2 = this.d; q.n(); q.b(); - AnimatableValueParser.w(str2); + d.w(str2); cursor3 = q.t().query("audience_filter_values", new String[]{"audience_id", "current_results"}, "app_id=?", new String[]{str2}, null, null, null); if (!cursor3.moveToFirst()) { } @@ -210,7 +210,7 @@ public final class ba extends i9 { str2 = this.d; q.n(); q.b(); - AnimatableValueParser.w(str2); + d.w(str2); cursor3 = q.t().query("audience_filter_values", new String[]{"audience_id", "current_results"}, "app_id=?", new String[]{str2}, null, null, null); if (!cursor3.moveToFirst()) { } @@ -251,7 +251,7 @@ public final class ba extends i9 { str2 = this.d; q.n(); q.b(); - AnimatableValueParser.w(str2); + d.w(str2); cursor3 = q.t().query("audience_filter_values", new String[]{"audience_id", "current_results"}, "app_id=?", new String[]{str2}, null, null, null); if (!cursor3.moveToFirst()) { ArrayMap arrayMap9 = new ArrayMap(); @@ -297,13 +297,13 @@ public final class ba extends i9 { HashSet hashSet = new HashSet(arrayMap2.keySet()); if (z2) { String str9 = this.d; - AnimatableValueParser.w(str9); + d.w(str9); ArrayMap arrayMap10 = new ArrayMap(); if (!arrayMap2.isEmpty()) { g q4 = q(); q4.n(); q4.b(); - AnimatableValueParser.w(str9); + d.w(str9); Map arrayMap11 = new ArrayMap(); str5 = "audience_id"; try { @@ -600,10 +600,10 @@ public final class ba extends i9 { q5.g().i.c("Event aggregate wasn't created during raw event logging. appId, event", q3.s(str10), q5.d().u(F)); lVar = new l(str10, next2.F(), 1, 1, 1, next2.H(), 0, null, null, null, null); } else { - lVar = new l(z6.a, z6.b, z6.f1183c + 1, z6.d + 1, z6.e + 1, z6.f, z6.g, z6.h, z6.i, z6.j, z6.k); + lVar = new l(z6.a, z6.b, z6.f1184c + 1, z6.d + 1, z6.e + 1, z6.f, z6.g, z6.h, z6.i, z6.j, z6.k); } q().H(lVar); - long j = lVar.f1183c; + long j = lVar.f1184c; String F2 = a.F(); V v = arrayMap14.get(F2); if (v == null) { @@ -745,7 +745,7 @@ public final class ba extends i9 { g1 A = a2.A(); q6.n(); q6.b(); - AnimatableValueParser.w(str11); + d.w(str11); Objects.requireNonNull(A, "null reference"); byte[] d = A.d(); ContentValues contentValues2 = new ContentValues(); @@ -793,7 +793,7 @@ public final class ba extends i9 { str2 = this.d; q.n(); q.b(); - AnimatableValueParser.w(str2); + d.w(str2); try { cursor3 = q.t().query("audience_filter_values", new String[]{"audience_id", "current_results"}, "app_id=?", new String[]{str2}, null, null, null); try { diff --git a/app/src/main/java/c/i/a/f/i/b/c.java b/app/src/main/java/c/i/a/f/i/b/c.java index 81b9c938be..97c0567e53 100644 --- a/app/src/main/java/c/i/a/f/i/b/c.java +++ b/app/src/main/java/c/i/a/f/i/b/c.java @@ -8,11 +8,11 @@ import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.Size; import androidx.annotation.WorkerThread; +import c.c.a.a0.d; import c.i.a.f.e.p.b; import c.i.a.f.h.l.o8; import c.i.a.f.h.l.oa; import c.i.a.f.h.l.pa; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.lang.reflect.InvocationTargetException; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class c extends s5 { @@ -20,7 +20,7 @@ public final class c extends s5 { @NonNull /* renamed from: c reason: collision with root package name */ - public e f1153c = b.a; + public e f1154c = b.a; public Boolean d; public c(u4 u4Var) { @@ -32,7 +32,7 @@ public final class c extends s5 { } public final boolean A(String str) { - return "1".equals(this.f1153c.i(str, "measurement.event_sampling_enabled")); + return "1".equals(this.f1154c.i(str, "measurement.event_sampling_enabled")); } @WorkerThread @@ -93,7 +93,7 @@ public final class c extends s5 { if (str == null) { return j3Var.a(null).longValue(); } - String i = this.f1153c.i(str, j3Var.b); + String i = this.f1154c.i(str, j3Var.b); if (TextUtils.isEmpty(i)) { return j3Var.a(null).longValue(); } @@ -120,7 +120,7 @@ public final class c extends s5 { if (str == null) { return j3Var.a(null).intValue(); } - String i = this.f1153c.i(str, j3Var.b); + String i = this.f1154c.i(str, j3Var.b); if (TextUtils.isEmpty(i)) { return j3Var.a(null).intValue(); } @@ -136,7 +136,7 @@ public final class c extends s5 { if (str == null) { return j3Var.a(null).doubleValue(); } - String i = this.f1153c.i(str, j3Var.b); + String i = this.f1154c.i(str, j3Var.b); if (TextUtils.isEmpty(i)) { return j3Var.a(null).doubleValue(); } @@ -166,7 +166,7 @@ public final class c extends s5 { if (str == null) { return j3Var.a(null).booleanValue(); } - String i = this.f1153c.i(str, j3Var.b); + String i = this.f1154c.i(str, j3Var.b); return TextUtils.isEmpty(i) ? j3Var.a(null).booleanValue() : j3Var.a(Boolean.valueOf(Boolean.parseBoolean(i))).booleanValue(); } @@ -176,7 +176,7 @@ public final class c extends s5 { @Nullable public final Boolean w(@Size(min = 1) String str) { - AnimatableValueParser.w(str); + d.w(str); Bundle D = D(); if (D == null) { g().f.a("Failed to load metadata: Metadata bundle is null"); diff --git a/app/src/main/java/c/i/a/f/i/b/c4.java b/app/src/main/java/c/i/a/f/i/b/c4.java index 8c7685acee..358112b2f9 100644 --- a/app/src/main/java/c/i/a/f/i/b/c4.java +++ b/app/src/main/java/c/i/a/f/i/b/c4.java @@ -1,7 +1,7 @@ package c.i.a.f.i.b; import androidx.annotation.WorkerThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.io.IOException; import java.io.OutputStream; import java.net.HttpURLConnection; @@ -20,7 +20,7 @@ public final class c4 implements Runnable { public c4(x3 x3Var, String str, URL url, byte[] bArr, Map map, z3 z3Var) { this.n = x3Var; - AnimatableValueParser.w(str); + d.w(str); this.i = url; this.j = bArr; this.k = z3Var; diff --git a/app/src/main/java/c/i/a/f/i/b/c5.java b/app/src/main/java/c/i/a/f/i/b/c5.java index b2999d007e..07ca4d0bb0 100644 --- a/app/src/main/java/c/i/a/f/i/b/c5.java +++ b/app/src/main/java/c/i/a/f/i/b/c5.java @@ -1,6 +1,6 @@ package c.i.a.f.i.b; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.measurement.internal.zzn; /* compiled from: com.google.android.gms:play-services-measurement@@18.0.0 */ public final class c5 implements Runnable { @@ -19,7 +19,7 @@ public final class c5 implements Runnable { zzn zzn = this.i; k9Var.f().b(); k9Var.P(); - AnimatableValueParser.w(zzn.i); + d.w(zzn.i); k9Var.G(zzn); } } diff --git a/app/src/main/java/c/i/a/f/i/b/c6.java b/app/src/main/java/c/i/a/f/i/b/c6.java index 54ebf89df0..c30af6be8d 100644 --- a/app/src/main/java/c/i/a/f/i/b/c6.java +++ b/app/src/main/java/c/i/a/f/i/b/c6.java @@ -14,8 +14,8 @@ import android.text.TextUtils; import androidx.annotation.GuardedBy; import androidx.annotation.Nullable; import androidx.annotation.WorkerThread; +import c.c.a.a0.d; import c.i.a.f.e.o.c; -import c.i.a.f.e.o.d; import c.i.a.f.e.o.h; import c.i.a.f.h.l.a9; import c.i.a.f.h.l.ea; @@ -24,7 +24,6 @@ import c.i.a.f.h.l.j9; import c.i.a.f.h.l.r9; import c.i.a.f.h.l.t8; import c.i.a.f.h.l.x7; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.measurement.internal.AppMeasurementDynamiteService; import com.google.android.gms.measurement.internal.zzap; @@ -45,7 +44,7 @@ import java.util.concurrent.atomic.AtomicReference; public final class c6 extends a5 { /* renamed from: c reason: collision with root package name */ - public y6 f1154c; + public y6 f1155c; public w5 d; public final Set e = new CopyOnWriteArraySet(); public boolean f; @@ -124,7 +123,7 @@ public final class c6 extends a5 { boolean z4; if (t8.b() && this.a.h.o(p.H0)) { t(); - if ((!this.a.h.o(p.I0) || i != 20) && dVar.b == null && dVar.f1156c == null) { + if ((!this.a.h.o(p.I0) || i != 20) && dVar.b == null && dVar.f1157c == null) { g().k.a("Discarding empty consent settings"); return; } @@ -140,9 +139,9 @@ public final class c6 extends a5 { if (bool == null) { bool = dVar3.b; } - Boolean bool2 = dVar.f1156c; + Boolean bool2 = dVar.f1157c; if (bool2 == null) { - bool2 = dVar3.f1156c; + bool2 = dVar3.f1157c; } d dVar4 = new d(bool, bool2); this.i = dVar4; @@ -178,7 +177,7 @@ public final class c6 extends a5 { b(); t(); if (!(w5Var == null || w5Var == (w5Var2 = this.d))) { - AnimatableValueParser.G(w5Var2 == null, "EventInterceptor already set."); + d.G(w5Var2 == null, "EventInterceptor already set."); } this.d = w5Var; } @@ -224,7 +223,7 @@ public final class c6 extends a5 { Bundle[] bundleArr; boolean z7; boolean z8; - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(bundle, "null reference"); b(); t(); @@ -248,9 +247,9 @@ public final class c6 extends a5 { g().l.a("Tag Manager is not found and thus will not be used"); } } - if (this.a.h.o(p.f1193e0) && "_cmp".equals(str2) && bundle.containsKey("gclid")) { + if (this.a.h.o(p.f1194e0) && "_cmp".equals(str2) && bundle.containsKey("gclid")) { String string = bundle.getString("gclid"); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); K("auto", "_lgclid", string, System.currentTimeMillis()); } if (ea.b() && this.a.h.o(p.z0) && z2) { @@ -362,18 +361,18 @@ public final class c6 extends a5 { ArrayList arrayList2 = new ArrayList(); arrayList2.add(z10); e().v0().nextLong(); - if (l().v.a() <= 0 || !l().u(j) || !l().f1159x.b()) { + if (l().v.a() <= 0 || !l().u(j) || !l().f1160x.b()) { bundle2 = z10; arrayList = arrayList2; } else { g().n.a("Current session is expired, remove the session number, ID, and engagement time"); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); bundle2 = z10; arrayList = arrayList2; K("auto", "_sid", null, System.currentTimeMillis()); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); K("auto", "_sno", null, System.currentTimeMillis()); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); K("auto", "_se", null, System.currentTimeMillis()); } if (bundle2.getLong("extend_session", 0) == 1) { @@ -439,7 +438,7 @@ public final class c6 extends a5 { } if (q().w(false) != null && "_ae".equals(str2)) { w8 s2 = s(); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); s2.w(true, true, SystemClock.elapsedRealtime()); } } @@ -453,7 +452,7 @@ public final class c6 extends a5 { } public final void H(String str, String str2, Bundle bundle) { - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); I(str, str2, bundle, true, true, System.currentTimeMillis()); } @@ -484,10 +483,10 @@ public final class c6 extends a5 { } else { str3 = string2; } - if (q.h && q.f1168c != null) { + if (q.h && q.f1169c != null) { q.h = false; - boolean q0 = t9.q0(q.f1168c.b, str3); - boolean q02 = t9.q0(q.f1168c.a, string); + boolean q0 = t9.q0(q.f1169c.b, str3); + boolean q02 = t9.q0(q.f1169c.a, string); if (q0 && q02) { q.g().k.a("Ignoring call to log screen view event with duplicate parameters."); return; @@ -503,12 +502,12 @@ public final class c6 extends a5 { } } q.g().n.c("Logging screen view with name, class", string == null ? "null" : string, str3 == null ? "null" : str3); - i7 i7Var = q.f1168c == null ? q.d : q.f1168c; + i7 i7Var = q.f1169c == null ? q.d : q.f1169c; i7 i7Var2 = new i7(string, str3, q.e().t0(), true, j); - q.f1168c = i7Var2; + q.f1169c = i7Var2; q.d = i7Var; q.i = i7Var2; - Objects.requireNonNull((d) q.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) q.a.o); q.f().v(new k7(q, bundle2, i7Var2, i7Var, SystemClock.elapsedRealtime())); return; } @@ -517,7 +516,7 @@ public final class c6 extends a5 { } public final void J(String str, String str2, Object obj) { - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); L(str, str2, obj, true, System.currentTimeMillis()); } @@ -527,8 +526,8 @@ public final class c6 extends a5 { public final void K(String str, String str2, Object obj, long j) { Long l; String str3; - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); b(); t(); if ("allow_personalized_ads".equals(str2)) { @@ -624,7 +623,7 @@ public final class c6 extends a5 { public final void M() { if (this.a.b.getApplicationContext() instanceof Application) { - ((Application) this.a.b.getApplicationContext()).unregisterActivityLifecycleCallbacks(this.f1154c); + ((Application) this.a.b.getApplicationContext()).unregisterActivityLifecycleCallbacks(this.f1155c); } } @@ -633,7 +632,7 @@ public final class c6 extends a5 { b(); t(); if (this.a.m()) { - if (this.a.h.o(p.f1192d0)) { + if (this.a.h.o(p.f1193d0)) { Boolean w = this.a.h.w("google_analytics_deferred_deep_link_enabled"); if (w != null && w.booleanValue()) { g().m.a("Deferred Deep Link feature enabled."); @@ -671,7 +670,7 @@ public final class c6 extends a5 { @Nullable public final String O() { u4 u4Var = this.a; - String str = u4Var.f1209c; + String str = u4Var.f1210c; if (str != null) { return str; } @@ -689,11 +688,11 @@ public final class c6 extends a5 { String a = l().t.a(); if (a != null) { if ("unset".equals(a)) { - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); K("app", "_npa", null, System.currentTimeMillis()); } else { Long valueOf = Long.valueOf("true".equals(a) ? 1 : 0); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); K("app", "_npa", valueOf, System.currentTimeMillis()); } } @@ -712,11 +711,11 @@ public final class c6 extends a5 { s().d.a(); } if (((j9) g9.i.a()).a() && this.a.h.o(p.t0)) { - if (this.a.f1211x.a.o().l.a() <= 0) { + if (this.a.f1212x.a.o().l.a() <= 0) { z2 = false; } if (!z2) { - m4 m4Var = this.a.f1211x; + m4 m4Var = this.a.f1212x; m4Var.a(m4Var.a.b.getPackageName()); } } @@ -757,9 +756,9 @@ public final class c6 extends a5 { } public final void R(String str, String str2, Bundle bundle) { - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); long currentTimeMillis = System.currentTimeMillis(); - AnimatableValueParser.w(str); + d.w(str); Bundle bundle2 = new Bundle(); bundle2.putString(ModelAuditLogEntry.CHANGE_KEY_NAME, str); bundle2.putLong("creation_timestamp", currentTimeMillis); @@ -782,7 +781,7 @@ public final class c6 extends a5 { w8 s2 = s(); s2.b(); d9 d9Var = s2.e; - d9Var.f1162c.c(); + d9Var.f1163c.c(); d9Var.a = 0; d9Var.b = 0; boolean d = this.a.d(); @@ -849,8 +848,8 @@ public final class c6 extends a5 { c.E0(bundle2, "time_to_live", Long.class, 0L); c.E0(bundle2, "expired_event_name", String.class, null); c.E0(bundle2, "expired_event_params", Bundle.class, null); - AnimatableValueParser.w(bundle2.getString(ModelAuditLogEntry.CHANGE_KEY_NAME)); - AnimatableValueParser.w(bundle2.getString("origin")); + d.w(bundle2.getString(ModelAuditLogEntry.CHANGE_KEY_NAME)); + d.w(bundle2.getString("origin")); Objects.requireNonNull(bundle2.get("value"), "null reference"); bundle2.putLong("creation_timestamp", j); String string = bundle2.getString(ModelAuditLogEntry.CHANGE_KEY_NAME); diff --git a/app/src/main/java/c/i/a/f/i/b/c7.java b/app/src/main/java/c/i/a/f/i/b/c7.java index e629454d12..d06c7f5306 100644 --- a/app/src/main/java/c/i/a/f/i/b/c7.java +++ b/app/src/main/java/c/i/a/f/i/b/c7.java @@ -35,7 +35,7 @@ public final class c7 implements Runnable { String str2 = this.l; y6Var.i.b(); try { - if (y6Var.i.a.h.o(p.f1193e0) || y6Var.i.a.h.o(p.f1195g0) || y6Var.i.a.h.o(p.f1194f0)) { + if (y6Var.i.a.h.o(p.f1194e0) || y6Var.i.a.h.o(p.f1196g0) || y6Var.i.a.h.o(p.f1195f0)) { t9 e = y6Var.i.e(); if (!TextUtils.isEmpty(str2)) { if (str2.contains("gclid") || str2.contains("utm_campaign") || str2.contains("utm_source") || str2.contains("utm_medium")) { @@ -48,7 +48,7 @@ public final class c7 implements Runnable { bundle2 = y6Var.i.e().x(uri); if (bundle2 != null) { bundle2.putString("_cis", "intent"); - if (y6Var.i.a.h.o(p.f1193e0) && !bundle2.containsKey("gclid") && bundle != null && bundle.containsKey("gclid")) { + if (y6Var.i.a.h.o(p.f1194e0) && !bundle2.containsKey("gclid") && bundle != null && bundle.containsKey("gclid")) { bundle2.putString("_cer", String.format("gclid=%s", bundle.getString("gclid"))); } y6Var.i.H(str, "_cmp", bundle2); @@ -59,12 +59,12 @@ public final class c7 implements Runnable { } else { bundle2 = null; } - if (y6Var.i.a.h.o(p.f1195g0) && !y6Var.i.a.h.o(p.f1194f0) && bundle != null && bundle.containsKey("gclid") && (bundle2 == null || !bundle2.containsKey("gclid"))) { + if (y6Var.i.a.h.o(p.f1196g0) && !y6Var.i.a.h.o(p.f1195f0) && bundle != null && bundle.containsKey("gclid") && (bundle2 == null || !bundle2.containsKey("gclid"))) { y6Var.i.J("auto", "_lgclid", bundle.getString("gclid")); } if (TextUtils.isEmpty(str2)) { y6Var.i.g().m.b("Activity created with referrer", str2); - if (y6Var.i.a.h.o(p.f1194f0)) { + if (y6Var.i.a.h.o(p.f1195f0)) { if (bundle != null) { y6Var.i.H(str, "_cmp", bundle); if (y6Var.i.a.h.o(p.D0)) { diff --git a/app/src/main/java/c/i/a/f/i/b/ca.java b/app/src/main/java/c/i/a/f/i/b/ca.java index e0f3c70518..0cdf633936 100644 --- a/app/src/main/java/c/i/a/f/i/b/ca.java +++ b/app/src/main/java/c/i/a/f/i/b/ca.java @@ -16,7 +16,7 @@ public final class ca { public Long b; /* renamed from: c reason: collision with root package name */ - public long f1155c; + public long f1156c; public final /* synthetic */ ba d; public ca(ba baVar, aa aaVar) { @@ -114,12 +114,12 @@ public final class ca { return null; } this.a = (a1) obj; - this.f1155c = ((Long) pair.second).longValue(); + this.f1156c = ((Long) pair.second).longValue(); this.d.m(); this.b = (Long) q9.R(this.a, "_eid"); } - long j = this.f1155c - 1; - this.f1155c = j; + long j = this.f1156c - 1; + this.f1156c = j; if (j <= 0) { g q2 = this.d.q(); q2.b(); @@ -130,7 +130,7 @@ public final class ca { q2.g().f.b("Error clearing complex main event", e5); } } else { - this.d.q().Q(str, l, this.f1155c, this.a); + this.d.q().Q(str, l, this.f1156c, this.a); } ArrayList arrayList = new ArrayList(); for (c1 c1Var : this.a.v()) { @@ -156,11 +156,11 @@ public final class ca { j2 = R; } long longValue = ((Long) j2).longValue(); - this.f1155c = longValue; + this.f1156c = longValue; if (longValue <= 0) { this.d.g().g.b("Complex event with zero extra param count. eventName", F); } else { - this.d.q().Q(str, l, this.f1155c, a1Var); + this.d.q().Q(str, l, this.f1156c, a1Var); } } a1.a t = a1Var.t(); diff --git a/app/src/main/java/c/i/a/f/i/b/d.java b/app/src/main/java/c/i/a/f/i/b/d.java index 28e857963f..c5afdd8597 100644 --- a/app/src/main/java/c/i/a/f/i/b/d.java +++ b/app/src/main/java/c/i/a/f/i/b/d.java @@ -7,11 +7,11 @@ public final class d { public final Boolean b; /* renamed from: c reason: collision with root package name */ - public final Boolean f1156c; + public final Boolean f1157c; public d(Boolean bool, Boolean bool2) { this.b = bool; - this.f1156c = bool2; + this.f1157c = bool2; } public static int a(Boolean bool) { @@ -94,7 +94,7 @@ public final class d { Boolean bool = this.b; char c2 = '0'; sb.append(bool == null ? '-' : bool.booleanValue() ? '1' : '0'); - Boolean bool2 = this.f1156c; + Boolean bool2 = this.f1157c; if (bool2 == null) { c2 = '-'; } else if (bool2.booleanValue()) { @@ -109,24 +109,24 @@ public final class d { return false; } d dVar = (d) obj; - return a(this.b) == a(dVar.b) && a(this.f1156c) == a(dVar.f1156c); + return a(this.b) == a(dVar.b) && a(this.f1157c) == a(dVar.f1157c); } public final boolean f(d dVar) { Boolean bool = this.b; Boolean bool2 = Boolean.FALSE; if (bool != bool2 || dVar.b == bool2) { - return this.f1156c == bool2 && dVar.f1156c != bool2; + return this.f1157c == bool2 && dVar.f1157c != bool2; } return true; } public final d h(d dVar) { - return new d(c(this.b, dVar.b), c(this.f1156c, dVar.f1156c)); + return new d(c(this.b, dVar.b), c(this.f1157c, dVar.f1157c)); } public final int hashCode() { - return a(this.f1156c) + ((a(this.b) + 527) * 31); + return a(this.f1157c) + ((a(this.b) + 527) * 31); } public final boolean j() { @@ -135,7 +135,7 @@ public final class d { } public final boolean k() { - Boolean bool = this.f1156c; + Boolean bool = this.f1157c; return bool == null || bool.booleanValue(); } @@ -150,7 +150,7 @@ public final class d { sb.append(bool.booleanValue() ? str : "denied"); } sb.append(", analyticsStorage="); - Boolean bool2 = this.f1156c; + Boolean bool2 = this.f1157c; if (bool2 == null) { sb.append("uninitialized"); } else { diff --git a/app/src/main/java/c/i/a/f/i/b/d4.java b/app/src/main/java/c/i/a/f/i/b/d4.java index aaa592c690..2e2bc6c1a2 100644 --- a/app/src/main/java/c/i/a/f/i/b/d4.java +++ b/app/src/main/java/c/i/a/f/i/b/d4.java @@ -8,7 +8,7 @@ import com.discord.stores.StoreGuildScheduledEvents; public final class d4 extends r5 { /* renamed from: c reason: collision with root package name */ - public static final Pair f1157c = new Pair<>("", 0L); + public static final Pair f1158c = new Pair<>("", 0L); public final j4 A = new j4(this, "firebase_feature_rollouts"); public final j4 B = new j4(this, "deferred_attribution_cache"); public final h4 C = new h4(this, "deferred_attribution_cache_timestamp", 0); @@ -30,20 +30,20 @@ public final class d4 extends r5 { public final h4 r = new h4(this, "session_timeout", StoreGuildScheduledEvents.FETCH_GUILD_EVENTS_THRESHOLD); /* renamed from: s reason: collision with root package name */ - public final f4 f1158s = new f4(this, "start_new_session", true); + public final f4 f1159s = new f4(this, "start_new_session", true); public final j4 t = new j4(this, "non_personalized_ads"); public final f4 u = new f4(this, "allow_remote_dynamite", false); public final h4 v = new h4(this, "last_pause_time", 0); public boolean w; /* renamed from: x reason: collision with root package name */ - public f4 f1159x = new f4(this, "app_backgrounded", false); + public f4 f1160x = new f4(this, "app_backgrounded", false); /* renamed from: y reason: collision with root package name */ - public f4 f1160y = new f4(this, "deep_link_retrieval_complete", false); + public f4 f1161y = new f4(this, "deep_link_retrieval_complete", false); /* renamed from: z reason: collision with root package name */ - public h4 f1161z = new h4(this, "deep_link_retrieval_attempts", 0); + public h4 f1162z = new h4(this, "deep_link_retrieval_attempts", 0); public d4(u4 u4Var) { super(u4Var); @@ -61,7 +61,7 @@ public final class d4 extends r5 { edit.putBoolean("has_been_opened", true); edit.apply(); } - this.e = new k4(this, "health_monitor", Math.max(0L, p.f1190c.a(null).longValue()), null); + this.e = new k4(this, "health_monitor", Math.max(0L, p.f1191c.a(null).longValue()), null); } @Override // c.i.a.f.i.b.r5 diff --git a/app/src/main/java/c/i/a/f/i/b/d6.java b/app/src/main/java/c/i/a/f/i/b/d6.java index c17fe0e5b2..71c358f32b 100644 --- a/app/src/main/java/c/i/a/f/i/b/d6.java +++ b/app/src/main/java/c/i/a/f/i/b/d6.java @@ -21,7 +21,7 @@ public final class d6 implements Runnable { c cVar = c6Var.a.h; n3 o = c6Var.o(); o.t(); - String str = o.f1186c; + String str = o.f1187c; Objects.requireNonNull(cVar); atomicReference.set(Boolean.valueOf(cVar.u(str, p.K))); this.i.notify(); diff --git a/app/src/main/java/c/i/a/f/i/b/d9.java b/app/src/main/java/c/i/a/f/i/b/d9.java index a993032c32..6229d12351 100644 --- a/app/src/main/java/c/i/a/f/i/b/d9.java +++ b/app/src/main/java/c/i/a/f/i/b/d9.java @@ -14,12 +14,12 @@ public final class d9 { public long b; /* renamed from: c reason: collision with root package name */ - public final i f1162c; + public final i f1163c; public final /* synthetic */ w8 d; public d9(w8 w8Var) { this.d = w8Var; - this.f1162c = new c9(this, w8Var.a); + this.f1163c = new c9(this, w8Var.a); Objects.requireNonNull((d) w8Var.a.o); long elapsedRealtime = SystemClock.elapsedRealtime(); this.a = elapsedRealtime; @@ -56,8 +56,8 @@ public final class d9 { this.d.n().H("auto", "_e", bundle); } this.a = j; - this.f1162c.c(); - this.f1162c.b(3600000); + this.f1163c.c(); + this.f1163c.b(3600000); return true; } this.d.g().n.b("Screen exposed for less than 1000 ms. Event not sent. time", Long.valueOf(j2)); diff --git a/app/src/main/java/c/i/a/f/i/b/da.java b/app/src/main/java/c/i/a/f/i/b/da.java index 49dcc2c8fd..4fb4721251 100644 --- a/app/src/main/java/c/i/a/f/i/b/da.java +++ b/app/src/main/java/c/i/a/f/i/b/da.java @@ -19,7 +19,7 @@ public final class da { public boolean b; /* renamed from: c reason: collision with root package name */ - public g1 f1163c; + public g1 f1164c; public BitSet d; public BitSet e; public Map f; @@ -39,7 +39,7 @@ public final class da { this.g.put(num, arrayList); } this.b = false; - this.f1163c = g1Var; + this.f1164c = g1Var; } public da(ba baVar, String str, aa aaVar) { @@ -83,7 +83,7 @@ public final class da { F.k = false; } y0.w((y0) F.j, z2); - g1 g1Var = this.f1163c; + g1 g1Var = this.f1164c; if (g1Var != null) { if (F.k) { F.n(); @@ -169,7 +169,7 @@ public final class da { public final void b(@NonNull ea eaVar) { int a = eaVar.a(); - Boolean bool = eaVar.f1164c; + Boolean bool = eaVar.f1165c; if (bool != null) { this.e.set(a, bool.booleanValue()); } @@ -193,10 +193,10 @@ public final class da { if (eaVar.g()) { list.clear(); } - if (f9.b() && this.h.a.h.u(this.a, p.f1191c0) && eaVar.h()) { + if (f9.b() && this.h.a.h.u(this.a, p.f1192c0) && eaVar.h()) { list.clear(); } - if (!f9.b() || !this.h.a.h.u(this.a, p.f1191c0)) { + if (!f9.b() || !this.h.a.h.u(this.a, p.f1192c0)) { list.add(Long.valueOf(eaVar.f.longValue() / 1000)); return; } diff --git a/app/src/main/java/c/i/a/f/i/b/e6.java b/app/src/main/java/c/i/a/f/i/b/e6.java index 66b2e7dfb0..c311bb8f68 100644 --- a/app/src/main/java/c/i/a/f/i/b/e6.java +++ b/app/src/main/java/c/i/a/f/i/b/e6.java @@ -6,7 +6,6 @@ import android.os.SystemClock; import android.text.TextUtils; import android.util.Pair; import c.i.a.f.e.o.d; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.ads.identifier.AdvertisingIdClient; import java.net.MalformedURLException; import java.net.URL; @@ -26,15 +25,15 @@ public final /* synthetic */ class e6 implements Runnable { URL url; c6 c6Var = this.i; c6Var.b(); - if (c6Var.l().f1160y.b()) { + if (c6Var.l().f1161y.b()) { c6Var.g().m.a("Deferred Deep Link already retrieved. Not fetching again."); return; } - long a = c6Var.l().f1161z.a(); - c6Var.l().f1161z.b(a + 1); + long a = c6Var.l().f1162z.a(); + c6Var.l().f1162z.b(a + 1); if (a >= 5) { c6Var.g().i.a("Permanently failed to retrieve Deferred Deep Link. Reached maximum retries."); - c6Var.l().f1160y.a(true); + c6Var.l().f1161y.a(true); return; } u4 u4Var = c6Var.a; @@ -42,7 +41,7 @@ public final /* synthetic */ class e6 implements Runnable { u4.q(u4Var.n()); n3 z2 = u4Var.z(); z2.t(); - String str = z2.f1186c; + String str = z2.f1187c; d4 o = u4Var.o(); o.b(); Objects.requireNonNull((d) o.a.o); @@ -86,11 +85,11 @@ public final /* synthetic */ class e6 implements Runnable { t9 t = u4Var.t(); u4Var.z(); String str2 = (String) pair.first; - long a2 = u4Var.o().f1161z.a() - 1; + long a2 = u4Var.o().f1162z.a() - 1; Objects.requireNonNull(t); try { - AnimatableValueParser.w(str2); - AnimatableValueParser.w(str); + c.c.a.a0.d.w(str2); + c.c.a.a0.d.w(str); String format = String.format("https://www.googleadservices.com/pagead/conversion/app/deeplink?id_type=adid&sdk_version=%s&rdid=%s&bundleid=%s&retry=%s", String.format("v%s.%s", 33025L, Integer.valueOf(t.y0())), str2, str, Long.valueOf(a2)); if (str.equals(t.a.h.i("debug.deferred.deeplink", ""))) { format = format.concat("&ddl_test=1"); diff --git a/app/src/main/java/c/i/a/f/i/b/e7.java b/app/src/main/java/c/i/a/f/i/b/e7.java index 8a26f66a0d..12fdb5a003 100644 --- a/app/src/main/java/c/i/a/f/i/b/e7.java +++ b/app/src/main/java/c/i/a/f/i/b/e7.java @@ -40,7 +40,7 @@ public final /* synthetic */ class e7 implements Runnable { u4Var.g().i.c("Network Request for Deferred Deep Link failed. response, exception", Integer.valueOf(i), exc); return; } - u4Var.o().f1160y.a(true); + u4Var.o().f1161y.a(true); if (bArr.length == 0) { u4Var.g().m.a("Deferred Deep Link response empty."); return; diff --git a/app/src/main/java/c/i/a/f/i/b/ea.java b/app/src/main/java/c/i/a/f/i/b/ea.java index 0f19c3df7e..57cac28bfa 100644 --- a/app/src/main/java/c/i/a/f/i/b/ea.java +++ b/app/src/main/java/c/i/a/f/i/b/ea.java @@ -17,7 +17,7 @@ public abstract class ea { public int b; /* renamed from: c reason: collision with root package name */ - public Boolean f1164c; + public Boolean f1165c; public Boolean d; public Long e; public Long f; diff --git a/app/src/main/java/c/i/a/f/i/b/f.java b/app/src/main/java/c/i/a/f/i/b/f.java index 9a2a7e6aac..7b5007395f 100644 --- a/app/src/main/java/c/i/a/f/i/b/f.java +++ b/app/src/main/java/c/i/a/f/i/b/f.java @@ -5,7 +5,7 @@ public final class f { public long b; /* renamed from: c reason: collision with root package name */ - public long f1165c; + public long f1166c; public long d; public long e; } diff --git a/app/src/main/java/c/i/a/f/i/b/f4.java b/app/src/main/java/c/i/a/f/i/b/f4.java index 9eb7c60a1e..d1d806b33c 100644 --- a/app/src/main/java/c/i/a/f/i/b/f4.java +++ b/app/src/main/java/c/i/a/f/i/b/f4.java @@ -2,20 +2,20 @@ package c.i.a.f.i.b; import android.content.SharedPreferences; import androidx.annotation.WorkerThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class f4 { public final String a; public final boolean b; /* renamed from: c reason: collision with root package name */ - public boolean f1166c; + public boolean f1167c; public boolean d; public final /* synthetic */ d4 e; public f4(d4 d4Var, String str, boolean z2) { this.e = d4Var; - AnimatableValueParser.w(str); + d.w(str); this.a = str; this.b = z2; } @@ -30,8 +30,8 @@ public final class f4 { @WorkerThread public final boolean b() { - if (!this.f1166c) { - this.f1166c = true; + if (!this.f1167c) { + this.f1167c = true; this.d = this.e.w().getBoolean(this.a, this.b); } return this.d; diff --git a/app/src/main/java/c/i/a/f/i/b/f7.java b/app/src/main/java/c/i/a/f/i/b/f7.java index d3a85ac4fc..8a4e018efd 100644 --- a/app/src/main/java/c/i/a/f/i/b/f7.java +++ b/app/src/main/java/c/i/a/f/i/b/f7.java @@ -1,7 +1,7 @@ package c.i.a.f.i.b; import androidx.annotation.WorkerThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.io.IOException; import java.net.HttpURLConnection; import java.net.URL; @@ -18,7 +18,7 @@ public final class f7 implements Runnable { /* JADX WARN: Incorrect args count in method signature: (Ljava/lang/String;Ljava/net/URL;[BLjava/util/Map;Lc/i/a/f/i/b/x4;)V */ public f7(d7 d7Var, String str, URL url, x4 x4Var) { this.l = d7Var; - AnimatableValueParser.w(str); + d.w(str); this.i = url; this.j = x4Var; this.k = str; diff --git a/app/src/main/java/c/i/a/f/i/b/f9.java b/app/src/main/java/c/i/a/f/i/b/f9.java index 560bda2833..f5c12d76af 100644 --- a/app/src/main/java/c/i/a/f/i/b/f9.java +++ b/app/src/main/java/c/i/a/f/i/b/f9.java @@ -22,7 +22,7 @@ public final class f9 { d4 l = this.a.l(); Objects.requireNonNull((d) this.a.a.o); if (l.u(System.currentTimeMillis())) { - this.a.l().f1158s.a(true); + this.a.l().f1159s.a(true); ActivityManager.RunningAppProcessInfo runningAppProcessInfo = new ActivityManager.RunningAppProcessInfo(); ActivityManager.getMyMemoryState(runningAppProcessInfo); if (runningAppProcessInfo.importance == 100) { @@ -38,10 +38,10 @@ public final class f9 { this.a.b(); this.a.x(); if (this.a.l().u(j)) { - this.a.l().f1158s.a(true); + this.a.l().f1159s.a(true); } this.a.l().v.b(j); - if (this.a.l().f1158s.b()) { + if (this.a.l().f1159s.b()) { c(j, z2); } } @@ -55,7 +55,7 @@ public final class f9 { this.a.g().n.b("Session started, time", Long.valueOf(SystemClock.elapsedRealtime())); Long valueOf = Long.valueOf(j / 1000); this.a.n().K("auto", "_sid", valueOf, j); - this.a.l().f1158s.a(false); + this.a.l().f1159s.a(false); Bundle bundle = new Bundle(); bundle.putLong("_sid", valueOf.longValue()); if (this.a.a.h.o(p.k0) && z2) { diff --git a/app/src/main/java/c/i/a/f/i/b/fa.java b/app/src/main/java/c/i/a/f/i/b/fa.java index e7b1ee0c5e..c090ed91ed 100644 --- a/app/src/main/java/c/i/a/f/i/b/fa.java +++ b/app/src/main/java/c/i/a/f/i/b/fa.java @@ -66,7 +66,7 @@ public final class fa extends ea { Boolean bool; Boolean bool2; String str; - boolean z3 = f9.b() && this.h.a.h.u(this.a, p.f1191c0); + boolean z3 = f9.b() && this.h.a.h.u(this.a, p.f1192c0); long j2 = this.g.H() ? lVar.e : j; String str2 = "null"; Integer num = null; @@ -92,27 +92,27 @@ public final class fa extends ea { if (l0Var == null) { str = str2; } else { - StringBuilder P = a.P("\nevent_filter {\n"); + StringBuilder O = a.O("\nevent_filter {\n"); if (l0Var.x()) { - q9.L(P, 0, "filter_id", Integer.valueOf(l0Var.y())); + q9.L(O, 0, "filter_id", Integer.valueOf(l0Var.y())); } - q9.L(P, 0, "event_name", m.d().u(l0Var.z())); + q9.L(O, 0, "event_name", m.d().u(l0Var.z())); String A = q9.A(l0Var.E(), l0Var.F(), l0Var.H()); if (!A.isEmpty()) { - q9.L(P, 0, "filter_type", A); + q9.L(O, 0, "filter_type", A); } if (l0Var.C()) { - q9.J(P, 1, "event_count_filter", l0Var.D()); + q9.J(O, 1, "event_count_filter", l0Var.D()); } if (l0Var.B() > 0) { - P.append(" filters {\n"); + O.append(" filters {\n"); for (m0 m0Var : l0Var.A()) { - m.I(P, 2, m0Var); + m.I(O, 2, m0Var); } } - q9.H(P, 1); - P.append("}\n}\n"); - str = P.toString(); + q9.H(O, 1); + O.append("}\n}\n"); + str = O.toString(); } s3Var.b("Filter definition", str); } @@ -145,7 +145,7 @@ public final class fa extends ea { return false; } Boolean bool4 = Boolean.TRUE; - this.f1164c = bool4; + this.f1165c = bool4; if (!bool3.booleanValue()) { return true; } diff --git a/app/src/main/java/c/i/a/f/i/b/g.java b/app/src/main/java/c/i/a/f/i/b/g.java index dad82ce059..9b51d7b05d 100644 --- a/app/src/main/java/c/i/a/f/i/b/g.java +++ b/app/src/main/java/c/i/a/f/i/b/g.java @@ -11,8 +11,8 @@ import android.text.TextUtils; import android.util.Pair; import androidx.annotation.WorkerThread; import androidx.collection.ArrayMap; +import c.c.a.a0.d; import c.d.b.a.a; -import c.i.a.f.e.o.d; import c.i.a.f.h.l.a1; import c.i.a.f.h.l.c1; import c.i.a.f.h.l.da; @@ -22,7 +22,6 @@ import c.i.a.f.h.l.l9; import c.i.a.f.h.l.o0; import c.i.a.f.h.l.o8; import c.i.a.f.h.l.u4; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.measurement.internal.zzaq; import com.google.android.gms.measurement.internal.zzku; @@ -53,7 +52,7 @@ public final class g extends i9 { @WorkerThread public static void G(ContentValues contentValues, String str, Object obj) { - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(obj, "null reference"); if (obj instanceof String) { contentValues.put(str, (String) obj); @@ -149,7 +148,7 @@ public final class g extends i9 { Throwable th; Cursor cursor; SQLiteException e2; - AnimatableValueParser.w(str); + d.w(str); b(); n(); ArrayList arrayList = new ArrayList(); @@ -222,9 +221,9 @@ public final class g extends i9 { public final List> D(String str, int i2, int i3) { b(); n(); - AnimatableValueParser.m(i2 > 0); - AnimatableValueParser.m(i3 > 0); - AnimatableValueParser.w(str); + d.m(i2 > 0); + d.m(i3 > 0); + d.w(str); Cursor cursor = null; try { Cursor query = t().query("queue", new String[]{"rowid", "data", "retry_count"}, "app_id=?", new String[]{str}, null, null, "rowid", String.valueOf(i2)); @@ -318,7 +317,7 @@ public final class g extends i9 { Cursor cursor; String str4; SQLiteException e2; - AnimatableValueParser.w(str); + d.w(str); b(); n(); ArrayList arrayList = new ArrayList(); @@ -466,7 +465,7 @@ public final class g extends i9 { ContentValues contentValues = new ContentValues(); contentValues.put("app_id", lVar.a); contentValues.put(ModelAuditLogEntry.CHANGE_KEY_NAME, lVar.b); - contentValues.put("lifetime_count", Long.valueOf(lVar.f1183c)); + contentValues.put("lifetime_count", Long.valueOf(lVar.f1184c)); contentValues.put("current_bundle_count", Long.valueOf(lVar.d)); contentValues.put("last_fire_timestamp", Long.valueOf(lVar.f)); contentValues.put("last_bundled_timestamp", Long.valueOf(lVar.g)); @@ -503,11 +502,11 @@ public final class g extends i9 { contentValues.put("dev_cert_hash", Long.valueOf(a4Var.Q())); contentValues.put("measurement_enabled", Boolean.valueOf(a4Var.T())); a4Var.a.f().b(); - contentValues.put("day", Long.valueOf(a4Var.f1149x)); + contentValues.put("day", Long.valueOf(a4Var.f1150x)); a4Var.a.f().b(); - contentValues.put("daily_public_events_count", Long.valueOf(a4Var.f1150y)); + contentValues.put("daily_public_events_count", Long.valueOf(a4Var.f1151y)); a4Var.a.f().b(); - contentValues.put("daily_events_count", Long.valueOf(a4Var.f1151z)); + contentValues.put("daily_events_count", Long.valueOf(a4Var.f1152z)); a4Var.a.f().b(); contentValues.put("daily_conversions_count", Long.valueOf(a4Var.A)); a4Var.a.f().b(); @@ -534,7 +533,7 @@ public final class g extends i9 { contentValues.put("safelisted_events", TextUtils.join(",", a4Var.k())); } } - if (da.b() && this.a.h.u(a4Var.o(), p.f1198j0)) { + if (da.b() && this.a.h.u(a4Var.o(), p.f1199j0)) { contentValues.put("ga_app_id", a4Var.B()); } try { @@ -577,10 +576,10 @@ public final class g extends i9 { public final boolean K(e1 e1Var, boolean z2) { b(); n(); - AnimatableValueParser.w(e1Var.G1()); - AnimatableValueParser.F(e1Var.n1()); + d.w(e1Var.G1()); + d.F(e1Var.n1()); i0(); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); long currentTimeMillis = System.currentTimeMillis(); if (e1Var.o1() < currentTimeMillis - c.B() || e1Var.o1() > c.B() + currentTimeMillis) { g().i.d("Storing bundle outside of the max uploading time span. appId, now, timestamp", q3.s(e1Var.G1()), Long.valueOf(currentTimeMillis), Long.valueOf(e1Var.o1())); @@ -615,7 +614,7 @@ public final class g extends i9 { public final boolean L(m mVar, long j2, boolean z2) { b(); n(); - AnimatableValueParser.w(mVar.a); + d.w(mVar.a); byte[] d2 = m().v(mVar).d(); ContentValues contentValues = new ContentValues(); contentValues.put("app_id", mVar.a); @@ -640,8 +639,8 @@ public final class g extends i9 { public final boolean M(u9 u9Var) { b(); n(); - if (Y(u9Var.a, u9Var.f1215c) == null) { - if (t9.X(u9Var.f1215c)) { + if (Y(u9Var.a, u9Var.f1216c) == null) { + if (t9.X(u9Var.f1216c)) { long S = S("select count(1) from user_attributes where app_id=? and name not like '!_%' escape '!'", new String[]{u9Var.a}); c cVar = this.a.h; String str = u9Var.a; @@ -653,14 +652,14 @@ public final class g extends i9 { if (S >= ((long) i2)) { return false; } - } else if (!"_npa".equals(u9Var.f1215c) && S("select count(1) from user_attributes where app_id=? and origin=? AND name like '!_%' escape '!'", new String[]{u9Var.a, u9Var.b}) >= 25) { + } else if (!"_npa".equals(u9Var.f1216c) && S("select count(1) from user_attributes where app_id=? and origin=? AND name like '!_%' escape '!'", new String[]{u9Var.a, u9Var.b}) >= 25) { return false; } } ContentValues contentValues = new ContentValues(); contentValues.put("app_id", u9Var.a); contentValues.put("origin", u9Var.b); - contentValues.put(ModelAuditLogEntry.CHANGE_KEY_NAME, u9Var.f1215c); + contentValues.put(ModelAuditLogEntry.CHANGE_KEY_NAME, u9Var.f1216c); contentValues.put("set_timestamp", Long.valueOf(u9Var.d)); G(contentValues, "value", u9Var.e); try { @@ -696,7 +695,7 @@ public final class g extends i9 { contentValues.put("triggered_timestamp", Long.valueOf(zzz.k.k)); contentValues.put("time_to_live", Long.valueOf(zzz.r)); e(); - contentValues.put("expired_event", t9.g0(zzz.f2377s)); + contentValues.put("expired_event", t9.g0(zzz.f2380s)); try { if (t().insertWithOnConflict("conditional_properties", null, contentValues, 5) == -1) { g().f.b("Failed to insert/update conditional user property (got -1)", q3.s(zzz.i)); @@ -711,7 +710,7 @@ public final class g extends i9 { public final boolean O(String str, int i2, l0 l0Var) { n(); b(); - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(l0Var, "null reference"); Integer num = null; if (TextUtils.isEmpty(l0Var.z())) { @@ -748,7 +747,7 @@ public final class g extends i9 { public final boolean P(String str, int i2, o0 o0Var) { n(); b(); - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(o0Var, "null reference"); Integer num = null; if (TextUtils.isEmpty(o0Var.x())) { @@ -785,7 +784,7 @@ public final class g extends i9 { b(); n(); Objects.requireNonNull(a1Var, "null reference"); - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(l, "null reference"); byte[] d2 = a1Var.d(); g().n.c("Saving complex main event, appId, data size", d().u(str), Integer.valueOf(d2.length)); @@ -839,7 +838,7 @@ public final class g extends i9 { Throwable th; Cursor cursor; SQLiteException e2; - AnimatableValueParser.w(str); + d.w(str); b(); n(); Cursor cursor2 = null; @@ -865,16 +864,16 @@ public final class g extends i9 { a4Var.e(cursor.isNull(10) || cursor.getInt(10) != 0); long j2 = cursor.getLong(11); a4Var.a.f().b(); - a4Var.E |= a4Var.f1149x != j2; - a4Var.f1149x = j2; + a4Var.E |= a4Var.f1150x != j2; + a4Var.f1150x = j2; long j3 = cursor.getLong(12); a4Var.a.f().b(); - a4Var.E |= a4Var.f1150y != j3; - a4Var.f1150y = j3; + a4Var.E |= a4Var.f1151y != j3; + a4Var.f1151y = j3; long j4 = cursor.getLong(13); a4Var.a.f().b(); - a4Var.E |= a4Var.f1151z != j4; - a4Var.f1151z = j4; + a4Var.E |= a4Var.f1152z != j4; + a4Var.f1152z = j4; long j5 = cursor.getLong(14); a4Var.a.f().b(); a4Var.E |= a4Var.A != j5; @@ -909,7 +908,7 @@ public final class g extends i9 { if (!cursor.isNull(27)) { a4Var.d(Arrays.asList(cursor.getString(27).split(",", -1))); } - if (da.b() && this.a.h.u(str, p.f1198j0)) { + if (da.b() && this.a.h.u(str, p.f1199j0)) { a4Var.u(cursor.getString(28)); } a4Var.a.f().b(); @@ -953,7 +952,7 @@ public final class g extends i9 { @WorkerThread public final List U(String str, String str2, String str3) { - AnimatableValueParser.w(str); + d.w(str); b(); n(); ArrayList arrayList = new ArrayList(3); @@ -972,8 +971,8 @@ public final class g extends i9 { @WorkerThread public final void V(String str, String str2) { - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); b(); n(); try { @@ -984,7 +983,7 @@ public final class g extends i9 { } public final boolean W(String str, List list) { - AnimatableValueParser.w(str); + d.w(str); n(); b(); SQLiteDatabase t = t(); @@ -1012,7 +1011,7 @@ public final class g extends i9 { } public final long X(String str) { - AnimatableValueParser.w(str); + d.w(str); b(); n(); try { @@ -1030,8 +1029,8 @@ public final class g extends i9 { Throwable th; Cursor cursor; SQLiteException e2; - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); b(); n(); Cursor cursor2 = null; @@ -1101,8 +1100,8 @@ public final class g extends i9 { Throwable th; Cursor cursor; SQLiteException e2; - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); b(); n(); Cursor cursor2 = null; @@ -1175,8 +1174,8 @@ public final class g extends i9 { @WorkerThread public final int a0(String str, String str2) { - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); b(); n(); try { @@ -1201,8 +1200,8 @@ public final class g extends i9 { SQLiteException e2; n(); b(); - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); ArrayMap arrayMap = new ArrayMap(); Cursor cursor2 = null; try { @@ -1278,8 +1277,8 @@ public final class g extends i9 { SQLiteException e2; n(); b(); - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); ArrayMap arrayMap = new ArrayMap(); Cursor cursor2 = null; try { @@ -1354,7 +1353,7 @@ public final class g extends i9 { } public final long f0(String str) { - AnimatableValueParser.w(str); + d.w(str); return w("select count(1) from events where app_id=? and name not like '!_%' escape '!'", new String[]{str}, 0); } @@ -1363,8 +1362,8 @@ public final class g extends i9 { Throwable th; SQLiteException e2; long w; - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); b(); n(); SQLiteDatabase t = t(); @@ -1511,15 +1510,15 @@ public final class g extends i9 { n(); if (R()) { long a = l().i.a(); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); long elapsedRealtime = SystemClock.elapsedRealtime(); - if (Math.abs(elapsedRealtime - a) > p.f1201y.a(null).longValue()) { + if (Math.abs(elapsedRealtime - a) > p.f1202y.a(null).longValue()) { l().i.b(elapsedRealtime); b(); n(); if (R()) { SQLiteDatabase t = t(); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); int delete = t.delete("queue", "abs(bundle_end_timestamp - ?) > cast(? as integer)", new String[]{String.valueOf(System.currentTimeMillis()), String.valueOf(c.B())}); if (delete > 0) { g().n.b("Deleted stale rows. rowsDeleted", Integer.valueOf(delete)); @@ -1628,7 +1627,7 @@ public final class g extends i9 { public final long v(e1 e1Var) throws IOException { b(); n(); - AnimatableValueParser.w(e1Var.G1()); + d.w(e1Var.G1()); byte[] d2 = e1Var.d(); long t = m().t(d2); ContentValues contentValues = new ContentValues(); @@ -1669,7 +1668,7 @@ public final class g extends i9 { @WorkerThread public final f x(long j2, String str, long j3, boolean z2, boolean z3, boolean z4, boolean z5, boolean z6) { - AnimatableValueParser.w(str); + d.w(str); b(); n(); String[] strArr = {str}; @@ -1686,7 +1685,7 @@ public final class g extends i9 { if (query.getLong(0) == j2) { fVar.b = query.getLong(1); fVar.a = query.getLong(2); - fVar.f1165c = query.getLong(3); + fVar.f1166c = query.getLong(3); fVar.d = query.getLong(4); fVar.e = query.getLong(5); } @@ -1697,7 +1696,7 @@ public final class g extends i9 { fVar.a += j3; } if (z4) { - fVar.f1165c += j3; + fVar.f1166c += j3; } if (z5) { fVar.d += j3; @@ -1709,7 +1708,7 @@ public final class g extends i9 { contentValues.put("day", Long.valueOf(j2)); contentValues.put("daily_public_events_count", Long.valueOf(fVar.a)); contentValues.put("daily_events_count", Long.valueOf(fVar.b)); - contentValues.put("daily_conversions_count", Long.valueOf(fVar.f1165c)); + contentValues.put("daily_conversions_count", Long.valueOf(fVar.f1166c)); contentValues.put("daily_error_events_count", Long.valueOf(fVar.d)); contentValues.put("daily_realtime_events_count", Long.valueOf(fVar.e)); t.update("apps", contentValues, "app_id=?", strArr); @@ -1743,8 +1742,8 @@ public final class g extends i9 { SQLiteException e2; Cursor cursor2; Boolean bool; - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); b(); n(); Cursor cursor3 = null; diff --git a/app/src/main/java/c/i/a/f/i/b/h4.java b/app/src/main/java/c/i/a/f/i/b/h4.java index 85b06b58f1..5bbe40fa30 100644 --- a/app/src/main/java/c/i/a/f/i/b/h4.java +++ b/app/src/main/java/c/i/a/f/i/b/h4.java @@ -2,28 +2,28 @@ package c.i.a.f.i.b; import android.content.SharedPreferences; import androidx.annotation.WorkerThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class h4 { public final String a; public final long b; /* renamed from: c reason: collision with root package name */ - public boolean f1167c; + public boolean f1168c; public long d; public final /* synthetic */ d4 e; public h4(d4 d4Var, String str, long j) { this.e = d4Var; - AnimatableValueParser.w(str); + d.w(str); this.a = str; this.b = j; } @WorkerThread public final long a() { - if (!this.f1167c) { - this.f1167c = true; + if (!this.f1168c) { + this.f1168c = true; this.d = this.e.w().getLong(this.a, this.b); } return this.d; diff --git a/app/src/main/java/c/i/a/f/i/b/h7.java b/app/src/main/java/c/i/a/f/i/b/h7.java index 041b2498b6..af2b7599d6 100644 --- a/app/src/main/java/c/i/a/f/i/b/h7.java +++ b/app/src/main/java/c/i/a/f/i/b/h7.java @@ -17,7 +17,7 @@ import java.util.concurrent.ConcurrentHashMap; public final class h7 extends a5 { /* renamed from: c reason: collision with root package name */ - public volatile i7 f1168c; + public volatile i7 f1169c; public i7 d; public i7 e; public final Map f = new ConcurrentHashMap(); @@ -47,7 +47,7 @@ public final class h7 extends a5 { } else { bundle.remove("_sc"); } - bundle.putLong("_si", i7Var.f1171c); + bundle.putLong("_si", i7Var.f1172c); } else if (i7Var == null && z2) { bundle.remove("_sn"); bundle.remove("_sc"); @@ -83,7 +83,7 @@ public final class h7 extends a5 { } z3 = false; } - if (i7Var2 == null || i7Var2.f1171c != i7Var.f1171c || !t9.q0(i7Var2.b, i7Var.b) || !t9.q0(i7Var2.a, i7Var.a)) { + if (i7Var2 == null || i7Var2.f1172c != i7Var.f1172c || !t9.q0(i7Var2.b, i7Var.b) || !t9.q0(i7Var2.a, i7Var.a)) { z4 = true; } if (z4) { @@ -101,7 +101,7 @@ public final class h7 extends a5 { if (str3 != null) { bundle2.putString("_pc", str3); } - bundle2.putLong("_pi", i7Var2.f1171c); + bundle2.putLong("_pi", i7Var2.f1172c); } if (this.a.h.o(p.T) && z3) { if (!((v9) s9.i.a()).a() || !this.a.h.o(p.V)) { @@ -215,14 +215,14 @@ public final class h7 extends a5 { @MainThread public final void z(Activity activity, i7 i7Var, boolean z2) { i7 i7Var2; - i7 i7Var3 = this.f1168c == null ? this.d : this.f1168c; + i7 i7Var3 = this.f1169c == null ? this.d : this.f1169c; if (i7Var.b == null) { - i7Var2 = new i7(i7Var.a, activity != null ? x(activity.getClass().getCanonicalName()) : null, i7Var.f1171c, i7Var.e, i7Var.f); + i7Var2 = new i7(i7Var.a, activity != null ? x(activity.getClass().getCanonicalName()) : null, i7Var.f1172c, i7Var.e, i7Var.f); } else { i7Var2 = i7Var; } - this.d = this.f1168c; - this.f1168c = i7Var2; + this.d = this.f1169c; + this.f1169c = i7Var2; Objects.requireNonNull((d) this.a.o); f().v(new j7(this, i7Var2, i7Var3, SystemClock.elapsedRealtime(), z2)); } diff --git a/app/src/main/java/c/i/a/f/i/b/ha.java b/app/src/main/java/c/i/a/f/i/b/ha.java index 3c4c68b26e..4d93b1fe70 100644 --- a/app/src/main/java/c/i/a/f/i/b/ha.java +++ b/app/src/main/java/c/i/a/f/i/b/ha.java @@ -33,7 +33,7 @@ public final class ha extends ea { } public final boolean i(Long l, Long l2, i1 i1Var, boolean z2) { - boolean z3 = f9.b() && this.h.a.h.u(this.a, p.f1188a0); + boolean z3 = f9.b() && this.h.a.h.u(this.a, p.f1189a0); boolean z4 = this.g.z(); boolean A = this.g.A(); boolean C = this.g.C(); @@ -80,7 +80,7 @@ public final class ha extends ea { if (bool == null) { return false; } - this.f1164c = Boolean.TRUE; + this.f1165c = Boolean.TRUE; if (C && !bool.booleanValue()) { return true; } diff --git a/app/src/main/java/c/i/a/f/i/b/i.java b/app/src/main/java/c/i/a/f/i/b/i.java index 87c0c49762..0cf448020f 100644 --- a/app/src/main/java/c/i/a/f/i/b/i.java +++ b/app/src/main/java/c/i/a/f/i/b/i.java @@ -10,13 +10,13 @@ public abstract class i { public final t5 b; /* renamed from: c reason: collision with root package name */ - public final Runnable f1169c; + public final Runnable f1170c; public volatile long d; public i(t5 t5Var) { Objects.requireNonNull(t5Var, "null reference"); this.b = t5Var; - this.f1169c = new k(this, t5Var); + this.f1170c = new k(this, t5Var); } public abstract void a(); @@ -26,7 +26,7 @@ public abstract class i { if (j >= 0) { Objects.requireNonNull((d) this.b.h()); this.d = System.currentTimeMillis(); - if (!d().postDelayed(this.f1169c, j)) { + if (!d().postDelayed(this.f1170c, j)) { this.b.g().f.b("Failed to schedule delayed post. time", Long.valueOf(j)); } } @@ -34,7 +34,7 @@ public abstract class i { public final void c() { this.d = 0; - d().removeCallbacks(this.f1169c); + d().removeCallbacks(this.f1170c); } public final Handler d() { diff --git a/app/src/main/java/c/i/a/f/i/b/i4.java b/app/src/main/java/c/i/a/f/i/b/i4.java index a2b8deac28..ffcc505d75 100644 --- a/app/src/main/java/c/i/a/f/i/b/i4.java +++ b/app/src/main/java/c/i/a/f/i/b/i4.java @@ -3,7 +3,7 @@ package c.i.a.f.i.b; import android.content.SharedPreferences; import android.os.Bundle; import androidx.annotation.WorkerThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; @@ -13,20 +13,20 @@ public final class i4 { public final Bundle b = new Bundle(); /* renamed from: c reason: collision with root package name */ - public boolean f1170c; + public boolean f1171c; public Bundle d; public final /* synthetic */ d4 e; public i4(d4 d4Var, String str) { this.e = d4Var; - AnimatableValueParser.w(str); + d.w(str); this.a = str; } @WorkerThread public final Bundle a() { - if (!this.f1170c) { - this.f1170c = true; + if (!this.f1171c) { + this.f1171c = true; String string = this.e.w().getString(this.a, null); if (string != null) { try { diff --git a/app/src/main/java/c/i/a/f/i/b/i7.java b/app/src/main/java/c/i/a/f/i/b/i7.java index 8ae5810cfa..775571c3d1 100644 --- a/app/src/main/java/c/i/a/f/i/b/i7.java +++ b/app/src/main/java/c/i/a/f/i/b/i7.java @@ -5,7 +5,7 @@ public final class i7 { public final String b; /* renamed from: c reason: collision with root package name */ - public final long f1171c; + public final long f1172c; public boolean d; public final boolean e; public final long f; @@ -17,7 +17,7 @@ public final class i7 { public i7(String str, String str2, long j, boolean z2, long j2) { this.a = str; this.b = str2; - this.f1171c = j; + this.f1172c = j; this.d = false; this.e = z2; this.f = j2; diff --git a/app/src/main/java/c/i/a/f/i/b/i9.java b/app/src/main/java/c/i/a/f/i/b/i9.java index 359b087d71..3d7d412c2e 100644 --- a/app/src/main/java/c/i/a/f/i/b/i9.java +++ b/app/src/main/java/c/i/a/f/i/b/i9.java @@ -4,7 +4,7 @@ public abstract class i9 extends s5 implements t5 { public final k9 b; /* renamed from: c reason: collision with root package name */ - public boolean f1172c; + public boolean f1173c; public i9(k9 k9Var) { super(k9Var.k); @@ -17,16 +17,16 @@ public abstract class i9 extends s5 implements t5 { } public final void n() { - if (!this.f1172c) { + if (!this.f1173c) { throw new IllegalStateException("Not initialized"); } } public final void o() { - if (!this.f1172c) { + if (!this.f1173c) { p(); this.b.q++; - this.f1172c = true; + this.f1173c = true; return; } throw new IllegalStateException("Can't initialize twice"); diff --git a/app/src/main/java/c/i/a/f/i/b/ia.java b/app/src/main/java/c/i/a/f/i/b/ia.java index 50053d4f7c..88e46b158c 100644 --- a/app/src/main/java/c/i/a/f/i/b/ia.java +++ b/app/src/main/java/c/i/a/f/i/b/ia.java @@ -2,7 +2,7 @@ package c.i.a.f.i.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.measurement.internal.zzaq; import com.google.android.gms.measurement.internal.zzku; import com.google.android.gms.measurement.internal.zzz; @@ -11,7 +11,7 @@ public final class ia implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzz createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); long j = 0; long j2 = 0; long j3 = 0; @@ -23,48 +23,48 @@ public final class ia implements Parcelable.Creator { zzaq zzaq2 = null; zzaq zzaq3 = null; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 2: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 3: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 4: - zzku = (zzku) AnimatableValueParser.S(parcel, readInt, zzku.CREATOR); + zzku = (zzku) d.S(parcel, readInt, zzku.CREATOR); break; case 5: - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); break; case 6: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 7: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; case 8: - zzaq = (zzaq) AnimatableValueParser.S(parcel, readInt, zzaq.CREATOR); + zzaq = (zzaq) d.S(parcel, readInt, zzaq.CREATOR); break; case 9: - j2 = AnimatableValueParser.k2(parcel, readInt); + j2 = d.H1(parcel, readInt); break; case 10: - zzaq2 = (zzaq) AnimatableValueParser.S(parcel, readInt, zzaq.CREATOR); + zzaq2 = (zzaq) d.S(parcel, readInt, zzaq.CREATOR); break; case 11: - j3 = AnimatableValueParser.k2(parcel, readInt); + j3 = d.H1(parcel, readInt); break; case 12: - zzaq3 = (zzaq) AnimatableValueParser.S(parcel, readInt, zzaq.CREATOR); + zzaq3 = (zzaq) d.S(parcel, readInt, zzaq.CREATOR); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzz(str, str2, zzku, j, z2, str3, zzaq, j2, zzaq2, j3, zzaq3); } diff --git a/app/src/main/java/c/i/a/f/i/b/j.java b/app/src/main/java/c/i/a/f/i/b/j.java index bb3de1cd9c..22b001686d 100644 --- a/app/src/main/java/c/i/a/f/i/b/j.java +++ b/app/src/main/java/c/i/a/f/i/b/j.java @@ -19,7 +19,7 @@ import java.util.concurrent.TimeUnit; public final class j extends r5 { /* renamed from: c reason: collision with root package name */ - public long f1173c; + public long f1174c; public String d; public Boolean e; public AccountManager f; @@ -33,7 +33,7 @@ public final class j extends r5 { @Override // c.i.a.f.i.b.r5 public final boolean r() { Calendar instance = Calendar.getInstance(); - this.f1173c = TimeUnit.MINUTES.convert((long) (instance.get(16) + instance.get(15)), TimeUnit.MILLISECONDS); + this.f1174c = TimeUnit.MINUTES.convert((long) (instance.get(16) + instance.get(15)), TimeUnit.MILLISECONDS); Locale locale = Locale.getDefault(); String language = locale.getLanguage(); Locale locale2 = Locale.ENGLISH; @@ -60,7 +60,7 @@ public final class j extends r5 { public final long t() { o(); - return this.f1173c; + return this.f1174c; } public final String u() { diff --git a/app/src/main/java/c/i/a/f/i/b/j3.java b/app/src/main/java/c/i/a/f/i/b/j3.java index ec187c3cae..fbf8b06922 100644 --- a/app/src/main/java/c/i/a/f/i/b/j3.java +++ b/app/src/main/java/c/i/a/f/i/b/j3.java @@ -9,7 +9,7 @@ public final class j3 { public final String b; /* renamed from: c reason: collision with root package name */ - public final h3 f1174c; + public final h3 f1175c; public final V d; public final V e; public final Object f = new Object(); @@ -23,7 +23,7 @@ public final class j3 { this.b = str; this.d = obj; this.e = obj2; - this.f1174c = h3Var; + this.f1175c = h3Var; } public final V a(@Nullable V v) { @@ -45,7 +45,7 @@ public final class j3 { if (!ga.a()) { V v2 = null; try { - h3 h3Var = j3Var.f1174c; + h3 h3Var = j3Var.f1175c; if (h3Var != null) { v2 = (V) h3Var.a(); } @@ -60,7 +60,7 @@ public final class j3 { } } catch (SecurityException unused2) { } - h3 h3Var2 = this.f1174c; + h3 h3Var2 = this.f1175c; if (h3Var2 == null) { return this.d; } diff --git a/app/src/main/java/c/i/a/f/i/b/j4.java b/app/src/main/java/c/i/a/f/i/b/j4.java index 0b97a1fcd6..68ffcd5298 100644 --- a/app/src/main/java/c/i/a/f/i/b/j4.java +++ b/app/src/main/java/c/i/a/f/i/b/j4.java @@ -2,19 +2,19 @@ package c.i.a.f.i.b; import android.content.SharedPreferences; import androidx.annotation.WorkerThread; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class j4 { public final String a; public boolean b; /* renamed from: c reason: collision with root package name */ - public String f1175c; + public String f1176c; public final /* synthetic */ d4 d; public j4(d4 d4Var, String str) { this.d = d4Var; - AnimatableValueParser.w(str); + d.w(str); this.a = str; } @@ -22,9 +22,9 @@ public final class j4 { public final String a() { if (!this.b) { this.b = true; - this.f1175c = this.d.w().getString(this.a, null); + this.f1176c = this.d.w().getString(this.a, null); } - return this.f1175c; + return this.f1176c; } @WorkerThread @@ -32,6 +32,6 @@ public final class j4 { SharedPreferences.Editor edit = this.d.w().edit(); edit.putString(this.a, str); edit.apply(); - this.f1175c = str; + this.f1176c = str; } } diff --git a/app/src/main/java/c/i/a/f/i/b/j9.java b/app/src/main/java/c/i/a/f/i/b/j9.java index abc59062a6..e41379d743 100644 --- a/app/src/main/java/c/i/a/f/i/b/j9.java +++ b/app/src/main/java/c/i/a/f/i/b/j9.java @@ -19,7 +19,7 @@ public final class j9 implements Runnable { g gVar = new g(k9Var); gVar.o(); k9Var.d = gVar; - k9Var.k.h.f1153c = k9Var.b; + k9Var.k.h.f1154c = k9Var.b; q8 q8Var = new q8(k9Var); q8Var.o(); k9Var.j = q8Var; diff --git a/app/src/main/java/c/i/a/f/i/b/k4.java b/app/src/main/java/c/i/a/f/i/b/k4.java index 8ae8868566..e40a2412c2 100644 --- a/app/src/main/java/c/i/a/f/i/b/k4.java +++ b/app/src/main/java/c/i/a/f/i/b/k4.java @@ -2,8 +2,7 @@ package c.i.a.f.i.b; import android.content.SharedPreferences; import androidx.annotation.WorkerThread; -import c.i.a.f.e.o.d; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Objects; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class k4 { @@ -11,28 +10,28 @@ public final class k4 { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1176c; + public final String f1177c; public final long d; public final /* synthetic */ d4 e; public k4(d4 d4Var, String str, long j, g4 g4Var) { this.e = d4Var; - AnimatableValueParser.w(str); - AnimatableValueParser.m(j > 0); + d.w(str); + d.m(j > 0); this.a = str.concat(":start"); this.b = str.concat(":count"); - this.f1176c = str.concat(":value"); + this.f1177c = str.concat(":value"); this.d = j; } @WorkerThread public final void a() { this.e.b(); - Objects.requireNonNull((d) this.e.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.e.a.o); long currentTimeMillis = System.currentTimeMillis(); SharedPreferences.Editor edit = this.e.w().edit(); edit.remove(this.b); - edit.remove(this.f1176c); + edit.remove(this.f1177c); edit.putLong(this.a, currentTimeMillis); edit.apply(); } diff --git a/app/src/main/java/c/i/a/f/i/b/k5.java b/app/src/main/java/c/i/a/f/i/b/k5.java index e88aa294a4..4b8e4930a3 100644 --- a/app/src/main/java/c/i/a/f/i/b/k5.java +++ b/app/src/main/java/c/i/a/f/i/b/k5.java @@ -1,7 +1,7 @@ package c.i.a.f.i.b; +import c.c.a.a0.d; import c.i.a.f.h.l.t8; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.measurement.internal.zzn; /* compiled from: com.google.android.gms:play-services-measurement@@18.0.0 */ public final class k5 implements Runnable { @@ -21,7 +21,7 @@ public final class k5 implements Runnable { if (t8.b() && k9Var.k.h.o(p.J0)) { k9Var.f().b(); k9Var.P(); - AnimatableValueParser.w(zzn.i); + d.w(zzn.i); d b = d.b(zzn.E); d a = k9Var.a(zzn.i); k9Var.g().n.c("Setting consent, package, consent", zzn.i, b); diff --git a/app/src/main/java/c/i/a/f/i/b/k8.java b/app/src/main/java/c/i/a/f/i/b/k8.java index 6613fc8b24..1698c15a31 100644 --- a/app/src/main/java/c/i/a/f/i/b/k8.java +++ b/app/src/main/java/c/i/a/f/i/b/k8.java @@ -10,9 +10,9 @@ import android.os.RemoteException; import androidx.annotation.MainThread; import androidx.annotation.NonNull; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.e.k.b; import c.i.a.f.e.n.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.ConnectionResult; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class k8 implements ServiceConnection, b.a, b.AbstractC0107b { @@ -27,7 +27,7 @@ public final class k8 implements ServiceConnection, b.a, b.AbstractC0107b { @Override // c.i.a.f.e.k.b.a @MainThread public final void e(int i) { - AnimatableValueParser.u("MeasurementServiceConnection.onConnectionSuspended"); + d.u("MeasurementServiceConnection.onConnectionSuspended"); this.k.g().m.a("Service connection suspended"); this.k.f().v(new o8(this)); } @@ -35,7 +35,7 @@ public final class k8 implements ServiceConnection, b.a, b.AbstractC0107b { @Override // c.i.a.f.e.k.b.AbstractC0107b @MainThread public final void g(@NonNull ConnectionResult connectionResult) { - AnimatableValueParser.u("MeasurementServiceConnection.onConnectionFailed"); + d.u("MeasurementServiceConnection.onConnectionFailed"); u4 u4Var = this.k.a; q3 q3Var = u4Var.j; q3 q3Var2 = (q3Var == null || !q3Var.n()) ? null : u4Var.j; @@ -52,7 +52,7 @@ public final class k8 implements ServiceConnection, b.a, b.AbstractC0107b { @Override // c.i.a.f.e.k.b.a @MainThread public final void h(@Nullable Bundle bundle) { - AnimatableValueParser.u("MeasurementServiceConnection.onConnected"); + d.u("MeasurementServiceConnection.onConnected"); synchronized (this) { try { this.k.f().v(new l8(this, this.j.w())); @@ -66,7 +66,7 @@ public final class k8 implements ServiceConnection, b.a, b.AbstractC0107b { @Override // android.content.ServiceConnection @MainThread public final void onServiceConnected(ComponentName componentName, IBinder iBinder) { - AnimatableValueParser.u("MeasurementServiceConnection.onServiceConnected"); + d.u("MeasurementServiceConnection.onServiceConnected"); synchronized (this) { if (iBinder == null) { this.i = false; @@ -91,7 +91,7 @@ public final class k8 implements ServiceConnection, b.a, b.AbstractC0107b { try { a b = a.b(); q7 q7Var = this.k; - b.c(q7Var.a.b, q7Var.f1204c); + b.c(q7Var.a.b, q7Var.f1205c); } catch (IllegalArgumentException unused2) { } } else { @@ -103,7 +103,7 @@ public final class k8 implements ServiceConnection, b.a, b.AbstractC0107b { @Override // android.content.ServiceConnection @MainThread public final void onServiceDisconnected(ComponentName componentName) { - AnimatableValueParser.u("MeasurementServiceConnection.onServiceDisconnected"); + d.u("MeasurementServiceConnection.onServiceDisconnected"); this.k.g().m.a("Service disconnected"); this.k.f().v(new m8(this, componentName)); } diff --git a/app/src/main/java/c/i/a/f/i/b/k9.java b/app/src/main/java/c/i/a/f/i/b/k9.java index 21a7e5a847..0ee5f30879 100644 --- a/app/src/main/java/c/i/a/f/i/b/k9.java +++ b/app/src/main/java/c/i/a/f/i/b/k9.java @@ -26,7 +26,7 @@ import androidx.annotation.WorkerThread; import androidx.collection.ArrayMap; import androidx.exifinterface.media.ExifInterface; import androidx.recyclerview.widget.RecyclerView; -import c.i.a.f.e.o.d; +import c.c.a.a0.d; import c.i.a.f.e.p.b; import c.i.a.f.h.l.a1; import c.i.a.f.h.l.a4; @@ -45,7 +45,6 @@ import c.i.a.f.h.l.u0; import c.i.a.f.h.l.u4; import c.i.a.f.h.l.x7; import com.adjust.sdk.AdjustConfig; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.measurement.internal.zzap; import com.google.android.gms.measurement.internal.zzaq; @@ -82,7 +81,7 @@ public class k9 implements t5 { public p4 b; /* renamed from: c reason: collision with root package name */ - public x3 f1177c; + public x3 f1178c; public g d; public b4 e; public h9 f; @@ -100,20 +99,20 @@ public class k9 implements t5 { public boolean r; /* renamed from: s reason: collision with root package name */ - public boolean f1178s; + public boolean f1179s; public boolean t; public FileLock u; public FileChannel v; public List w; /* renamed from: x reason: collision with root package name */ - public List f1179x; + public List f1180x; /* renamed from: y reason: collision with root package name */ - public long f1180y; + public long f1181y; /* renamed from: z reason: collision with root package name */ - public final Map f1181z; + public final Map f1182z; /* compiled from: com.google.android.gms:play-services-measurement@@18.0.0 */ public class a { @@ -121,7 +120,7 @@ public class k9 implements t5 { public List b; /* renamed from: c reason: collision with root package name */ - public List f1182c; + public List f1183c; public long d; public a(k9 k9Var, j9 j9Var) { @@ -132,13 +131,13 @@ public class k9 implements t5 { } public final boolean b(long j, a1 a1Var) { - if (this.f1182c == null) { - this.f1182c = new ArrayList(); + if (this.f1183c == null) { + this.f1183c = new ArrayList(); } if (this.b == null) { this.b = new ArrayList(); } - if (this.f1182c.size() > 0 && ((this.f1182c.get(0).H() / 1000) / 60) / 60 != ((a1Var.H() / 1000) / 60) / 60) { + if (this.f1183c.size() > 0 && ((this.f1183c.get(0).H() / 1000) / 60) / 60 != ((a1Var.H() / 1000) / 60) / 60) { return false; } long g = this.d + ((long) a1Var.g()); @@ -146,33 +145,33 @@ public class k9 implements t5 { return false; } this.d = g; - this.f1182c.add(a1Var); + this.f1183c.add(a1Var); this.b.add(Long.valueOf(j)); - return this.f1182c.size() < Math.max(1, p.j.a(null).intValue()); + return this.f1183c.size() < Math.max(1, p.j.a(null).intValue()); } } public k9(r9 r9Var) { u4 b = u4.b(r9Var.a, null, null); this.k = b; - this.f1180y = -1; + this.f1181y = -1; q9 q9Var = new q9(this); q9Var.o(); this.h = q9Var; x3 x3Var = new x3(this); x3Var.o(); - this.f1177c = x3Var; + this.f1178c = x3Var; p4 p4Var = new p4(this); p4Var.o(); this.b = p4Var; - this.f1181z = new HashMap(); + this.f1182z = new HashMap(); b.f().v(new j9(this, r9Var)); } public static void C(i9 i9Var) { if (i9Var == null) { throw new IllegalStateException("Upload Component not created"); - } else if (!i9Var.f1172c) { + } else if (!i9Var.f1173c) { String valueOf = String.valueOf(i9Var.getClass()); StringBuilder sb = new StringBuilder(valueOf.length() + 27); sb.append("Component not initialized: "); @@ -232,7 +231,7 @@ public class k9 implements t5 { } public final void A(a1.a aVar, a1.a aVar2) { - AnimatableValueParser.m("_e".equals(aVar.y())); + d.m("_e".equals(aVar.y())); N(); c1 w = q9.w((a1) ((u4) aVar.p()), "_et"); if (w.I() && w.J() > 0) { @@ -257,7 +256,7 @@ public class k9 implements t5 { this.k.t().Q(b, this.k.h.m(zzn.i)); zzaq = b.a(); } - if (this.k.h.o(p.f1193e0) && "_cmp".equals(zzaq.i) && "referrer API v2".equals(zzaq.j.i.getString("_cis"))) { + if (this.k.h.o(p.f1194e0) && "_cmp".equals(zzaq.i) && "referrer API v2".equals(zzaq.j.i.getString("_cis"))) { String string = zzaq.j.i.getString("gclid"); if (!TextUtils.isEmpty(string)) { o(new zzku("_lgclid", zzaq.l, string, "auto"), zzn); @@ -286,7 +285,7 @@ public class k9 implements t5 { } } else { this.k.g().m.a("Falling back to manifest metadata value for ad personalization"); - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); o(new zzku("_npa", System.currentTimeMillis(), Long.valueOf(zzn.A.booleanValue() ? 1 : 0), "auto"), zzn); } } @@ -320,7 +319,7 @@ public class k9 implements t5 { U(); P(); Objects.requireNonNull(zzn, "null reference"); - AnimatableValueParser.w(zzn.i); + d.w(zzn.i); if (L(zzn)) { a4 T2 = K().T(zzn.i); if (T2 != null && TextUtils.isEmpty(T2.v()) && !TextUtils.isEmpty(zzn.j)) { @@ -337,7 +336,7 @@ public class k9 implements t5 { } long j4 = zzn.u; if (j4 == 0) { - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); j4 = System.currentTimeMillis(); } j y2 = this.k.y(); @@ -358,13 +357,13 @@ public class k9 implements t5 { T = K().T(zzn.i); if (T != null) { this.k.t(); - if (t9.d0(zzn.j, T.v(), zzn.f2376z, T.y())) { + if (t9.d0(zzn.j, T.v(), zzn.f2379z, T.y())) { this.k.g().i.b("New GMP App Id passed in. Removing cached database data. appId", q3.s(T.o())); g K = K(); String o = T.o(); K.n(); K.b(); - AnimatableValueParser.w(o); + d.w(o); try { SQLiteDatabase t = K.t(); String[] strArr = {o}; @@ -389,7 +388,7 @@ public class k9 implements t5 { if (i == 0) { o(new zzku("_fot", j4, Long.valueOf(j5), "auto"), zzn); U(); - this.k.f1211x.a(zzn.i); + this.k.f1212x.a(zzn.i); U(); P(); Bundle bundle2 = new Bundle(); @@ -407,12 +406,12 @@ public class k9 implements t5 { str2 = "_et"; j2 = 1; } - if (zzn.f2375y) { + if (zzn.f2378y) { bundle2.putLong("_dac", j2); } g K2 = K(); String str5 = zzn.i; - AnimatableValueParser.w(str5); + d.w(str5); K2.b(); K2.n(); long g02 = K2.g0(str5, "first_open_count"); @@ -485,7 +484,7 @@ public class k9 implements t5 { } else { j = 1; } - if (zzn.f2375y) { + if (zzn.f2378y) { bundle3.putLong("_dac", j); } B(new zzaq("_v", new zzap(bundle3), "auto", j4), zzn); @@ -542,9 +541,9 @@ public class k9 implements t5 { @WorkerThread public final void F(zzz zzz, zzn zzn) { Objects.requireNonNull(zzz, "null reference"); - AnimatableValueParser.w(zzz.i); + d.w(zzz.i); Objects.requireNonNull(zzz.k, "null reference"); - AnimatableValueParser.w(zzz.k.j); + d.w(zzz.k.j); U(); P(); if (L(zzn)) { @@ -562,7 +561,7 @@ public class k9 implements t5 { if (Z.m) { K().V(zzz.i, zzz.k.j); } - zzaq zzaq = zzz.f2377s; + zzaq zzaq = zzz.f2380s; if (zzaq != null) { Bundle bundle = null; zzap zzap = zzaq.j; @@ -571,7 +570,7 @@ public class k9 implements t5 { } t9 t = this.k.t(); String str = zzz.i; - zzaq zzaq2 = zzz.f2377s; + zzaq zzaq2 = zzz.f2380s; I(t.B(str, zzaq2.i, bundle, Z.j, zzaq2.l, true, x7.b() && this.k.h.o(p.M0)), zzn); } } else { @@ -601,7 +600,7 @@ public class k9 implements t5 { U(); P(); Objects.requireNonNull(zzn, "null reference"); - AnimatableValueParser.w(zzn.i); + d.w(zzn.i); a4 T = K().T(zzn.i); d dVar = d.a; d h = (!t8.b() || !this.k.h.o(p.J0)) ? dVar : a(zzn.i).h(d.b(zzn.E)); @@ -637,16 +636,16 @@ public class k9 implements t5 { T.m(zzn.j); z2 = true; } - if (!TextUtils.equals(zzn.f2376z, T.y())) { - T.q(zzn.f2376z); + if (!TextUtils.equals(zzn.f2379z, T.y())) { + T.q(zzn.f2379z); z2 = true; } - if (da.b() && this.k.h.u(T.o(), p.f1198j0) && !TextUtils.equals(zzn.D, T.B())) { + if (da.b() && this.k.h.u(T.o(), p.f1199j0) && !TextUtils.equals(zzn.D, T.B())) { T.u(zzn.D); z2 = true; } - if (!TextUtils.isEmpty(zzn.f2373s) && !zzn.f2373s.equals(T.H())) { - T.A(zzn.f2373s); + if (!TextUtils.isEmpty(zzn.f2376s) && !zzn.f2376s.equals(T.H())) { + T.A(zzn.f2376s); z2 = true; } long j2 = zzn.m; @@ -691,8 +690,8 @@ public class k9 implements t5 { T.n(zzn.w); z2 = true; } - if (zzn.f2374x != T.i()) { - T.r(zzn.f2374x); + if (zzn.f2377x != T.i()) { + T.r(zzn.f2377x); z2 = true; } if (zzn.A != T.j()) { @@ -715,11 +714,11 @@ public class k9 implements t5 { z2 = true; if (!TextUtils.equals(zzn.j, T.v())) { } - if (!TextUtils.equals(zzn.f2376z, T.y())) { + if (!TextUtils.equals(zzn.f2379z, T.y())) { } T.u(zzn.D); z2 = true; - T.A(zzn.f2373s); + T.A(zzn.f2376s); z2 = true; long j2 = zzn.m; T.t(zzn.m); @@ -741,7 +740,7 @@ public class k9 implements t5 { z2 = true; if (zzn.w != T.h()) { } - if (zzn.f2374x != T.i()) { + if (zzn.f2377x != T.i()) { } if (zzn.A != T.j()) { } @@ -777,12 +776,12 @@ public class k9 implements t5 { T.c(c(h)); } T.m(zzn.j); - T.q(zzn.f2376z); - if (da.b() && this.k.h.u(T.o(), p.f1198j0)) { + T.q(zzn.f2379z); + if (da.b() && this.k.h.u(T.o(), p.f1199j0)) { T.u(zzn.D); } - if (!TextUtils.isEmpty(zzn.f2373s)) { - T.A(zzn.f2373s); + if (!TextUtils.isEmpty(zzn.f2376s)) { + T.A(zzn.f2376s); } long j3 = zzn.m; if (j3 != 0) { @@ -805,7 +804,7 @@ public class k9 implements t5 { T.R(zzn.t); } T.n(zzn.w); - T.r(zzn.f2374x); + T.r(zzn.f2377x); T.b(zzn.A); T.z(zzn.B); T.a.f().b(); @@ -842,8 +841,8 @@ public class k9 implements t5 { Long l; a4 T; zzaq zzaq2 = zzaq; - AnimatableValueParser.A(zzn); - AnimatableValueParser.w(zzn.i); + d.A(zzn); + d.w(zzn.i); long nanoTime = System.nanoTime(); U(); P(); @@ -866,7 +865,7 @@ public class k9 implements t5 { l = null; this.k.t().S(this.A, str, 11, "_ev", zzaq2.i, 0); } - if (z3 && (T = K().T(str)) != null && Math.abs(((d) this.k.h()).a() - Math.max(T.W(), T.V())) > p.f1202z.a(l).longValue()) { + if (z3 && (T = K().T(str)) != null && Math.abs(((c.i.a.f.e.o.d) this.k.h()).a() - Math.max(T.W(), T.V())) > p.f1203z.a(l).longValue()) { this.k.g().C().a("Fetching config for blacklisted app"); n(T); return; @@ -920,9 +919,9 @@ public class k9 implements t5 { if (obj instanceof Long) { j = nanoTime; i = 0; - u9Var = new u9(str, zzaq2.k, concat, ((d) this.k.h()).a(), Long.valueOf(((Long) obj).longValue() + j2)); + u9Var = new u9(str, zzaq2.k, concat, ((c.i.a.f.e.o.d) this.k.h()).a(), Long.valueOf(((Long) obj).longValue() + j2)); if (!K().M(u9Var)) { - this.k.g().z().d("Too many unique user properties are set. Ignoring user property. appId", q3.s(str), this.k.u().y(u9Var.f1215c), u9Var.e); + this.k.g().z().d("Too many unique user properties are set. Ignoring user property. appId", q3.s(str), this.k.u().y(u9Var.f1216c), u9Var.e); this.k.t().S(this.A, str, 9, null, null, 0); } z2 = true; @@ -934,7 +933,7 @@ public class k9 implements t5 { i = 0; g K = K(); int q = this.k.a().q(str, p.E) - 1; - AnimatableValueParser.w(str); + d.w(str); K.b(); K.n(); try { @@ -942,7 +941,7 @@ public class k9 implements t5 { } catch (SQLiteException e) { K.g().z().c("Error pruning currencies. appId", q3.s(str), e); } - u9Var = new u9(str, zzaq2.k, concat, ((d) this.k.h()).a(), Long.valueOf(j2)); + u9Var = new u9(str, zzaq2.k, concat, ((c.i.a.f.e.o.d) this.k.h()).a(), Long.valueOf(j2)); if (!K().M(u9Var)) { } z2 = true; @@ -1027,10 +1026,10 @@ public class k9 implements t5 { K().H(lVar); U(); P(); - AnimatableValueParser.A(mVar); - AnimatableValueParser.A(zzn); - AnimatableValueParser.w(mVar.a); - AnimatableValueParser.m(mVar.a.equals(zzn.i)); + d.A(mVar); + d.A(zzn); + d.w(mVar.a); + d.m(mVar.a.equals(zzn.i)); e1.a u0 = e1.u0(); u0.q(); u0.x("android"); @@ -1054,15 +1053,15 @@ public class k9 implements t5 { if (t8.b() && this.k.a().o(p.J0)) { u0.w0(a(zzn.i).h(d.b(zzn.E)).d()); } - if (da.b() && this.k.a().v(zzn.i, p.f1198j0)) { + if (da.b() && this.k.a().v(zzn.i, p.f1199j0)) { if (TextUtils.isEmpty(u0.s0()) && !TextUtils.isEmpty(zzn.D)) { u0.u0(zzn.D); } - if (TextUtils.isEmpty(u0.s0()) && TextUtils.isEmpty(u0.x0()) && !TextUtils.isEmpty(zzn.f2376z)) { - u0.r0(zzn.f2376z); + if (TextUtils.isEmpty(u0.s0()) && TextUtils.isEmpty(u0.x0()) && !TextUtils.isEmpty(zzn.f2379z)) { + u0.r0(zzn.f2379z); } - } else if (TextUtils.isEmpty(u0.s0()) && !TextUtils.isEmpty(zzn.f2376z)) { - u0.r0(zzn.f2376z); + } else if (TextUtils.isEmpty(u0.s0()) && !TextUtils.isEmpty(zzn.f2379z)) { + u0.r0(zzn.f2379z); } long j4 = zzn.n; if (j4 != 0) { @@ -1084,7 +1083,7 @@ public class k9 implements t5 { u0.y(((Boolean) obj2).booleanValue()); } } - } else if (!this.k.y().s(this.k.j()) && zzn.f2374x && (!hb.b() || !this.k.a().v(zzn.i, p.G0))) { + } else if (!this.k.y().s(this.k.j()) && zzn.f2377x && (!hb.b() || !this.k.a().v(zzn.i, p.G0))) { String string = Settings.Secure.getString(this.k.j().getContentResolver(), "android_id"); if (string == null) { this.k.g().A().b("null secure ID. appId", q3.s(u0.k0())); @@ -1123,7 +1122,7 @@ public class k9 implements t5 { } else { T2.c(c(h)); } - T2.A(zzn.f2373s); + T2.A(zzn.f2376s); T2.m(zzn.j); if (!t8.b() || !this.k.a().o(p.J0) || h.j()) { T2.x(this.j.t(zzn.i)); @@ -1152,7 +1151,7 @@ public class k9 implements t5 { List C = K().C(zzn.i); for (int i2 = 0; i2 < C.size(); i2++) { i1.a L = i1.L(); - L.r(C.get(i2).f1215c); + L.r(C.get(i2).f1216c); L.q(C.get(i2).d); N().G(L, C.get(i2).e); u0.u(L); @@ -1193,8 +1192,8 @@ public class k9 implements t5 { } public final x3 J() { - C(this.f1177c); - return this.f1177c; + C(this.f1178c); + return this.f1178c; } public final g K() { @@ -1203,7 +1202,7 @@ public class k9 implements t5 { } public final boolean L(zzn zzn) { - return (!da.b() || !this.k.h.u(zzn.i, p.f1198j0)) ? !TextUtils.isEmpty(zzn.j) || !TextUtils.isEmpty(zzn.f2376z) : !TextUtils.isEmpty(zzn.j) || !TextUtils.isEmpty(zzn.D) || !TextUtils.isEmpty(zzn.f2376z); + return (!da.b() || !this.k.h.u(zzn.i, p.f1199j0)) ? !TextUtils.isEmpty(zzn.j) || !TextUtils.isEmpty(zzn.f2379z) : !TextUtils.isEmpty(zzn.j) || !TextUtils.isEmpty(zzn.D) || !TextUtils.isEmpty(zzn.f2379z); } public final ba M() { @@ -1258,7 +1257,7 @@ public class k9 implements t5 { this.t = false; x(); } else { - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); long currentTimeMillis = System.currentTimeMillis(); int q = this.k.h.q(null, p.Q); long longValue = currentTimeMillis - p.d.a(null).longValue(); @@ -1270,8 +1269,8 @@ public class k9 implements t5 { } String u = K().u(); if (!TextUtils.isEmpty(u)) { - if (this.f1180y == -1) { - this.f1180y = K().j0(); + if (this.f1181y == -1) { + this.f1181y = K().j0(); } List> D = K().D(u, this.k.h.q(u, p.g), Math.max(0, this.k.h.q(u, p.h))); if (!D.isEmpty()) { @@ -1306,7 +1305,7 @@ public class k9 implements t5 { d1.a x2 = d1.x(); int size = D.size(); ArrayList arrayList = new ArrayList(D.size()); - boolean z3 = "1".equals(this.k.h.f1153c.i(u, "gaia_collection_enabled")) && (!t8.b() || !this.k.h.o(p.J0) || a(u).j()); + boolean z3 = "1".equals(this.k.h.f1154c.i(u, "gaia_collection_enabled")) && (!t8.b() || !this.k.h.o(p.J0) || a(u).j()); boolean z4 = !t8.b() || !this.k.h.o(p.J0) || a(u).j(); boolean z5 = !t8.b() || !this.k.h.o(p.J0) || a(u).k(); int i3 = 0; @@ -1374,7 +1373,7 @@ public class k9 implements t5 { String a3 = p.q.a(null); try { URL url = new URL(a3); - AnimatableValueParser.m(!arrayList.isEmpty()); + d.m(!arrayList.isEmpty()); if (this.w != null) { this.k.g().f.a("Set uploading progress before finishing the previous upload"); } else { @@ -1386,7 +1385,7 @@ public class k9 implements t5 { str2 = ((d1) x2.j).u().G1(); } this.k.g().n.d("Uploading data. app, uncompressed size, data", str2, Integer.valueOf(d.length), z6); - this.f1178s = true; + this.f1179s = true; x3 J = J(); m9 m9Var = new m9(this, u); J.b(); @@ -1397,7 +1396,7 @@ public class k9 implements t5 { } } } else { - this.f1180y = -1; + this.f1181y = -1; String B = K().B(currentTimeMillis - p.d.a(null).longValue()); if (!TextUtils.isEmpty(B) && (T = K().T(B)) != null) { n(T); @@ -1431,7 +1430,7 @@ public class k9 implements t5 { boolean z3 = true; this.m = true; U(); - if (!this.k.h.o(p.f1197i0) || (fileLock = this.u) == null || !fileLock.isValid()) { + if (!this.k.h.o(p.f1198i0) || (fileLock = this.u) == null || !fileLock.isValid()) { try { FileChannel channel = new RandomAccessFile(new File(this.k.b.getFilesDir(), "google_app_measurement.db"), "rw").getChannel(); this.v = channel; @@ -1549,7 +1548,7 @@ public class k9 implements t5 { } public final long V() { - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); long currentTimeMillis = System.currentTimeMillis(); d4 o = this.k.o(); o.o(); @@ -1579,7 +1578,7 @@ public class k9 implements t5 { } U(); P(); - d dVar2 = this.f1181z.get(str); + d dVar2 = this.f1182z.get(str); if (dVar2 != null) { return dVar2; } @@ -1642,16 +1641,16 @@ public class k9 implements t5 { u9 Y = K().Y(aVar.k0(), str); if (Y == null || Y.e == null) { String k0 = aVar.k0(); - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); u9Var = new u9(k0, "auto", str, System.currentTimeMillis(), Long.valueOf(j)); } else { String k02 = aVar.k0(); - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); u9Var = new u9(k02, "auto", str, System.currentTimeMillis(), Long.valueOf(((Long) Y.e).longValue() + j)); } i1.a L = i1.L(); L.r(str); - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); L.q(System.currentTimeMillis()); L.s(((Long) u9Var.e).longValue()); i1 i1Var = (i1) ((u4) L.p()); @@ -1696,7 +1695,7 @@ public class k9 implements t5 { List list3; zzaq zzaq2 = zzaq; Objects.requireNonNull(zzn, "null reference"); - AnimatableValueParser.w(zzn.i); + d.w(zzn.i); U(); P(); String str = zzn.i; @@ -1721,7 +1720,7 @@ public class k9 implements t5 { K().b0(); try { g K = K(); - AnimatableValueParser.w(str); + d.w(str); K.b(); K.n(); int i = (j > 0 ? 1 : (j == 0 ? 0 : -1)); @@ -1742,7 +1741,7 @@ public class k9 implements t5 { } } g K2 = K(); - AnimatableValueParser.w(str); + d.w(str); K2.b(); K2.n(); if (i < 0) { @@ -1756,7 +1755,7 @@ public class k9 implements t5 { if (zzz2 != null) { this.k.g().n.d("User property expired", zzz2.i, this.k.u().y(zzz2.k.j), zzz2.k.v0()); K().V(str, zzz2.k.j); - zzaq zzaq4 = zzz2.f2377s; + zzaq zzaq4 = zzz2.f2380s; if (zzaq4 != null) { arrayList.add(zzaq4); } @@ -1772,8 +1771,8 @@ public class k9 implements t5 { } g K3 = K(); String str2 = zzaq2.i; - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); K3.b(); K3.n(); if (i < 0) { @@ -1788,9 +1787,9 @@ public class k9 implements t5 { zzku zzku = zzz3.k; u9 u9Var = new u9(zzz3.i, zzz3.j, zzku.j, j, zzku.v0()); if (K().M(u9Var)) { - this.k.g().n.d("User property triggered", zzz3.i, this.k.u().y(u9Var.f1215c), u9Var.e); + this.k.g().n.d("User property triggered", zzz3.i, this.k.u().y(u9Var.f1216c), u9Var.e); } else { - this.k.g().f.d("Too many active user properties, ignoring", q3.s(zzz3.i), this.k.u().y(u9Var.f1215c), u9Var.e); + this.k.g().f.d("Too many active user properties, ignoring", q3.s(zzz3.i), this.k.u().y(u9Var.f1216c), u9Var.e); } zzaq zzaq5 = zzz3.q; if (zzaq5 != null) { @@ -1851,7 +1850,7 @@ public class k9 implements t5 { List k = T.k(); if (da.b()) { z2 = T2; - if (this.k.h.u(T.o(), p.f1198j0)) { + if (this.k.h.u(T.o(), p.f1199j0)) { str2 = T.B(); B(zzaq, new zzn(str, v, M, N, O, P, Q, (String) null, z2, false, H, g, 0L, 0, h, i, false, y2, j, S, k, str2, (t8.b() || !this.k.h.o(p.J0)) ? "" : a(str).d())); } @@ -1868,7 +1867,7 @@ public class k9 implements t5 { @WorkerThread public final void n(a4 a4Var) { U(); - if (!da.b() || !this.k.h.u(a4Var.o(), p.f1198j0)) { + if (!da.b() || !this.k.h.u(a4Var.o(), p.f1199j0)) { if (TextUtils.isEmpty(a4Var.v()) && TextUtils.isEmpty(a4Var.y())) { r(a4Var.o(), 204, null, null, null); return; @@ -1882,7 +1881,7 @@ public class k9 implements t5 { Uri.Builder builder = new Uri.Builder(); String v = a4Var.v(); if (TextUtils.isEmpty(v)) { - if (da.b() && cVar.a.h.u(a4Var.o(), p.f1198j0)) { + if (da.b() && cVar.a.h.u(a4Var.o(), p.f1199j0)) { v = a4Var.B(); } v = a4Var.y(); @@ -1960,20 +1959,20 @@ public class k9 implements t5 { } l z2 = K().z(zzn.i, "_s"); if (z2 != null) { - j2 = z2.f1183c; + j2 = z2.f1184c; this.k.g().n.b("Backfill the session number. Last used session number", Long.valueOf(j2)); } o(new zzku("_sno", j, Long.valueOf(j2 + 1), str2), zzn); } u9 u9Var = new u9(zzn.i, zzku.n, zzku.j, zzku.k, n0); - this.k.g().n.c("Setting user property", this.k.u().y(u9Var.f1215c), n0); + this.k.g().n.c("Setting user property", this.k.u().y(u9Var.f1216c), n0); K().b0(); try { G(zzn); boolean M = K().M(u9Var); K().s(); if (!M) { - this.k.g().f.c("Too many unique user properties are set. Ignoring user property", this.k.u().y(u9Var.f1215c), u9Var.e); + this.k.g().f.c("Too many unique user properties are set. Ignoring user property", this.k.u().y(u9Var.f1216c), u9Var.e); this.k.t().S(this.A, zzn.i, 9, null, null, 0); } } finally { @@ -1987,12 +1986,12 @@ public class k9 implements t5 { public final void p(zzn zzn) { if (this.w != null) { ArrayList arrayList = new ArrayList(); - this.f1179x = arrayList; + this.f1180x = arrayList; arrayList.addAll(this.w); } g K = K(); String str = zzn.i; - AnimatableValueParser.w(str); + d.w(str); K.b(); K.n(); try { @@ -2015,10 +2014,10 @@ public class k9 implements t5 { zzaq zzaq; boolean z2; Objects.requireNonNull(zzz, "null reference"); - AnimatableValueParser.w(zzz.i); + d.w(zzz.i); Objects.requireNonNull(zzz.j, "null reference"); Objects.requireNonNull(zzz.k, "null reference"); - AnimatableValueParser.w(zzz.k.j); + d.w(zzz.k.j); U(); P(); if (L(zzn)) { @@ -2054,9 +2053,9 @@ public class k9 implements t5 { zzku zzku3 = zzz2.k; u9 u9Var = new u9(zzz2.i, zzz2.j, zzku3.j, zzku3.k, zzku3.v0()); if (K().M(u9Var)) { - this.k.g().m.d("User property updated immediately", zzz2.i, this.k.u().y(u9Var.f1215c), u9Var.e); + this.k.g().m.d("User property updated immediately", zzz2.i, this.k.u().y(u9Var.f1216c), u9Var.e); } else { - this.k.g().f.d("(2)Too many active user properties, ignoring", q3.s(zzz2.i), this.k.u().y(u9Var.f1215c), u9Var.e); + this.k.g().f.d("(2)Too many active user properties, ignoring", q3.s(zzz2.i), this.k.u().y(u9Var.f1216c), u9Var.e); } if (z3 && (zzaq = zzz2.q) != null) { I(new zzaq(zzaq, zzz2.l), zzn); @@ -2081,7 +2080,7 @@ public class k9 implements t5 { public final void r(String str, int i, Throwable th, byte[] bArr, Map> map) { U(); P(); - AnimatableValueParser.w(str); + d.w(str); if (bArr == null) { try { bArr = new byte[0]; @@ -2102,7 +2101,7 @@ public class k9 implements t5 { } else { if (!z3) { if (i != 404) { - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); T.I(System.currentTimeMillis()); K().I(T); this.k.g().n.c("Fetching config failed. code, error", Integer.valueOf(i), th); @@ -2110,7 +2109,7 @@ public class k9 implements t5 { H.b(); H.i.put(str, null); h4 h4Var = this.k.o().g; - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); h4Var.b(System.currentTimeMillis()); if (i != 503) { if (i != 429) { @@ -2119,7 +2118,7 @@ public class k9 implements t5 { } if (z2) { h4 h4Var2 = this.k.o().h; - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); h4Var2.b(System.currentTimeMillis()); } w(); @@ -2130,7 +2129,7 @@ public class k9 implements t5 { if (i != 404) { if (i != 304) { H().w(str, bArr, str2); - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); T.F(System.currentTimeMillis()); K().I(T); if (i != 404) { @@ -2148,7 +2147,7 @@ public class k9 implements t5 { if (H().s(str) == null) { H().w(str, null, null); } - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); T.F(System.currentTimeMillis()); K().I(T); if (i != 404) { @@ -2172,7 +2171,7 @@ public class k9 implements t5 { if (t8.b() && this.k.h.o(p.J0)) { U(); P(); - this.f1181z.put(str, dVar); + this.f1182z.put(str, dVar); g K = K(); if (t8.b() && K.a.h.o(p.J0)) { Objects.requireNonNull(str, "null reference"); @@ -2393,8 +2392,8 @@ public class k9 implements t5 { try { a aVar9 = new a(k9Var3, null); g K = K(); - long j3 = k9Var3.f1180y; - AnimatableValueParser.A(aVar9); + long j3 = k9Var3.f1181y; + d.A(aVar9); K.b(); K.n(); try { @@ -2416,7 +2415,7 @@ public class k9 implements t5 { str = "_sc"; str5 = str14; str3 = "_npa"; - list = aVar9.f1182c; + list = aVar9.f1183c; if (!(list != null || list.isEmpty())) { e1.a t2 = aVar9.a.t(); t2.F(); @@ -2431,10 +2430,10 @@ public class k9 implements t5 { long j4 = 0; while (true) { z2 = z11; - if (i13 >= aVar9.f1182c.size()) { + if (i13 >= aVar9.f1183c.size()) { break; } - a1.a t3 = aVar9.f1182c.get(i13).t(); + a1.a t3 = aVar9.f1183c.get(i13).t(); if (H().x(aVar9.a.G1(), t3.y())) { z7 = v; k9Var3.k.g().A().c("Dropping blacklisted raw event. appId", q3.s(aVar9.a.G1()), k9Var3.k.u().u(t3.y())); @@ -2468,7 +2467,7 @@ public class k9 implements t5 { if (!y2) { N(); String y3 = t3.y(); - AnimatableValueParser.w(y3); + d.w(y3); str6 = str15; int hashCode = y3.hashCode(); i5 = i14; @@ -2529,7 +2528,7 @@ public class k9 implements t5 { } else { z2 = true; } - if (t9.X(t3.y()) && y2 && K().y(V(), aVar9.a.G1(), true, false).f1165c > ((long) k9Var3.k.a().q(aVar9.a.G1(), p.n))) { + if (t9.X(t3.y()) && y2 && K().y(V(), aVar9.a.G1(), true, false).f1166c > ((long) k9Var3.k.a().q(aVar9.a.G1(), p.n))) { k9Var3.k.g().A().b("Too many conversions. Not logging as conversion. appId", q3.s(aVar9.a.G1())); z9 = false; int i16 = -1; @@ -2772,7 +2771,7 @@ public class k9 implements t5 { } } i4 = i13; - aVar9.f1182c.set(i4, (a1) ((u4) t3.p())); + aVar9.f1183c.set(i4, (a1) ((u4) t3.p())); i12++; aVar4.t(t3); aVar10 = aVar5; @@ -2809,7 +2808,7 @@ public class k9 implements t5 { if (t3.w() == 0) { } i4 = i13; - aVar9.f1182c.set(i4, (a1) ((u4) t3.p())); + aVar9.f1183c.set(i4, (a1) ((u4) t3.p())); i12++; aVar4.t(t3); aVar10 = aVar5; @@ -2830,7 +2829,7 @@ public class k9 implements t5 { if (q9.w((a1) ((u4) t3.p()), str10) == null && aVar5 != null && Math.abs(aVar5.z() - t3.z()) <= 4000) { a1.a aVar15 = (a1.a) ((u4.b) aVar5.clone()); k9Var3.A(aVar15, t3); - AnimatableValueParser.m("_e".equals(aVar15.y())); + d.m("_e".equals(aVar15.y())); N(); str7 = str5; c1 w = q9.w((a1) ((u4) aVar15.p()), str7); @@ -2861,7 +2860,7 @@ public class k9 implements t5 { if (t3.w() == 0) { } i4 = i13; - aVar9.f1182c.set(i4, (a1) ((u4) t3.p())); + aVar9.f1183c.set(i4, (a1) ((u4) t3.p())); i12++; aVar4.t(t3); aVar10 = aVar5; @@ -2878,7 +2877,7 @@ public class k9 implements t5 { if (t3.w() == 0) { } i4 = i13; - aVar9.f1182c.set(i4, (a1) ((u4) t3.p())); + aVar9.f1183c.set(i4, (a1) ((u4) t3.p())); i12++; aVar4.t(t3); aVar10 = aVar5; @@ -2895,7 +2894,7 @@ public class k9 implements t5 { if (t3.w() == 0) { } i4 = i13; - aVar9.f1182c.set(i4, (a1) ((u4) t3.p())); + aVar9.f1183c.set(i4, (a1) ((u4) t3.p())); i12++; aVar4.t(t3); aVar10 = aVar5; @@ -2912,7 +2911,7 @@ public class k9 implements t5 { if (t3.w() == 0) { } i4 = i13; - aVar9.f1182c.set(i4, (a1) ((u4) t3.p())); + aVar9.f1183c.set(i4, (a1) ((u4) t3.p())); i12++; aVar4.t(t3); aVar10 = aVar5; @@ -2923,7 +2922,7 @@ public class k9 implements t5 { if (t3.w() == 0) { } i4 = i13; - aVar9.f1182c.set(i4, (a1) ((u4) t3.p())); + aVar9.f1183c.set(i4, (a1) ((u4) t3.p())); i12++; aVar4.t(t3); aVar10 = aVar5; @@ -3249,7 +3248,7 @@ public class k9 implements t5 { } g K3 = K(); List list2 = aVar.b; - AnimatableValueParser.A(list2); + d.A(list2); K3.b(); K3.n(); StringBuilder sb2 = new StringBuilder("rowid in ("); @@ -3305,7 +3304,7 @@ public class k9 implements t5 { str = "_sc"; str5 = str14; str3 = "_npa"; - list = aVar9.f1182c; + list = aVar9.f1183c; if (!(list != null || list.isEmpty())) { } } else { @@ -3325,7 +3324,7 @@ public class k9 implements t5 { str = "_sc"; str5 = str14; str3 = "_npa"; - list = aVar9.f1182c; + list = aVar9.f1183c; if (!(list != null || list.isEmpty())) { } } else { @@ -3384,7 +3383,7 @@ public class k9 implements t5 { K.g().z().c("Data loss. Failed to merge raw event metadata. appId", q3.s(str11), e6); cursor2.close(); } - list = aVar9.f1182c; + list = aVar9.f1183c; if (!(list != null || list.isEmpty())) { } } @@ -3401,7 +3400,7 @@ public class k9 implements t5 { if (cursor2 != null) { cursor2.close(); } - list = aVar9.f1182c; + list = aVar9.f1183c; if (!(list != null || list.isEmpty())) { } } catch (Throwable th5) { @@ -3430,7 +3429,7 @@ public class k9 implements t5 { K.g().z().c("Data loss. Error selecting raw event. appId", q3.s(str11), sQLiteException); if (cursor2 != null) { } - list = aVar9.f1182c; + list = aVar9.f1183c; if (!(list != null || list.isEmpty())) { } } catch (Throwable th7) { @@ -3447,7 +3446,7 @@ public class k9 implements t5 { K.g().z().c("Data loss. Error selecting raw event. appId", q3.s(str11), sQLiteException); if (cursor2 != null) { } - list = aVar9.f1182c; + list = aVar9.f1183c; if (!(list != null || list.isEmpty())) { } } catch (SQLiteException e9) { @@ -3463,7 +3462,7 @@ public class k9 implements t5 { } public final boolean u(a1.a aVar, a1.a aVar2) { - AnimatableValueParser.m("_e".equals(aVar.y())); + d.m("_e".equals(aVar.y())); N(); c1 w = q9.w((a1) ((u4) aVar.p()), "_sc"); String str = null; @@ -3503,7 +3502,7 @@ public class k9 implements t5 { U(); P(); if (this.n > 0) { - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); long abs = 3600000 - Math.abs(SystemClock.elapsedRealtime() - this.n); if (abs > 0) { this.k.g().n.b("Upload has been suspended. Will update scheduling later in approximately ms", Long.valueOf(abs)); @@ -3519,7 +3518,7 @@ public class k9 implements t5 { T().s(); return; } - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); long currentTimeMillis = System.currentTimeMillis(); long max2 = Math.max(0L, p.A.a(null).longValue()); if (!(K().S("select count(1) > 0 from raw_events where realtime = 1", null) != 0)) { @@ -3571,8 +3570,8 @@ public class k9 implements t5 { S.a.f().b(); if (!S.b) { S.a.k.b.registerReceiver(S, new IntentFilter("android.net.conn.CONNECTIVITY_CHANGE")); - S.f1152c = S.a.J().u(); - S.a.g().n.b("Registering connectivity change receiver. Network connected", Boolean.valueOf(S.f1152c)); + S.f1153c = S.a.J().u(); + S.a.g().n.b("Registering connectivity change receiver. Network connected", Boolean.valueOf(S.f1153c)); S.b = true; } T().s(); @@ -3584,12 +3583,12 @@ public class k9 implements t5 { j2 = Math.max(j2, a4 + max4); } S().a(); - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); long currentTimeMillis2 = j2 - System.currentTimeMillis(); if (currentTimeMillis2 <= 0) { currentTimeMillis2 = Math.max(0L, p.w.a(null).longValue()); h4 h4Var = this.k.o().f; - Objects.requireNonNull((d) this.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.k.o); h4Var.b(System.currentTimeMillis()); } this.k.g().n.b("Upload scheduled in approximately ms", Long.valueOf(currentTimeMillis2)); @@ -3604,9 +3603,9 @@ public class k9 implements t5 { } T.s(); T.g().n.b("Scheduling upload, millis", Long.valueOf(currentTimeMillis2)); - Objects.requireNonNull((d) T.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) T.a.o); long elapsedRealtime = SystemClock.elapsedRealtime() + currentTimeMillis2; - if (currentTimeMillis2 < Math.max(0L, p.f1200x.a(null).longValue())) { + if (currentTimeMillis2 < Math.max(0L, p.f1201x.a(null).longValue())) { if (!(T.e.d != 0)) { T.e.b(currentTimeMillis2); } @@ -3652,7 +3651,7 @@ public class k9 implements t5 { jobScheduler.schedule(build); return; } - T.d.setInexactRepeating(2, elapsedRealtime, Math.max(p.f1199s.a(null).longValue(), currentTimeMillis2), T.u()); + T.d.setInexactRepeating(2, elapsedRealtime, Math.max(p.f1200s.a(null).longValue(), currentTimeMillis2), T.u()); return; } } @@ -3677,8 +3676,8 @@ public class k9 implements t5 { @WorkerThread public final void x() { U(); - if (this.r || this.f1178s || this.t) { - this.k.g().n.d("Not stopping services. fetch, network, upload", Boolean.valueOf(this.r), Boolean.valueOf(this.f1178s), Boolean.valueOf(this.t)); + if (this.r || this.f1179s || this.t) { + this.k.g().n.d("Not stopping services. fetch, network, upload", Boolean.valueOf(this.r), Boolean.valueOf(this.f1179s), Boolean.valueOf(this.t)); return; } this.k.g().n.a("Stopping uploading service(s)"); @@ -3700,7 +3699,7 @@ public class k9 implements t5 { } Boolean z2 = z(T); if (z2 == null || z2.booleanValue()) { - return new zzn(str, T.v(), T.M(), T.N(), T.O(), T.P(), T.Q(), (String) null, T.T(), false, T.H(), T.g(), 0L, 0, T.h(), T.i(), false, T.y(), T.j(), T.S(), T.k(), (!da.b() || !this.k.h.u(str, p.f1198j0)) ? null : T.B(), (!t8.b() || !this.k.h.o(p.J0)) ? "" : a(str).d()); + return new zzn(str, T.v(), T.M(), T.N(), T.O(), T.P(), T.Q(), (String) null, T.T(), false, T.H(), T.g(), 0L, 0, T.h(), T.i(), false, T.y(), T.j(), T.S(), T.k(), (!da.b() || !this.k.h.u(str, p.f1199j0)) ? null : T.B(), (!t8.b() || !this.k.h.o(p.J0)) ? "" : a(str).d()); } this.k.g().f.b("App version does not match; dropping. appId", q3.s(str)); return null; diff --git a/app/src/main/java/c/i/a/f/i/b/l.java b/app/src/main/java/c/i/a/f/i/b/l.java index c13de8455b..8ae032fa06 100644 --- a/app/src/main/java/c/i/a/f/i/b/l.java +++ b/app/src/main/java/c/i/a/f/i/b/l.java @@ -1,13 +1,13 @@ package c.i.a.f.i.b; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class l { public final String a; public final String b; /* renamed from: c reason: collision with root package name */ - public final long f1183c; + public final long f1184c; public final long d; public final long e; public final long f; @@ -22,16 +22,16 @@ public final class l { } public l(String str, String str2, long j, long j2, long j3, long j4, long j5, Long l, Long l2, Long l3, Boolean bool) { - AnimatableValueParser.w(str); - AnimatableValueParser.w(str2); + d.w(str); + d.w(str2); boolean z2 = true; - AnimatableValueParser.m(j >= 0); - AnimatableValueParser.m(j2 >= 0); - AnimatableValueParser.m(j3 >= 0); - AnimatableValueParser.m(j5 < 0 ? false : z2); + d.m(j >= 0); + d.m(j2 >= 0); + d.m(j3 >= 0); + d.m(j5 < 0 ? false : z2); this.a = str; this.b = str2; - this.f1183c = j; + this.f1184c = j; this.d = j2; this.e = j3; this.f = j4; @@ -43,14 +43,14 @@ public final class l { } public final l a(long j) { - return new l(this.a, this.b, this.f1183c, this.d, this.e, j, this.g, this.h, this.i, this.j, this.k); + return new l(this.a, this.b, this.f1184c, this.d, this.e, j, this.g, this.h, this.i, this.j, this.k); } public final l b(long j, long j2) { - return new l(this.a, this.b, this.f1183c, this.d, this.e, this.f, j, Long.valueOf(j2), this.i, this.j, this.k); + return new l(this.a, this.b, this.f1184c, this.d, this.e, this.f, j, Long.valueOf(j2), this.i, this.j, this.k); } public final l c(Long l, Long l2, Boolean bool) { - return new l(this.a, this.b, this.f1183c, this.d, this.e, this.f, this.g, this.h, l, l2, (bool == null || bool.booleanValue()) ? bool : null); + return new l(this.a, this.b, this.f1184c, this.d, this.e, this.f, this.g, this.h, l, l2, (bool == null || bool.booleanValue()) ? bool : null); } } diff --git a/app/src/main/java/c/i/a/f/i/b/l3.java b/app/src/main/java/c/i/a/f/i/b/l3.java index 180f2522bf..1e3b636f9c 100644 --- a/app/src/main/java/c/i/a/f/i/b/l3.java +++ b/app/src/main/java/c/i/a/f/i/b/l3.java @@ -3,9 +3,9 @@ package c.i.a.f.i.b; import android.os.Bundle; import android.os.Parcel; import android.os.RemoteException; +import c.c.a.a0.d; import c.i.a.f.h.l.s0; import c.i.a.f.h.l.v; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.measurement.internal.zzaq; import com.google.android.gms.measurement.internal.zzku; import com.google.android.gms.measurement.internal.zzn; @@ -56,7 +56,7 @@ public abstract class l3 extends s0 implements i3 { parcel.readString(); z4 z4Var3 = (z4) this; Objects.requireNonNull(zzaq, "null reference"); - AnimatableValueParser.w(readString); + d.w(readString); z4Var3.y0(readString, true); z4Var3.h(new m5(z4Var3, zzaq, readString)); parcel2.writeNoException(); @@ -79,7 +79,7 @@ public abstract class l3 extends s0 implements i3 { List list = (List) ((FutureTask) z4Var5.a.f().t(new n5(z4Var5, zzn4))).get(); arrayList = new ArrayList(list.size()); for (u9 u9Var : list) { - if (z2 || !t9.r0(u9Var.f1215c)) { + if (z2 || !t9.r0(u9Var.f1216c)) { arrayList.add(new zzku(u9Var)); } } diff --git a/app/src/main/java/c/i/a/f/i/b/m.java b/app/src/main/java/c/i/a/f/i/b/m.java index cbf63a6121..c6b8022bff 100644 --- a/app/src/main/java/c/i/a/f/i/b/m.java +++ b/app/src/main/java/c/i/a/f/i/b/m.java @@ -2,8 +2,8 @@ package c.i.a.f.i.b; import android.os.Bundle; import android.text.TextUtils; +import c.c.a.a0.d; import c.d.b.a.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.measurement.internal.zzap; import java.util.Iterator; import java.util.Objects; @@ -13,18 +13,18 @@ public final class m { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1184c; + public final String f1185c; public final long d; public final long e; public final zzap f; public m(u4 u4Var, String str, String str2, String str3, long j, long j2, Bundle bundle) { zzap zzap; - AnimatableValueParser.w(str2); - AnimatableValueParser.w(str3); + d.w(str2); + d.w(str3); this.a = str2; this.b = str3; - this.f1184c = TextUtils.isEmpty(str) ? null : str; + this.f1185c = TextUtils.isEmpty(str) ? null : str; this.d = j; this.e = j2; if (j2 != 0 && j2 > j) { @@ -56,12 +56,12 @@ public final class m { } public m(u4 u4Var, String str, String str2, String str3, long j, long j2, zzap zzap) { - AnimatableValueParser.w(str2); - AnimatableValueParser.w(str3); + d.w(str2); + d.w(str3); Objects.requireNonNull(zzap, "null reference"); this.a = str2; this.b = str3; - this.f1184c = TextUtils.isEmpty(str) ? null : str; + this.f1185c = TextUtils.isEmpty(str) ? null : str; this.d = j; this.e = j2; if (j2 != 0 && j2 > j) { @@ -71,17 +71,17 @@ public final class m { } public final m a(u4 u4Var, long j) { - return new m(u4Var, this.f1184c, this.a, this.b, this.d, j, this.f); + return new m(u4Var, this.f1185c, this.a, this.b, this.d, j, this.f); } public final String toString() { String str = this.a; String str2 = this.b; String valueOf = String.valueOf(this.f); - StringBuilder O = a.O(valueOf.length() + a.b(str2, a.b(str, 33)), "Event{appId='", str, "', name='", str2); - O.append("', params="); - O.append(valueOf); - O.append('}'); - return O.toString(); + StringBuilder N = a.N(valueOf.length() + a.b(str2, a.b(str, 33)), "Event{appId='", str, "', name='", str2); + N.append("', params="); + N.append(valueOf); + N.append('}'); + return N.toString(); } } diff --git a/app/src/main/java/c/i/a/f/i/b/m3.java b/app/src/main/java/c/i/a/f/i/b/m3.java index ecd82f2948..d7481c9662 100644 --- a/app/src/main/java/c/i/a/f/i/b/m3.java +++ b/app/src/main/java/c/i/a/f/i/b/m3.java @@ -13,7 +13,7 @@ import androidx.exifinterface.media.ExifInterface; public final class m3 extends a5 { /* renamed from: c reason: collision with root package name */ - public final p3 f1185c = new p3(this, this.a.b, "google_app_measurement_local.db"); + public final p3 f1186c = new p3(this, this.a.b, "google_app_measurement_local.db"); public boolean d; public m3(u4 u4Var) { @@ -44,7 +44,7 @@ public final class m3 extends a5 { if (this.d) { return null; } - SQLiteDatabase writableDatabase = this.f1185c.getWritableDatabase(); + SQLiteDatabase writableDatabase = this.f1186c.getWritableDatabase(); if (writableDatabase != null) { return writableDatabase; } diff --git a/app/src/main/java/c/i/a/f/i/b/m6.java b/app/src/main/java/c/i/a/f/i/b/m6.java index eb5bfb18bf..3ac756fa2e 100644 --- a/app/src/main/java/c/i/a/f/i/b/m6.java +++ b/app/src/main/java/c/i/a/f/i/b/m6.java @@ -21,10 +21,10 @@ public final class m6 implements Runnable { c cVar = c6Var.a.h; n3 o = c6Var.o(); o.t(); - String str = o.f1186c; + String str = o.f1187c; Objects.requireNonNull(cVar); j3 j3Var = p.L; - atomicReference.set(str == null ? j3Var.a(null) : j3Var.a(cVar.f1153c.i(str, j3Var.b))); + atomicReference.set(str == null ? j3Var.a(null) : j3Var.a(cVar.f1154c.i(str, j3Var.b))); this.i.notify(); } catch (Throwable th) { this.i.notify(); diff --git a/app/src/main/java/c/i/a/f/i/b/m9.java b/app/src/main/java/c/i/a/f/i/b/m9.java index fd06f9373b..2b66a58029 100644 --- a/app/src/main/java/c/i/a/f/i/b/m9.java +++ b/app/src/main/java/c/i/a/f/i/b/m9.java @@ -26,7 +26,7 @@ public final class m9 implements z3 { try { bArr = new byte[0]; } catch (Throwable th2) { - k9Var.f1178s = false; + k9Var.f1179s = false; k9Var.x(); throw th2; } @@ -59,7 +59,7 @@ public final class m9 implements z3 { throw e; } } catch (SQLiteException e2) { - List list2 = k9Var.f1179x; + List list2 = k9Var.f1180x; if (list2 == null || !list2.contains(l)) { throw e2; } @@ -67,9 +67,9 @@ public final class m9 implements z3 { } k9Var.K().s(); k9Var.K().e0(); - k9Var.f1179x = null; + k9Var.f1180x = null; if (!k9Var.J().u() || !k9Var.v()) { - k9Var.f1180y = -1; + k9Var.f1181y = -1; k9Var.w(); } else { k9Var.Q(); @@ -101,7 +101,7 @@ public final class m9 implements z3 { k9Var.K().J(list); k9Var.w(); } - k9Var.f1178s = false; + k9Var.f1179s = false; k9Var.x(); } } diff --git a/app/src/main/java/c/i/a/f/i/b/n3.java b/app/src/main/java/c/i/a/f/i/b/n3.java index 6839227e75..653e64cd26 100644 --- a/app/src/main/java/c/i/a/f/i/b/n3.java +++ b/app/src/main/java/c/i/a/f/i/b/n3.java @@ -7,12 +7,12 @@ import android.content.res.Resources; import android.os.Bundle; import android.text.TextUtils; import androidx.core.os.EnvironmentCompat; +import c.c.a.a0.d; import c.i.a.f.e.h.j.h; import c.i.a.f.e.o.c; import c.i.a.f.h.l.da; import c.i.a.f.h.l.ib; import c.i.a.f.h.l.lb; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.R; import com.google.android.gms.common.api.Status; import java.util.Arrays; @@ -23,7 +23,7 @@ import java.util.Objects; public final class n3 extends a5 { /* renamed from: c reason: collision with root package name */ - public String f1186c; + public String f1187c; public String d; public int e; public String f; @@ -96,14 +96,14 @@ public final class n3 extends a5 { g().f.c("Error retrieving package info. appId, appName", q3.s(packageName), "Unknown"); } } - this.f1186c = packageName; + this.f1187c = packageName; this.f = str; this.d = str2; this.e = i; this.g = 0; Context context = this.a.b; Object obj = h.a; - AnimatableValueParser.z(context, "Context must not be null."); + d.z(context, "Context must not be null."); synchronized (h.a) { if (h.b == null) { h.b = new h(context); @@ -112,7 +112,7 @@ public final class n3 extends a5 { } boolean z3 = true; boolean z4 = status != null && status.v0(); - boolean z5 = !TextUtils.isEmpty(this.a.f1209c) && "am".equals(this.a.d); + boolean z5 = !TextUtils.isEmpty(this.a.f1210c) && "am".equals(this.a.d); boolean z6 = z4 | z5; if (!z6) { if (status == null) { @@ -162,12 +162,12 @@ public final class n3 extends a5 { this.l = ""; this.m = ""; if (z5) { - this.l = this.a.f1209c; + this.l = this.a.f1210c; } list = null; - H0 = (((lb) ib.i.a()).a() || !this.a.h.o(p.C0)) ? h.a("getGoogleAppId").f1053c : c.H0(this.a.b, "google_app_id"); + H0 = (((lb) ib.i.a()).a() || !this.a.h.o(p.C0)) ? h.a("getGoogleAppId").f1054c : c.H0(this.a.b, "google_app_id"); this.k = !TextUtils.isEmpty(H0) ? "" : H0; - if (!da.b() && this.a.h.o(p.f1198j0)) { + if (!da.b() && this.a.h.o(p.f1199j0)) { Context context2 = this.a.b; Objects.requireNonNull(context2, "null reference"); Resources resources = context2.getResources(); @@ -187,12 +187,12 @@ public final class n3 extends a5 { this.l = identifier3 == 0 ? null : resources2.getString(identifier3); } if (z2) { - g().n.c("App measurement enabled for app package, google app id", this.f1186c, TextUtils.isEmpty(this.k) ? this.l : this.k); + g().n.c("App measurement enabled for app package, google app id", this.f1187c, TextUtils.isEmpty(this.k) ? this.l : this.k); } this.i = null; c cVar = this.a.h; Objects.requireNonNull(cVar); - AnimatableValueParser.w("analytics.safelisted_events"); + d.w("analytics.safelisted_events"); D = cVar.D(); if (D != null) { cVar.g().f.a("Failed to load metadata: Metadata bundle is null"); @@ -267,7 +267,7 @@ public final class n3 extends a5 { this.i = null; c cVar = this.a.h; Objects.requireNonNull(cVar); - AnimatableValueParser.w("analytics.safelisted_events"); + d.w("analytics.safelisted_events"); D = cVar.D(); if (D != null) { } diff --git a/app/src/main/java/c/i/a/f/i/b/n6.java b/app/src/main/java/c/i/a/f/i/b/n6.java index 2a01e688e9..768e68cfa0 100644 --- a/app/src/main/java/c/i/a/f/i/b/n6.java +++ b/app/src/main/java/c/i/a/f/i/b/n6.java @@ -1,8 +1,8 @@ package c.i.a.f.i.b; import android.os.Bundle; +import c.c.a.a0.d; import c.i.a.f.h.l.x7; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.measurement.internal.zzku; import com.google.android.gms.measurement.internal.zzz; @@ -24,8 +24,8 @@ public final class n6 implements Runnable { c6Var.b(); c6Var.t(); Objects.requireNonNull(bundle, "null reference"); - AnimatableValueParser.w(bundle.getString(ModelAuditLogEntry.CHANGE_KEY_NAME)); - AnimatableValueParser.w(bundle.getString("origin")); + d.w(bundle.getString(ModelAuditLogEntry.CHANGE_KEY_NAME)); + d.w(bundle.getString("origin")); Objects.requireNonNull(bundle.get("value"), "null reference"); if (!c6Var.a.d()) { c6Var.g().n.a("Conditional property not set since app measurement is disabled"); diff --git a/app/src/main/java/c/i/a/f/i/b/o.java b/app/src/main/java/c/i/a/f/i/b/o.java index 4972e98238..8ccc4fa048 100644 --- a/app/src/main/java/c/i/a/f/i/b/o.java +++ b/app/src/main/java/c/i/a/f/i/b/o.java @@ -3,24 +3,24 @@ package c.i.a.f.i.b; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.measurement.internal.zzap; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class o implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzap createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Bundle bundle = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzap(bundle); } diff --git a/app/src/main/java/c/i/a/f/i/b/o3.java b/app/src/main/java/c/i/a/f/i/b/o3.java index 390bb8c2d8..bce887d433 100644 --- a/app/src/main/java/c/i/a/f/i/b/o3.java +++ b/app/src/main/java/c/i/a/f/i/b/o3.java @@ -2,8 +2,8 @@ package c.i.a.f.i.b; import android.os.Bundle; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.d.b.a.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.measurement.internal.zzap; import com.google.android.gms.measurement.internal.zzaq; import java.util.ArrayList; @@ -13,7 +13,7 @@ import java.util.concurrent.atomic.AtomicReference; public final class o3 extends r5 { /* renamed from: c reason: collision with root package name */ - public static final AtomicReference f1187c = new AtomicReference<>(); + public static final AtomicReference f1188c = new AtomicReference<>(); public static final AtomicReference d = new AtomicReference<>(); public static final AtomicReference e = new AtomicReference<>(); @@ -25,7 +25,7 @@ public final class o3 extends r5 { public static String v(String str, String[] strArr, String[] strArr2, AtomicReference atomicReference) { String str2; Objects.requireNonNull(atomicReference, "null reference"); - AnimatableValueParser.m(strArr.length == strArr2.length); + d.m(strArr.length == strArr2.length); for (int i = 0; i < strArr.length; i++) { if (t9.q0(str, strArr[i])) { synchronized (atomicReference) { @@ -58,18 +58,18 @@ public final class o3 extends r5 { if (!z()) { return bundle.toString(); } - StringBuilder P = a.P("Bundle[{"); + StringBuilder O = a.O("Bundle[{"); for (String str : bundle.keySet()) { - if (P.length() != 8) { - P.append(", "); + if (O.length() != 8) { + O.append(", "); } - P.append(x(str)); - P.append("="); + O.append(x(str)); + O.append("="); Object obj = bundle.get(str); - P.append(obj instanceof Bundle ? w(new Object[]{obj}) : obj instanceof Object[] ? w((Object[]) obj) : obj instanceof ArrayList ? w(((ArrayList) obj).toArray()) : String.valueOf(obj)); + O.append(obj instanceof Bundle ? w(new Object[]{obj}) : obj instanceof Object[] ? w((Object[]) obj) : obj instanceof ArrayList ? w(((ArrayList) obj).toArray()) : String.valueOf(obj)); } - P.append("}]"); - return P.toString(); + O.append("}]"); + return O.toString(); } @Nullable @@ -77,14 +77,14 @@ public final class o3 extends r5 { if (!z()) { return zzaq.toString(); } - StringBuilder P = a.P("origin="); - P.append(zzaq.k); - P.append(",name="); - P.append(u(zzaq.i)); - P.append(",params="); + StringBuilder O = a.O("origin="); + O.append(zzaq.k); + O.append(",name="); + O.append(u(zzaq.i)); + O.append(",params="); zzap zzap = zzaq.j; - P.append(zzap == null ? null : !z() ? zzap.toString() : s(zzap.w0())); - return P.toString(); + O.append(zzap == null ? null : !z() ? zzap.toString() : s(zzap.w0())); + return O.toString(); } @Nullable @@ -92,7 +92,7 @@ public final class o3 extends r5 { if (str == null) { return null; } - return !z() ? str : v(str, v5.f1216c, v5.a, f1187c); + return !z() ? str : v(str, v5.f1217c, v5.a, f1188c); } @Nullable @@ -100,18 +100,18 @@ public final class o3 extends r5 { if (objArr == null) { return "[]"; } - StringBuilder P = a.P("["); + StringBuilder O = a.O("["); for (Object obj : objArr) { String s2 = obj instanceof Bundle ? s((Bundle) obj) : String.valueOf(obj); if (s2 != null) { - if (P.length() != 1) { - P.append(", "); + if (O.length() != 1) { + O.append(", "); } - P.append(s2); + O.append(s2); } } - P.append("]"); - return P.toString(); + O.append("]"); + return O.toString(); } @Nullable diff --git a/app/src/main/java/c/i/a/f/i/b/p.java b/app/src/main/java/c/i/a/f/i/b/p.java index ee8005ea58..2e49821745 100644 --- a/app/src/main/java/c/i/a/f/i/b/p.java +++ b/app/src/main/java/c/i/a/f/i/b/p.java @@ -53,45 +53,45 @@ public final class p { public static List> a = Collections.synchronizedList(new ArrayList()); /* renamed from: a0 reason: collision with root package name */ - public static j3 f1188a0; + public static j3 f1189a0; public static j3 b = a("measurement.ad_id_cache_time", 10000L, 10000L, s.a); /* renamed from: b0 reason: collision with root package name */ - public static j3 f1189b0; + public static j3 f1190b0; /* renamed from: c reason: collision with root package name */ - public static j3 f1190c = a("measurement.monitoring.sample_period_millis", 86400000L, 86400000L, r.a); + public static j3 f1191c = a("measurement.monitoring.sample_period_millis", 86400000L, 86400000L, r.a); /* renamed from: c0 reason: collision with root package name */ - public static j3 f1191c0; + public static j3 f1192c0; public static j3 d = a("measurement.config.cache_time", 86400000L, 3600000L, f0.a); /* renamed from: d0 reason: collision with root package name */ - public static j3 f1192d0; + public static j3 f1193d0; public static j3 e = a("measurement.config.url_scheme", Constants.SCHEME, Constants.SCHEME, o0.a); /* renamed from: e0 reason: collision with root package name */ - public static j3 f1193e0; + public static j3 f1194e0; public static j3 f = a("measurement.config.url_authority", "app-measurement.com", "app-measurement.com", c1.a); /* renamed from: f0 reason: collision with root package name */ - public static j3 f1194f0; + public static j3 f1195f0; public static j3 g = a("measurement.upload.max_bundles", 100, 100, l1.a); /* renamed from: g0 reason: collision with root package name */ - public static j3 f1195g0; + public static j3 f1196g0; public static j3 h = a("measurement.upload.max_batch_size", 65536, 65536, y1.a); /* renamed from: h0 reason: collision with root package name */ - public static j3 f1196h0; + public static j3 f1197h0; public static j3 i = a("measurement.upload.max_bundle_size", 65536, 65536, i2.a); /* renamed from: i0 reason: collision with root package name */ - public static j3 f1197i0; + public static j3 f1198i0; public static j3 j = a("measurement.upload.max_events_per_bundle", 1000, 1000, v2.a); /* renamed from: j0 reason: collision with root package name */ - public static j3 f1198j0; + public static j3 f1199j0; public static j3 k = a("measurement.upload.max_events_per_day", 100000, 100000, g3.a); public static j3 k0; public static j3 l = a("measurement.upload.max_error_events_per_day", 1000, 1000, u.a); @@ -110,7 +110,7 @@ public final class p { public static j3 r0; /* renamed from: s reason: collision with root package name */ - public static j3 f1199s = a("measurement.upload.window_interval", 3600000L, 3600000L, a0.a); + public static j3 f1200s = a("measurement.upload.window_interval", 3600000L, 3600000L, a0.a); public static j3 s0; public static j3 t = a("measurement.upload.interval", 3600000L, 3600000L, d0.a); public static j3 t0; @@ -122,15 +122,15 @@ public final class p { public static j3 w0; /* renamed from: x reason: collision with root package name */ - public static j3 f1200x = a("measurement.alarm_manager.minimum_interval", 60000L, 60000L, g0.a); + public static j3 f1201x = a("measurement.alarm_manager.minimum_interval", 60000L, 60000L, g0.a); public static j3 x0; /* renamed from: y reason: collision with root package name */ - public static j3 f1201y = a("measurement.upload.stale_data_deletion_interval", 86400000L, 86400000L, j0.a); + public static j3 f1202y = a("measurement.upload.stale_data_deletion_interval", 86400000L, 86400000L, j0.a); public static j3 y0; /* renamed from: z reason: collision with root package name */ - public static j3 f1202z = a("measurement.upload.refresh_blacklisted_config_interval", 604800000L, 604800000L, i0.a); + public static j3 f1203z = a("measurement.upload.refresh_blacklisted_config_interval", 604800000L, 604800000L, i0.a); public static j3 z0; static { @@ -151,16 +151,16 @@ public final class p { X = a("measurement.quality.checksum", bool, bool, null); Y = a("measurement.sdk.dynamite.allow_remote_dynamite3", bool2, bool2, i1.a); Z = a("measurement.sdk.collection.validate_param_names_alphabetical", bool2, bool2, h1.a); - f1188a0 = a("measurement.audience.use_bundle_end_timestamp_for_non_sequence_property_filters", bool, bool, k1.a); - f1189b0 = a("measurement.audience.refresh_event_count_filters_timestamp", bool, bool, j1.a); - f1191c0 = a("measurement.audience.use_bundle_timestamp_for_event_count_filters", bool, bool, m1.a); - f1192d0 = a("measurement.sdk.collection.retrieve_deeplink_from_bow_2", bool2, bool2, o1.a); - f1193e0 = a("measurement.sdk.collection.last_deep_link_referrer2", bool2, bool2, n1.a); - f1194f0 = a("measurement.sdk.collection.last_deep_link_referrer_campaign2", bool, bool, q1.a); - f1195g0 = a("measurement.sdk.collection.last_gclid_from_referrer2", bool, bool, p1.a); - f1196h0 = a("measurement.sdk.collection.enable_extend_user_property_size", bool2, bool2, s1.a); - f1197i0 = a("measurement.upload.file_lock_state_check", bool, bool, r1.a); - f1198j0 = a("measurement.ga.ga_app_id", bool, bool, u1.a); + f1189a0 = a("measurement.audience.use_bundle_end_timestamp_for_non_sequence_property_filters", bool, bool, k1.a); + f1190b0 = a("measurement.audience.refresh_event_count_filters_timestamp", bool, bool, j1.a); + f1192c0 = a("measurement.audience.use_bundle_timestamp_for_event_count_filters", bool, bool, m1.a); + f1193d0 = a("measurement.sdk.collection.retrieve_deeplink_from_bow_2", bool2, bool2, o1.a); + f1194e0 = a("measurement.sdk.collection.last_deep_link_referrer2", bool2, bool2, n1.a); + f1195f0 = a("measurement.sdk.collection.last_deep_link_referrer_campaign2", bool, bool, q1.a); + f1196g0 = a("measurement.sdk.collection.last_gclid_from_referrer2", bool, bool, p1.a); + f1197h0 = a("measurement.sdk.collection.enable_extend_user_property_size", bool2, bool2, s1.a); + f1198i0 = a("measurement.upload.file_lock_state_check", bool, bool, r1.a); + f1199j0 = a("measurement.ga.ga_app_id", bool, bool, u1.a); k0 = a("measurement.lifecycle.app_in_background_parameter", bool, bool, t1.a); l0 = a("measurement.integration.disable_firebase_instance_id", bool, bool, w1.a); m0 = a("measurement.lifecycle.app_backgrounded_engagement", bool, bool, v1.a); diff --git a/app/src/main/java/c/i/a/f/i/b/p4.java b/app/src/main/java/c/i/a/f/i/b/p4.java index 86bd9dca7b..13587d7eef 100644 --- a/app/src/main/java/c/i/a/f/i/b/p4.java +++ b/app/src/main/java/c/i/a/f/i/b/p4.java @@ -7,6 +7,7 @@ import android.database.sqlite.SQLiteException; import android.text.TextUtils; import androidx.annotation.WorkerThread; import androidx.collection.ArrayMap; +import c.c.a.a0.d; import c.i.a.f.e.o.c; import c.i.a.f.h.l.k0; import c.i.a.f.h.l.l0; @@ -17,7 +18,6 @@ import c.i.a.f.h.l.u0; import c.i.a.f.h.l.u4; import c.i.a.f.h.l.v0; import c.i.a.f.h.l.x7; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.internal.measurement.zzij; import java.util.ArrayList; import java.util.Collections; @@ -89,11 +89,11 @@ public final class p4 extends i9 implements e { Cursor cursor; n(); b(); - AnimatableValueParser.w(str); + d.w(str); if (this.g.get(str) == null) { g q = q(); Objects.requireNonNull(q); - AnimatableValueParser.w(str); + d.w(str); q.b(); q.n(); Cursor cursor2 = null; @@ -184,7 +184,7 @@ public final class p4 extends i9 implements e { public final u0 s(String str) { n(); b(); - AnimatableValueParser.w(str); + d.w(str); E(str); return this.g.get(str); } @@ -223,7 +223,7 @@ public final class p4 extends i9 implements e { g().i.a("EventConfig contained null event name"); } else { String q = t.q(); - String K0 = c.K0(t.q(), v5.a, v5.f1216c); + String K0 = c.K0(t.q(), v5.a, v5.f1217c); if (!TextUtils.isEmpty(K0)) { if (t.k) { t.n(); @@ -265,7 +265,7 @@ public final class p4 extends i9 implements e { boolean z4; n(); b(); - AnimatableValueParser.w(str); + d.w(str); u0.a t = t(str, bArr).t(); v(str, t); this.g.put(str, (u0) ((u4) t.p())); @@ -284,7 +284,7 @@ public final class p4 extends i9 implements e { while (i2 < ((k0) t2.j).D()) { l0.a t3 = ((k0) t2.j).z(i2).t(); l0.a aVar = (l0.a) ((u4.b) t3.clone()); - String K0 = c.K0(((l0) t3.j).z(), v5.a, v5.f1216c); + String K0 = c.K0(((l0) t3.j).z(), v5.a, v5.f1217c); if (K0 != null) { if (aVar.k) { aVar.n(); @@ -365,13 +365,13 @@ public final class p4 extends i9 implements e { String str7 = str5; q.n(); q.b(); - AnimatableValueParser.w(str); + d.w(str); SQLiteDatabase t6 = q.t(); t6.beginTransaction(); try { q.n(); q.b(); - AnimatableValueParser.w(str); + d.w(str); SQLiteDatabase t7 = q.t(); t7.delete("property_filters", "app_id=?", new String[]{str}); t7.delete("event_filters", "app_id=?", new String[]{str}); @@ -380,7 +380,7 @@ public final class p4 extends i9 implements e { k0 k0Var = (k0) it.next(); q.n(); q.b(); - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(k0Var, str7); if (!k0Var.x()) { q.g().i.b("Audience with no ID. appId", q3.s(str)); @@ -427,7 +427,7 @@ public final class p4 extends i9 implements e { if (!z2) { q.n(); q.b(); - AnimatableValueParser.w(str); + d.w(str); SQLiteDatabase t8 = q.t(); str3 = str6; t8.delete("property_filters", str3, new String[]{str, String.valueOf(y2)}); @@ -462,7 +462,7 @@ public final class p4 extends i9 implements e { bArr2 = bArr; } g q2 = q(); - AnimatableValueParser.w(str); + d.w(str); q2.b(); q2.n(); ContentValues contentValues = new ContentValues(); diff --git a/app/src/main/java/c/i/a/f/i/b/p6.java b/app/src/main/java/c/i/a/f/i/b/p6.java index b5c15e802d..a3e061d307 100644 --- a/app/src/main/java/c/i/a/f/i/b/p6.java +++ b/app/src/main/java/c/i/a/f/i/b/p6.java @@ -1,8 +1,8 @@ package c.i.a.f.i.b; import android.os.Bundle; +import c.c.a.a0.d; import c.i.a.f.h.l.x7; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.measurement.internal.zzku; import com.google.android.gms.measurement.internal.zzz; @@ -24,7 +24,7 @@ public final class p6 implements Runnable { c6Var.b(); c6Var.t(); Objects.requireNonNull(bundle, "null reference"); - AnimatableValueParser.w(bundle.getString(ModelAuditLogEntry.CHANGE_KEY_NAME)); + d.w(bundle.getString(ModelAuditLogEntry.CHANGE_KEY_NAME)); if (!c6Var.a.d()) { c6Var.g().n.a("Conditional property not cleared since app measurement is disabled"); return; diff --git a/app/src/main/java/c/i/a/f/i/b/q.java b/app/src/main/java/c/i/a/f/i/b/q.java index 4521847209..f684b63d01 100644 --- a/app/src/main/java/c/i/a/f/i/b/q.java +++ b/app/src/main/java/c/i/a/f/i/b/q.java @@ -2,7 +2,7 @@ package c.i.a.f.i.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.measurement.internal.zzap; import com.google.android.gms.measurement.internal.zzaq; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ @@ -10,27 +10,27 @@ public final class q implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzaq createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; zzap zzap = null; String str2 = null; long j = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 2) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i == 3) { - zzap = (zzap) AnimatableValueParser.S(parcel, readInt, zzap.CREATOR); + zzap = (zzap) d.S(parcel, readInt, zzap.CREATOR); } else if (i == 4) { - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); } else if (i != 5) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzaq(str, zzap, str2, j); } diff --git a/app/src/main/java/c/i/a/f/i/b/q3.java b/app/src/main/java/c/i/a/f/i/b/q3.java index 7611512d70..85f2c825ce 100644 --- a/app/src/main/java/c/i/a/f/i/b/q3.java +++ b/app/src/main/java/c/i/a/f/i/b/q3.java @@ -11,7 +11,7 @@ import java.util.Objects; public final class q3 extends r5 { /* renamed from: c reason: collision with root package name */ - public char f1203c = 0; + public char f1204c = 0; public long d = -1; @GuardedBy("this") public String e; @@ -169,11 +169,11 @@ public final class q3 extends r5 { if (j > (j3 << 1)) { k4Var.a(); } else { - String string = k4Var.e.w().getString(k4Var.f1176c, null); + String string = k4Var.e.w().getString(k4Var.f1177c, null); long j4 = k4Var.e.w().getLong(k4Var.b, 0); k4Var.a(); - pair = (string == null || j4 <= 0) ? d4.f1157c : new Pair<>(string, Long.valueOf(j4)); - if (pair != null || pair == d4.f1157c) { + pair = (string == null || j4 <= 0) ? d4.f1158c : new Pair<>(string, Long.valueOf(j4)); + if (pair != null || pair == d4.f1158c) { return null; } String valueOf = String.valueOf(pair.second); diff --git a/app/src/main/java/c/i/a/f/i/b/q7.java b/app/src/main/java/c/i/a/f/i/b/q7.java index 42574cd3a6..b27310fe1e 100644 --- a/app/src/main/java/c/i/a/f/i/b/q7.java +++ b/app/src/main/java/c/i/a/f/i/b/q7.java @@ -26,7 +26,6 @@ import c.i.a.f.h.l.da; import c.i.a.f.h.l.ob; import c.i.a.f.h.l.rb; import c.i.a.f.h.l.t8; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable; import com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException; import com.google.android.gms.measurement.internal.zzaq; @@ -43,7 +42,7 @@ import java.util.concurrent.atomic.AtomicReference; public final class q7 extends a5 { /* renamed from: c reason: collision with root package name */ - public final k8 f1204c; + public final k8 f1205c; public i3 d; public volatile Boolean e; public final i f; @@ -54,7 +53,7 @@ public final class q7 extends a5 { public q7(u4 u4Var) { super(u4Var); this.g = new e9(u4Var.o); - this.f1204c = new k8(this); + this.f1205c = new k8(this); this.f = new p7(this, u4Var); this.i = new z7(this, u4Var); } @@ -89,7 +88,7 @@ public final class q7 extends a5 { t(); if (!B()) { if (G()) { - k8 k8Var = this.f1204c; + k8 k8Var = this.f1205c; k8Var.k.b(); Context context = k8Var.k.a.b; synchronized (k8Var) { @@ -109,7 +108,7 @@ public final class q7 extends a5 { if (queryIntentServices != null && queryIntentServices.size() > 0) { Intent intent = new Intent("com.google.android.gms.measurement.START"); intent.setComponent(new ComponentName(this.a.b, "com.google.android.gms.measurement.AppMeasurementService")); - k8 k8Var2 = this.f1204c; + k8 k8Var2 = this.f1205c; k8Var2.k.b(); Context context2 = k8Var2.k.a.b; a b = a.b(); @@ -120,7 +119,7 @@ public final class q7 extends a5 { } k8Var2.k.g().n.a("Using local app measurement service"); k8Var2.i = true; - b.a(context2, intent, k8Var2.k.f1204c, 129); + b.a(context2, intent, k8Var2.k.f1205c, 129); return; } } @@ -133,13 +132,13 @@ public final class q7 extends a5 { public final void D() { b(); t(); - k8 k8Var = this.f1204c; + k8 k8Var = this.f1205c; if (k8Var.j != null && (k8Var.j.j() || k8Var.j.e())) { k8Var.j.h(); } k8Var.j = null; try { - a.b().c(this.a.b, this.f1204c); + a.b().c(this.a.b, this.f1205c); } catch (IllegalArgumentException | IllegalStateException unused) { } this.d = null; @@ -289,7 +288,7 @@ public final class q7 extends a5 { String E = z2 ? g().E() : null; o.b(); o.t(); - String str4 = o.f1186c; + String str4 = o.f1187c; o.t(); String str5 = o.k; o.t(); @@ -305,7 +304,7 @@ public final class q7 extends a5 { Context context = o.a.b; String packageName = context.getPackageName(); t.b(); - AnimatableValueParser.w(packageName); + c.c.a.a0.d.w(packageName); PackageManager packageManager = context.getPackageManager(); MessageDigest x0 = t9.x0(); long j5 = -1; @@ -438,7 +437,7 @@ public final class q7 extends a5 { if (!da.b()) { list = list2; j2 = j7; - if (o.a.h.o(p.f1198j0)) { + if (o.a.h.o(p.f1199j0)) { o.t(); str3 = o.m; return new zzn(str4, str5, str6, j4, str7, 33025, j6, E, z3, z4, str2, 0, j, i, booleanValue, booleanValue2, z5, str8, valueOf2, j2, list, str3, (t8.b() || !o.a.h.o(p.H0)) ? "" : o.l().y().d()); diff --git a/app/src/main/java/c/i/a/f/i/b/q9.java b/app/src/main/java/c/i/a/f/i/b/q9.java index 1c99c53bc5..08950d9fe8 100644 --- a/app/src/main/java/c/i/a/f/i/b/q9.java +++ b/app/src/main/java/c/i/a/f/i/b/q9.java @@ -282,7 +282,7 @@ public final class q9 extends i9 { @WorkerThread public static boolean O(zzaq zzaq, zzn zzn) { Objects.requireNonNull(zzaq, "null reference"); - return !TextUtils.isEmpty(zzn.j) || !TextUtils.isEmpty(zzn.f2376z); + return !TextUtils.isEmpty(zzn.j) || !TextUtils.isEmpty(zzn.f2379z); } public static boolean P(String str) { @@ -692,115 +692,115 @@ public final class q9 extends i9 { } public final String y(o0 o0Var) { - StringBuilder P = a.P("\nproperty_filter {\n"); + StringBuilder O = a.O("\nproperty_filter {\n"); if (o0Var.v()) { - L(P, 0, "filter_id", Integer.valueOf(o0Var.w())); + L(O, 0, "filter_id", Integer.valueOf(o0Var.w())); } - L(P, 0, "property_name", d().y(o0Var.x())); + L(O, 0, "property_name", d().y(o0Var.x())); String A = A(o0Var.z(), o0Var.A(), o0Var.C()); if (!A.isEmpty()) { - L(P, 0, "filter_type", A); + L(O, 0, "filter_type", A); } - I(P, 1, o0Var.y()); - P.append("}\n"); - return P.toString(); + I(O, 1, o0Var.y()); + O.append("}\n"); + return O.toString(); } public final String z(d1 d1Var) { - StringBuilder P = a.P("\nbatch {\n"); + StringBuilder O = a.O("\nbatch {\n"); for (e1 e1Var : d1Var.v()) { if (e1Var != null) { - H(P, 1); - P.append("bundle {\n"); + H(O, 1); + O.append("bundle {\n"); if (e1Var.E()) { - L(P, 1, "protocol_version", Integer.valueOf(e1Var.g0())); + L(O, 1, "protocol_version", Integer.valueOf(e1Var.g0())); } - L(P, 1, "platform", e1Var.y1()); + L(O, 1, "platform", e1Var.y1()); if (e1Var.I1()) { - L(P, 1, "gmp_version", Long.valueOf(e1Var.F())); + L(O, 1, "gmp_version", Long.valueOf(e1Var.F())); } if (e1Var.H()) { - L(P, 1, "uploading_gmp_version", Long.valueOf(e1Var.I())); + L(O, 1, "uploading_gmp_version", Long.valueOf(e1Var.I())); } if (e1Var.p0()) { - L(P, 1, "dynamite_version", Long.valueOf(e1Var.q0())); + L(O, 1, "dynamite_version", Long.valueOf(e1Var.q0())); } if (e1Var.a0()) { - L(P, 1, "config_version", Long.valueOf(e1Var.b0())); + L(O, 1, "config_version", Long.valueOf(e1Var.b0())); } - L(P, 1, "gmp_app_id", e1Var.S()); - L(P, 1, "admob_app_id", e1Var.o0()); - L(P, 1, "app_id", e1Var.G1()); - L(P, 1, "app_version", e1Var.H1()); + L(O, 1, "gmp_app_id", e1Var.S()); + L(O, 1, "admob_app_id", e1Var.o0()); + L(O, 1, "app_id", e1Var.G1()); + L(O, 1, "app_version", e1Var.H1()); if (e1Var.X()) { - L(P, 1, "app_version_major", Integer.valueOf(e1Var.Y())); + L(O, 1, "app_version_major", Integer.valueOf(e1Var.Y())); } - L(P, 1, "firebase_instance_id", e1Var.W()); + L(O, 1, "firebase_instance_id", e1Var.W()); if (e1Var.N()) { - L(P, 1, "dev_cert_hash", Long.valueOf(e1Var.O())); + L(O, 1, "dev_cert_hash", Long.valueOf(e1Var.O())); } - L(P, 1, "app_store", e1Var.F1()); + L(O, 1, "app_store", e1Var.F1()); if (e1Var.Y0()) { - L(P, 1, "upload_timestamp_millis", Long.valueOf(e1Var.Z0())); + L(O, 1, "upload_timestamp_millis", Long.valueOf(e1Var.Z0())); } if (e1Var.g1()) { - L(P, 1, "start_timestamp_millis", Long.valueOf(e1Var.h1())); + L(O, 1, "start_timestamp_millis", Long.valueOf(e1Var.h1())); } if (e1Var.n1()) { - L(P, 1, "end_timestamp_millis", Long.valueOf(e1Var.o1())); + L(O, 1, "end_timestamp_millis", Long.valueOf(e1Var.o1())); } if (e1Var.s1()) { - L(P, 1, "previous_bundle_start_timestamp_millis", Long.valueOf(e1Var.t1())); + L(O, 1, "previous_bundle_start_timestamp_millis", Long.valueOf(e1Var.t1())); } if (e1Var.v1()) { - L(P, 1, "previous_bundle_end_timestamp_millis", Long.valueOf(e1Var.w1())); + L(O, 1, "previous_bundle_end_timestamp_millis", Long.valueOf(e1Var.w1())); } - L(P, 1, "app_instance_id", e1Var.M()); - L(P, 1, "resettable_device_id", e1Var.J()); - L(P, 1, "device_id", e1Var.Z()); - L(P, 1, "ds_id", e1Var.e0()); + L(O, 1, "app_instance_id", e1Var.M()); + L(O, 1, "resettable_device_id", e1Var.J()); + L(O, 1, "device_id", e1Var.Z()); + L(O, 1, "ds_id", e1Var.e0()); if (e1Var.K()) { - L(P, 1, "limited_ad_tracking", Boolean.valueOf(e1Var.L())); + L(O, 1, "limited_ad_tracking", Boolean.valueOf(e1Var.L())); } - L(P, 1, "os_version", e1Var.A1()); - L(P, 1, "device_model", e1Var.B1()); - L(P, 1, "user_default_language", e1Var.C1()); + L(O, 1, "os_version", e1Var.A1()); + L(O, 1, "device_model", e1Var.B1()); + L(O, 1, "user_default_language", e1Var.C1()); if (e1Var.D1()) { - L(P, 1, "time_zone_offset_minutes", Integer.valueOf(e1Var.E1())); + L(O, 1, "time_zone_offset_minutes", Integer.valueOf(e1Var.E1())); } if (e1Var.P()) { - L(P, 1, "bundle_sequential_index", Integer.valueOf(e1Var.Q())); + L(O, 1, "bundle_sequential_index", Integer.valueOf(e1Var.Q())); } if (e1Var.T()) { - L(P, 1, "service_upload", Boolean.valueOf(e1Var.U())); + L(O, 1, "service_upload", Boolean.valueOf(e1Var.U())); } - L(P, 1, "health_monitor", e1Var.R()); + L(O, 1, "health_monitor", e1Var.R()); if (!this.a.h.o(p.y0) && e1Var.c0() && e1Var.d0() != 0) { - L(P, 1, "android_id", Long.valueOf(e1Var.d0())); + L(O, 1, "android_id", Long.valueOf(e1Var.d0())); } if (e1Var.f0()) { - L(P, 1, "retry_counter", Integer.valueOf(e1Var.n0())); + L(O, 1, "retry_counter", Integer.valueOf(e1Var.n0())); } if (e1Var.s0()) { - L(P, 1, "consent_signals", e1Var.t0()); + L(O, 1, "consent_signals", e1Var.t0()); } List K0 = e1Var.K0(); if (K0 != null) { for (i1 i1Var : K0) { if (i1Var != null) { - H(P, 2); - P.append("user_property {\n"); + H(O, 2); + O.append("user_property {\n"); Double d = null; - L(P, 2, "set_timestamp_millis", i1Var.y() ? Long.valueOf(i1Var.z()) : null); - L(P, 2, ModelAuditLogEntry.CHANGE_KEY_NAME, d().y(i1Var.D())); - L(P, 2, "string_value", i1Var.G()); - L(P, 2, "int_value", i1Var.H() ? Long.valueOf(i1Var.I()) : null); + L(O, 2, "set_timestamp_millis", i1Var.y() ? Long.valueOf(i1Var.z()) : null); + L(O, 2, ModelAuditLogEntry.CHANGE_KEY_NAME, d().y(i1Var.D())); + L(O, 2, "string_value", i1Var.G()); + L(O, 2, "int_value", i1Var.H() ? Long.valueOf(i1Var.I()) : null); if (i1Var.J()) { d = Double.valueOf(i1Var.K()); } - L(P, 2, "double_value", d); - H(P, 2); - P.append("}\n"); + L(O, 2, "double_value", d); + H(O, 2); + O.append("}\n"); } } } @@ -808,20 +808,20 @@ public final class q9 extends i9 { if (V != null) { for (y0 y0Var : V) { if (y0Var != null) { - H(P, 2); - P.append("audience_membership {\n"); + H(O, 2); + O.append("audience_membership {\n"); if (y0Var.x()) { - L(P, 2, "audience_id", Integer.valueOf(y0Var.y())); + L(O, 2, "audience_id", Integer.valueOf(y0Var.y())); } if (y0Var.D()) { - L(P, 2, "new_audience", Boolean.valueOf(y0Var.E())); + L(O, 2, "new_audience", Boolean.valueOf(y0Var.E())); } - K(P, 2, "current_data", y0Var.A()); + K(O, 2, "current_data", y0Var.A()); if (y0Var.B()) { - K(P, 2, "previous_data", y0Var.C()); + K(O, 2, "previous_data", y0Var.C()); } - H(P, 2); - P.append("}\n"); + H(O, 2); + O.append("}\n"); } } } @@ -829,31 +829,31 @@ public final class q9 extends i9 { if (y0 != null) { for (a1 a1Var : y0) { if (a1Var != null) { - H(P, 2); - P.append("event {\n"); - L(P, 2, ModelAuditLogEntry.CHANGE_KEY_NAME, d().u(a1Var.F())); + H(O, 2); + O.append("event {\n"); + L(O, 2, ModelAuditLogEntry.CHANGE_KEY_NAME, d().u(a1Var.F())); if (a1Var.G()) { - L(P, 2, "timestamp_millis", Long.valueOf(a1Var.H())); + L(O, 2, "timestamp_millis", Long.valueOf(a1Var.H())); } if (a1Var.I()) { - L(P, 2, "previous_timestamp_millis", Long.valueOf(a1Var.J())); + L(O, 2, "previous_timestamp_millis", Long.valueOf(a1Var.J())); } if (a1Var.K()) { - L(P, 2, "count", Integer.valueOf(a1Var.L())); + L(O, 2, "count", Integer.valueOf(a1Var.L())); } if (a1Var.D() != 0) { - M(P, 2, a1Var.v()); + M(O, 2, a1Var.v()); } - H(P, 2); - P.append("}\n"); + H(O, 2); + O.append("}\n"); } } } - H(P, 1); - P.append("}\n"); + H(O, 1); + O.append("}\n"); } } - P.append("}\n"); - return P.toString(); + O.append("}\n"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/a/f/i/b/r4.java b/app/src/main/java/c/i/a/f/i/b/r4.java index 4f1759e4c2..462a060b58 100644 --- a/app/src/main/java/c/i/a/f/i/b/r4.java +++ b/app/src/main/java/c/i/a/f/i/b/r4.java @@ -14,7 +14,7 @@ import java.util.concurrent.atomic.AtomicReference; public final class r4 extends r5 { /* renamed from: c reason: collision with root package name */ - public static final AtomicLong f1205c = new AtomicLong(Long.MIN_VALUE); + public static final AtomicLong f1206c = new AtomicLong(Long.MIN_VALUE); public v4 d; public v4 e; public final PriorityBlockingQueue> f = new PriorityBlockingQueue<>(); diff --git a/app/src/main/java/c/i/a/f/i/b/s3.java b/app/src/main/java/c/i/a/f/i/b/s3.java index 932eedc3dd..726f3959a8 100644 --- a/app/src/main/java/c/i/a/f/i/b/s3.java +++ b/app/src/main/java/c/i/a/f/i/b/s3.java @@ -5,29 +5,29 @@ public final class s3 { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final boolean f1206c; + public final boolean f1207c; public final /* synthetic */ q3 d; public s3(q3 q3Var, int i, boolean z2, boolean z3) { this.d = q3Var; this.a = i; this.b = z2; - this.f1206c = z3; + this.f1207c = z3; } public final void a(String str) { - this.d.w(this.a, this.b, this.f1206c, str, null, null, null); + this.d.w(this.a, this.b, this.f1207c, str, null, null, null); } public final void b(String str, Object obj) { - this.d.w(this.a, this.b, this.f1206c, str, obj, null, null); + this.d.w(this.a, this.b, this.f1207c, str, obj, null, null); } public final void c(String str, Object obj, Object obj2) { - this.d.w(this.a, this.b, this.f1206c, str, obj, obj2, null); + this.d.w(this.a, this.b, this.f1207c, str, obj, obj2, null); } public final void d(String str, Object obj, Object obj2, Object obj3) { - this.d.w(this.a, this.b, this.f1206c, str, obj, obj2, obj3); + this.d.w(this.a, this.b, this.f1207c, str, obj, obj2, obj3); } } diff --git a/app/src/main/java/c/i/a/f/i/b/s4.java b/app/src/main/java/c/i/a/f/i/b/s4.java index 5872926829..494c8e7b90 100644 --- a/app/src/main/java/c/i/a/f/i/b/s4.java +++ b/app/src/main/java/c/i/a/f/i/b/s4.java @@ -15,7 +15,7 @@ public final class s4 extends FutureTask implements Comparable> { public s4(r4 r4Var, Runnable runnable, boolean z2, String str) { super(runnable, null); this.l = r4Var; - long andIncrement = r4.f1205c.getAndIncrement(); + long andIncrement = r4.f1206c.getAndIncrement(); this.i = andIncrement; this.k = str; this.j = z2; @@ -28,7 +28,7 @@ public final class s4 extends FutureTask implements Comparable> { public s4(r4 r4Var, Callable callable, boolean z2, String str) { super(callable); this.l = r4Var; - long andIncrement = r4.f1205c.getAndIncrement(); + long andIncrement = r4.f1206c.getAndIncrement(); this.i = andIncrement; this.k = str; this.j = z2; diff --git a/app/src/main/java/c/i/a/f/i/b/s6.java b/app/src/main/java/c/i/a/f/i/b/s6.java index 6c878b19ad..1bb550e24f 100644 --- a/app/src/main/java/c/i/a/f/i/b/s6.java +++ b/app/src/main/java/c/i/a/f/i/b/s6.java @@ -20,7 +20,7 @@ public final class s6 implements Runnable { c cVar = c6Var.a.h; n3 o = c6Var.o(); o.t(); - atomicReference.set(Integer.valueOf(cVar.q(o.f1186c, p.N))); + atomicReference.set(Integer.valueOf(cVar.q(o.f1187c, p.N))); this.i.notify(); } catch (Throwable th) { this.i.notify(); diff --git a/app/src/main/java/c/i/a/f/i/b/s9.java b/app/src/main/java/c/i/a/f/i/b/s9.java index 9caff68dc1..b15d4b214c 100644 --- a/app/src/main/java/c/i/a/f/i/b/s9.java +++ b/app/src/main/java/c/i/a/f/i/b/s9.java @@ -2,14 +2,14 @@ package c.i.a.f.i.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.measurement.internal.zzku; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class s9 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzku createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; Long l = null; Float f = null; @@ -18,22 +18,22 @@ public final class s9 implements Parcelable.Creator { Double d = null; long j = 0; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 3: - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); break; case 4: - int p2 = AnimatableValueParser.p2(parcel, readInt); - if (p2 != 0) { - AnimatableValueParser.e3(parcel, p2, 8); + int M1 = d.M1(parcel, readInt); + if (M1 != 0) { + d.A2(parcel, M1, 8); l = Long.valueOf(parcel.readLong()); break; } else { @@ -41,9 +41,9 @@ public final class s9 implements Parcelable.Creator { break; } case 5: - int p22 = AnimatableValueParser.p2(parcel, readInt); - if (p22 != 0) { - AnimatableValueParser.e3(parcel, p22, 4); + int M12 = d.M1(parcel, readInt); + if (M12 != 0) { + d.A2(parcel, M12, 4); f = Float.valueOf(parcel.readFloat()); break; } else { @@ -51,15 +51,15 @@ public final class s9 implements Parcelable.Creator { break; } case 6: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 7: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; case 8: - int p23 = AnimatableValueParser.p2(parcel, readInt); - if (p23 != 0) { - AnimatableValueParser.e3(parcel, p23, 8); + int M13 = d.M1(parcel, readInt); + if (M13 != 0) { + d.A2(parcel, M13, 8); d = Double.valueOf(parcel.readDouble()); break; } else { @@ -67,11 +67,11 @@ public final class s9 implements Parcelable.Creator { break; } default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzku(i, str, j, l, f, str2, str3, d); } diff --git a/app/src/main/java/c/i/a/f/i/b/t3.java b/app/src/main/java/c/i/a/f/i/b/t3.java index 33acb428ab..5484349b3d 100644 --- a/app/src/main/java/c/i/a/f/i/b/t3.java +++ b/app/src/main/java/c/i/a/f/i/b/t3.java @@ -32,7 +32,7 @@ public final class t3 implements Runnable { } q3 q3Var = this.n; boolean z2 = true; - if (q3Var.f1203c == 0) { + if (q3Var.f1204c == 0) { c cVar = q3Var.a.h; if (cVar.d == null) { synchronized (cVar) { @@ -51,9 +51,9 @@ public final class t3 implements Runnable { } } if (cVar.d.booleanValue()) { - this.n.f1203c = 'C'; + this.n.f1204c = 'C'; } else { - this.n.f1203c = 'c'; + this.n.f1204c = 'c'; } } q3 q3Var2 = this.n; @@ -62,7 +62,7 @@ public final class t3 implements Runnable { } char charAt = "01VDIWEA?".charAt(this.i); q3 q3Var3 = this.n; - char c2 = q3Var3.f1203c; + char c2 = q3Var3.f1204c; long j = q3Var3.d; String u = q3.u(true, this.j, this.k, this.l, this.m); StringBuilder sb = new StringBuilder(String.valueOf(u).length() + 24); @@ -87,7 +87,7 @@ public final class t3 implements Runnable { long j2 = k4Var.e.w().getLong(k4Var.b, 0); if (j2 <= 0) { SharedPreferences.Editor edit = k4Var.e.w().edit(); - edit.putString(k4Var.f1176c, sb2); + edit.putString(k4Var.f1177c, sb2); edit.putLong(k4Var.b, 1); edit.apply(); return; @@ -98,7 +98,7 @@ public final class t3 implements Runnable { } SharedPreferences.Editor edit2 = k4Var.e.w().edit(); if (z2) { - edit2.putString(k4Var.f1176c, sb2); + edit2.putString(k4Var.f1177c, sb2); } edit2.putLong(k4Var.b, j3); edit2.apply(); diff --git a/app/src/main/java/c/i/a/f/i/b/t6.java b/app/src/main/java/c/i/a/f/i/b/t6.java index fe74d7a2b1..19a432bf2b 100644 --- a/app/src/main/java/c/i/a/f/i/b/t6.java +++ b/app/src/main/java/c/i/a/f/i/b/t6.java @@ -20,7 +20,7 @@ public final class t6 implements Runnable { c cVar = c6Var.a.h; n3 o = c6Var.o(); o.t(); - atomicReference.set(Long.valueOf(cVar.n(o.f1186c, p.M))); + atomicReference.set(Long.valueOf(cVar.n(o.f1187c, p.M))); this.i.notify(); } catch (Throwable th) { this.i.notify(); diff --git a/app/src/main/java/c/i/a/f/i/b/t9.java b/app/src/main/java/c/i/a/f/i/b/t9.java index 821868c1b9..9c2dec5134 100644 --- a/app/src/main/java/c/i/a/f/i/b/t9.java +++ b/app/src/main/java/c/i/a/f/i/b/t9.java @@ -20,17 +20,16 @@ import android.util.Log; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.WorkerThread; +import c.c.a.a0.d; import c.d.b.a.a; import c.i.a.f.e.e; import c.i.a.f.e.o.c; -import c.i.a.f.e.o.d; import c.i.a.f.e.p.b; import c.i.a.f.h.l.da; import c.i.a.f.h.l.fc; import c.i.a.f.h.l.g8; import c.i.a.f.h.l.h8; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.measurement.internal.zzap; import com.google.android.gms.measurement.internal.zzaq; @@ -57,7 +56,7 @@ import javax.security.auth.x500.X500Principal; public final class t9 extends r5 { /* renamed from: c reason: collision with root package name */ - public static final String[] f1207c = {"firebase_", "google_", "ga_"}; + public static final String[] f1208c = {"firebase_", "google_", "ga_"}; public static final String[] d = {"_err"}; public SecureRandom e; public final AtomicLong f = new AtomicLong(0); @@ -132,7 +131,7 @@ public final class t9 extends r5 { } public static boolean X(String str) { - AnimatableValueParser.w(str); + d.w(str); return str.charAt(0) != '_' || str.equals("_ep"); } @@ -212,10 +211,10 @@ public final class t9 extends r5 { } bundle.putLong("triggered_timestamp", zzz.k.k); bundle.putLong("time_to_live", zzz.r); - zzaq zzaq3 = zzz.f2377s; + zzaq zzaq3 = zzz.f2380s; if (zzaq3 != null) { bundle.putString("expired_event_name", zzaq3.i); - zzap zzap3 = zzz.f2377s.j; + zzap zzap3 = zzz.f2380s.j; if (zzap3 != null) { bundle.putBundle("expired_event_params", zzap3.w0()); } @@ -277,7 +276,7 @@ public final class t9 extends r5 { public static long w(byte[] bArr) { Objects.requireNonNull(bArr, "null reference"); int i = 0; - AnimatableValueParser.F(bArr.length > 0); + d.F(bArr.length > 0); long j = 0; int length = bArr.length - 1; while (length >= 0 && length >= bArr.length - 8) { @@ -627,7 +626,7 @@ public final class t9 extends r5 { g().h.b("Invalid google_app_id. Firebase Analytics disabled. See https://goo.gl/NAOOOI. provided id", q3.s(str)); } return false; - } else if (da.b() && this.a.h.o(p.f1198j0) && !TextUtils.isEmpty(str3)) { + } else if (da.b() && this.a.h.o(p.f1199j0) && !TextUtils.isEmpty(str3)) { return true; } else { if (!TextUtils.isEmpty(str2)) { @@ -651,7 +650,7 @@ public final class t9 extends r5 { g().h.b("Name is required and can't be null. Type", str); return false; } - String[] strArr3 = f1207c; + String[] strArr3 = f1208c; int length = strArr3.length; int i = 0; while (true) { @@ -784,7 +783,7 @@ public final class t9 extends r5 { if (!z3) { return 21; } - if (!e0(str3, u5.f1214c)) { + if (!e0(str3, u5.f1215c)) { return 20; } q7 x2 = this.a.x(); @@ -907,7 +906,7 @@ public final class t9 extends r5 { if (this.f.get() == 0) { synchronized (this.f) { long nanoTime = System.nanoTime(); - Objects.requireNonNull((d) this.a.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.o); long nextLong = new Random(nanoTime ^ System.currentTimeMillis()).nextLong(); int i = this.g + 1; this.g = i; @@ -1111,6 +1110,6 @@ public final class t9 extends r5 { if ("_id".equals(str)) { return 256; } - return (!this.a.h.o(p.f1196h0) || !"_lgclid".equals(str)) ? 36 : 100; + return (!this.a.h.o(p.f1197h0) || !"_lgclid".equals(str)) ? 36 : 100; } } diff --git a/app/src/main/java/c/i/a/f/i/b/u3.java b/app/src/main/java/c/i/a/f/i/b/u3.java index 7187164b81..d2e0854393 100644 --- a/app/src/main/java/c/i/a/f/i/b/u3.java +++ b/app/src/main/java/c/i/a/f/i/b/u3.java @@ -14,7 +14,7 @@ public final class u3 { public String b; /* renamed from: c reason: collision with root package name */ - public long f1208c; + public long f1209c; @NonNull public Bundle d; @@ -22,7 +22,7 @@ public final class u3 { this.a = str; this.b = str2; this.d = bundle; - this.f1208c = j; + this.f1209c = j; } public static u3 b(zzaq zzaq) { @@ -30,13 +30,13 @@ public final class u3 { } public final zzaq a() { - return new zzaq(this.a, new zzap(new Bundle(this.d)), this.b, this.f1208c); + return new zzaq(this.a, new zzap(new Bundle(this.d)), this.b, this.f1209c); } public final String toString() { String str = this.b; String str2 = this.a; String valueOf = String.valueOf(this.d); - return a.H(a.O(valueOf.length() + a.b(str2, a.b(str, 21)), "origin=", str, ",name=", str2), ",params=", valueOf); + return a.G(a.N(valueOf.length() + a.b(str2, a.b(str, 21)), "origin=", str, ",name=", str2), ",params=", valueOf); } } diff --git a/app/src/main/java/c/i/a/f/i/b/u4.java b/app/src/main/java/c/i/a/f/i/b/u4.java index 534c6b9d17..ece967e498 100644 --- a/app/src/main/java/c/i/a/f/i/b/u4.java +++ b/app/src/main/java/c/i/a/f/i/b/u4.java @@ -35,7 +35,7 @@ public class u4 implements t5 { public final Context b; /* renamed from: c reason: collision with root package name */ - public final String f1209c; + public final String f1210c; public final String d; public final String e; public final boolean f; @@ -53,20 +53,20 @@ public class u4 implements t5 { public final a r; /* renamed from: s reason: collision with root package name */ - public final d7 f1210s; + public final d7 f1211s; public m3 t; public q7 u; public j v; public n3 w; /* renamed from: x reason: collision with root package name */ - public m4 f1211x; + public m4 f1212x; /* renamed from: y reason: collision with root package name */ - public boolean f1212y = false; + public boolean f1213y = false; /* renamed from: z reason: collision with root package name */ - public Boolean f1213z; + public Boolean f1214z; public u4(y5 y5Var) { Context context; @@ -77,8 +77,8 @@ public class u4 implements t5 { this.g = gaVar; c.h = gaVar; this.b = context2; - this.f1209c = y5Var.b; - this.d = y5Var.f1218c; + this.f1210c = y5Var.b; + this.d = y5Var.f1219c; this.e = y5Var.d; this.f = y5Var.h; this.B = y5Var.e; @@ -103,8 +103,8 @@ public class u4 implements t5 { s2.b(); synchronized (c2.class) { c2 c2Var = c2.a; - if (!(c2Var == null || (context = c2Var.b) == null || c2Var.f1097c == null)) { - context.getContentResolver().unregisterContentObserver(c2.a.f1097c); + if (!(c2Var == null || (context = c2Var.b) == null || c2Var.f1098c == null)) { + context.getContentResolver().unregisterContentObserver(c2.a.f1098c); } c2.a = null; } @@ -140,7 +140,7 @@ public class u4 implements t5 { this.l = w8Var; d7 d7Var = new d7(this); d7Var.p(); - this.f1210s = d7Var; + this.f1211s = d7Var; r4 r4Var = new r4(this); r4Var.p(); this.k = r4Var; @@ -153,12 +153,12 @@ public class u4 implements t5 { c6 s2 = s(); if (s2.a.b.getApplicationContext() instanceof Application) { Application application = (Application) s2.a.b.getApplicationContext(); - if (s2.f1154c == null) { - s2.f1154c = new y6(s2, null); + if (s2.f1155c == null) { + s2.f1155c = new y6(s2, null); } if (z3) { - application.unregisterActivityLifecycleCallbacks(s2.f1154c); - application.registerActivityLifecycleCallbacks(s2.f1154c); + application.unregisterActivityLifecycleCallbacks(s2.f1155c); + application.registerActivityLifecycleCallbacks(s2.f1155c); s2.g().n.a("Registered activity lifecycle callback"); } } @@ -315,20 +315,20 @@ public class u4 implements t5 { */ @WorkerThread public final boolean m() { - if (this.f1212y) { + if (this.f1213y) { f().b(); - Boolean bool = this.f1213z; + Boolean bool = this.f1214z; if (!(bool == null || this.A == 0)) { if (!bool.booleanValue()) { Objects.requireNonNull((d) this.o); } - return this.f1213z.booleanValue(); + return this.f1214z.booleanValue(); } Objects.requireNonNull((d) this.o); this.A = SystemClock.elapsedRealtime(); boolean z2 = false; Boolean valueOf = Boolean.valueOf(t().p0("android.permission.INTERNET") && t().p0("android.permission.ACCESS_NETWORK_STATE") && (c.i.a.f.e.p.b.a(this.b).c() || this.h.C() || (n4.a(this.b) && t9.U(this.b)))); - this.f1213z = valueOf; + this.f1214z = valueOf; if (valueOf.booleanValue()) { t9 t = t(); n3 z3 = z(); @@ -344,16 +344,16 @@ public class u4 implements t5 { z6.t(); } z2 = true; - this.f1213z = Boolean.valueOf(z2); + this.f1214z = Boolean.valueOf(z2); } - return this.f1213z.booleanValue(); + return this.f1214z.booleanValue(); } throw new IllegalStateException("AppMeasurement is not initialized"); } public final d7 n() { - q(this.f1210s); - return this.f1210s; + q(this.f1211s); + return this.f1211s; } public final d4 o() { @@ -382,7 +382,7 @@ public class u4 implements t5 { } public final boolean v() { - return TextUtils.isEmpty(this.f1209c); + return TextUtils.isEmpty(this.f1210c); } public final h7 w() { diff --git a/app/src/main/java/c/i/a/f/i/b/u5.java b/app/src/main/java/c/i/a/f/i/b/u5.java index 8c287b3ad8..411d95d975 100644 --- a/app/src/main/java/c/i/a/f/i/b/u5.java +++ b/app/src/main/java/c/i/a/f/i/b/u5.java @@ -7,6 +7,6 @@ public final class u5 { public static final String[] b = {"_c", "_et", "_xt", "_aeid", "_ai", "_err", "_ev", "_el", "_o", "_sn", "_sc", "_si", "_pn", "_pc", "_pi", "_mst", "_ndt", "_nmid", "_nmn", "_nmt", "_nmtid", "_nmc", "_pv", "_po", "_nt", "_uwa", "_pfo", "_sys", "_sysu", "_pin", "_eid", "_epc", "_gn", "_ll", "_i", "_en", "_cis", "_cc", "_dac", "_sno", "_sid", "_cer", "_aib", "_ffr", "_c", "_err", "_ev", "_el", "_o", "_sn", "_sc", "_si", "_pn", "_pc", "_pi", "_sno", "_sid"}; /* renamed from: c reason: collision with root package name */ - public static final String[] f1214c = {"items"}; + public static final String[] f1215c = {"items"}; public static final String[] d = {"affiliation", "coupon", "creative_name", "creative_slot", "currency", "discount", "index", "item_id", "item_brand", "item_category", "item_category2", "item_category3", "item_category4", "item_category5", "item_list_name", "item_list_id", "item_name", "item_variant", "location_id", "payment_type", "price", "promotion_id", "promotion_name", "quantity", "shipping", "shipping_tier", "tax", "transaction_id", "value", "item_list", "checkout_step", "checkout_option", "item_location_id"}; } diff --git a/app/src/main/java/c/i/a/f/i/b/u9.java b/app/src/main/java/c/i/a/f/i/b/u9.java index a03eafff68..9f778b1236 100644 --- a/app/src/main/java/c/i/a/f/i/b/u9.java +++ b/app/src/main/java/c/i/a/f/i/b/u9.java @@ -1,6 +1,6 @@ package c.i.a.f.i.b; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import java.util.Objects; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class u9 { @@ -8,17 +8,17 @@ public final class u9 { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1215c; + public final String f1216c; public final long d; public final Object e; public u9(String str, String str2, String str3, long j, Object obj) { - AnimatableValueParser.w(str); - AnimatableValueParser.w(str3); + d.w(str); + d.w(str3); Objects.requireNonNull(obj, "null reference"); this.a = str; this.b = str2; - this.f1215c = str3; + this.f1216c = str3; this.d = j; this.e = obj; } diff --git a/app/src/main/java/c/i/a/f/i/b/v5.java b/app/src/main/java/c/i/a/f/i/b/v5.java index 8b81d4d0e6..a70c9c300f 100644 --- a/app/src/main/java/c/i/a/f/i/b/v5.java +++ b/app/src/main/java/c/i/a/f/i/b/v5.java @@ -7,10 +7,10 @@ public final class v5 { public static final String[] b = {"ad_impression"}; /* renamed from: c reason: collision with root package name */ - public static final String[] f1216c = {"_aa", "_ac", "_xa", "_aq", "_ar", "_xu", "_ab", "_cd", "_ae", "_ui", "app_store_refund", "app_store_subscription_cancel", "app_store_subscription_convert", "app_store_subscription_renew", "_ug", "_au", "dynamic_link_app_open", "dynamic_link_app_update", "dynamic_link_first_open", "_cmp", "_err", "_f", "_v", "_iap", "_nd", "_nf", "_no", "_nr", "_ou", "_s", "_ssr", "_e", "_ai", "_vs", "_ep", "_cmp"}; + public static final String[] f1217c = {"_aa", "_ac", "_xa", "_aq", "_ar", "_xu", "_ab", "_cd", "_ae", "_ui", "app_store_refund", "app_store_subscription_cancel", "app_store_subscription_convert", "app_store_subscription_renew", "_ug", "_au", "dynamic_link_app_open", "dynamic_link_app_update", "dynamic_link_first_open", "_cmp", "_err", "_f", "_v", "_iap", "_nd", "_nf", "_no", "_nr", "_ou", "_s", "_ssr", "_e", "_ai", "_vs", "_ep", "_cmp"}; public static final String[] d = {"purchase", "refund", "add_payment_info", "add_shipping_info", "add_to_cart", "add_to_wishlist", "begin_checkout", "remove_from_cart", "select_item", "select_promotion", "view_cart", "view_item", "view_item_list", "view_promotion", "ecommerce_purchase", "purchase_refund", "set_checkout_option", "checkout_progress", "select_content", "view_search_results"}; public static String a(String str) { - return c.K0(str, f1216c, a); + return c.K0(str, f1217c, a); } } diff --git a/app/src/main/java/c/i/a/f/i/b/v6.java b/app/src/main/java/c/i/a/f/i/b/v6.java index a91c3fe9cb..9016accf2b 100644 --- a/app/src/main/java/c/i/a/f/i/b/v6.java +++ b/app/src/main/java/c/i/a/f/i/b/v6.java @@ -20,7 +20,7 @@ public final class v6 implements Runnable { c cVar = c6Var.a.h; n3 o = c6Var.o(); o.t(); - atomicReference.set(Double.valueOf(cVar.r(o.f1186c, p.O))); + atomicReference.set(Double.valueOf(cVar.r(o.f1187c, p.O))); this.i.notify(); } catch (Throwable th) { this.i.notify(); diff --git a/app/src/main/java/c/i/a/f/i/b/v8.java b/app/src/main/java/c/i/a/f/i/b/v8.java index 02e3b561b5..e80e03f231 100644 --- a/app/src/main/java/c/i/a/f/i/b/v8.java +++ b/app/src/main/java/c/i/a/f/i/b/v8.java @@ -20,10 +20,10 @@ public final class v8 implements Runnable { w8Var.x(); w8Var.g().n.b("Activity resumed, time", Long.valueOf(j)); if (w8Var.a.h.o(p.v0)) { - if (w8Var.a.h.z().booleanValue() || w8Var.l().f1159x.b()) { + if (w8Var.a.h.z().booleanValue() || w8Var.l().f1160x.b()) { d9 d9Var = w8Var.e; d9Var.d.b(); - d9Var.f1162c.c(); + d9Var.f1163c.c(); d9Var.a = j; d9Var.b = j; } @@ -33,7 +33,7 @@ public final class v8 implements Runnable { if (w8Var.a.h.z().booleanValue()) { d9 d9Var2 = w8Var.e; d9Var2.d.b(); - d9Var2.f1162c.c(); + d9Var2.f1163c.c(); d9Var2.a = j; d9Var2.b = j; } @@ -42,7 +42,7 @@ public final class v8 implements Runnable { f9Var.a.b(); if (f9Var.a.a.d()) { if (!f9Var.a.a.h.o(p.v0)) { - f9Var.a.l().f1159x.a(false); + f9Var.a.l().f1160x.a(false); } Objects.requireNonNull((d) f9Var.a.a.o); f9Var.b(System.currentTimeMillis(), false); diff --git a/app/src/main/java/c/i/a/f/i/b/w4.java b/app/src/main/java/c/i/a/f/i/b/w4.java index 3b0fae40b8..e056ab47a7 100644 --- a/app/src/main/java/c/i/a/f/i/b/w4.java +++ b/app/src/main/java/c/i/a/f/i/b/w4.java @@ -52,7 +52,7 @@ public final class w4 implements Runnable { u4Var.u = q7Var; u4Var.m.q(); u4Var.i.q(); - u4Var.f1211x = new m4(u4Var); + u4Var.f1212x = new m4(u4Var); n3 n3Var2 = u4Var.w; if (!n3Var2.b) { n3Var2.w(); @@ -62,8 +62,8 @@ public final class w4 implements Runnable { u4Var.g().l.b("App measurement initialized, version", 33025L); u4Var.g().l.a("To enable debug logging run: adb shell setprop log.tag.FA VERBOSE"); n3Var.t(); - String str2 = n3Var.f1186c; - if (TextUtils.isEmpty(u4Var.f1209c)) { + String str2 = n3Var.f1187c; + if (TextUtils.isEmpty(u4Var.f1210c)) { if (u4Var.t().s0(str2)) { s3Var = u4Var.g().l; str = "Faster debug mode event logging enabled. To disable, run:\n adb shell setprop debug.firebase.analytics.app .none."; @@ -79,7 +79,7 @@ public final class w4 implements Runnable { if (u4Var.F != u4Var.G.get()) { u4Var.g().f.c("Not all components initialized", Integer.valueOf(u4Var.F), Integer.valueOf(u4Var.G.get())); } - u4Var.f1212y = true; + u4Var.f1213y = true; u4 u4Var2 = this.j; zzae zzae = this.i.g; u4Var2.f().b(); diff --git a/app/src/main/java/c/i/a/f/i/b/w7.java b/app/src/main/java/c/i/a/f/i/b/w7.java index 11ba18c7fd..d453649e69 100644 --- a/app/src/main/java/c/i/a/f/i/b/w7.java +++ b/app/src/main/java/c/i/a/f/i/b/w7.java @@ -24,7 +24,7 @@ public final class w7 implements Runnable { if (i7Var == null) { i3Var.E(0, null, null, q7Var.a.b.getPackageName()); } else { - i3Var.E(i7Var.f1171c, i7Var.a, i7Var.b, q7Var.a.b.getPackageName()); + i3Var.E(i7Var.f1172c, i7Var.a, i7Var.b, q7Var.a.b.getPackageName()); } this.j.F(); } catch (RemoteException e) { diff --git a/app/src/main/java/c/i/a/f/i/b/w8.java b/app/src/main/java/c/i/a/f/i/b/w8.java index 644793eec1..d7b637efa4 100644 --- a/app/src/main/java/c/i/a/f/i/b/w8.java +++ b/app/src/main/java/c/i/a/f/i/b/w8.java @@ -8,7 +8,7 @@ import c.i.a.f.h.l.bc; public final class w8 extends a5 { /* renamed from: c reason: collision with root package name */ - public Handler f1217c; + public Handler f1218c; public final f9 d = new f9(this); public final d9 e = new d9(this); public final x8 f = new x8(this); @@ -29,8 +29,8 @@ public final class w8 extends a5 { @WorkerThread public final void x() { b(); - if (this.f1217c == null) { - this.f1217c = new bc(Looper.getMainLooper()); + if (this.f1218c == null) { + this.f1218c = new bc(Looper.getMainLooper()); } } } diff --git a/app/src/main/java/c/i/a/f/i/b/x.java b/app/src/main/java/c/i/a/f/i/b/x.java index 6831369fd2..5a6cf1931c 100644 --- a/app/src/main/java/c/i/a/f/i/b/x.java +++ b/app/src/main/java/c/i/a/f/i/b/x.java @@ -1,6 +1,6 @@ package c.i.a.f.i.b; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class x implements Runnable { public final /* synthetic */ String i; @@ -19,13 +19,13 @@ public final class x implements Runnable { String str = this.i; long j = this.j; aVar.b(); - AnimatableValueParser.w(str); - Integer num = aVar.f1146c.get(str); + d.w(str); + Integer num = aVar.f1147c.get(str); if (num != null) { i7 w = aVar.q().w(false); int intValue = num.intValue() - 1; if (intValue == 0) { - aVar.f1146c.remove(str); + aVar.f1147c.remove(str); Long l = aVar.b.get(str); if (l == null) { aVar.g().f.a("First ad unit exposure time was never set"); @@ -33,7 +33,7 @@ public final class x implements Runnable { aVar.b.remove(str); aVar.w(str, j - l.longValue(), w); } - if (aVar.f1146c.isEmpty()) { + if (aVar.f1147c.isEmpty()) { long j2 = aVar.d; if (j2 == 0) { aVar.g().f.a("First ad exposure time was never set"); @@ -45,7 +45,7 @@ public final class x implements Runnable { } return; } - aVar.f1146c.put(str, Integer.valueOf(intValue)); + aVar.f1147c.put(str, Integer.valueOf(intValue)); return; } aVar.g().f.b("Call to endAdUnitExposure for unknown ad unit id", str); diff --git a/app/src/main/java/c/i/a/f/i/b/x8.java b/app/src/main/java/c/i/a/f/i/b/x8.java index abb3ee2272..d2ad66b930 100644 --- a/app/src/main/java/c/i/a/f/i/b/x8.java +++ b/app/src/main/java/c/i/a/f/i/b/x8.java @@ -15,10 +15,10 @@ public final class x8 { this.b.b(); b9 b9Var = this.a; if (b9Var != null) { - this.b.f1217c.removeCallbacks(b9Var); + this.b.f1218c.removeCallbacks(b9Var); } if (this.b.a.h.o(p.v0)) { - this.b.l().f1159x.a(false); + this.b.l().f1160x.a(false); } } } diff --git a/app/src/main/java/c/i/a/f/i/b/y0.java b/app/src/main/java/c/i/a/f/i/b/y0.java index ae62732658..4137bb1b0c 100644 --- a/app/src/main/java/c/i/a/f/i/b/y0.java +++ b/app/src/main/java/c/i/a/f/i/b/y0.java @@ -1,6 +1,6 @@ package c.i.a.f.i.b; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ public final class y0 implements Runnable { public final /* synthetic */ String i; @@ -19,17 +19,17 @@ public final class y0 implements Runnable { String str = this.i; long j = this.j; aVar.b(); - AnimatableValueParser.w(str); - if (aVar.f1146c.isEmpty()) { + d.w(str); + if (aVar.f1147c.isEmpty()) { aVar.d = j; } - Integer num = aVar.f1146c.get(str); + Integer num = aVar.f1147c.get(str); if (num != null) { - aVar.f1146c.put(str, Integer.valueOf(num.intValue() + 1)); - } else if (aVar.f1146c.size() >= 100) { + aVar.f1147c.put(str, Integer.valueOf(num.intValue() + 1)); + } else if (aVar.f1147c.size() >= 100) { aVar.g().i.a("Too many ads visible"); } else { - aVar.f1146c.put(str, 1); + aVar.f1147c.put(str, 1); aVar.b.put(str, Long.valueOf(j)); } } diff --git a/app/src/main/java/c/i/a/f/i/b/y4.java b/app/src/main/java/c/i/a/f/i/b/y4.java index 40ff52dd33..afecde4a10 100644 --- a/app/src/main/java/c/i/a/f/i/b/y4.java +++ b/app/src/main/java/c/i/a/f/i/b/y4.java @@ -4,10 +4,10 @@ import android.content.ContentValues; import android.database.sqlite.SQLiteException; import android.os.Bundle; import android.text.TextUtils; +import c.c.a.a0.d; import c.i.a.f.h.l.a1; import c.i.a.f.h.l.c1; import c.i.a.f.h.l.u4; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.measurement.internal.zzap; import com.google.android.gms.measurement.internal.zzn; import java.util.Iterator; @@ -34,8 +34,8 @@ public final /* synthetic */ class y4 implements Runnable { K.b(); K.n(); u4 u4Var = K.a; - AnimatableValueParser.w(str); - AnimatableValueParser.w("dep"); + d.w(str); + d.w("dep"); TextUtils.isEmpty(""); if (bundle == null || bundle.isEmpty()) { zzap = new zzap(new Bundle()); diff --git a/app/src/main/java/c/i/a/f/i/b/y5.java b/app/src/main/java/c/i/a/f/i/b/y5.java index 87237cc0f2..d46624c9f4 100644 --- a/app/src/main/java/c/i/a/f/i/b/y5.java +++ b/app/src/main/java/c/i/a/f/i/b/y5.java @@ -10,7 +10,7 @@ public final class y5 { public String b; /* renamed from: c reason: collision with root package name */ - public String f1218c; + public String f1219c; public String d; public Boolean e; public long f; @@ -26,7 +26,7 @@ public final class y5 { if (zzae != null) { this.g = zzae; this.b = zzae.n; - this.f1218c = zzae.m; + this.f1219c = zzae.m; this.d = zzae.l; this.h = zzae.k; this.f = zzae.j; diff --git a/app/src/main/java/c/i/a/f/i/b/y6.java b/app/src/main/java/c/i/a/f/i/b/y6.java index 8eb269368f..a32cbde8f6 100644 --- a/app/src/main/java/c/i/a/f/i/b/y6.java +++ b/app/src/main/java/c/i/a/f/i/b/y6.java @@ -71,11 +71,11 @@ public final class y6 implements Application.ActivityLifecycleCallbacks { long elapsedRealtime = SystemClock.elapsedRealtime(); if (!q.a.h.o(p.u0) || q.a.h.z().booleanValue()) { i7 E = q.E(activity); - q.d = q.f1168c; - q.f1168c = null; + q.d = q.f1169c; + q.f1169c = null; q.f().v(new o7(q, E, elapsedRealtime)); } else { - q.f1168c = null; + q.f1169c = null; q.f().v(new l7(q, elapsedRealtime)); } w8 s2 = this.i.s(); @@ -112,7 +112,7 @@ public final class y6 implements Application.ActivityLifecycleCallbacks { m.f().v(new a3(m, SystemClock.elapsedRealtime())); return; } - q.f1168c = q.i; + q.f1169c = q.i; q.f().v(new m7(q)); } @@ -122,7 +122,7 @@ public final class y6 implements Application.ActivityLifecycleCallbacks { h7 q = this.i.q(); if (q.a.h.z().booleanValue() && bundle != null && (i7Var = q.f.get(activity)) != null) { Bundle bundle2 = new Bundle(); - bundle2.putLong(ModelAuditLogEntry.CHANGE_KEY_ID, i7Var.f1171c); + bundle2.putLong(ModelAuditLogEntry.CHANGE_KEY_ID, i7Var.f1172c); bundle2.putString(ModelAuditLogEntry.CHANGE_KEY_NAME, i7Var.a); bundle2.putString("referrer_name", i7Var.b); bundle.putBundle("com.google.app_measurement.screen_service", bundle2); diff --git a/app/src/main/java/c/i/a/f/i/b/y8.java b/app/src/main/java/c/i/a/f/i/b/y8.java index 7c12112b8c..21a4100028 100644 --- a/app/src/main/java/c/i/a/f/i/b/y8.java +++ b/app/src/main/java/c/i/a/f/i/b/y8.java @@ -23,13 +23,13 @@ public final class y8 implements Runnable { Objects.requireNonNull((d) x8Var.b.a.o); b9 b9Var = new b9(x8Var, System.currentTimeMillis(), j); x8Var.a = b9Var; - x8Var.b.f1217c.postDelayed(b9Var, 2000); + x8Var.b.f1218c.postDelayed(b9Var, 2000); if (w8Var.a.h.z().booleanValue()) { - w8Var.e.f1162c.c(); + w8Var.e.f1163c.c(); } f9 f9Var = w8Var.d; if (!f9Var.a.a.h.o(p.v0)) { - f9Var.a.l().f1159x.a(true); + f9Var.a.l().f1160x.a(true); } } } diff --git a/app/src/main/java/c/i/a/f/i/b/z4.java b/app/src/main/java/c/i/a/f/i/b/z4.java index 7c3388204e..13055ca5a1 100644 --- a/app/src/main/java/c/i/a/f/i/b/z4.java +++ b/app/src/main/java/c/i/a/f/i/b/z4.java @@ -6,13 +6,12 @@ import android.os.Bundle; import android.text.TextUtils; import androidx.annotation.BinderThread; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.e.e; import c.i.a.f.e.f; import c.i.a.f.e.o.c; -import c.i.a.f.e.o.d; import c.i.a.f.h.l.ea; import c.i.a.f.h.l.t8; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.measurement.internal.zzaq; import com.google.android.gms.measurement.internal.zzku; import com.google.android.gms.measurement.internal.zzn; @@ -33,7 +32,7 @@ public final class z4 extends l3 { @Nullable /* renamed from: c reason: collision with root package name */ - public String f1219c = null; + public String f1220c = null; public z4(k9 k9Var) { Objects.requireNonNull(k9Var, "null reference"); @@ -85,7 +84,7 @@ public final class z4 extends l3 { List list = (List) ((FutureTask) this.a.f().t(new d5(this, zzn, str, str2))).get(); ArrayList arrayList = new ArrayList(list.size()); for (u9 u9Var : list) { - if (z2 || !t9.r0(u9Var.f1215c)) { + if (z2 || !t9.r0(u9Var.f1216c)) { arrayList.add(new zzku(u9Var)); } } @@ -129,11 +128,11 @@ public final class z4 extends l3 { @Override // c.i.a.f.i.b.i3 @BinderThread public final byte[] i(zzaq zzaq, String str) { - AnimatableValueParser.w(str); + d.w(str); Objects.requireNonNull(zzaq, "null reference"); y0(str, true); this.a.g().m.b("Log and bundle. event", this.a.O().u(zzaq.i)); - Objects.requireNonNull((d) this.a.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.k.o); long nanoTime = System.nanoTime() / 1000000; r4 f = this.a.f(); l5 l5Var = new l5(this, zzaq, str); @@ -150,7 +149,7 @@ public final class z4 extends l3 { this.a.g().f.b("Log and bundle returned null. appId", q3.s(str)); bArr = new byte[0]; } - Objects.requireNonNull((d) this.a.k.o); + Objects.requireNonNull((c.i.a.f.e.o.d) this.a.k.o); this.a.g().m.d("Log and bundle processed. event, size, time_ms", this.a.O().u(zzaq.i), Integer.valueOf(bArr.length), Long.valueOf((System.nanoTime() / 1000000) - nanoTime)); return bArr; } catch (InterruptedException | ExecutionException e) { @@ -163,7 +162,7 @@ public final class z4 extends l3 { @BinderThread public final void l(zzn zzn) { if (t8.b() && this.a.k.h.o(p.J0)) { - AnimatableValueParser.w(zzn.i); + d.w(zzn.i); Objects.requireNonNull(zzn.E, "null reference"); k5 k5Var = new k5(this, zzn); if (this.a.f().y()) { @@ -199,7 +198,7 @@ public final class z4 extends l3 { List list = (List) ((FutureTask) this.a.f().t(new g5(this, str, str2, str3))).get(); ArrayList arrayList = new ArrayList(list.size()); for (u9 u9Var : list) { - if (z2 || !t9.r0(u9Var.f1215c)) { + if (z2 || !t9.r0(u9Var.f1216c)) { arrayList.add(new zzku(u9Var)); } } @@ -236,7 +235,7 @@ public final class z4 extends l3 { if (z2) { try { if (this.b == null) { - if (!"com.google.android.gms".equals(this.f1219c) && !c.S(this.a.k.b, Binder.getCallingUid())) { + if (!"com.google.android.gms".equals(this.f1220c) && !c.S(this.a.k.b, Binder.getCallingUid())) { if (!f.a(this.a.k.b).b(Binder.getCallingUid())) { z3 = false; this.b = Boolean.valueOf(z3); @@ -253,15 +252,15 @@ public final class z4 extends l3 { throw e; } } - if (this.f1219c == null) { + if (this.f1220c == null) { Context context = this.a.k.b; int callingUid = Binder.getCallingUid(); boolean z4 = e.a; if (c.o0(context, callingUid, str)) { - this.f1219c = str; + this.f1220c = str; } } - if (!str.equals(this.f1219c)) { + if (!str.equals(this.f1220c)) { throw new SecurityException(String.format("Unknown calling package name '%s'.", str)); } return; @@ -287,6 +286,6 @@ public final class z4 extends l3 { public final void z0(zzn zzn) { Objects.requireNonNull(zzn, "null reference"); y0(zzn.i, false); - this.a.k.t().c0(zzn.j, zzn.f2376z, zzn.D); + this.a.k.t().c0(zzn.j, zzn.f2379z, zzn.D); } } diff --git a/app/src/main/java/c/i/a/f/i/b/z9.java b/app/src/main/java/c/i/a/f/i/b/z9.java index a73765416d..186c993fd3 100644 --- a/app/src/main/java/c/i/a/f/i/b/z9.java +++ b/app/src/main/java/c/i/a/f/i/b/z9.java @@ -2,7 +2,7 @@ package c.i.a.f.i.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.measurement.internal.zzn; import java.util.ArrayList; /* compiled from: com.google.android.gms:play-services-measurement-impl@@18.0.0 */ @@ -10,7 +10,7 @@ public final class z9 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzn createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); long j = 0; long j2 = 0; long j3 = 0; @@ -34,71 +34,71 @@ public final class z9 implements Parcelable.Creator { boolean z4 = true; boolean z5 = true; boolean z6 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 2: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 3: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 4: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; case 5: - str4 = AnimatableValueParser.T(parcel, readInt); + str4 = d.T(parcel, readInt); break; case 6: - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); break; case 7: - j2 = AnimatableValueParser.k2(parcel, readInt); + j2 = d.H1(parcel, readInt); break; case 8: - str5 = AnimatableValueParser.T(parcel, readInt); + str5 = d.T(parcel, readInt); break; case 9: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 10: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); break; case 11: - j6 = AnimatableValueParser.k2(parcel, readInt); + j6 = d.H1(parcel, readInt); break; case 12: - str6 = AnimatableValueParser.T(parcel, readInt); + str6 = d.T(parcel, readInt); break; case 13: - j3 = AnimatableValueParser.k2(parcel, readInt); + j3 = d.H1(parcel, readInt); break; case 14: - j4 = AnimatableValueParser.k2(parcel, readInt); + j4 = d.H1(parcel, readInt); break; case 15: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 16: - z4 = AnimatableValueParser.h2(parcel, readInt); + z4 = d.E1(parcel, readInt); break; case 17: - z5 = AnimatableValueParser.h2(parcel, readInt); + z5 = d.E1(parcel, readInt); break; case 18: - z6 = AnimatableValueParser.h2(parcel, readInt); + z6 = d.E1(parcel, readInt); break; case 19: - str7 = AnimatableValueParser.T(parcel, readInt); + str7 = d.T(parcel, readInt); break; case 20: default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; case 21: - int p2 = AnimatableValueParser.p2(parcel, readInt); - if (p2 != 0) { - AnimatableValueParser.e3(parcel, p2, 4); + int M1 = d.M1(parcel, readInt); + if (M1 != 0) { + d.A2(parcel, M1, 4); bool = Boolean.valueOf(parcel.readInt() != 0); break; } else { @@ -106,20 +106,20 @@ public final class z9 implements Parcelable.Creator { break; } case 22: - j5 = AnimatableValueParser.k2(parcel, readInt); + j5 = d.H1(parcel, readInt); break; case 23: - arrayList = AnimatableValueParser.V(parcel, readInt); + arrayList = d.V(parcel, readInt); break; case 24: - str8 = AnimatableValueParser.T(parcel, readInt); + str8 = d.T(parcel, readInt); break; case 25: - str9 = AnimatableValueParser.T(parcel, readInt); + str9 = d.T(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzn(str, str2, str3, str4, j, j2, str5, z2, z3, j6, str6, j3, j4, i, z4, z5, z6, str7, bool, j5, arrayList, str8, str9); } diff --git a/app/src/main/java/c/i/a/f/j/a.java b/app/src/main/java/c/i/a/f/j/a.java index ed3d9992eb..f844d7e165 100644 --- a/app/src/main/java/c/i/a/f/j/a.java +++ b/app/src/main/java/c/i/a/f/j/a.java @@ -109,7 +109,7 @@ public final class a { str = str2; } if (str != null && !str.equals("")) { - if (p.f1145c.matcher(str).matches()) { + if (p.f1146c.matcher(str).matches()) { bool4 = Boolean.TRUE; } else if (p.d.matcher(str).matches()) { bool = Boolean.FALSE; diff --git a/app/src/main/java/c/i/a/f/j/b/e/b.java b/app/src/main/java/c/i/a/f/j/b/e/b.java index b500ae40b3..8abb4f9c20 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/b.java +++ b/app/src/main/java/c/i/a/f/j/b/e/b.java @@ -15,7 +15,7 @@ public abstract class b extends c.i.a.f.h.m.b implements a { return false; } s sVar = (s) this; - sVar.d.b(sVar.f1223c.f1054c); + sVar.d.b(sVar.f1224c.f1055c); k kVar = sVar.b; if (kVar != null) { kVar.a(d0.a); diff --git a/app/src/main/java/c/i/a/f/j/b/e/d.java b/app/src/main/java/c/i/a/f/j/b/e/d.java index 65228250c7..5b94ebe80c 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/d.java +++ b/app/src/main/java/c/i/a/f/j/b/e/d.java @@ -2,30 +2,29 @@ package c.i.a.f.j.b.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.nearby.messages.internal.zzad; public final class d implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzad createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = c.c.a.a0.d.l2(parcel); String str = null; String str2 = null; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - str = AnimatableValueParser.T(parcel, readInt); + str = c.c.a.a0.d.T(parcel, readInt); } else if (i2 == 2) { - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = c.c.a.a0.d.T(parcel, readInt); } else if (i2 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + c.c.a.a0.d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = c.c.a.a0.d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + c.c.a.a0.d.h0(parcel, l2); return new zzad(i, str, str2); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/e.java b/app/src/main/java/c/i/a/f/j/b/e/e.java index eeac54027c..275446f08d 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/e.java +++ b/app/src/main/java/c/i/a/f/j/b/e/e.java @@ -2,28 +2,28 @@ package c.i.a.f.j.b.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.Message; import com.google.android.gms.nearby.messages.internal.zzaf; public final class e implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzaf createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; Message message = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - message = (Message) AnimatableValueParser.S(parcel, readInt, Message.CREATOR); + message = (Message) d.S(parcel, readInt, Message.CREATOR); } else if (i2 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzaf(i, message); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/f0.java b/app/src/main/java/c/i/a/f/j/b/e/f0.java index 1c6f4761be..8cf540467d 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/f0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/f0.java @@ -3,7 +3,7 @@ package c.i.a.f.j.b.e; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.Strategy; import com.google.android.gms.nearby.messages.internal.ClientAppContext; import com.google.android.gms.nearby.messages.internal.zzaf; @@ -12,7 +12,7 @@ public final class f0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzbz createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); zzaf zzaf = null; Strategy strategy = null; IBinder iBinder = null; @@ -24,48 +24,48 @@ public final class f0 implements Parcelable.Creator { boolean z2 = false; boolean z3 = false; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - zzaf = (zzaf) AnimatableValueParser.S(parcel, readInt, zzaf.CREATOR); + zzaf = (zzaf) d.S(parcel, readInt, zzaf.CREATOR); break; case 3: - strategy = (Strategy) AnimatableValueParser.S(parcel, readInt, Strategy.CREATOR); + strategy = (Strategy) d.S(parcel, readInt, Strategy.CREATOR); break; case 4: - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); break; case 5: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 6: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 7: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 8: - iBinder2 = AnimatableValueParser.i2(parcel, readInt); + iBinder2 = d.F1(parcel, readInt); break; case 9: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); break; case 10: - clientAppContext = (ClientAppContext) AnimatableValueParser.S(parcel, readInt, ClientAppContext.CREATOR); + clientAppContext = (ClientAppContext) d.S(parcel, readInt, ClientAppContext.CREATOR); break; case 11: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzbz(i, zzaf, strategy, iBinder, str, str2, z2, iBinder2, z3, clientAppContext, i2); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/g0.java b/app/src/main/java/c/i/a/f/j/b/e/g0.java index 2bd1303e2f..6a929b7c14 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/g0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/g0.java @@ -3,47 +3,47 @@ package c.i.a.f.j.b.e; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.internal.ClientAppContext; import com.google.android.gms.nearby.messages.internal.zzcb; public final class g0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzcb createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); IBinder iBinder = null; IBinder iBinder2 = null; String str = null; ClientAppContext clientAppContext = null; int i = 0; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); break; case 3: - iBinder2 = AnimatableValueParser.i2(parcel, readInt); + iBinder2 = d.F1(parcel, readInt); break; case 4: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 5: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 6: - clientAppContext = (ClientAppContext) AnimatableValueParser.S(parcel, readInt, ClientAppContext.CREATOR); + clientAppContext = (ClientAppContext) d.S(parcel, readInt, ClientAppContext.CREATOR); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzcb(i, iBinder, iBinder2, z2, str, clientAppContext); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/h0.java b/app/src/main/java/c/i/a/f/j/b/e/h0.java index d746c8b055..c90a1957ee 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/h0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/h0.java @@ -4,7 +4,7 @@ import android.app.PendingIntent; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.MessageFilter; import com.google.android.gms.nearby.messages.Strategy; import com.google.android.gms.nearby.messages.internal.ClientAppContext; @@ -13,7 +13,7 @@ public final class h0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final SubscribeRequest createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); IBinder iBinder = null; Strategy strategy = null; IBinder iBinder2 = null; @@ -31,66 +31,66 @@ public final class h0 implements Parcelable.Creator { boolean z4 = false; int i3 = 0; int i4 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); break; case 3: - strategy = (Strategy) AnimatableValueParser.S(parcel, readInt, Strategy.CREATOR); + strategy = (Strategy) d.S(parcel, readInt, Strategy.CREATOR); break; case 4: - iBinder2 = AnimatableValueParser.i2(parcel, readInt); + iBinder2 = d.F1(parcel, readInt); break; case 5: - messageFilter = (MessageFilter) AnimatableValueParser.S(parcel, readInt, MessageFilter.CREATOR); + messageFilter = (MessageFilter) d.S(parcel, readInt, MessageFilter.CREATOR); break; case 6: - pendingIntent = (PendingIntent) AnimatableValueParser.S(parcel, readInt, PendingIntent.CREATOR); + pendingIntent = (PendingIntent) d.S(parcel, readInt, PendingIntent.CREATOR); break; case 7: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); break; case 8: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 9: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 10: - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); break; case 11: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 12: - iBinder3 = AnimatableValueParser.i2(parcel, readInt); + iBinder3 = d.F1(parcel, readInt); break; case 13: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); break; case 14: - clientAppContext = (ClientAppContext) AnimatableValueParser.S(parcel, readInt, ClientAppContext.CREATOR); + clientAppContext = (ClientAppContext) d.S(parcel, readInt, ClientAppContext.CREATOR); break; case 15: - z4 = AnimatableValueParser.h2(parcel, readInt); + z4 = d.E1(parcel, readInt); break; case 16: - i3 = AnimatableValueParser.j2(parcel, readInt); + i3 = d.G1(parcel, readInt); break; case 17: - i4 = AnimatableValueParser.j2(parcel, readInt); + i4 = d.G1(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new SubscribeRequest(i, iBinder, strategy, iBinder2, messageFilter, pendingIntent, i2, str, str2, bArr, z2, iBinder3, z3, clientAppContext, z4, i3, i4); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/i.java b/app/src/main/java/c/i/a/f/j/b/e/i.java index 0c9e1b5cda..937e8b069d 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/i.java +++ b/app/src/main/java/c/i/a/f/j/b/e/i.java @@ -4,6 +4,7 @@ import android.app.Activity; import android.os.Handler; import android.os.Looper; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.e.h.a; import c.i.a.f.e.h.b; import c.i.a.f.e.h.j.c0; @@ -13,7 +14,6 @@ import c.i.a.f.e.h.j.k; import c.i.a.f.e.h.j.n0; import c.i.a.f.e.k.c; import c.i.a.f.n.b0; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Status; import com.google.android.gms.nearby.messages.Message; import com.google.android.gms.nearby.messages.MessageListener; @@ -47,9 +47,9 @@ public final class i extends MessagesClient { t tVar = new t(taskCompletionSource); String name = Status.class.getName(); Looper looper = iVar.e; - AnimatableValueParser.z(tVar, "Listener must not be null"); - AnimatableValueParser.z(looper, "Looper must not be null"); - AnimatableValueParser.z(name, "Listener type must not be null"); + d.z(tVar, "Listener must not be null"); + d.z(looper, "Looper must not be null"); + d.z(name, "Listener type must not be null"); return new k(looper, tVar, name); } @@ -66,9 +66,9 @@ public final class i extends MessagesClient { @Override // com.google.android.gms.nearby.messages.MessagesClient public final Task g(MessageListener messageListener, SubscribeOptions subscribeOptions) { - AnimatableValueParser.p(subscribeOptions.a.r == 0, "Strategy.setBackgroundScanMode() is only supported by background subscribe (the version which takes a PendingIntent)."); + d.p(subscribeOptions.a.r == 0, "Strategy.setBackgroundScanMode() is only supported by background subscribe (the version which takes a PendingIntent)."); k m = m(messageListener); - return k(m, new l(this, m, new s(this, m(subscribeOptions.f2378c), m), subscribeOptions), new m(m)); + return k(m, new l(this, m, new s(this, m(subscribeOptions.f2381c), m), subscribeOptions), new m(m)); } @Override // com.google.android.gms.nearby.messages.MessagesClient @@ -83,11 +83,11 @@ public final class i extends MessagesClient { public final Task k(k kVar, a0 a0Var, a0 a0Var2) { v vVar = new v(this, kVar, a0Var); - k.a aVar = kVar.f1054c; + k.a aVar = kVar.f1055c; x xVar = new x(this, aVar, a0Var2); - AnimatableValueParser.z(kVar.f1054c, "Listener has already been released."); - AnimatableValueParser.z(aVar, "Listener has already been released."); - AnimatableValueParser.p(AnimatableValueParser.j0(kVar.f1054c, aVar), "Listener registration and unregistration methods must be constructed with the same ListenerHolder."); + d.z(kVar.f1055c, "Listener has already been released."); + d.z(aVar, "Listener has already been released."); + d.p(d.j0(kVar.f1055c, aVar), "Listener registration and unregistration methods must be constructed with the same ListenerHolder."); g gVar = this.i; Runnable runnable = c.i.a.f.e.h.k.i; Objects.requireNonNull(gVar); @@ -101,9 +101,9 @@ public final class i extends MessagesClient { public final Task l(T t) { TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); String name = t.getClass().getName(); - AnimatableValueParser.z(t, "Listener must not be null"); - AnimatableValueParser.z(name, "Listener type must not be null"); - AnimatableValueParser.v(name, "Listener type must not be empty"); + d.z(t, "Listener must not be null"); + d.z(name, "Listener type must not be null"); + d.v(name, "Listener type must not be empty"); Task b = b(new k.a<>(t, name)); u uVar = new u(taskCompletionSource); b0 b0Var = (b0) b; @@ -118,9 +118,9 @@ public final class i extends MessagesClient { } String name = t.getClass().getName(); Looper looper = this.e; - AnimatableValueParser.z(t, "Listener must not be null"); - AnimatableValueParser.z(looper, "Looper must not be null"); - AnimatableValueParser.z(name, "Listener type must not be null"); + d.z(t, "Listener must not be null"); + d.z(looper, "Looper must not be null"); + d.z(name, "Listener type must not be null"); return new k<>(looper, t, name); } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/i0.java b/app/src/main/java/c/i/a/f/j/b/e/i0.java index 2f0971c63a..9880ddf97a 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/i0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/i0.java @@ -3,7 +3,7 @@ package c.i.a.f.j.b.e; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.internal.ClientAppContext; import com.google.android.gms.nearby.messages.internal.zzaf; import com.google.android.gms.nearby.messages.internal.zzce; @@ -11,7 +11,7 @@ public final class i0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzce createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); zzaf zzaf = null; IBinder iBinder = null; String str = null; @@ -19,36 +19,36 @@ public final class i0 implements Parcelable.Creator { ClientAppContext clientAppContext = null; int i = 0; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - zzaf = (zzaf) AnimatableValueParser.S(parcel, readInt, zzaf.CREATOR); + zzaf = (zzaf) d.S(parcel, readInt, zzaf.CREATOR); break; case 3: - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); break; case 4: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 5: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 6: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 7: - clientAppContext = (ClientAppContext) AnimatableValueParser.S(parcel, readInt, ClientAppContext.CREATOR); + clientAppContext = (ClientAppContext) d.S(parcel, readInt, ClientAppContext.CREATOR); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzce(i, zzaf, iBinder, str, str2, z2, clientAppContext); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/j.java b/app/src/main/java/c/i/a/f/j/b/e/j.java index 7e78caa56e..eb48d0e339 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/j.java +++ b/app/src/main/java/c/i/a/f/j/b/e/j.java @@ -11,13 +11,13 @@ public final /* synthetic */ class j implements a0 { public final Message b; /* renamed from: c reason: collision with root package name */ - public final b0 f1220c; + public final b0 f1221c; public final PublishOptions d; public j(i iVar, Message message, b0 b0Var, PublishOptions publishOptions) { this.a = iVar; this.b = message; - this.f1220c = b0Var; + this.f1221c = b0Var; this.d = publishOptions; } @@ -25,7 +25,7 @@ public final /* synthetic */ class j implements a0 { public final void a(f fVar, k kVar) { i iVar = this.a; Message message = this.b; - b0 b0Var = this.f1220c; + b0 b0Var = this.f1221c; PublishOptions publishOptions = this.d; Objects.requireNonNull(iVar); zzaf zzaf = new zzaf(1, message); diff --git a/app/src/main/java/c/i/a/f/j/b/e/j0.java b/app/src/main/java/c/i/a/f/j/b/e/j0.java index 0e7e5b6bfb..f406cca084 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/j0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/j0.java @@ -4,14 +4,14 @@ import android.app.PendingIntent; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.internal.ClientAppContext; import com.google.android.gms.nearby.messages.internal.zzcg; public final class j0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzcg createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); IBinder iBinder = null; IBinder iBinder2 = null; PendingIntent pendingIntent = null; @@ -21,42 +21,42 @@ public final class j0 implements Parcelable.Creator { int i = 0; int i2 = 0; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - iBinder = AnimatableValueParser.i2(parcel, readInt); + iBinder = d.F1(parcel, readInt); break; case 3: - iBinder2 = AnimatableValueParser.i2(parcel, readInt); + iBinder2 = d.F1(parcel, readInt); break; case 4: - pendingIntent = (PendingIntent) AnimatableValueParser.S(parcel, readInt, PendingIntent.CREATOR); + pendingIntent = (PendingIntent) d.S(parcel, readInt, PendingIntent.CREATOR); break; case 5: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); break; case 6: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 7: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 8: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 9: - clientAppContext = (ClientAppContext) AnimatableValueParser.S(parcel, readInt, ClientAppContext.CREATOR); + clientAppContext = (ClientAppContext) d.S(parcel, readInt, ClientAppContext.CREATOR); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzcg(i, iBinder, iBinder2, pendingIntent, i2, str, str2, z2, clientAppContext); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/k0.java b/app/src/main/java/c/i/a/f/j/b/e/k0.java index 704a79851b..8db7abf79b 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/k0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/k0.java @@ -2,7 +2,7 @@ package c.i.a.f.j.b.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.nearby.zzgs; import com.google.android.gms.nearby.messages.Message; import com.google.android.gms.nearby.messages.internal.Update; @@ -12,7 +12,7 @@ public final class k0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final Update createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Message message = null; zze zze = null; zza zza = null; @@ -20,36 +20,36 @@ public final class k0 implements Parcelable.Creator { byte[] bArr = null; int i = 0; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); break; case 3: - message = (Message) AnimatableValueParser.S(parcel, readInt, Message.CREATOR); + message = (Message) d.S(parcel, readInt, Message.CREATOR); break; case 4: - zze = (zze) AnimatableValueParser.S(parcel, readInt, zze.CREATOR); + zze = (zze) d.S(parcel, readInt, zze.CREATOR); break; case 5: - zza = (zza) AnimatableValueParser.S(parcel, readInt, zza.CREATOR); + zza = (zza) d.S(parcel, readInt, zza.CREATOR); break; case 6: - zzgs = (zzgs) AnimatableValueParser.S(parcel, readInt, zzgs.CREATOR); + zzgs = (zzgs) d.S(parcel, readInt, zzgs.CREATOR); break; case 7: - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new Update(i, i2, message, zze, zza, zzgs, bArr); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/l.java b/app/src/main/java/c/i/a/f/j/b/e/l.java index cd7a9d354b..2031372c9c 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/l.java +++ b/app/src/main/java/c/i/a/f/j/b/e/l.java @@ -13,13 +13,13 @@ public final /* synthetic */ class l implements a0 { public final k b; /* renamed from: c reason: collision with root package name */ - public final d0 f1221c; + public final d0 f1222c; public final SubscribeOptions d; public l(i iVar, k kVar, d0 d0Var, SubscribeOptions subscribeOptions) { this.a = iVar; this.b = kVar; - this.f1221c = d0Var; + this.f1222c = d0Var; this.d = subscribeOptions; } @@ -27,13 +27,13 @@ public final /* synthetic */ class l implements a0 { public final void a(f fVar, k kVar) { i iVar = this.a; k kVar2 = this.b; - d0 d0Var = this.f1221c; + d0 d0Var = this.f1222c; SubscribeOptions subscribeOptions = this.d; int i = iVar.m; - if (!fVar.A.a(kVar2.f1054c)) { + if (!fVar.A.a(kVar2.f1055c)) { o oVar = fVar.A; - oVar.a.put(kVar2.f1054c, new WeakReference<>(new h(kVar2))); + oVar.a.put(kVar2.f1055c, new WeakReference<>(new h(kVar2))); } - fVar.w().C(new SubscribeRequest(3, fVar.A.b(kVar2.f1054c), subscribeOptions.a, new j(kVar), subscribeOptions.b, null, 0, null, null, null, false, d0Var, false, null, subscribeOptions.d, 0, i)); + fVar.w().C(new SubscribeRequest(3, fVar.A.b(kVar2.f1055c), subscribeOptions.a, new j(kVar), subscribeOptions.b, null, 0, null, null, null, false, d0Var, false, null, subscribeOptions.d, 0, i)); } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/l0.java b/app/src/main/java/c/i/a/f/j/b/e/l0.java index 300ff5dfbb..d76873b9c2 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/l0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/l0.java @@ -2,46 +2,46 @@ package c.i.a.f.j.b.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.internal.ClientAppContext; public final class l0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final ClientAppContext createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; String str3 = null; int i = 0; boolean z2 = false; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 3: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 4: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 5: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); break; case 6: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new ClientAppContext(i, str, str2, z2, i2, str3); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/m.java b/app/src/main/java/c/i/a/f/j/b/e/m.java index 0314801a7c..63d0fee9ef 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/m.java +++ b/app/src/main/java/c/i/a/f/j/b/e/m.java @@ -19,12 +19,12 @@ public final /* synthetic */ class m implements a0 { k kVar2 = this.a; Objects.requireNonNull(fVar); j jVar = new j(kVar); - if (!fVar.A.a(kVar2.f1054c)) { + if (!fVar.A.a(kVar2.f1055c)) { jVar.g(new Status(0, null)); return; } - fVar.w().m0(new zzcg(1, fVar.A.b(kVar2.f1054c), jVar, null, 0, null, null, false, null)); + fVar.w().m0(new zzcg(1, fVar.A.b(kVar2.f1055c), jVar, null, 0, null, null, false, null)); o oVar = fVar.A; - oVar.a.remove(kVar2.f1054c); + oVar.a.remove(kVar2.f1055c); } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/m0.java b/app/src/main/java/c/i/a/f/j/b/e/m0.java index b5e9dadd1f..458f454d7b 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/m0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/m0.java @@ -2,31 +2,31 @@ package c.i.a.f.j.b.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.internal.zze; public final class m0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zze createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; double d = 0.0d; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i3 == 2) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - AnimatableValueParser.b3(parcel, readInt, 8); + d.x2(parcel, readInt, 8); d = parcel.readDouble(); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zze(i, i2, d); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/n.java b/app/src/main/java/c/i/a/f/j/b/e/n.java index 5bef3d3285..b72e4104a9 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/n.java +++ b/app/src/main/java/c/i/a/f/j/b/e/n.java @@ -17,11 +17,11 @@ public final /* synthetic */ class n implements a0 { @Override // c.i.a.f.j.b.e.a0 public final void a(f fVar, k kVar) { k kVar2 = this.a; - if (!fVar.A.a(kVar2.f1054c)) { + if (!fVar.A.a(kVar2.f1055c)) { o oVar = fVar.A; - oVar.a.put(kVar2.f1054c, new WeakReference<>(new m(kVar2))); + oVar.a.put(kVar2.f1055c, new WeakReference<>(new m(kVar2))); } - zzcb zzcb = new zzcb(1, new j(kVar), fVar.A.b(kVar2.f1054c), false, null, null); + zzcb zzcb = new zzcb(1, new j(kVar), fVar.A.b(kVar2.f1055c), false, null, null); zzcb.l = true; fVar.w().r(zzcb); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/n0.java b/app/src/main/java/c/i/a/f/j/b/e/n0.java index 892e5205cf..fa2616bc24 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/n0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/n0.java @@ -2,31 +2,31 @@ package c.i.a.f.j.b.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.internal.ClientAppContext; import com.google.android.gms.nearby.messages.internal.zzj; public final class n0 implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzj createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; ClientAppContext clientAppContext = null; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i3 == 2) { - clientAppContext = (ClientAppContext) AnimatableValueParser.S(parcel, readInt, ClientAppContext.CREATOR); + clientAppContext = (ClientAppContext) d.S(parcel, readInt, ClientAppContext.CREATOR); } else if (i3 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzj(i, clientAppContext, i2); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/o.java b/app/src/main/java/c/i/a/f/j/b/e/o.java index ed9be7b52e..9dab308abb 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/o.java +++ b/app/src/main/java/c/i/a/f/j/b/e/o.java @@ -18,14 +18,14 @@ public final /* synthetic */ class o implements a0 { k kVar2 = this.a; Objects.requireNonNull(fVar); j jVar = new j(kVar); - if (!fVar.A.a(kVar2.f1054c)) { + if (!fVar.A.a(kVar2.f1055c)) { jVar.g(new Status(0, null)); return; } - zzcb zzcb = new zzcb(1, jVar, fVar.A.b(kVar2.f1054c), false, null, null); + zzcb zzcb = new zzcb(1, jVar, fVar.A.b(kVar2.f1055c), false, null, null); zzcb.l = false; fVar.w().r(zzcb); c.i.a.f.h.m.o oVar = fVar.A; - oVar.a.remove(kVar2.f1054c); + oVar.a.remove(kVar2.f1055c); } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/r.java b/app/src/main/java/c/i/a/f/j/b/e/r.java index f4ba5d7ddf..3fc0908b83 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/r.java +++ b/app/src/main/java/c/i/a/f/j/b/e/r.java @@ -4,13 +4,13 @@ import c.i.a.f.e.h.j.k; public final class r extends b0 { /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ k f1222c; + public final /* synthetic */ k f1223c; public final /* synthetic */ i d; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public r(i iVar, k kVar, k kVar2) { super(kVar); this.d = iVar; - this.f1222c = kVar2; + this.f1223c = kVar2; } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/s.java b/app/src/main/java/c/i/a/f/j/b/e/s.java index 324532ca40..33772f4688 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/s.java +++ b/app/src/main/java/c/i/a/f/j/b/e/s.java @@ -4,13 +4,13 @@ import c.i.a.f.e.h.j.k; public final class s extends d0 { /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ k f1223c; + public final /* synthetic */ k f1224c; public final /* synthetic */ i d; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public s(i iVar, k kVar, k kVar2) { super(kVar); this.d = iVar; - this.f1223c = kVar2; + this.f1224c = kVar2; } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/v.java b/app/src/main/java/c/i/a/f/j/b/e/v.java index 36975a77ef..3c32eb209b 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/v.java +++ b/app/src/main/java/c/i/a/f/j/b/e/v.java @@ -6,12 +6,12 @@ public final class v extends m { public final /* synthetic */ a0 b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ i f1224c; + public final /* synthetic */ i f1225c; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public v(i iVar, k kVar, a0 a0Var) { super(kVar); - this.f1224c = iVar; + this.f1225c = iVar; this.b = a0Var; } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/w.java b/app/src/main/java/c/i/a/f/j/b/e/w.java index 6f805324a8..6d45eee554 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/w.java +++ b/app/src/main/java/c/i/a/f/j/b/e/w.java @@ -2,30 +2,30 @@ package c.i.a.f.j.b.e; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.internal.zza; public final class w implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zza createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; int i2 = 0; int i3 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i4 = 65535 & readInt; if (i4 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i4 == 2) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i4 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i3 = AnimatableValueParser.j2(parcel, readInt); + i3 = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zza(i, i2, i3); } diff --git a/app/src/main/java/c/i/a/f/j/b/e/x.java b/app/src/main/java/c/i/a/f/j/b/e/x.java index 336b670281..5d1d71390d 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/x.java +++ b/app/src/main/java/c/i/a/f/j/b/e/x.java @@ -6,12 +6,12 @@ public final class x extends q { public final /* synthetic */ a0 b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ i f1225c; + public final /* synthetic */ i f1226c; /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public x(i iVar, k.a aVar, a0 a0Var) { super(aVar); - this.f1225c = iVar; + this.f1226c = iVar; this.b = a0Var; } } diff --git a/app/src/main/java/c/i/a/f/j/b/e/x0.java b/app/src/main/java/c/i/a/f/j/b/e/x0.java index d6e14b04f7..ec61363d4e 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/x0.java +++ b/app/src/main/java/c/i/a/f/j/b/e/x0.java @@ -15,7 +15,7 @@ public abstract class x0 extends b implements w0 { return false; } r rVar = (r) this; - rVar.d.b(rVar.f1222c.f1054c); + rVar.d.b(rVar.f1223c.f1055c); k kVar = rVar.b; if (kVar != null) { kVar.a(b0.a); diff --git a/app/src/main/java/c/i/a/f/j/b/e/y.java b/app/src/main/java/c/i/a/f/j/b/e/y.java index 9d2847825d..7937bdeb81 100644 --- a/app/src/main/java/c/i/a/f/j/b/e/y.java +++ b/app/src/main/java/c/i/a/f/j/b/e/y.java @@ -6,17 +6,17 @@ import com.google.android.gms.tasks.TaskCompletionSource; public final class y extends p { /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ a0 f1226c; + public final /* synthetic */ a0 f1227c; public final /* synthetic */ i d; public y(i iVar, a0 a0Var) { this.d = iVar; - this.f1226c = a0Var; + this.f1227c = a0Var; } /* JADX DEBUG: Method arguments types fixed to match base method, original types: [c.i.a.f.e.h.a$b, com.google.android.gms.tasks.TaskCompletionSource] */ @Override // c.i.a.f.e.h.j.p public final /* synthetic */ void c(f fVar, TaskCompletionSource taskCompletionSource) throws RemoteException { - this.f1226c.a(fVar, i.j(this.d, taskCompletionSource)); + this.f1227c.a(fVar, i.j(this.d, taskCompletionSource)); } } diff --git a/app/src/main/java/c/i/a/f/j/b/f.java b/app/src/main/java/c/i/a/f/j/b/f.java index f63106ef1f..5312850b29 100644 --- a/app/src/main/java/c/i/a/f/j/b/f.java +++ b/app/src/main/java/c/i/a/f/j/b/f.java @@ -2,40 +2,40 @@ package c.i.a.f.j.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.nearby.zzgs; import com.google.android.gms.nearby.messages.Message; public final class f implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final Message createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); byte[] bArr = null; String str = null; String str2 = null; zzgs[] zzgsArr = null; long j = 0; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); } else if (i2 == 2) { - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); } else if (i2 == 3) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i2 == 4) { - zzgsArr = (zzgs[]) AnimatableValueParser.W(parcel, readInt, zzgs.CREATOR); + zzgsArr = (zzgs[]) d.W(parcel, readInt, zzgs.CREATOR); } else if (i2 == 5) { - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); } else if (i2 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new Message(i, bArr, str, str2, zzgsArr, j); } diff --git a/app/src/main/java/c/i/a/f/j/b/g.java b/app/src/main/java/c/i/a/f/j/b/g.java index c4af81154a..cd1cd57366 100644 --- a/app/src/main/java/c/i/a/f/j/b/g.java +++ b/app/src/main/java/c/i/a/f/j/b/g.java @@ -2,7 +2,7 @@ package c.i.a.f.j.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.internal.nearby.zzgp; import com.google.android.gms.internal.nearby.zzgu; import com.google.android.gms.nearby.messages.MessageFilter; @@ -12,33 +12,33 @@ public final class g implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final MessageFilter createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); ArrayList arrayList = null; ArrayList arrayList2 = null; ArrayList arrayList3 = null; int i = 0; boolean z2 = false; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - arrayList = AnimatableValueParser.X(parcel, readInt, zzad.CREATOR); + arrayList = d.X(parcel, readInt, zzad.CREATOR); } else if (i3 == 2) { - arrayList2 = AnimatableValueParser.X(parcel, readInt, zzgu.CREATOR); + arrayList2 = d.X(parcel, readInt, zzgu.CREATOR); } else if (i3 == 3) { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } else if (i3 == 4) { - arrayList3 = AnimatableValueParser.X(parcel, readInt, zzgp.CREATOR); + arrayList3 = d.X(parcel, readInt, zzgp.CREATOR); } else if (i3 == 5) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 != 1000) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new MessageFilter(i, arrayList, arrayList2, z2, arrayList3, i2); } diff --git a/app/src/main/java/c/i/a/f/j/b/j.java b/app/src/main/java/c/i/a/f/j/b/j.java index c1d5dc617d..e881273223 100644 --- a/app/src/main/java/c/i/a/f/j/b/j.java +++ b/app/src/main/java/c/i/a/f/j/b/j.java @@ -2,13 +2,13 @@ package c.i.a.f.j.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.nearby.messages.Strategy; public final class j implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final Strategy createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; int i2 = 0; int i3 = 0; @@ -17,41 +17,41 @@ public final class j implements Parcelable.Creator { int i5 = 0; int i6 = 0; int i7 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i8 = 65535 & readInt; if (i8 != 1000) { switch (i8) { case 1: - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); continue; case 2: - i3 = AnimatableValueParser.j2(parcel, readInt); + i3 = d.G1(parcel, readInt); continue; case 3: - i4 = AnimatableValueParser.j2(parcel, readInt); + i4 = d.G1(parcel, readInt); continue; case 4: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); continue; case 5: - i5 = AnimatableValueParser.j2(parcel, readInt); + i5 = d.G1(parcel, readInt); continue; case 6: - i6 = AnimatableValueParser.j2(parcel, readInt); + i6 = d.G1(parcel, readInt); continue; case 7: - i7 = AnimatableValueParser.j2(parcel, readInt); + i7 = d.G1(parcel, readInt); continue; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); continue; } } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new Strategy(i, i2, i3, i4, z2, i5, i6, i7); } diff --git a/app/src/main/java/c/i/a/f/k/a.java b/app/src/main/java/c/i/a/f/k/a.java index a422f252fd..b00cb89a8e 100644 --- a/app/src/main/java/c/i/a/f/k/a.java +++ b/app/src/main/java/c/i/a/f/k/a.java @@ -10,7 +10,7 @@ public final class a { @Deprecated /* renamed from: c reason: collision with root package name */ - public static final c.i.a.f.e.h.a f1227c; + public static final c.i.a.f.e.h.a f1228c; @Deprecated public static final SafetyNetApi d = new i(); @@ -19,6 +19,6 @@ public final class a { a = gVar; h hVar = new h(); b = hVar; - f1227c = new c.i.a.f.e.h.a<>("SafetyNet.API", hVar, gVar); + f1228c = new c.i.a.f.e.h.a<>("SafetyNet.API", hVar, gVar); } } diff --git a/app/src/main/java/c/i/a/f/k/b.java b/app/src/main/java/c/i/a/f/k/b.java index 91bd5174b7..c6c34cc2bf 100644 --- a/app/src/main/java/c/i/a/f/k/b.java +++ b/app/src/main/java/c/i/a/f/k/b.java @@ -2,23 +2,23 @@ package c.i.a.f.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.safetynet.zza; public final class b implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zza createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zza(str); } diff --git a/app/src/main/java/c/i/a/f/k/c.java b/app/src/main/java/c/i/a/f/k/c.java index c250978ecf..79212016fc 100644 --- a/app/src/main/java/c/i/a/f/k/c.java +++ b/app/src/main/java/c/i/a/f/k/c.java @@ -2,30 +2,30 @@ package c.i.a.f.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.safetynet.HarmfulAppsData; public final class c implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final HarmfulAppsData createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; byte[] bArr = null; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 2) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i2 == 3) { - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); } else if (i2 != 4) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new HarmfulAppsData(str, bArr, i); } diff --git a/app/src/main/java/c/i/a/f/k/d.java b/app/src/main/java/c/i/a/f/k/d.java index 3be899489c..e967b89180 100644 --- a/app/src/main/java/c/i/a/f/k/d.java +++ b/app/src/main/java/c/i/a/f/k/d.java @@ -2,34 +2,33 @@ package c.i.a.f.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.safetynet.HarmfulAppsData; import com.google.android.gms.safetynet.zzd; public final class d implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzd createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = c.c.a.a0.d.l2(parcel); long j = 0; HarmfulAppsData[] harmfulAppsDataArr = null; int i = 0; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 2) { - j = AnimatableValueParser.k2(parcel, readInt); + j = c.c.a.a0.d.H1(parcel, readInt); } else if (i2 == 3) { - harmfulAppsDataArr = (HarmfulAppsData[]) AnimatableValueParser.W(parcel, readInt, HarmfulAppsData.CREATOR); + harmfulAppsDataArr = (HarmfulAppsData[]) c.c.a.a0.d.W(parcel, readInt, HarmfulAppsData.CREATOR); } else if (i2 == 4) { - i = AnimatableValueParser.j2(parcel, readInt); + i = c.c.a.a0.d.G1(parcel, readInt); } else if (i2 != 5) { - AnimatableValueParser.G2(parcel, readInt); + c.c.a.a0.d.c2(parcel, readInt); } else { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = c.c.a.a0.d.E1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + c.c.a.a0.d.h0(parcel, l2); return new zzd(j, harmfulAppsDataArr, i, z2); } diff --git a/app/src/main/java/c/i/a/f/k/e.java b/app/src/main/java/c/i/a/f/k/e.java index ac8adf9ee5..4df55255cc 100644 --- a/app/src/main/java/c/i/a/f/k/e.java +++ b/app/src/main/java/c/i/a/f/k/e.java @@ -2,23 +2,23 @@ package c.i.a.f.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.safetynet.zzf; public final class e implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzf createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzf(str); } diff --git a/app/src/main/java/c/i/a/f/k/f.java b/app/src/main/java/c/i/a/f/k/f.java index 6b704a7dd3..dcece31a75 100644 --- a/app/src/main/java/c/i/a/f/k/f.java +++ b/app/src/main/java/c/i/a/f/k/f.java @@ -2,27 +2,27 @@ package c.i.a.f.k; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.safetynet.zzh; public final class f implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzh createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; boolean z2 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 2) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzh(i, z2); } diff --git a/app/src/main/java/c/i/a/f/k/g.java b/app/src/main/java/c/i/a/f/k/g.java index 67ba64ff48..d1bdd5cfab 100644 --- a/app/src/main/java/c/i/a/f/k/g.java +++ b/app/src/main/java/c/i/a/f/k/g.java @@ -3,49 +3,49 @@ package c.i.a.f.k; import android.os.Parcel; import android.os.ParcelFileDescriptor; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.data.DataHolder; import com.google.android.gms.safetynet.SafeBrowsingData; public final class g implements Parcelable.Creator { public static void a(SafeBrowsingData safeBrowsingData, Parcel parcel, int i) { - int a3 = AnimatableValueParser.a3(parcel, 20293); - AnimatableValueParser.W2(parcel, 2, safeBrowsingData.i, false); - AnimatableValueParser.V2(parcel, 3, safeBrowsingData.j, i, false); - AnimatableValueParser.V2(parcel, 4, safeBrowsingData.k, i, false); + int w2 = d.w2(parcel, 20293); + d.s2(parcel, 2, safeBrowsingData.i, false); + d.r2(parcel, 3, safeBrowsingData.j, i, false); + d.r2(parcel, 4, safeBrowsingData.k, i, false); long j = safeBrowsingData.l; - AnimatableValueParser.d3(parcel, 5, 8); + d.z2(parcel, 5, 8); parcel.writeLong(j); - AnimatableValueParser.T2(parcel, 6, safeBrowsingData.m, false); - AnimatableValueParser.f3(parcel, a3); + d.p2(parcel, 6, safeBrowsingData.m, false); + d.B2(parcel, w2); } /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final SafeBrowsingData createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; DataHolder dataHolder = null; ParcelFileDescriptor parcelFileDescriptor = null; byte[] bArr = null; long j = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 2) { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } else if (i == 3) { - dataHolder = (DataHolder) AnimatableValueParser.S(parcel, readInt, DataHolder.CREATOR); + dataHolder = (DataHolder) d.S(parcel, readInt, DataHolder.CREATOR); } else if (i == 4) { - parcelFileDescriptor = (ParcelFileDescriptor) AnimatableValueParser.S(parcel, readInt, ParcelFileDescriptor.CREATOR); + parcelFileDescriptor = (ParcelFileDescriptor) d.S(parcel, readInt, ParcelFileDescriptor.CREATOR); } else if (i == 5) { - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); } else if (i != 6) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new SafeBrowsingData(str, dataHolder, parcelFileDescriptor, j, bArr); } diff --git a/app/src/main/java/c/i/a/f/l/a.java b/app/src/main/java/c/i/a/f/l/a.java index 60d1140641..ddea352f62 100644 --- a/app/src/main/java/c/i/a/f/l/a.java +++ b/app/src/main/java/c/i/a/f/l/a.java @@ -1,8 +1,8 @@ package c.i.a.f.l; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.e.h.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.util.Arrays; import java.util.Objects; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ @@ -17,7 +17,7 @@ public final class a implements a.d { return false; } Objects.requireNonNull((a) obj); - return AnimatableValueParser.j0(null, null) && AnimatableValueParser.j0(null, null) && AnimatableValueParser.j0(null, null) && AnimatableValueParser.j0(null, null) && AnimatableValueParser.j0(null, null); + return d.j0(null, null) && d.j0(null, null) && d.j0(null, null) && d.j0(null, null) && d.j0(null, null); } public final int hashCode() { diff --git a/app/src/main/java/c/i/a/f/l/b/a.java b/app/src/main/java/c/i/a/f/l/b/a.java index c659e6d804..dda397a29f 100644 --- a/app/src/main/java/c/i/a/f/l/b/a.java +++ b/app/src/main/java/c/i/a/f/l/b/a.java @@ -16,7 +16,6 @@ import c.i.a.f.e.k.b; import c.i.a.f.e.k.c; import c.i.a.f.e.k.d; import c.i.a.f.l.f; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.common.internal.zas; import com.google.android.gms.signin.internal.zak; @@ -40,7 +39,7 @@ public class a extends d implements f { @Override // c.i.a.f.l.f public final void d(c cVar) { - AnimatableValueParser.z(cVar, "Expecting a valid ISignInCallbacks"); + c.c.a.a0.d.z(cVar, "Expecting a valid ISignInCallbacks"); try { Account account = this.B.a; if (account == null) { @@ -57,7 +56,7 @@ public class a extends d implements f { Log.w("SignInClientImpl", "Remote service probably died when signIn is called"); try { g0 g0Var = (g0) cVar; - g0Var.f1052c.post(new i0(g0Var, new zam())); + g0Var.f1053c.post(new i0(g0Var, new zam())); } catch (RemoteException unused) { Log.wtf("SignInClientImpl", "ISignInCallbacks#onSignInComplete should be executed from the same process, unexpected RemoteException.", e); } diff --git a/app/src/main/java/c/i/a/f/l/b/b.java b/app/src/main/java/c/i/a/f/l/b/b.java index 9920b24735..2407aeb9b6 100644 --- a/app/src/main/java/c/i/a/f/l/b/b.java +++ b/app/src/main/java/c/i/a/f/l/b/b.java @@ -3,31 +3,31 @@ package c.i.a.f.l.b; import android.content.Intent; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.signin.internal.zab; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class b implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zab createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; Intent intent = null; int i2 = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i3 = 65535 & readInt; if (i3 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i3 == 2) { - i2 = AnimatableValueParser.j2(parcel, readInt); + i2 = d.G1(parcel, readInt); } else if (i3 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - intent = (Intent) AnimatableValueParser.S(parcel, readInt, Intent.CREATOR); + intent = (Intent) d.S(parcel, readInt, Intent.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zab(i, i2, intent); } diff --git a/app/src/main/java/c/i/a/f/l/b/h.java b/app/src/main/java/c/i/a/f/l/b/h.java index deed4a4281..3ee525c2d3 100644 --- a/app/src/main/java/c/i/a/f/l/b/h.java +++ b/app/src/main/java/c/i/a/f/l/b/h.java @@ -2,7 +2,7 @@ package c.i.a.f.l.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.signin.internal.zag; import java.util.ArrayList; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ @@ -10,21 +10,21 @@ public final class h implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zag createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); ArrayList arrayList = null; String str = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 1) { - arrayList = AnimatableValueParser.V(parcel, readInt); + arrayList = d.V(parcel, readInt); } else if (i != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zag(arrayList, str); } diff --git a/app/src/main/java/c/i/a/f/l/b/i.java b/app/src/main/java/c/i/a/f/l/b/i.java index 463cf81329..f86c43e108 100644 --- a/app/src/main/java/c/i/a/f/l/b/i.java +++ b/app/src/main/java/c/i/a/f/l/b/i.java @@ -2,7 +2,7 @@ package c.i.a.f.l.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.internal.zas; import com.google.android.gms.signin.internal.zak; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ @@ -10,21 +10,21 @@ public final class i implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zak createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); int i = 0; zas zas = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - zas = (zas) AnimatableValueParser.S(parcel, readInt, zas.CREATOR); + zas = (zas) d.S(parcel, readInt, zas.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zak(i, zas); } diff --git a/app/src/main/java/c/i/a/f/l/b/j.java b/app/src/main/java/c/i/a/f/l/b/j.java index d6495df6d4..a2cb1eab3a 100644 --- a/app/src/main/java/c/i/a/f/l/b/j.java +++ b/app/src/main/java/c/i/a/f/l/b/j.java @@ -2,7 +2,7 @@ package c.i.a.f.l.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.internal.zau; import com.google.android.gms.signin.internal.zam; @@ -11,24 +11,24 @@ public final class j implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zam createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); ConnectionResult connectionResult = null; zau zau = null; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i2 = 65535 & readInt; if (i2 == 1) { - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); } else if (i2 == 2) { - connectionResult = (ConnectionResult) AnimatableValueParser.S(parcel, readInt, ConnectionResult.CREATOR); + connectionResult = (ConnectionResult) d.S(parcel, readInt, ConnectionResult.CREATOR); } else if (i2 != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - zau = (zau) AnimatableValueParser.S(parcel, readInt, zau.CREATOR); + zau = (zau) d.S(parcel, readInt, zau.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zam(i, connectionResult, zau); } diff --git a/app/src/main/java/c/i/a/f/l/c.java b/app/src/main/java/c/i/a/f/l/c.java index faf83bab29..e50dc89a5c 100644 --- a/app/src/main/java/c/i/a/f/l/c.java +++ b/app/src/main/java/c/i/a/f/l/c.java @@ -1,8 +1,8 @@ package c.i.a.f.l; import androidx.core.app.NotificationCompat; +import c.c.a.a0.d; import c.i.a.f.e.h.a; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Scope; /* compiled from: com.google.android.gms:play-services-base@@17.3.0 */ public final class c { @@ -10,7 +10,7 @@ public final class c { public static final a.g b; /* renamed from: c reason: collision with root package name */ - public static final a.AbstractC0105a f1228c; + public static final a.AbstractC0105a f1229c; public static final a.AbstractC0105a d; static { @@ -19,14 +19,14 @@ public final class c { a.g gVar2 = new a.g<>(); b = gVar2; e eVar = new e(); - f1228c = eVar; + f1229c = eVar; d dVar = new d(); d = dVar; new Scope("profile"); new Scope(NotificationCompat.CATEGORY_EMAIL); - AnimatableValueParser.z(eVar, "Cannot construct an Api with a null ClientBuilder"); - AnimatableValueParser.z(gVar, "Cannot construct an Api with a null ClientKey"); - AnimatableValueParser.z(dVar, "Cannot construct an Api with a null ClientBuilder"); - AnimatableValueParser.z(gVar2, "Cannot construct an Api with a null ClientKey"); + d.z(eVar, "Cannot construct an Api with a null ClientBuilder"); + d.z(gVar, "Cannot construct an Api with a null ClientKey"); + d.z(dVar, "Cannot construct an Api with a null ClientBuilder"); + d.z(gVar2, "Cannot construct an Api with a null ClientKey"); } } diff --git a/app/src/main/java/c/i/a/f/m/a.java b/app/src/main/java/c/i/a/f/m/a.java index 2601e9cfc6..dacc6748ef 100644 --- a/app/src/main/java/c/i/a/f/m/a.java +++ b/app/src/main/java/c/i/a/f/m/a.java @@ -8,11 +8,11 @@ import android.os.WorkSource; import android.text.TextUtils; import android.util.Log; import androidx.annotation.NonNull; +import c.c.a.a0.d; import c.i.a.f.e.m.a; import c.i.a.f.e.o.h; import c.i.a.f.e.o.i; import c.i.a.f.e.p.b; -import com.airbnb.lottie.parser.AnimatableValueParser; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Collections; @@ -30,7 +30,7 @@ public class a { public final Object b; /* renamed from: c reason: collision with root package name */ - public final PowerManager.WakeLock f1229c; + public final PowerManager.WakeLock f1230c; public WorkSource d; public final int e; public final String f; @@ -49,8 +49,8 @@ public class a { this.i = new HashMap(); Collections.synchronizedSet(new HashSet()); this.k = new AtomicInteger(0); - AnimatableValueParser.z(context, "WakeLock: context must not be null"); - AnimatableValueParser.v(str, "WakeLock: wakeLockName must not be empty"); + d.z(context, "WakeLock: context must not be null"); + d.v(str, "WakeLock: wakeLockName must not be empty"); this.e = i; this.g = context.getApplicationContext(); if (!"com.google.android.gms".equals(context.getPackageName())) { @@ -58,7 +58,7 @@ public class a { } else { this.f = str; } - this.f1229c = ((PowerManager) context.getSystemService("power")).newWakeLock(i, str); + this.f1230c = ((PowerManager) context.getSystemService("power")).newWakeLock(i, str); if (i.a(context)) { packageName = h.a(packageName) ? context.getPackageName() : packageName; if (!(context.getPackageManager() == null || packageName == null)) { @@ -100,7 +100,7 @@ public class a { this.d = workSource; } try { - this.f1229c.setWorkSource(this.d); + this.f1230c.setWorkSource(this.d); } catch (ArrayIndexOutOfBoundsException | IllegalArgumentException e3) { Log.wtf("WakeLock", e3.toString()); } @@ -125,7 +125,7 @@ public class a { if (r7.j == 0) goto L_0x0061; */ /* JADX WARNING: Code restructure failed: missing block: B:24:0x0061, code lost: - com.airbnb.lottie.parser.AnimatableValueParser.C0(r7.f1229c, null); + c.c.a.a0.d.x0(r7.f1230c, null); c(); r7.j++; */ @@ -136,7 +136,7 @@ public class a { } synchronized (this.b) { boolean z2 = false; - if ((!this.i.isEmpty() || this.j > 0) && !this.f1229c.isHeld()) { + if ((!this.i.isEmpty() || this.j > 0) && !this.f1230c.isHeld()) { this.i.clear(); this.j = 0; } @@ -152,7 +152,7 @@ public class a { if (!this.h) { } } - this.f1229c.acquire(); + this.f1230c.acquire(); if (j > 0) { a.schedule(new b(this), j, TimeUnit.MILLISECONDS); } @@ -165,7 +165,7 @@ public class a { if (r6.j == 1) goto L_0x005b; */ /* JADX WARNING: Code restructure failed: missing block: B:23:0x005b, code lost: - com.airbnb.lottie.parser.AnimatableValueParser.C0(r6.f1229c, null); + c.c.a.a0.d.x0(r6.f1230c, null); c(); r6.j--; */ @@ -205,7 +205,7 @@ public class a { WorkSource workSource = this.d; Method method2 = i.a; ArrayList arrayList = new ArrayList(); - if (!(workSource == null || (method = i.f1074c) == null)) { + if (!(workSource == null || (method = i.f1075c) == null)) { try { Object invoke = method.invoke(workSource, new Object[0]); Objects.requireNonNull(invoke, "null reference"); @@ -241,9 +241,9 @@ public class a { } public final void d() { - if (this.f1229c.isHeld()) { + if (this.f1230c.isHeld()) { try { - this.f1229c.release(); + this.f1230c.release(); } catch (RuntimeException e) { if (e.getClass().equals(RuntimeException.class)) { Log.e("WakeLock", String.valueOf(this.f).concat(" was already released!"), e); @@ -251,7 +251,7 @@ public class a { throw e; } } - this.f1229c.isHeld(); + this.f1230c.isHeld(); } } } diff --git a/app/src/main/java/c/i/a/f/n/b0.java b/app/src/main/java/c/i/a/f/n/b0.java index 0ee9465f58..b2ad583c36 100644 --- a/app/src/main/java/c/i/a/f/n/b0.java +++ b/app/src/main/java/c/i/a/f/n/b0.java @@ -2,7 +2,7 @@ package c.i.a.f.n; import androidx.annotation.NonNull; import androidx.annotation.Nullable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.android.gms.tasks.DuplicateTaskCompletionException; import com.google.android.gms.tasks.RuntimeExecutionException; import com.google.android.gms.tasks.Task; @@ -14,7 +14,7 @@ public final class b0 extends Task { public final y b = new y<>(); /* renamed from: c reason: collision with root package name */ - public boolean f1230c; + public boolean f1231c; public volatile boolean d; @Nullable public TResult e; @@ -123,7 +123,7 @@ public final class b0 extends Task { public final TResult l() { TResult tresult; synchronized (this.a) { - AnimatableValueParser.G(this.f1230c, "Task is not yet complete"); + d.G(this.f1231c, "Task is not yet complete"); if (this.d) { throw new CancellationException("Task is already canceled."); } else if (this.f == null) { @@ -139,7 +139,7 @@ public final class b0 extends Task { public final TResult m(@NonNull Class cls) throws Throwable { TResult tresult; synchronized (this.a) { - AnimatableValueParser.G(this.f1230c, "Task is not yet complete"); + d.G(this.f1231c, "Task is not yet complete"); if (this.d) { throw new CancellationException("Task is already canceled."); } else if (cls.isInstance(this.f)) { @@ -162,7 +162,7 @@ public final class b0 extends Task { public final boolean o() { boolean z2; synchronized (this.a) { - z2 = this.f1230c; + z2 = this.f1231c; } return z2; } @@ -171,7 +171,7 @@ public final class b0 extends Task { public final boolean p() { boolean z2; synchronized (this.a) { - z2 = this.f1230c && !this.d && this.f == null; + z2 = this.f1231c && !this.d && this.f == null; } return z2; } @@ -194,10 +194,10 @@ public final class b0 extends Task { } public final void s(@NonNull Exception exc) { - AnimatableValueParser.z(exc, "Exception must not be null"); + d.z(exc, "Exception must not be null"); synchronized (this.a) { v(); - this.f1230c = true; + this.f1231c = true; this.f = exc; } this.b.a(this); @@ -206,7 +206,7 @@ public final class b0 extends Task { public final void t(@Nullable TResult tresult) { synchronized (this.a) { v(); - this.f1230c = true; + this.f1231c = true; this.e = tresult; } this.b.a(this); @@ -214,10 +214,10 @@ public final class b0 extends Task { public final boolean u() { synchronized (this.a) { - if (this.f1230c) { + if (this.f1231c) { return false; } - this.f1230c = true; + this.f1231c = true; this.d = true; this.b.a(this); return true; @@ -226,7 +226,7 @@ public final class b0 extends Task { public final void v() { String str; - if (this.f1230c) { + if (this.f1231c) { int i = DuplicateTaskCompletionException.i; if (o()) { Exception k = k(); @@ -250,7 +250,7 @@ public final class b0 extends Task { public final void w() { synchronized (this.a) { - if (this.f1230c) { + if (this.f1231c) { this.b.a(this); } } diff --git a/app/src/main/java/c/i/a/f/n/j.java b/app/src/main/java/c/i/a/f/n/j.java index dc533386e3..13c4c6cdae 100644 --- a/app/src/main/java/c/i/a/f/n/j.java +++ b/app/src/main/java/c/i/a/f/n/j.java @@ -8,7 +8,7 @@ public final class j implements h { public final int b; /* renamed from: c reason: collision with root package name */ - public final b0 f1231c; + public final b0 f1232c; public int d; public int e; public int f; @@ -17,7 +17,7 @@ public final class j implements h { public j(int i, b0 b0Var) { this.b = i; - this.f1231c = b0Var; + this.f1232c = b0Var; } public final void a() { @@ -25,7 +25,7 @@ public final class j implements h { return; } if (this.g != null) { - b0 b0Var = this.f1231c; + b0 b0Var = this.f1232c; int i = this.e; int i2 = this.b; StringBuilder sb = new StringBuilder(54); @@ -35,9 +35,9 @@ public final class j implements h { sb.append(" underlying tasks failed"); b0Var.s(new ExecutionException(sb.toString(), this.g)); } else if (this.h) { - this.f1231c.u(); + this.f1232c.u(); } else { - this.f1231c.t(null); + this.f1232c.t(null); } } diff --git a/app/src/main/java/c/i/a/f/n/k.java b/app/src/main/java/c/i/a/f/n/k.java index 573a1fce37..153d777222 100644 --- a/app/src/main/java/c/i/a/f/n/k.java +++ b/app/src/main/java/c/i/a/f/n/k.java @@ -9,12 +9,12 @@ public final class k implements z { public final a b; /* renamed from: c reason: collision with root package name */ - public final b0 f1232c; + public final b0 f1233c; public k(@NonNull Executor executor, @NonNull a aVar, @NonNull b0 b0Var) { this.a = executor; this.b = aVar; - this.f1232c = b0Var; + this.f1233c = b0Var; } @Override // c.i.a.f.n.z diff --git a/app/src/main/java/c/i/a/f/n/l.java b/app/src/main/java/c/i/a/f/n/l.java index ffc1e5d9b6..78c2816249 100644 --- a/app/src/main/java/c/i/a/f/n/l.java +++ b/app/src/main/java/c/i/a/f/n/l.java @@ -9,12 +9,12 @@ public final class l implements b, d, e> b; /* renamed from: c reason: collision with root package name */ - public final b0 f1233c; + public final b0 f1234c; public l(@NonNull Executor executor, @NonNull a> aVar, @NonNull b0 b0Var) { this.a = executor; this.b = aVar; - this.f1233c = b0Var; + this.f1234c = b0Var; } @Override // c.i.a.f.n.z @@ -24,16 +24,16 @@ public final class l implements b, d, e implements z { public final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public b f1234c; + public b f1235c; public p(@NonNull Executor executor, @NonNull b bVar) { this.a = executor; - this.f1234c = bVar; + this.f1235c = bVar; } @Override // c.i.a.f.n.z public final void a(@NonNull Task task) { if (task.n()) { synchronized (this.b) { - if (this.f1234c != null) { + if (this.f1235c != null) { this.a.execute(new o(this)); } } diff --git a/app/src/main/java/c/i/a/f/n/q.java b/app/src/main/java/c/i/a/f/n/q.java index 45eb2f8c92..82fe44e126 100644 --- a/app/src/main/java/c/i/a/f/n/q.java +++ b/app/src/main/java/c/i/a/f/n/q.java @@ -9,17 +9,17 @@ public final class q implements z { public final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public c f1235c; + public c f1236c; public q(@NonNull Executor executor, @NonNull c cVar) { this.a = executor; - this.f1235c = cVar; + this.f1236c = cVar; } @Override // c.i.a.f.n.z public final void a(@NonNull Task task) { synchronized (this.b) { - if (this.f1235c != null) { + if (this.f1236c != null) { this.a.execute(new r(this, task)); } } diff --git a/app/src/main/java/c/i/a/f/n/r.java b/app/src/main/java/c/i/a/f/n/r.java index 32c78538fe..c0b97c8e08 100644 --- a/app/src/main/java/c/i/a/f/n/r.java +++ b/app/src/main/java/c/i/a/f/n/r.java @@ -14,7 +14,7 @@ public final class r implements Runnable { @Override // java.lang.Runnable public final void run() { synchronized (this.j.b) { - c cVar = this.j.f1235c; + c cVar = this.j.f1236c; if (cVar != 0) { cVar.onComplete(this.i); } diff --git a/app/src/main/java/c/i/a/f/n/s.java b/app/src/main/java/c/i/a/f/n/s.java index 982da6db59..9b3c29d062 100644 --- a/app/src/main/java/c/i/a/f/n/s.java +++ b/app/src/main/java/c/i/a/f/n/s.java @@ -15,7 +15,7 @@ public final class s implements Runnable { @Override // java.lang.Runnable public final void run() { synchronized (this.j.b) { - d dVar = this.j.f1236c; + d dVar = this.j.f1237c; if (dVar != null) { Exception k = this.i.k(); Objects.requireNonNull(k, "null reference"); diff --git a/app/src/main/java/c/i/a/f/n/t.java b/app/src/main/java/c/i/a/f/n/t.java index b5401bf99a..3d25e235c9 100644 --- a/app/src/main/java/c/i/a/f/n/t.java +++ b/app/src/main/java/c/i/a/f/n/t.java @@ -9,18 +9,18 @@ public final class t implements z { public final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public d f1236c; + public d f1237c; public t(@NonNull Executor executor, @NonNull d dVar) { this.a = executor; - this.f1236c = dVar; + this.f1237c = dVar; } @Override // c.i.a.f.n.z public final void a(@NonNull Task task) { if (!task.p() && !task.n()) { synchronized (this.b) { - if (this.f1236c != null) { + if (this.f1237c != null) { this.a.execute(new s(this, task)); } } diff --git a/app/src/main/java/c/i/a/f/n/u.java b/app/src/main/java/c/i/a/f/n/u.java index ac785a819a..22d9cf5079 100644 --- a/app/src/main/java/c/i/a/f/n/u.java +++ b/app/src/main/java/c/i/a/f/n/u.java @@ -9,18 +9,18 @@ public final class u implements z { public final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public e f1237c; + public e f1238c; public u(@NonNull Executor executor, @NonNull e eVar) { this.a = executor; - this.f1237c = eVar; + this.f1238c = eVar; } @Override // c.i.a.f.n.z public final void a(@NonNull Task task) { if (task.p()) { synchronized (this.b) { - if (this.f1237c != null) { + if (this.f1238c != null) { this.a.execute(new v(this, task)); } } diff --git a/app/src/main/java/c/i/a/f/n/v.java b/app/src/main/java/c/i/a/f/n/v.java index 84aa56369e..cd583013b1 100644 --- a/app/src/main/java/c/i/a/f/n/v.java +++ b/app/src/main/java/c/i/a/f/n/v.java @@ -14,7 +14,7 @@ public final class v implements Runnable { @Override // java.lang.Runnable public final void run() { synchronized (this.j.b) { - e eVar = this.j.f1237c; + e eVar = this.j.f1238c; if (eVar != 0) { eVar.onSuccess(this.i.l()); } diff --git a/app/src/main/java/c/i/a/f/n/w.java b/app/src/main/java/c/i/a/f/n/w.java index 4bce136285..6e2fa22823 100644 --- a/app/src/main/java/c/i/a/f/n/w.java +++ b/app/src/main/java/c/i/a/f/n/w.java @@ -20,7 +20,7 @@ public final class w implements Runnable { Task a = this.j.b.a(this.i.l()); if (a == null) { x xVar = this.j; - xVar.f1238c.s(new NullPointerException("Continuation returned null")); + xVar.f1239c.s(new NullPointerException("Continuation returned null")); return; } Executor executor = g.b; @@ -29,14 +29,14 @@ public final class w implements Runnable { a.a(executor, this.j); } catch (RuntimeExecutionException e) { if (e.getCause() instanceof Exception) { - this.j.f1238c.s((Exception) e.getCause()); + this.j.f1239c.s((Exception) e.getCause()); return; } - this.j.f1238c.s(e); + this.j.f1239c.s(e); } catch (CancellationException unused) { - this.j.f1238c.u(); + this.j.f1239c.u(); } catch (Exception e2) { - this.j.f1238c.s(e2); + this.j.f1239c.s(e2); } } } diff --git a/app/src/main/java/c/i/a/f/n/x.java b/app/src/main/java/c/i/a/f/n/x.java index 4b1b8948ec..21dabc2dbc 100644 --- a/app/src/main/java/c/i/a/f/n/x.java +++ b/app/src/main/java/c/i/a/f/n/x.java @@ -9,12 +9,12 @@ public final class x implements b, d, e b; /* renamed from: c reason: collision with root package name */ - public final b0 f1238c; + public final b0 f1239c; public x(@NonNull Executor executor, @NonNull f fVar, @NonNull b0 b0Var) { this.a = executor; this.b = fVar; - this.f1238c = b0Var; + this.f1239c = b0Var; } @Override // c.i.a.f.n.z @@ -24,16 +24,16 @@ public final class x implements b, d, e { public Queue> b; /* renamed from: c reason: collision with root package name */ - public boolean f1239c; + public boolean f1240c; public final void a(@NonNull Task task) { z poll; synchronized (this.a) { if (this.b != null) { - if (!this.f1239c) { - this.f1239c = true; + if (!this.f1240c) { + this.f1240c = true; } } return; @@ -26,7 +26,7 @@ public final class y { synchronized (this.a) { poll = this.b.poll(); if (poll == null) { - this.f1239c = false; + this.f1240c = false; return; } } diff --git a/app/src/main/java/c/i/a/g/a/c.java b/app/src/main/java/c/i/a/g/a/c.java index 522ec6ce0a..d4cc6a9e46 100644 --- a/app/src/main/java/c/i/a/g/a/c.java +++ b/app/src/main/java/c/i/a/g/a/c.java @@ -56,7 +56,7 @@ public class c extends CoordinatorLayout.Behavior { } d dVar = this.viewOffsetHelper; dVar.b = dVar.a.getTop(); - dVar.f1240c = dVar.a.getLeft(); + dVar.f1241c = dVar.a.getLeft(); this.viewOffsetHelper.a(); int i2 = this.tempTopBottomOffset; if (i2 != 0) { diff --git a/app/src/main/java/c/i/a/g/a/d.java b/app/src/main/java/c/i/a/g/a/d.java index 213e860ab8..cd47cb8b76 100644 --- a/app/src/main/java/c/i/a/g/a/d.java +++ b/app/src/main/java/c/i/a/g/a/d.java @@ -8,7 +8,7 @@ public class d { public int b; /* renamed from: c reason: collision with root package name */ - public int f1240c; + public int f1241c; public int d; public int e; public boolean f = true; @@ -22,7 +22,7 @@ public class d { View view = this.a; ViewCompat.offsetTopAndBottom(view, this.d - (view.getTop() - this.b)); View view2 = this.a; - ViewCompat.offsetLeftAndRight(view2, this.e - (view2.getLeft() - this.f1240c)); + ViewCompat.offsetLeftAndRight(view2, this.e - (view2.getLeft() - this.f1241c)); } public boolean b(int i) { diff --git a/app/src/main/java/c/i/a/g/b/a.java b/app/src/main/java/c/i/a/g/b/a.java index 35e1b0ad7d..b5e171c61a 100644 --- a/app/src/main/java/c/i/a/g/b/a.java +++ b/app/src/main/java/c/i/a/g/b/a.java @@ -27,7 +27,7 @@ public class a { public ShapeAppearanceModel b; /* renamed from: c reason: collision with root package name */ - public int f1241c; + public int f1242c; public int d; public int e; public int f; @@ -50,7 +50,7 @@ public class a { public LayerDrawable r; /* renamed from: s reason: collision with root package name */ - public int f1242s; + public int f1243s; public a(MaterialButton materialButton, @NonNull ShapeAppearanceModel shapeAppearanceModel) { this.a = materialButton; @@ -129,12 +129,12 @@ public class a { MaterialShapeDrawable materialShapeDrawable3 = new MaterialShapeDrawable(this.b); this.m = materialShapeDrawable3; DrawableCompat.setTint(materialShapeDrawable3, -1); - RippleDrawable rippleDrawable = new RippleDrawable(RippleUtils.sanitizeRippleDrawableColor(this.l), new InsetDrawable((Drawable) new LayerDrawable(new Drawable[]{materialShapeDrawable2, materialShapeDrawable}), this.f1241c, this.e, this.d, this.f), this.m); + RippleDrawable rippleDrawable = new RippleDrawable(RippleUtils.sanitizeRippleDrawableColor(this.l), new InsetDrawable((Drawable) new LayerDrawable(new Drawable[]{materialShapeDrawable2, materialShapeDrawable}), this.f1242c, this.e, this.d, this.f), this.m); this.r = rippleDrawable; materialButton.setInternalBackground(rippleDrawable); MaterialShapeDrawable b = b(); if (b != null) { - b.setElevation((float) this.f1242s); + b.setElevation((float) this.f1243s); } } diff --git a/app/src/main/java/c/i/a/g/c/a.java b/app/src/main/java/c/i/a/g/c/a.java index 51d0380328..b1c31d5ac7 100644 --- a/app/src/main/java/c/i/a/g/c/a.java +++ b/app/src/main/java/c/i/a/g/c/a.java @@ -31,7 +31,7 @@ public class a { @NonNull /* renamed from: c reason: collision with root package name */ - public final MaterialCardView f1243c; + public final MaterialCardView f1244c; @NonNull public final Rect d = new Rect(); @NonNull @@ -65,7 +65,7 @@ public class a { @Nullable /* renamed from: s reason: collision with root package name */ - public MaterialShapeDrawable f1244s; + public MaterialShapeDrawable f1245s; public boolean t = false; public boolean u; @@ -93,7 +93,7 @@ public class a { } public a(@NonNull MaterialCardView materialCardView, AttributeSet attributeSet, int i, @StyleRes int i2) { - this.f1243c = materialCardView; + this.f1244c = materialCardView; MaterialShapeDrawable materialShapeDrawable = new MaterialShapeDrawable(materialCardView.getContext(), attributeSet, i, i2); this.e = materialShapeDrawable; materialShapeDrawable.initializeElevationOverlay(materialCardView.getContext()); @@ -124,11 +124,11 @@ public class a { } public final float c() { - return this.f1243c.getMaxCardElevation() + (j() ? a() : 0.0f); + return this.f1244c.getMaxCardElevation() + (j() ? a() : 0.0f); } public final float d() { - return (this.f1243c.getMaxCardElevation() * 1.5f) + (j() ? a() : 0.0f); + return (this.f1244c.getMaxCardElevation() * 1.5f) + (j() ? a() : 0.0f); } @NonNull @@ -136,8 +136,8 @@ public class a { RippleDrawable rippleDrawable; if (this.p == null) { if (RippleUtils.USE_FRAMEWORK_RIPPLE) { - this.f1244s = new MaterialShapeDrawable(this.n); - rippleDrawable = new RippleDrawable(this.l, null, this.f1244s); + this.f1245s = new MaterialShapeDrawable(this.n); + rippleDrawable = new RippleDrawable(this.l, null, this.f1245s); } else { StateListDrawable stateListDrawable = new StateListDrawable(); MaterialShapeDrawable materialShapeDrawable = new MaterialShapeDrawable(this.n); @@ -165,7 +165,7 @@ public class a { public final Drawable f(Drawable drawable) { int i; int i2; - if (this.f1243c.getUseCompatPadding()) { + if (this.f1244c.getUseCompatPadding()) { int ceil = (int) Math.ceil((double) d()); i2 = (int) Math.ceil((double) c()); i = ceil; @@ -202,7 +202,7 @@ public class a { if (materialShapeDrawable2 != null) { materialShapeDrawable2.setShapeAppearanceModel(shapeAppearanceModel); } - MaterialShapeDrawable materialShapeDrawable3 = this.f1244s; + MaterialShapeDrawable materialShapeDrawable3 = this.f1245s; if (materialShapeDrawable3 != null) { materialShapeDrawable3.setShapeAppearanceModel(shapeAppearanceModel); } @@ -213,30 +213,30 @@ public class a { } public final boolean i() { - return this.f1243c.getPreventCornerOverlap() && !this.e.isRoundRect(); + return this.f1244c.getPreventCornerOverlap() && !this.e.isRoundRect(); } public final boolean j() { - return this.f1243c.getPreventCornerOverlap() && this.e.isRoundRect() && this.f1243c.getUseCompatPadding(); + return this.f1244c.getPreventCornerOverlap() && this.e.isRoundRect() && this.f1244c.getUseCompatPadding(); } public void k() { float f = 0.0f; float a2 = i() || j() ? a() : 0.0f; - if (this.f1243c.getPreventCornerOverlap() && this.f1243c.getUseCompatPadding()) { - f = (float) ((1.0d - b) * ((double) this.f1243c.getCardViewRadius())); + if (this.f1244c.getPreventCornerOverlap() && this.f1244c.getUseCompatPadding()) { + f = (float) ((1.0d - b) * ((double) this.f1244c.getCardViewRadius())); } int i = (int) (a2 - f); - MaterialCardView materialCardView = this.f1243c; + MaterialCardView materialCardView = this.f1244c; Rect rect = this.d; materialCardView.setAncestorContentPadding(rect.left + i, rect.top + i, rect.right + i, rect.bottom + i); } public void l() { if (!this.t) { - this.f1243c.setBackgroundInternal(f(this.e)); + this.f1244c.setBackgroundInternal(f(this.e)); } - this.f1243c.setForeground(f(this.j)); + this.f1244c.setForeground(f(this.j)); } public final void m() { diff --git a/app/src/main/java/c/i/a/g/d/a.java b/app/src/main/java/c/i/a/g/d/a.java index 650b40af60..ab2230d04a 100644 --- a/app/src/main/java/c/i/a/g/d/a.java +++ b/app/src/main/java/c/i/a/g/d/a.java @@ -23,7 +23,7 @@ public final class a { public final ColorStateList b; /* renamed from: c reason: collision with root package name */ - public final ColorStateList f1245c; + public final ColorStateList f1246c; public final ColorStateList d; public final int e; public final ShapeAppearanceModel f; @@ -35,7 +35,7 @@ public final class a { Preconditions.checkArgumentNonnegative(rect.bottom); this.a = rect; this.b = colorStateList2; - this.f1245c = colorStateList; + this.f1246c = colorStateList; this.d = colorStateList3; this.e = i; this.f = shapeAppearanceModel; @@ -60,7 +60,7 @@ public final class a { MaterialShapeDrawable materialShapeDrawable2 = new MaterialShapeDrawable(); materialShapeDrawable.setShapeAppearanceModel(this.f); materialShapeDrawable2.setShapeAppearanceModel(this.f); - materialShapeDrawable.setFillColor(this.f1245c); + materialShapeDrawable.setFillColor(this.f1246c); materialShapeDrawable.setStroke((float) this.e, this.d); textView.setTextColor(this.b); RippleDrawable rippleDrawable = new RippleDrawable(this.b.withAlpha(30), materialShapeDrawable, materialShapeDrawable2); diff --git a/app/src/main/java/c/i/a/g/d/b.java b/app/src/main/java/c/i/a/g/d/b.java index ffca505b4b..d26940f341 100644 --- a/app/src/main/java/c/i/a/g/d/b.java +++ b/app/src/main/java/c/i/a/g/d/b.java @@ -18,7 +18,7 @@ public final class b { @NonNull /* renamed from: c reason: collision with root package name */ - public final a f1246c; + public final a f1247c; @NonNull public final a d; @NonNull @@ -35,7 +35,7 @@ public final class b { this.a = a.a(context, obtainStyledAttributes.getResourceId(R.styleable.MaterialCalendar_dayStyle, 0)); this.g = a.a(context, obtainStyledAttributes.getResourceId(R.styleable.MaterialCalendar_dayInvalidStyle, 0)); this.b = a.a(context, obtainStyledAttributes.getResourceId(R.styleable.MaterialCalendar_daySelectedStyle, 0)); - this.f1246c = a.a(context, obtainStyledAttributes.getResourceId(R.styleable.MaterialCalendar_dayTodayStyle, 0)); + this.f1247c = a.a(context, obtainStyledAttributes.getResourceId(R.styleable.MaterialCalendar_dayTodayStyle, 0)); ColorStateList colorStateList = MaterialResources.getColorStateList(context, obtainStyledAttributes, R.styleable.MaterialCalendar_rangeFillColor); this.d = a.a(context, obtainStyledAttributes.getResourceId(R.styleable.MaterialCalendar_yearStyle, 0)); this.e = a.a(context, obtainStyledAttributes.getResourceId(R.styleable.MaterialCalendar_yearSelectedStyle, 0)); diff --git a/app/src/main/java/c/i/a/g/d/g.java b/app/src/main/java/c/i/a/g/d/g.java index f14b5c61d0..d102ad946a 100644 --- a/app/src/main/java/c/i/a/g/d/g.java +++ b/app/src/main/java/c/i/a/g/d/g.java @@ -75,7 +75,7 @@ public class g extends BaseAdapter { break; } } - aVar = z2 ? this.m.b : l.h().getTimeInMillis() == j ? this.m.f1246c : this.m.a; + aVar = z2 ? this.m.b : l.h().getTimeInMillis() == j ? this.m.f1247c : this.m.a; } else { textView.setEnabled(false); aVar = this.m.g; diff --git a/app/src/main/java/c/i/a/g/d/k.java b/app/src/main/java/c/i/a/g/d/k.java index 7dd23a94b4..2c40ffd3e3 100644 --- a/app/src/main/java/c/i/a/g/d/k.java +++ b/app/src/main/java/c/i/a/g/d/k.java @@ -10,7 +10,7 @@ public class k { @Nullable /* renamed from: c reason: collision with root package name */ - public final TimeZone f1247c = null; + public final TimeZone f1248c = null; public k(@Nullable Long l, @Nullable TimeZone timeZone) { } diff --git a/app/src/main/java/c/i/a/g/d/l.java b/app/src/main/java/c/i/a/g/d/l.java index 5e7f88d953..5a818c111d 100644 --- a/app/src/main/java/c/i/a/g/d/l.java +++ b/app/src/main/java/c/i/a/g/d/l.java @@ -71,7 +71,7 @@ public class l { if (kVar == null) { kVar = k.a; } - java.util.TimeZone timeZone = kVar.f1247c; + java.util.TimeZone timeZone = kVar.f1248c; Calendar instance = timeZone == null ? Calendar.getInstance() : Calendar.getInstance(timeZone); Long l = kVar.b; if (l != null) { diff --git a/app/src/main/java/c/i/a/g/e/b.java b/app/src/main/java/c/i/a/g/e/b.java index 4785b2fc2a..dcb0cee7fe 100644 --- a/app/src/main/java/c/i/a/g/e/b.java +++ b/app/src/main/java/c/i/a/g/e/b.java @@ -23,7 +23,7 @@ public abstract class b implements j { public final ExtendedFloatingActionButton b; /* renamed from: c reason: collision with root package name */ - public final ArrayList f1248c = new ArrayList<>(); + public final ArrayList f1249c = new ArrayList<>(); public final a d; @Nullable public MotionSpec e; diff --git a/app/src/main/java/c/i/a/g/e/c.java b/app/src/main/java/c/i/a/g/e/c.java index 9f58bf4b27..36bc219155 100644 --- a/app/src/main/java/c/i/a/g/e/c.java +++ b/app/src/main/java/c/i/a/g/e/c.java @@ -29,7 +29,7 @@ public class c extends Drawable { public final Paint b; /* renamed from: c reason: collision with root package name */ - public final Path f1249c = new Path(); + public final Path f1250c = new Path(); public final Rect d = new Rect(); public final RectF e = new RectF(); public final RectF f = new RectF(); @@ -130,9 +130,9 @@ public class c extends Drawable { } copyBounds(this.d); this.e.set(this.d); - this.a.calculatePath(this.o, 1.0f, this.e, this.f1249c); - if (this.f1249c.isConvex()) { - outline.setConvexPath(this.f1249c); + this.a.calculatePath(this.o, 1.0f, this.e, this.f1250c); + if (this.f1250c.isConvex()) { + outline.setConvexPath(this.f1250c); } } diff --git a/app/src/main/java/c/i/a/g/e/d.java b/app/src/main/java/c/i/a/g/e/d.java index c14130f3aa..231e15687c 100644 --- a/app/src/main/java/c/i/a/g/e/d.java +++ b/app/src/main/java/c/i/a/g/e/d.java @@ -10,13 +10,13 @@ public class d extends AnimatorListenerAdapter { public final /* synthetic */ boolean b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ f.AbstractC0117f f1250c; + public final /* synthetic */ f.AbstractC0117f f1251c; public final /* synthetic */ f d; public d(f fVar, boolean z2, f.AbstractC0117f fVar2) { this.d = fVar; this.b = z2; - this.f1250c = fVar2; + this.f1251c = fVar2; } @Override // android.animation.AnimatorListenerAdapter, android.animation.Animator.AnimatorListener @@ -33,7 +33,7 @@ public class d extends AnimatorListenerAdapter { FloatingActionButton floatingActionButton = fVar.F; boolean z2 = this.b; floatingActionButton.internalSetVisibility(z2 ? 8 : 4, z2); - f.AbstractC0117f fVar2 = this.f1250c; + f.AbstractC0117f fVar2 = this.f1251c; if (fVar2 != null) { FloatingActionButton.a aVar = (FloatingActionButton.a) fVar2; aVar.a.onHidden(FloatingActionButton.this); diff --git a/app/src/main/java/c/i/a/g/e/e.java b/app/src/main/java/c/i/a/g/e/e.java index 38aaf009d3..36c1a171bc 100644 --- a/app/src/main/java/c/i/a/g/e/e.java +++ b/app/src/main/java/c/i/a/g/e/e.java @@ -10,17 +10,17 @@ public class e extends AnimatorListenerAdapter { public final /* synthetic */ f.AbstractC0117f b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ f f1251c; + public final /* synthetic */ f f1252c; public e(f fVar, boolean z2, f.AbstractC0117f fVar2) { - this.f1251c = fVar; + this.f1252c = fVar; this.a = z2; this.b = fVar2; } @Override // android.animation.AnimatorListenerAdapter, android.animation.Animator.AnimatorListener public void onAnimationEnd(Animator animator) { - f fVar = this.f1251c; + f fVar = this.f1252c; fVar.B = 0; fVar.v = null; f.AbstractC0117f fVar2 = this.b; @@ -32,8 +32,8 @@ public class e extends AnimatorListenerAdapter { @Override // android.animation.AnimatorListenerAdapter, android.animation.Animator.AnimatorListener public void onAnimationStart(Animator animator) { - this.f1251c.F.internalSetVisibility(0, this.a); - f fVar = this.f1251c; + this.f1252c.F.internalSetVisibility(0, this.a); + f fVar = this.f1252c; fVar.B = 2; fVar.v = animator; } diff --git a/app/src/main/java/c/i/a/g/e/f.java b/app/src/main/java/c/i/a/g/e/f.java index 2f7a3e3636..a0acc55d30 100644 --- a/app/src/main/java/c/i/a/g/e/f.java +++ b/app/src/main/java/c/i/a/g/e/f.java @@ -39,7 +39,7 @@ public class f { public static final int[] b = {16842919, 16842910}; /* renamed from: c reason: collision with root package name */ - public static final int[] f1252c = {16843623, 16842908, 16842910}; + public static final int[] f1253c = {16843623, 16842908, 16842910}; public static final int[] d = {16842908, 16842910}; public static final int[] e = {16843623, 16842910}; public static final int[] f = {16842910}; @@ -76,7 +76,7 @@ public class f { @NonNull /* renamed from: s reason: collision with root package name */ - public final StateListAnimator f1253s; + public final StateListAnimator f1254s; @Nullable public MotionSpec t; @Nullable @@ -88,13 +88,13 @@ public class f { @Nullable /* renamed from: x reason: collision with root package name */ - public MotionSpec f1254x; + public MotionSpec f1255x; /* renamed from: y reason: collision with root package name */ - public float f1255y; + public float f1256y; /* renamed from: z reason: collision with root package name */ - public float f1256z = 1.0f; + public float f1257z = 1.0f; /* compiled from: FloatingActionButtonImpl */ public class a extends MatrixEvaluator { @@ -103,7 +103,7 @@ public class f { @Override // com.google.android.material.animation.MatrixEvaluator public Matrix evaluate(float f, @NonNull Matrix matrix, @NonNull Matrix matrix2) { - f.this.f1256z = f; + f.this.f1257z = f; return super.evaluate(f, matrix, matrix2); } @@ -111,7 +111,7 @@ public class f { /* JADX DEBUG: Method arguments types fixed to match base method, original types: [float, java.lang.Object, java.lang.Object] */ @Override // com.google.android.material.animation.MatrixEvaluator, android.animation.TypeEvaluator public Matrix evaluate(float f, @NonNull Matrix matrix, @NonNull Matrix matrix2) { - f.this.f1256z = f; + f.this.f1257z = f; return super.evaluate(f, matrix, matrix2); } } @@ -184,7 +184,7 @@ public class f { public float b; /* renamed from: c reason: collision with root package name */ - public float f1257c; + public float f1258c; public h(d dVar) { } @@ -193,7 +193,7 @@ public class f { @Override // android.animation.AnimatorListenerAdapter, android.animation.Animator.AnimatorListener public void onAnimationEnd(Animator animator) { - f.this.w((float) ((int) this.f1257c)); + f.this.w((float) ((int) this.f1258c)); this.a = false; } @@ -202,12 +202,12 @@ public class f { if (!this.a) { MaterialShapeDrawable materialShapeDrawable = f.this.i; this.b = materialShapeDrawable == null ? 0.0f : materialShapeDrawable.getElevation(); - this.f1257c = a(); + this.f1258c = a(); this.a = true; } f fVar = f.this; float f = this.b; - fVar.w((float) ((int) ((valueAnimator.getAnimatedFraction() * (this.f1257c - f)) + f))); + fVar.w((float) ((int) ((valueAnimator.getAnimatedFraction() * (this.f1258c - f)) + f))); } } @@ -215,14 +215,14 @@ public class f { this.F = floatingActionButton; this.G = shadowViewDelegate; StateListAnimator stateListAnimator = new StateListAnimator(); - this.f1253s = stateListAnimator; + this.f1254s = stateListAnimator; stateListAnimator.addState(b, c(new d())); - stateListAnimator.addState(f1252c, c(new c())); + stateListAnimator.addState(f1253c, c(new c())); stateListAnimator.addState(d, c(new c())); stateListAnimator.addState(e, c(new c())); stateListAnimator.addState(f, c(new g())); stateListAnimator.addState(g, c(new b(this))); - this.f1255y = floatingActionButton.getRotation(); + this.f1256y = floatingActionButton.getRotation(); } public final void a(float f2, @NonNull Matrix matrix) { @@ -340,7 +340,7 @@ public class f { } public final void o(float f2) { - this.f1256z = f2; + this.f1257z = f2; Matrix matrix = this.K; a(f2, matrix); this.F.setImageMatrix(matrix); diff --git a/app/src/main/java/c/i/a/g/e/h.java b/app/src/main/java/c/i/a/g/e/h.java index da3b2c80f0..5bb7066244 100644 --- a/app/src/main/java/c/i/a/g/e/h.java +++ b/app/src/main/java/c/i/a/g/e/h.java @@ -13,10 +13,10 @@ public class h implements ViewTreeObserver.OnPreDrawListener { public boolean onPreDraw() { f fVar = this.i; float rotation = fVar.F.getRotation(); - if (fVar.f1255y == rotation) { + if (fVar.f1256y == rotation) { return true; } - fVar.f1255y = rotation; + fVar.f1256y = rotation; fVar.u(); return true; } diff --git a/app/src/main/java/c/i/a/g/e/i.java b/app/src/main/java/c/i/a/g/e/i.java index c67856a96e..22e9cc441c 100644 --- a/app/src/main/java/c/i/a/g/e/i.java +++ b/app/src/main/java/c/i/a/g/e/i.java @@ -141,7 +141,7 @@ public class i extends f { } else { StateListAnimator stateListAnimator = new StateListAnimator(); stateListAnimator.addState(f.b, x(f, f3)); - stateListAnimator.addState(f.f1252c, x(f, f2)); + stateListAnimator.addState(f.f1253c, x(f, f2)); stateListAnimator.addState(f.d, x(f, f2)); stateListAnimator.addState(f.e, x(f, f2)); AnimatorSet animatorSet = new AnimatorSet(); diff --git a/app/src/main/java/c/i/a/g/f/a.java b/app/src/main/java/c/i/a/g/f/a.java index d5215a7cf6..f0e42c0d9d 100644 --- a/app/src/main/java/c/i/a/g/f/a.java +++ b/app/src/main/java/c/i/a/g/f/a.java @@ -20,7 +20,7 @@ public final class a { @Nullable /* renamed from: c reason: collision with root package name */ - public static Object f1258c; + public static Object f1259c; public CharSequence d; public final TextPaint e; public final int f; @@ -38,8 +38,8 @@ public final class a { /* JADX WARNING: Illegal instructions before constructor call */ public C0118a(Throwable th) { super(r0.toString(), th); - StringBuilder P = c.d.b.a.a.P("Error thrown initializing StaticLayout "); - P.append(th.getMessage()); + StringBuilder O = c.d.b.a.a.O("Error thrown initializing StaticLayout "); + O.append(th.getMessage()); } } @@ -79,7 +79,7 @@ public final class a { } if (!a) { try { - f1258c = this.k && i >= 23 ? TextDirectionHeuristics.RTL : TextDirectionHeuristics.LTR; + f1259c = this.k && i >= 23 ? TextDirectionHeuristics.RTL : TextDirectionHeuristics.LTR; Class cls = Integer.TYPE; Class cls2 = Float.TYPE; Constructor declaredConstructor = StaticLayout.class.getDeclaredConstructor(CharSequence.class, cls, cls, TextPaint.class, cls, Layout.Alignment.class, TextDirectionHeuristic.class, cls2, cls2, Boolean.TYPE, TextUtils.TruncateAt.class, cls, cls); @@ -91,7 +91,7 @@ public final class a { } } try { - return (StaticLayout) ((Constructor) Preconditions.checkNotNull(b)).newInstance(charSequence, 0, Integer.valueOf(this.g), this.e, Integer.valueOf(max), this.h, Preconditions.checkNotNull(f1258c), Float.valueOf(1.0f), Float.valueOf(0.0f), Boolean.valueOf(this.j), null, Integer.valueOf(max), Integer.valueOf(this.i)); + return (StaticLayout) ((Constructor) Preconditions.checkNotNull(b)).newInstance(charSequence, 0, Integer.valueOf(this.g), this.e, Integer.valueOf(max), this.h, Preconditions.checkNotNull(f1259c), Float.valueOf(1.0f), Float.valueOf(0.0f), Boolean.valueOf(this.j), null, Integer.valueOf(max), Integer.valueOf(this.i)); } catch (Exception e2) { throw new C0118a(e2); } diff --git a/app/src/main/java/c/i/a/g/g/a.java b/app/src/main/java/c/i/a/g/g/a.java index 61fdc56675..4311004ddc 100644 --- a/app/src/main/java/c/i/a/g/g/a.java +++ b/app/src/main/java/c/i/a/g/g/a.java @@ -12,7 +12,7 @@ import com.google.android.material.progressindicator.CircularProgressIndicatorSp public final class a extends f { /* renamed from: c reason: collision with root package name */ - public int f1259c = 1; + public int f1260c = 1; public float d; public float e; public float f; @@ -30,7 +30,7 @@ public final class a extends f { float f3 = -f2; canvas.clipRect(f3, f3, f2, f2); S s3 = this.a; - this.f1259c = ((CircularProgressIndicatorSpec) s3).indicatorDirection == 0 ? 1 : -1; + this.f1260c = ((CircularProgressIndicatorSpec) s3).indicatorDirection == 0 ? 1 : -1; this.d = ((float) ((CircularProgressIndicatorSpec) s3).trackThickness) * f; this.e = ((float) ((CircularProgressIndicatorSpec) s3).trackCornerRadius) * f; this.f = ((float) (((CircularProgressIndicatorSpec) s3).indicatorSize - ((CircularProgressIndicatorSpec) s3).trackThickness)) / 2.0f; @@ -49,7 +49,7 @@ public final class a extends f { paint.setAntiAlias(true); paint.setColor(i); paint.setStrokeWidth(this.d); - float f3 = (float) this.f1259c; + float f3 = (float) this.f1260c; float f4 = f * 360.0f * f3; if (f2 < f) { f2 += 1.0f; @@ -100,11 +100,11 @@ public final class a extends f { canvas.rotate(f3); float f5 = f / 2.0f; float f6 = f4 * f2; - canvas.drawRect((this.f - f5) + f2, Math.min(0.0f, ((float) this.f1259c) * f6), (this.f + f5) - f2, Math.max(0.0f, f6 * ((float) this.f1259c)), paint); + canvas.drawRect((this.f - f5) + f2, Math.min(0.0f, ((float) this.f1260c) * f6), (this.f + f5) - f2, Math.max(0.0f, f6 * ((float) this.f1260c)), paint); canvas.translate((this.f - f5) + f2, 0.0f); - canvas.drawArc(rectF, 180.0f, (-f4) * 90.0f * ((float) this.f1259c), true, paint); + canvas.drawArc(rectF, 180.0f, (-f4) * 90.0f * ((float) this.f1260c), true, paint); canvas.translate(f - (f2 * 2.0f), 0.0f); - canvas.drawArc(rectF, 0.0f, f4 * 90.0f * ((float) this.f1259c), true, paint); + canvas.drawArc(rectF, 0.0f, f4 * 90.0f * ((float) this.f1260c), true, paint); canvas.restore(); } } diff --git a/app/src/main/java/c/i/a/g/g/d.java b/app/src/main/java/c/i/a/g/g/d.java index 8a65ca2718..8f9e46b7eb 100644 --- a/app/src/main/java/c/i/a/g/g/d.java +++ b/app/src/main/java/c/i/a/g/g/d.java @@ -74,7 +74,7 @@ public final class d extends g { int length = i4 % iArr.length; int compositeARGBWithAlpha = MaterialColors.compositeARGBWithAlpha(iArr[length], dVar2.a.getAlpha()); int compositeARGBWithAlpha2 = MaterialColors.compositeARGBWithAlpha(dVar2.l.indicatorColors[(length + 1) % iArr.length], dVar2.a.getAlpha()); - dVar2.f1260c[0] = ArgbEvaluatorCompat.getInstance().evaluate(dVar2.k.getInterpolation(b3), Integer.valueOf(compositeARGBWithAlpha), Integer.valueOf(compositeARGBWithAlpha2)).intValue(); + dVar2.f1261c[0] = ArgbEvaluatorCompat.getInstance().evaluate(dVar2.k.getInterpolation(b3), Integer.valueOf(compositeARGBWithAlpha), Integer.valueOf(compositeARGBWithAlpha2)).intValue(); break; } i3++; @@ -167,7 +167,7 @@ public final class d extends g { @VisibleForTesting public void h() { this.m = 0; - this.f1260c[0] = MaterialColors.compositeARGBWithAlpha(this.l.indicatorColors[0], this.a.getAlpha()); + this.f1261c[0] = MaterialColors.compositeARGBWithAlpha(this.l.indicatorColors[0], this.a.getAlpha()); this.o = 0.0f; } } diff --git a/app/src/main/java/c/i/a/g/g/g.java b/app/src/main/java/c/i/a/g/g/g.java index 73cede5a8d..a5546c5e7d 100644 --- a/app/src/main/java/c/i/a/g/g/g.java +++ b/app/src/main/java/c/i/a/g/g/g.java @@ -10,11 +10,11 @@ public abstract class g { public final float[] b; /* renamed from: c reason: collision with root package name */ - public final int[] f1260c; + public final int[] f1261c; public g(int i) { this.b = new float[(i * 2)]; - this.f1260c = new int[i]; + this.f1261c = new int[i]; } public abstract void a(); diff --git a/app/src/main/java/c/i/a/g/g/h.java b/app/src/main/java/c/i/a/g/g/h.java index 1fcfc8892e..bee19d2819 100644 --- a/app/src/main/java/c/i/a/g/g/h.java +++ b/app/src/main/java/c/i/a/g/g/h.java @@ -13,7 +13,7 @@ import com.google.android.material.progressindicator.LinearProgressIndicatorSpec public final class h extends f { /* renamed from: c reason: collision with root package name */ - public float f1261c = 300.0f; + public float f1262c = 300.0f; public float d; public float e; @@ -42,7 +42,7 @@ public final class h extends f { @Override // c.i.a.g.g.f public void a(@NonNull Canvas canvas, @FloatRange(from = 0.0d, to = 1.0d) float f) { Rect clipBounds = canvas.getClipBounds(); - this.f1261c = (float) clipBounds.width(); + this.f1262c = (float) clipBounds.width(); float f2 = (float) ((LinearProgressIndicatorSpec) this.a).trackThickness; canvas.translate(((float) clipBounds.width()) / 2.0f, Math.max(0.0f, ((float) (clipBounds.height() - ((LinearProgressIndicatorSpec) this.a).trackThickness)) / 2.0f) + (((float) clipBounds.height()) / 2.0f)); if (((LinearProgressIndicatorSpec) this.a).drawHorizontallyInverse) { @@ -54,7 +54,7 @@ public final class h extends f { if (this.b.isShowing() || this.b.isHiding()) { canvas.translate(0.0f, ((f - 1.0f) * ((float) ((LinearProgressIndicatorSpec) this.a).trackThickness)) / 2.0f); } - float f3 = this.f1261c; + float f3 = this.f1262c; canvas.clipRect((-f3) / 2.0f, (-f2) / 2.0f, f3 / 2.0f, f2 / 2.0f); S s2 = this.a; this.d = ((float) ((LinearProgressIndicatorSpec) s2).trackThickness) * f; @@ -64,7 +64,7 @@ public final class h extends f { @Override // c.i.a.g.g.f public void b(@NonNull Canvas canvas, @NonNull Paint paint, @FloatRange(from = 0.0d, to = 1.0d) float f, @FloatRange(from = 0.0d, to = 1.0d) float f2, @ColorInt int i) { if (f != f2) { - float f3 = this.f1261c; + float f3 = this.f1262c; float f4 = this.e; float f5 = ((-f3) / 2.0f) + f4; float f6 = f3 - (f4 * 2.0f); @@ -86,7 +86,7 @@ public final class h extends f { @Override // c.i.a.g.g.f public void c(@NonNull Canvas canvas, @NonNull Paint paint) { int compositeARGBWithAlpha = MaterialColors.compositeARGBWithAlpha(((LinearProgressIndicatorSpec) this.a).trackColor, this.b.getAlpha()); - float f = ((-this.f1261c) / 2.0f) + this.e; + float f = ((-this.f1262c) / 2.0f) + this.e; float f2 = -f; paint.setStyle(Paint.Style.FILL); paint.setAntiAlias(true); diff --git a/app/src/main/java/c/i/a/g/g/j.java b/app/src/main/java/c/i/a/g/g/j.java index e991ff9571..d579d7b140 100644 --- a/app/src/main/java/c/i/a/g/g/j.java +++ b/app/src/main/java/c/i/a/g/g/j.java @@ -53,7 +53,7 @@ public final class j extends g { float[] fArr3 = jVar2.b; fArr3[5] = 1.0f; if (jVar2.i && fArr3[3] < 1.0f) { - int[] iArr = jVar2.f1260c; + int[] iArr = jVar2.f1261c; iArr[2] = iArr[1]; iArr[1] = iArr[0]; iArr[0] = MaterialColors.compositeARGBWithAlpha(jVar2.g.indicatorColors[jVar2.h], jVar2.a.getAlpha()); @@ -112,6 +112,6 @@ public final class j extends g { public void h() { this.i = true; this.h = 1; - Arrays.fill(this.f1260c, MaterialColors.compositeARGBWithAlpha(this.g.indicatorColors[0], this.a.getAlpha())); + Arrays.fill(this.f1261c, MaterialColors.compositeARGBWithAlpha(this.g.indicatorColors[0], this.a.getAlpha())); } } diff --git a/app/src/main/java/c/i/a/g/g/l.java b/app/src/main/java/c/i/a/g/g/l.java index e5c9faa74d..0fdd0aa50a 100644 --- a/app/src/main/java/c/i/a/g/g/l.java +++ b/app/src/main/java/c/i/a/g/g/l.java @@ -51,7 +51,7 @@ public final class l extends g { lVar2.b[i2] = Math.max(0.0f, Math.min(1.0f, lVar2.h[i2].getInterpolation(lVar2.b(i, l.e[i2], l.d[i2])))); } if (lVar2.k) { - Arrays.fill(lVar2.f1260c, MaterialColors.compositeARGBWithAlpha(lVar2.i.indicatorColors[lVar2.j], lVar2.a.getAlpha())); + Arrays.fill(lVar2.f1261c, MaterialColors.compositeARGBWithAlpha(lVar2.i.indicatorColors[lVar2.j], lVar2.a.getAlpha())); lVar2.k = false; } lVar2.a.invalidateSelf(); @@ -118,7 +118,7 @@ public final class l extends g { public void h() { this.j = 0; int compositeARGBWithAlpha = MaterialColors.compositeARGBWithAlpha(this.i.indicatorColors[0], this.a.getAlpha()); - int[] iArr = this.f1260c; + int[] iArr = this.f1261c; iArr[0] = compositeARGBWithAlpha; iArr[1] = compositeARGBWithAlpha; } diff --git a/app/src/main/java/c/i/a/g/h/a.java b/app/src/main/java/c/i/a/g/h/a.java index 8516713844..de2604d500 100644 --- a/app/src/main/java/c/i/a/g/h/a.java +++ b/app/src/main/java/c/i/a/g/h/a.java @@ -14,7 +14,7 @@ public class a { @NonNull /* renamed from: c reason: collision with root package name */ - public final Handler f1262c = new Handler(Looper.getMainLooper(), new C0119a()); + public final Handler f1263c = new Handler(Looper.getMainLooper(), new C0119a()); @Nullable public c d; @Nullable @@ -56,7 +56,7 @@ public class a { public int b; /* renamed from: c reason: collision with root package name */ - public boolean f1263c; + public boolean f1264c; public c(int i, b bVar) { this.a = new WeakReference<>(bVar); @@ -76,7 +76,7 @@ public class a { if (bVar == null) { return false; } - this.f1262c.removeCallbacksAndMessages(cVar); + this.f1263c.removeCallbacksAndMessages(cVar); bVar.a(i); return true; } @@ -101,9 +101,9 @@ public class a { synchronized (this.b) { if (c(bVar)) { c cVar = this.d; - if (!cVar.f1263c) { - cVar.f1263c = true; - this.f1262c.removeCallbacksAndMessages(cVar); + if (!cVar.f1264c) { + cVar.f1264c = true; + this.f1263c.removeCallbacksAndMessages(cVar); } } } @@ -113,8 +113,8 @@ public class a { synchronized (this.b) { if (c(bVar)) { c cVar = this.d; - if (cVar.f1263c) { - cVar.f1263c = false; + if (cVar.f1264c) { + cVar.f1264c = false; g(cVar); } } @@ -127,8 +127,8 @@ public class a { if (i <= 0) { i = i == -1 ? 1500 : 2750; } - this.f1262c.removeCallbacksAndMessages(cVar); - Handler handler = this.f1262c; + this.f1263c.removeCallbacksAndMessages(cVar); + Handler handler = this.f1263c; handler.sendMessageDelayed(Message.obtain(handler, 0, cVar), (long) i); } } diff --git a/app/src/main/java/c/i/a/g/j/d.java b/app/src/main/java/c/i/a/g/j/d.java index 5ed62217e5..799df43e74 100644 --- a/app/src/main/java/c/i/a/g/j/d.java +++ b/app/src/main/java/c/i/a/g/j/d.java @@ -12,6 +12,6 @@ public class d implements ValueAnimator.AnimatorUpdateListener { @Override // android.animation.ValueAnimator.AnimatorUpdateListener public void onAnimationUpdate(@NonNull ValueAnimator valueAnimator) { - this.a.f1264c.setAlpha(((Float) valueAnimator.getAnimatedValue()).floatValue()); + this.a.f1265c.setAlpha(((Float) valueAnimator.getAnimatedValue()).floatValue()); } } diff --git a/app/src/main/java/c/i/a/g/j/e.java b/app/src/main/java/c/i/a/g/j/e.java index 938115c8af..24381924c4 100644 --- a/app/src/main/java/c/i/a/g/j/e.java +++ b/app/src/main/java/c/i/a/g/j/e.java @@ -13,7 +13,7 @@ public class e implements ValueAnimator.AnimatorUpdateListener { @Override // android.animation.ValueAnimator.AnimatorUpdateListener public void onAnimationUpdate(@NonNull ValueAnimator valueAnimator) { float floatValue = ((Float) valueAnimator.getAnimatedValue()).floatValue(); - this.a.f1264c.setScaleX(floatValue); - this.a.f1264c.setScaleY(floatValue); + this.a.f1265c.setScaleX(floatValue); + this.a.f1265c.setScaleY(floatValue); } } diff --git a/app/src/main/java/c/i/a/g/j/h.java b/app/src/main/java/c/i/a/g/j/h.java index 1a165afdf3..f52c54449b 100644 --- a/app/src/main/java/c/i/a/g/j/h.java +++ b/app/src/main/java/c/i/a/g/j/h.java @@ -74,7 +74,7 @@ public class h extends m { @Override // com.google.android.material.internal.TextWatcherAdapter, android.text.TextWatcher public void afterTextChanged(Editable editable) { AutoCompleteTextView d = h.d(h.this.a.getEditText()); - if (h.this.n.isTouchExplorationEnabled() && h.e(d) && !h.this.f1264c.hasFocus()) { + if (h.this.n.isTouchExplorationEnabled() && h.e(d) && !h.this.f1265c.hasFocus()) { d.dismissDropDown(); } d.post(new RunnableC0122a(d)); @@ -175,7 +175,7 @@ public class h extends m { z2 = true; } if (!z2) { - ViewCompat.setImportantForAccessibility(h.this.f1264c, 2); + ViewCompat.setImportantForAccessibility(h.this.f1265c, 2); } textInputLayout.setTextInputAccessibilityDelegate(h.this.f); textInputLayout.setEndIconVisible(true); diff --git a/app/src/main/java/c/i/a/g/j/i.java b/app/src/main/java/c/i/a/g/j/i.java index e63e513a9e..c0ed1ffb25 100644 --- a/app/src/main/java/c/i/a/g/j/i.java +++ b/app/src/main/java/c/i/a/g/j/i.java @@ -12,6 +12,6 @@ public class i implements ValueAnimator.AnimatorUpdateListener { @Override // android.animation.ValueAnimator.AnimatorUpdateListener public void onAnimationUpdate(@NonNull ValueAnimator valueAnimator) { - this.a.f1264c.setAlpha(((Float) valueAnimator.getAnimatedValue()).floatValue()); + this.a.f1265c.setAlpha(((Float) valueAnimator.getAnimatedValue()).floatValue()); } } diff --git a/app/src/main/java/c/i/a/g/j/l.java b/app/src/main/java/c/i/a/g/j/l.java index 53f2321ea3..86d6be77a6 100644 --- a/app/src/main/java/c/i/a/g/j/l.java +++ b/app/src/main/java/c/i/a/g/j/l.java @@ -13,7 +13,7 @@ public class l extends AnimatorListenerAdapter { @Override // android.animation.AnimatorListenerAdapter, android.animation.Animator.AnimatorListener public void onAnimationEnd(Animator animator) { h hVar = this.a; - hVar.f1264c.setChecked(hVar.j); + hVar.f1265c.setChecked(hVar.j); this.a.p.start(); } } diff --git a/app/src/main/java/c/i/a/g/j/m.java b/app/src/main/java/c/i/a/g/j/m.java index 503b775565..847cd8d628 100644 --- a/app/src/main/java/c/i/a/g/j/m.java +++ b/app/src/main/java/c/i/a/g/j/m.java @@ -10,12 +10,12 @@ public abstract class m { public Context b; /* renamed from: c reason: collision with root package name */ - public CheckableImageButton f1264c; + public CheckableImageButton f1265c; public m(@NonNull TextInputLayout textInputLayout) { this.a = textInputLayout; this.b = textInputLayout.getContext(); - this.f1264c = textInputLayout.getEndIconView(); + this.f1265c = textInputLayout.getEndIconView(); } public abstract void a(); diff --git a/app/src/main/java/c/i/a/g/j/n.java b/app/src/main/java/c/i/a/g/j/n.java index 18c4c926bb..3ad79d6308 100644 --- a/app/src/main/java/c/i/a/g/j/n.java +++ b/app/src/main/java/c/i/a/g/j/n.java @@ -32,7 +32,7 @@ public final class n { public final TextInputLayout b; /* renamed from: c reason: collision with root package name */ - public LinearLayout f1265c; + public LinearLayout f1266c; public int d; public FrameLayout e; @Nullable @@ -56,7 +56,7 @@ public final class n { public TextView r; /* renamed from: s reason: collision with root package name */ - public int f1266s; + public int f1267s; @Nullable public ColorStateList t; public Typeface u; @@ -67,13 +67,13 @@ public final class n { public final /* synthetic */ TextView b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ int f1267c; + public final /* synthetic */ int f1268c; public final /* synthetic */ TextView d; public a(int i, TextView textView, int i2, TextView textView2) { this.a = i; this.b = textView; - this.f1267c = i2; + this.f1268c = i2; this.d = textView2; } @@ -86,7 +86,7 @@ public final class n { TextView textView2 = this.b; if (textView2 != null) { textView2.setVisibility(4); - if (this.f1267c == 1 && (textView = n.this.l) != null) { + if (this.f1268c == 1 && (textView = n.this.l) != null) { textView.setText((CharSequence) null); } } @@ -114,13 +114,13 @@ public final class n { } public void a(TextView textView, int i) { - if (this.f1265c == null && this.e == null) { + if (this.f1266c == null && this.e == null) { LinearLayout linearLayout = new LinearLayout(this.a); - this.f1265c = linearLayout; + this.f1266c = linearLayout; linearLayout.setOrientation(0); - this.b.addView(this.f1265c, -1, -2); + this.b.addView(this.f1266c, -1, -2); this.e = new FrameLayout(this.a); - this.f1265c.addView(this.e, new LinearLayout.LayoutParams(0, -2, 1.0f)); + this.f1266c.addView(this.e, new LinearLayout.LayoutParams(0, -2, 1.0f)); if (this.b.getEditText() != null) { b(); } @@ -129,17 +129,17 @@ public final class n { this.e.setVisibility(0); this.e.addView(textView); } else { - this.f1265c.addView(textView, new LinearLayout.LayoutParams(-2, -2)); + this.f1266c.addView(textView, new LinearLayout.LayoutParams(-2, -2)); } - this.f1265c.setVisibility(0); + this.f1266c.setVisibility(0); this.d++; } public void b() { - if ((this.f1265c == null || this.b.getEditText() == null) ? false : true) { + if ((this.f1266c == null || this.b.getEditText() == null) ? false : true) { EditText editText = this.b.getEditText(); boolean isFontScaleAtLeast1_3 = MaterialResources.isFontScaleAtLeast1_3(this.a); - LinearLayout linearLayout = this.f1265c; + LinearLayout linearLayout = this.f1266c; int i = R.dimen.material_helper_text_font_1_3_padding_horizontal; ViewCompat.setPaddingRelative(linearLayout, h(isFontScaleAtLeast1_3, i, ViewCompat.getPaddingStart(editText)), h(isFontScaleAtLeast1_3, R.dimen.material_helper_text_font_1_3_padding_top, this.a.getResources().getDimensionPixelSize(R.dimen.material_helper_text_default_padding_top)), h(isFontScaleAtLeast1_3, i, ViewCompat.getPaddingEnd(editText)), 0); } @@ -212,7 +212,7 @@ public final class n { public void j(TextView textView, int i) { FrameLayout frameLayout; - LinearLayout linearLayout = this.f1265c; + LinearLayout linearLayout = this.f1266c; if (linearLayout != null) { if (!(i == 0 || i == 1) || (frameLayout = this.e) == null) { linearLayout.removeView(textView); @@ -221,7 +221,7 @@ public final class n { } int i2 = this.d - 1; this.d = i2; - LinearLayout linearLayout2 = this.f1265c; + LinearLayout linearLayout2 = this.f1266c; if (i2 == 0) { linearLayout2.setVisibility(8); } diff --git a/app/src/main/java/c/i/a/g/j/p.java b/app/src/main/java/c/i/a/g/j/p.java index ed61af4015..294f373160 100644 --- a/app/src/main/java/c/i/a/g/j/p.java +++ b/app/src/main/java/c/i/a/g/j/p.java @@ -23,7 +23,7 @@ public class p extends m { @Override // com.google.android.material.internal.TextWatcherAdapter, android.text.TextWatcher public void beforeTextChanged(CharSequence charSequence, int i, int i2, int i3) { p pVar = p.this; - pVar.f1264c.setChecked(!p.d(pVar)); + pVar.f1265c.setChecked(!p.d(pVar)); } } @@ -38,7 +38,7 @@ public class p extends m { textInputLayout.setEndIconVisible(true); textInputLayout.setEndIconCheckable(true); p pVar = p.this; - pVar.f1264c.setChecked(!p.d(pVar)); + pVar.f1265c.setChecked(!p.d(pVar)); editText.removeTextChangedListener(p.this.d); editText.addTextChangedListener(p.this.d); } diff --git a/app/src/main/java/c/i/a/g/k/b.java b/app/src/main/java/c/i/a/g/k/b.java index 224653fe25..c9ac8429a5 100644 --- a/app/src/main/java/c/i/a/g/k/b.java +++ b/app/src/main/java/c/i/a/g/k/b.java @@ -18,12 +18,12 @@ public class b implements ViewTreeObserver.OnPreDrawListener { } this.i.getViewTreeObserver().removeOnPreDrawListener(this); ClockFaceView clockFaceView = this.i; - int height = ((this.i.getHeight() / 2) - clockFaceView.l.q) - clockFaceView.f2409s; + int height = ((this.i.getHeight() / 2) - clockFaceView.l.q) - clockFaceView.f2412s; if (height != clockFaceView.j) { clockFaceView.j = height; clockFaceView.a(); ClockHandView clockHandView = clockFaceView.l; - clockHandView.f2413z = clockFaceView.j; + clockHandView.f2416z = clockFaceView.j; clockHandView.invalidate(); } return true; diff --git a/app/src/main/java/c/i/a/g/k/f.java b/app/src/main/java/c/i/a/g/k/f.java index c86d657c09..9555b8cd45 100644 --- a/app/src/main/java/c/i/a/g/k/f.java +++ b/app/src/main/java/c/i/a/g/k/f.java @@ -32,7 +32,7 @@ public class f implements ClockHandView.OnRotateListener, TimePickerView.d, Time TimePickerView timePickerView2 = this.l; timePickerView2.p = this; timePickerView2.o = this; - timePickerView2.k.f2411x = this; + timePickerView2.k.f2414x = this; g(i, "%d"); g(j, "%d"); g(k, "%02d"); diff --git a/app/src/main/java/c/i/a/g/l/b.java b/app/src/main/java/c/i/a/g/l/b.java index ec5a892de3..e2453a0752 100644 --- a/app/src/main/java/c/i/a/g/l/b.java +++ b/app/src/main/java/c/i/a/g/l/b.java @@ -5,7 +5,7 @@ public class b { public static final a b = new C0123b(); /* renamed from: c reason: collision with root package name */ - public static final a f1268c = new c(); + public static final a f1269c = new c(); public static final a d = new d(); /* compiled from: FadeModeEvaluators */ diff --git a/app/src/main/java/c/i/a/g/l/c.java b/app/src/main/java/c/i/a/g/l/c.java index fcb8a9975c..85c7a73fdb 100644 --- a/app/src/main/java/c/i/a/g/l/c.java +++ b/app/src/main/java/c/i/a/g/l/c.java @@ -5,12 +5,12 @@ public class c { public final int b; /* renamed from: c reason: collision with root package name */ - public final boolean f1269c; + public final boolean f1270c; public c(int i, int i2, boolean z2) { this.a = i; this.b = i2; - this.f1269c = z2; + this.f1270c = z2; } public static c a(int i, int i2) { diff --git a/app/src/main/java/c/i/a/g/l/e.java b/app/src/main/java/c/i/a/g/l/e.java index af8d0502e3..0eee50427d 100644 --- a/app/src/main/java/c/i/a/g/l/e.java +++ b/app/src/main/java/c/i/a/g/l/e.java @@ -39,12 +39,12 @@ public class e { @Override // c.i.a.g.l.d public boolean b(f fVar) { - return fVar.f1270c > fVar.e; + return fVar.f1271c > fVar.e; } @Override // c.i.a.g.l.d public void c(RectF rectF, float f, f fVar) { - float abs = (Math.abs(fVar.e - fVar.f1270c) / 2.0f) * f; + float abs = (Math.abs(fVar.e - fVar.f1271c) / 2.0f) * f; rectF.left += abs; rectF.right -= abs; } diff --git a/app/src/main/java/c/i/a/g/l/f.java b/app/src/main/java/c/i/a/g/l/f.java index 5f83476292..dd4a3159fb 100644 --- a/app/src/main/java/c/i/a/g/l/f.java +++ b/app/src/main/java/c/i/a/g/l/f.java @@ -5,7 +5,7 @@ public class f { public final float b; /* renamed from: c reason: collision with root package name */ - public final float f1270c; + public final float f1271c; public final float d; public final float e; public final float f; @@ -13,7 +13,7 @@ public class f { public f(float f, float f2, float f3, float f4, float f5, float f6) { this.a = f; this.b = f2; - this.f1270c = f3; + this.f1271c = f3; this.d = f4; this.e = f5; this.f = f6; diff --git a/app/src/main/java/c/i/a/g/l/g.java b/app/src/main/java/c/i/a/g/l/g.java index 51bdf5a462..a391ea9ad4 100644 --- a/app/src/main/java/c/i/a/g/l/g.java +++ b/app/src/main/java/c/i/a/g/l/g.java @@ -9,7 +9,7 @@ public class g { public final Path b = new Path(); /* renamed from: c reason: collision with root package name */ - public final Path f1271c = new Path(); + public final Path f1272c = new Path(); public final ShapeAppearancePathProvider d = ShapeAppearancePathProvider.getInstance(); public ShapeAppearanceModel e; } diff --git a/app/src/main/java/c/i/a/g/l/l/b.java b/app/src/main/java/c/i/a/g/l/l/b.java index b28e9facec..265038fbe9 100644 --- a/app/src/main/java/c/i/a/g/l/l/b.java +++ b/app/src/main/java/c/i/a/g/l/l/b.java @@ -8,7 +8,7 @@ public class b { public static final a b = new C0124b(); /* renamed from: c reason: collision with root package name */ - public static final a f1272c = new c(); + public static final a f1273c = new c(); public static final a d = new d(); /* compiled from: FadeModeEvaluators */ diff --git a/app/src/main/java/c/i/a/g/l/l/c.java b/app/src/main/java/c/i/a/g/l/l/c.java index 19aadc5697..293570d0b6 100644 --- a/app/src/main/java/c/i/a/g/l/l/c.java +++ b/app/src/main/java/c/i/a/g/l/l/c.java @@ -8,12 +8,12 @@ public class c { public final int b; /* renamed from: c reason: collision with root package name */ - public final boolean f1273c; + public final boolean f1274c; public c(int i, int i2, boolean z2) { this.a = i; this.b = i2; - this.f1273c = z2; + this.f1274c = z2; } public static c a(int i, int i2) { diff --git a/app/src/main/java/c/i/a/g/l/l/e.java b/app/src/main/java/c/i/a/g/l/l/e.java index 6740502a44..405a9141c9 100644 --- a/app/src/main/java/c/i/a/g/l/l/e.java +++ b/app/src/main/java/c/i/a/g/l/l/e.java @@ -41,12 +41,12 @@ public class e { @Override // c.i.a.g.l.l.d public boolean b(f fVar) { - return fVar.f1274c > fVar.e; + return fVar.f1275c > fVar.e; } @Override // c.i.a.g.l.l.d public void c(RectF rectF, float f, f fVar) { - float abs = (Math.abs(fVar.e - fVar.f1274c) / 2.0f) * f; + float abs = (Math.abs(fVar.e - fVar.f1275c) / 2.0f) * f; rectF.left += abs; rectF.right -= abs; } diff --git a/app/src/main/java/c/i/a/g/l/l/f.java b/app/src/main/java/c/i/a/g/l/l/f.java index 138ee163f6..cadac6df7f 100644 --- a/app/src/main/java/c/i/a/g/l/l/f.java +++ b/app/src/main/java/c/i/a/g/l/l/f.java @@ -8,7 +8,7 @@ public class f { public final float b; /* renamed from: c reason: collision with root package name */ - public final float f1274c; + public final float f1275c; public final float d; public final float e; public final float f; @@ -16,7 +16,7 @@ public class f { public f(float f, float f2, float f3, float f4, float f5, float f6) { this.a = f; this.b = f2; - this.f1274c = f3; + this.f1275c = f3; this.d = f4; this.e = f5; this.f = f6; diff --git a/app/src/main/java/c/i/a/g/l/l/g.java b/app/src/main/java/c/i/a/g/l/l/g.java index a2b3bb7de7..9ef2217c4e 100644 --- a/app/src/main/java/c/i/a/g/l/l/g.java +++ b/app/src/main/java/c/i/a/g/l/l/g.java @@ -11,7 +11,7 @@ public class g { public final Path b = new Path(); /* renamed from: c reason: collision with root package name */ - public final Path f1275c = new Path(); + public final Path f1276c = new Path(); public final ShapeAppearancePathProvider d = ShapeAppearancePathProvider.getInstance(); public ShapeAppearanceModel e; } diff --git a/app/src/main/java/c/i/b/a/b.java b/app/src/main/java/c/i/b/a/b.java index d13ffcba97..4951a9cb49 100644 --- a/app/src/main/java/c/i/b/a/b.java +++ b/app/src/main/java/c/i/b/a/b.java @@ -27,16 +27,16 @@ public abstract class b implements h { } public String toString() { - StringBuilder P = c.d.b.a.a.P("CharMatcher.is('"); + StringBuilder O = c.d.b.a.a.O("CharMatcher.is('"); char c2 = this.a; char[] cArr = {'\\', 'u', 0, 0, 0, 0}; for (int i = 0; i < 4; i++) { cArr[5 - i] = "0123456789ABCDEF".charAt(c2 & 15); c2 = (char) (c2 >> 4); } - P.append(String.copyValueOf(cArr)); - P.append("')"); - return P.toString(); + O.append(String.copyValueOf(cArr)); + O.append("')"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/b/a/c.java b/app/src/main/java/c/i/b/a/c.java index 16d70df701..8c61874d80 100644 --- a/app/src/main/java/c/i/b/a/c.java +++ b/app/src/main/java/c/i/b/a/c.java @@ -8,7 +8,7 @@ public final class c { public static final Charset b = Charset.forName("ISO-8859-1"); /* renamed from: c reason: collision with root package name */ - public static final Charset f1276c = Charset.forName(Constants.ENCODING); + public static final Charset f1277c = Charset.forName(Constants.ENCODING); public static final Charset d = Charset.forName("UTF-16LE"); public static final Charset e = Charset.forName("UTF-16"); diff --git a/app/src/main/java/c/i/b/a/g.java b/app/src/main/java/c/i/b/a/g.java index fa35a7b1cb..79dae229ca 100644 --- a/app/src/main/java/c/i/b/a/g.java +++ b/app/src/main/java/c/i/b/a/g.java @@ -9,7 +9,7 @@ public final class g { public final a b; /* renamed from: c reason: collision with root package name */ - public a f1277c; + public a f1278c; /* compiled from: MoreObjects */ public static final class a { @@ -20,7 +20,7 @@ public final class g { @NullableDecl /* renamed from: c reason: collision with root package name */ - public a f1278c; + public a f1279c; public a(f fVar) { } @@ -29,7 +29,7 @@ public final class g { public g(String str, f fVar) { a aVar = new a(null); this.b = aVar; - this.f1277c = aVar; + this.f1278c = aVar; this.a = str; } @@ -37,8 +37,8 @@ public final class g { public g a(String str, int i) { String valueOf = String.valueOf(i); a aVar = new a(null); - this.f1277c.f1278c = aVar; - this.f1277c = aVar; + this.f1278c.f1279c = aVar; + this.f1278c = aVar; aVar.b = valueOf; aVar.a = str; return this; @@ -48,7 +48,7 @@ public final class g { StringBuilder sb = new StringBuilder(32); sb.append(this.a); sb.append('{'); - a aVar = this.b.f1278c; + a aVar = this.b.f1279c; String str = ""; while (aVar != null) { Object obj = aVar.b; @@ -64,7 +64,7 @@ public final class g { String deepToString = Arrays.deepToString(new Object[]{obj}); sb.append((CharSequence) deepToString, 1, deepToString.length() - 1); } - aVar = aVar.f1278c; + aVar = aVar.f1279c; str = ", "; } sb.append('}'); diff --git a/app/src/main/java/c/i/b/a/k.java b/app/src/main/java/c/i/b/a/k.java index 3ef8e615f7..29e9b32670 100644 --- a/app/src/main/java/c/i/b/a/k.java +++ b/app/src/main/java/c/i/b/a/k.java @@ -11,7 +11,7 @@ public final class k { public final b b; /* renamed from: c reason: collision with root package name */ - public final int f1279c = Integer.MAX_VALUE; + public final int f1280c = Integer.MAX_VALUE; /* compiled from: Splitter */ public static abstract class a extends a { @@ -24,7 +24,7 @@ public final class k { public a(k kVar, CharSequence charSequence) { this.l = kVar.a; this.m = false; - this.o = kVar.f1279c; + this.o = kVar.f1280c; this.k = charSequence; } } diff --git a/app/src/main/java/c/i/b/b/b1.java b/app/src/main/java/c/i/b/b/b1.java index 2e1e5cc999..f01b7f0f41 100644 --- a/app/src/main/java/c/i/b/b/b1.java +++ b/app/src/main/java/c/i/b/b/b1.java @@ -69,9 +69,9 @@ public final class b1 extends z { @Override // java.util.AbstractCollection, java.lang.Object public String toString() { - StringBuilder N = a.N('['); - N.append(this.l.toString()); - N.append(']'); - return N.toString(); + StringBuilder M = a.M('['); + M.append(this.l.toString()); + M.append(']'); + return M.toString(); } } diff --git a/app/src/main/java/c/i/b/b/d0.java b/app/src/main/java/c/i/b/b/d0.java index 204253345f..a0085b2e96 100644 --- a/app/src/main/java/c/i/b/b/d0.java +++ b/app/src/main/java/c/i/b/b/d0.java @@ -14,7 +14,7 @@ public final class d0 { public int b = -1; /* renamed from: c reason: collision with root package name */ - public int f1280c = -1; + public int f1281c = -1; @MonotonicNonNullDecl public e0.p d; @MonotonicNonNullDecl @@ -36,7 +36,7 @@ public final class d0 { if (i == -1) { i = 16; } - int i2 = this.f1280c; + int i2 = this.f1281c; if (i2 == -1) { i2 = 4; } @@ -78,7 +78,7 @@ public final class d0 { if (i != -1) { gVar.a("initialCapacity", i); } - int i2 = this.f1280c; + int i2 = this.f1281c; if (i2 != -1) { gVar.a("concurrencyLevel", i2); } @@ -86,8 +86,8 @@ public final class d0 { if (pVar != null) { String m0 = c.m0(pVar.toString()); g.a aVar = new g.a(null); - gVar.f1277c.f1278c = aVar; - gVar.f1277c = aVar; + gVar.f1278c.f1279c = aVar; + gVar.f1278c = aVar; aVar.b = m0; aVar.a = "keyStrength"; } @@ -95,15 +95,15 @@ public final class d0 { if (pVar2 != null) { String m02 = c.m0(pVar2.toString()); g.a aVar2 = new g.a(null); - gVar.f1277c.f1278c = aVar2; - gVar.f1277c = aVar2; + gVar.f1278c.f1279c = aVar2; + gVar.f1278c = aVar2; aVar2.b = m02; aVar2.a = "valueStrength"; } if (this.f != null) { g.a aVar3 = new g.a(null); - gVar.f1277c.f1278c = aVar3; - gVar.f1277c = aVar3; + gVar.f1278c.f1279c = aVar3; + gVar.f1278c = aVar3; aVar3.b = "keyEquivalence"; } return gVar.toString(); diff --git a/app/src/main/java/c/i/b/b/e0.java b/app/src/main/java/c/i/b/b/e0.java index 090abfd766..0a8c900e20 100644 --- a/app/src/main/java/c/i/b/b/e0.java +++ b/app/src/main/java/c/i/b/b/e0.java @@ -116,17 +116,17 @@ public class e0, S extends n> extends Abs @NullableDecl /* renamed from: c reason: collision with root package name */ - public final E f1281c; + public final E f1282c; public c(K k, int i, @NullableDecl E e) { this.a = k; this.b = i; - this.f1281c = e; + this.f1282c = e; } @Override // c.i.b.b.e0.i public E a() { - return this.f1281c; + return this.f1282c; } @Override // c.i.b.b.e0.i @@ -854,13 +854,13 @@ public class e0, S extends n> extends Abs d0Var.f = dVar; d0Var.a = true; int i2 = this.concurrencyLevel; - int i3 = d0Var.f1280c; + int i3 = d0Var.f1281c; c.i.a.f.e.o.c.r(i3 == -1, "concurrency level was already set to %s", i3); if (i2 > 0) { z2 = true; } c.i.a.f.e.o.c.h(z2); - d0Var.f1280c = i2; + d0Var.f1281c = i2; this.i = d0Var.c(); while (true) { Object readObject = objectInputStream.readObject(); @@ -1136,7 +1136,7 @@ public class e0, S extends n> extends Abs @NullableDecl /* renamed from: c reason: collision with root package name */ - public volatile V f1282c = null; + public volatile V f1283c = null; /* compiled from: MapMakerInternalMap */ public static final class a implements j, x> { @@ -1151,7 +1151,7 @@ public class e0, S extends n> extends Abs return null; } w wVar3 = new w(x.o(xVar), wVar.get(), wVar.a, wVar2); - wVar3.f1282c = wVar.f1282c; + wVar3.f1283c = wVar.f1283c; return wVar3; } @@ -1170,7 +1170,7 @@ public class e0, S extends n> extends Abs @Override // c.i.b.b.e0.j public void d(n nVar, i iVar, Object obj) { x xVar = (x) nVar; - ((w) iVar).f1282c = obj; + ((w) iVar).f1283c = obj; } @Override // c.i.b.b.e0.j @@ -1191,7 +1191,7 @@ public class e0, S extends n> extends Abs @Override // c.i.b.b.e0.i @NullableDecl public V getValue() { - return this.f1282c; + return this.f1283c; } } @@ -1228,7 +1228,7 @@ public class e0, S extends n> extends Abs public static final class y extends d> implements a0> { /* renamed from: c reason: collision with root package name */ - public volatile b0> f1283c = ((b0>) e0.i); + public volatile b0> f1284c = ((b0>) e0.i); /* compiled from: MapMakerInternalMap */ public static final class a implements j, z> { @@ -1249,7 +1249,7 @@ public class e0, S extends n> extends Abs ReferenceQueue o = z.o(zVar); ReferenceQueue p = z.p(zVar); y yVar3 = new y<>(o, yVar.get(), yVar.a, yVar2); - yVar3.f1283c = yVar.f1283c.b(p, yVar3); + yVar3.f1284c = yVar.f1284c.b(p, yVar3); return yVar3; } @@ -1267,8 +1267,8 @@ public class e0, S extends n> extends Abs public void d(n nVar, i iVar, Object obj) { y yVar = (y) iVar; ReferenceQueue p = z.p((z) nVar); - b0> b0Var = yVar.f1283c; - yVar.f1283c = new c0(p, obj, yVar); + b0> b0Var = yVar.f1284c; + yVar.f1284c = new c0(p, obj, yVar); b0Var.clear(); } @@ -1290,12 +1290,12 @@ public class e0, S extends n> extends Abs @Override // c.i.b.b.e0.a0 public b0> b() { - return this.f1283c; + return this.f1284c; } @Override // c.i.b.b.e0.i public V getValue() { - return this.f1283c.get(); + return this.f1284c.get(); } } @@ -1335,7 +1335,7 @@ public class e0, S extends n> extends Abs } public e0(d0 d0Var, j jVar) { - int i2 = d0Var.f1280c; + int i2 = d0Var.f1281c; this.concurrencyLevel = Math.min(i2 == -1 ? 4 : i2, 65536); this.keyEquivalence = (c.i.b.a.d) c.i.a.f.e.o.c.C(d0Var.f, d0Var.a().f()); this.m = jVar; diff --git a/app/src/main/java/c/i/b/b/l.java b/app/src/main/java/c/i/b/b/l.java index b5825f5729..a956d1fc53 100644 --- a/app/src/main/java/c/i/b/b/l.java +++ b/app/src/main/java/c/i/b/b/l.java @@ -39,7 +39,7 @@ public class l extends AbstractMap implements Serializable { @MonotonicNonNullDecl /* renamed from: s reason: collision with root package name */ - public transient Set> f1284s; + public transient Set> f1285s; @MonotonicNonNullDecl public transient Collection t; @@ -371,12 +371,12 @@ public class l extends AbstractMap implements Serializable { @Override // java.util.AbstractMap, java.util.Map public Set> entrySet() { - Set> set = this.f1284s; + Set> set = this.f1285s; if (set != null) { return set; } a aVar = new a(); - this.f1284s = aVar; + this.f1285s = aVar; return aVar; } diff --git a/app/src/main/java/c/i/b/b/n.java b/app/src/main/java/c/i/b/b/n.java index fa362d7d19..18d6b00bf6 100644 --- a/app/src/main/java/c/i/b/b/n.java +++ b/app/src/main/java/c/i/b/b/n.java @@ -8,7 +8,7 @@ public abstract class n { public static final n b = new b(-1); /* renamed from: c reason: collision with root package name */ - public static final n f1285c = new b(1); + public static final n f1286c = new b(1); /* compiled from: ComparisonChain */ public static class a extends n { @@ -42,7 +42,7 @@ public abstract class n { } public n f(int i) { - return i < 0 ? n.b : i > 0 ? n.f1285c : n.a; + return i < 0 ? n.b : i > 0 ? n.f1286c : n.a; } } diff --git a/app/src/main/java/c/i/b/b/s.java b/app/src/main/java/c/i/b/b/s.java index 8080ef2188..5c88dc01f4 100644 --- a/app/src/main/java/c/i/b/b/s.java +++ b/app/src/main/java/c/i/b/b/s.java @@ -20,7 +20,7 @@ public abstract class s extends AbstractCollection implements Serializable public int b = 0; /* renamed from: c reason: collision with root package name */ - public boolean f1286c; + public boolean f1287c; public a(int i) { c.n(i, "initialCapacity"); diff --git a/app/src/main/java/c/i/b/b/u.java b/app/src/main/java/c/i/b/b/u.java index 999357f7ef..140e38628e 100644 --- a/app/src/main/java/c/i/b/b/u.java +++ b/app/src/main/java/c/i/b/b/u.java @@ -30,10 +30,10 @@ public abstract class u extends s implements List, RandomAccess { Object[] objArr = this.a; if (objArr.length < i) { this.a = Arrays.copyOf(objArr, s.b.a(objArr.length, i)); - this.f1286c = false; - } else if (this.f1286c) { + this.f1287c = false; + } else if (this.f1287c) { this.a = (Object[]) objArr.clone(); - this.f1286c = false; + this.f1287c = false; } Object[] objArr2 = this.a; int i2 = this.b; @@ -43,7 +43,7 @@ public abstract class u extends s implements List, RandomAccess { } public u c() { - this.f1286c = true; + this.f1287c = true; return u.l(this.a, this.b); } } diff --git a/app/src/main/java/c/i/b/b/w.java b/app/src/main/java/c/i/b/b/w.java index ec94e5f009..533984c20e 100644 --- a/app/src/main/java/c/i/b/b/w.java +++ b/app/src/main/java/c/i/b/b/w.java @@ -28,7 +28,7 @@ public abstract class w implements Map, Serializable { public int b = 0; /* renamed from: c reason: collision with root package name */ - public boolean f1287c = false; + public boolean f1288c = false; public a(int i) { this.a = new Object[(i * 2)]; @@ -39,7 +39,7 @@ public abstract class w implements Map, Serializable { r4 = r4 + 1; */ public w a() { - this.f1287c = true; + this.f1288c = true; int i = this.b; Object[] objArr = this.a; if (i == 0) { @@ -88,7 +88,7 @@ public abstract class w implements Map, Serializable { Object[] objArr = this.a; if (i2 > objArr.length) { this.a = Arrays.copyOf(objArr, s.b.a(objArr.length, i2)); - this.f1287c = false; + this.f1288c = false; } } diff --git a/app/src/main/java/c/i/c/c.java b/app/src/main/java/c/i/c/c.java index 48885c921a..c130f92512 100644 --- a/app/src/main/java/c/i/c/c.java +++ b/app/src/main/java/c/i/c/c.java @@ -25,7 +25,6 @@ import c.i.c.l.k; import c.i.c.l.p; import c.i.c.l.q; import c.i.c.l.r; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.material.badge.BadgeDrawable; import com.google.firebase.FirebaseCommonRegistrar; @@ -51,7 +50,7 @@ public class c { public static final Executor b = new d(null); /* renamed from: c reason: collision with root package name */ - public static final Map f1288c = new ArrayMap(); + public static final Map f1289c = new ArrayMap(); public final Context d; public final String e; public final i f; @@ -76,7 +75,7 @@ public class c { public void a(boolean z2) { Object obj = c.a; synchronized (c.a) { - Iterator it = new ArrayList(c.f1288c.values()).iterator(); + Iterator it = new ArrayList(c.f1289c.values()).iterator(); while (it.hasNext()) { c cVar = (c) it.next(); if (cVar.h.get()) { @@ -117,7 +116,7 @@ public class c { public void onReceive(Context context, Intent intent) { Object obj = c.a; synchronized (c.a) { - for (c cVar : c.f1288c.values()) { + for (c cVar : c.f1289c.values()) { cVar.d(); } } @@ -133,7 +132,7 @@ public class c { List list; new CopyOnWriteArrayList(); this.d = context; - AnimatableValueParser.w(str); + c.c.a.a0.d.w(str); this.e = str; Objects.requireNonNull(iVar, "null reference"); this.f = iVar; @@ -203,7 +202,7 @@ public class c { public static c b() { c cVar; synchronized (a) { - cVar = f1288c.get("[DEFAULT]"); + cVar = f1289c.get("[DEFAULT]"); if (cVar == null) { throw new IllegalStateException("Default FirebaseApp is not initialized in this process " + c.i.a.f.e.o.g.a() + ". Make sure to call FirebaseApp.initializeApp(Context) first."); } @@ -214,7 +213,7 @@ public class c { @Nullable public static c e(@NonNull Context context) { synchronized (a) { - if (f1288c.containsKey("[DEFAULT]")) { + if (f1289c.containsKey("[DEFAULT]")) { return b(); } i a2 = i.a(context); @@ -248,9 +247,9 @@ public class c { context = context.getApplicationContext(); } synchronized (a) { - Map map = f1288c; - AnimatableValueParser.G(!map.containsKey("[DEFAULT]"), "FirebaseApp name [DEFAULT] already exists!"); - AnimatableValueParser.z(context, "Application context cannot be null."); + Map map = f1289c; + c.c.a.a0.d.G(!map.containsKey("[DEFAULT]"), "FirebaseApp name [DEFAULT] already exists!"); + c.c.a.a0.d.z(context, "Application context cannot be null."); cVar = new c(context, "[DEFAULT]", iVar); map.put("[DEFAULT]", cVar); } @@ -259,7 +258,7 @@ public class c { } public final void a() { - AnimatableValueParser.G(!this.i.get(), "FirebaseApp was deleted"); + c.c.a.a0.d.G(!this.i.get(), "FirebaseApp was deleted"); } public String c() { @@ -307,7 +306,7 @@ public class c { boolean h = h(); for (Map.Entry, r> entry : kVar.b.entrySet()) { r value = entry.getValue(); - int i = entry.getKey().f1296c; + int i = entry.getKey().f1297c; boolean z2 = false; if (!(i == 1)) { if (i == 2) { diff --git a/app/src/main/java/c/i/c/i.java b/app/src/main/java/c/i/c/i.java index e89f1ba050..92ed1fb81c 100644 --- a/app/src/main/java/c/i/c/i.java +++ b/app/src/main/java/c/i/c/i.java @@ -5,9 +5,9 @@ import android.content.res.Resources; import android.text.TextUtils; import androidx.annotation.NonNull; import androidx.annotation.Nullable; +import c.c.a.a0.d; import c.i.a.f.e.k.k; import c.i.a.f.e.o.h; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.R; import java.util.Arrays; import java.util.Objects; @@ -17,17 +17,17 @@ public final class i { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1289c; + public final String f1290c; public final String d; public final String e; public final String f; public final String g; public i(@NonNull String str, @NonNull String str2, @Nullable String str3, @Nullable String str4, @Nullable String str5, @Nullable String str6, @Nullable String str7) { - AnimatableValueParser.G(!h.a(str), "ApplicationId must be set."); + d.G(!h.a(str), "ApplicationId must be set."); this.b = str; this.a = str2; - this.f1289c = str3; + this.f1290c = str3; this.d = str4; this.e = str5; this.f = str6; @@ -67,18 +67,18 @@ public final class i { return false; } i iVar = (i) obj; - return AnimatableValueParser.j0(this.b, iVar.b) && AnimatableValueParser.j0(this.a, iVar.a) && AnimatableValueParser.j0(this.f1289c, iVar.f1289c) && AnimatableValueParser.j0(this.d, iVar.d) && AnimatableValueParser.j0(this.e, iVar.e) && AnimatableValueParser.j0(this.f, iVar.f) && AnimatableValueParser.j0(this.g, iVar.g); + return d.j0(this.b, iVar.b) && d.j0(this.a, iVar.a) && d.j0(this.f1290c, iVar.f1290c) && d.j0(this.d, iVar.d) && d.j0(this.e, iVar.e) && d.j0(this.f, iVar.f) && d.j0(this.g, iVar.g); } public int hashCode() { - return Arrays.hashCode(new Object[]{this.b, this.a, this.f1289c, this.d, this.e, this.f, this.g}); + return Arrays.hashCode(new Object[]{this.b, this.a, this.f1290c, this.d, this.e, this.f, this.g}); } public String toString() { k kVar = new k(this, null); kVar.a("applicationId", this.b); kVar.a("apiKey", this.a); - kVar.a("databaseUrl", this.f1289c); + kVar.a("databaseUrl", this.f1290c); kVar.a("gcmSenderId", this.e); kVar.a("storageBucket", this.f); kVar.a("projectId", this.g); diff --git a/app/src/main/java/c/i/c/j/a/b.java b/app/src/main/java/c/i/c/j/a/b.java index 2427a13832..a5938f9179 100644 --- a/app/src/main/java/c/i/c/j/a/b.java +++ b/app/src/main/java/c/i/c/j/a/b.java @@ -18,7 +18,7 @@ public class b implements a { public final c.i.a.f.i.a.a b; /* renamed from: c reason: collision with root package name */ - public final Map f1290c = new ConcurrentHashMap(); + public final Map f1291c = new ConcurrentHashMap(); /* compiled from: com.google.android.gms:play-services-measurement-api@@18.0.0 */ public class a implements a.AbstractC0130a { @@ -159,7 +159,7 @@ public class b implements a { if (!c.a(str)) { return null; } - if (!str.isEmpty() && this.f1290c.containsKey(str) && this.f1290c.get(str) != null) { + if (!str.isEmpty() && this.f1291c.containsKey(str) && this.f1291c.get(str) != null) { return null; } c.i.a.f.i.a.a aVar = this.b; @@ -167,7 +167,7 @@ public class b implements a { if (bVar2 == null) { return null; } - this.f1290c.put(str, bVar2); + this.f1291c.put(str, bVar2); return new a(this, str); } } diff --git a/app/src/main/java/c/i/c/j/a/c/b.java b/app/src/main/java/c/i/c/j/a/c/b.java index 2c66ff629f..b64768934a 100644 --- a/app/src/main/java/c/i/c/j/a/c/b.java +++ b/app/src/main/java/c/i/c/j/a/c/b.java @@ -9,12 +9,12 @@ public final class b { public a.b b; /* renamed from: c reason: collision with root package name */ - public c.i.a.f.i.a.a f1291c; + public c.i.a.f.i.a.a f1292c; public e d; public b(c.i.a.f.i.a.a aVar, a.b bVar) { this.b = bVar; - this.f1291c = aVar; + this.f1292c = aVar; e eVar = new e(this); this.d = eVar; aVar.a(eVar); diff --git a/app/src/main/java/c/i/c/j/a/c/c.java b/app/src/main/java/c/i/c/j/a/c/c.java index e8f2f4546c..cb39a36c4b 100644 --- a/app/src/main/java/c/i/c/j/a/c/c.java +++ b/app/src/main/java/c/i/c/j/a/c/c.java @@ -12,7 +12,7 @@ public final class c { public static final List b = Arrays.asList("_e", "_f", "_iap", "_s", "_au", "_ui", "_cd"); /* renamed from: c reason: collision with root package name */ - public static final List f1292c = Arrays.asList("auto", "app", "am"); + public static final List f1293c = Arrays.asList("auto", "app", "am"); public static final List d = Arrays.asList("_r", "_dbg"); public static final List e; public static final List f = Arrays.asList("^_ltv_[A-Z]{3}$", "^_cc[1-5]{1}$"); @@ -34,6 +34,6 @@ public final class c { } public static boolean a(@NonNull String str) { - return !f1292c.contains(str); + return !f1293c.contains(str); } } diff --git a/app/src/main/java/c/i/c/j/a/c/d.java b/app/src/main/java/c/i/c/j/a/c/d.java index 5bfe1cef1c..5ff309a1d7 100644 --- a/app/src/main/java/c/i/c/j/a/c/d.java +++ b/app/src/main/java/c/i/c/j/a/c/d.java @@ -7,13 +7,13 @@ public final class d { public c.i.a.f.i.a.a b; /* renamed from: c reason: collision with root package name */ - public f f1293c; + public f f1294c; public d(c.i.a.f.i.a.a aVar, a.b bVar) { this.a = bVar; this.b = aVar; f fVar = new f(this); - this.f1293c = fVar; + this.f1294c = fVar; aVar.a(fVar); } } diff --git a/app/src/main/java/c/i/c/j/a/c/e.java b/app/src/main/java/c/i/c/j/a/c/e.java index 9bf2841b39..487a7febdd 100644 --- a/app/src/main/java/c/i/c/j/a/c/e.java +++ b/app/src/main/java/c/i/c/j/a/c/e.java @@ -18,7 +18,7 @@ public final class e implements a.AbstractC0113a { if (this.a.a.contains(str2)) { Bundle bundle2 = new Bundle(); Set set = c.a; - String K0 = c.K0(str2, v5.f1216c, v5.a); + String K0 = c.K0(str2, v5.f1217c, v5.a); if (K0 != null) { str2 = K0; } diff --git a/app/src/main/java/c/i/c/k/a.java b/app/src/main/java/c/i/c/k/a.java index 31e64ff078..fdb10c8006 100644 --- a/app/src/main/java/c/i/c/k/a.java +++ b/app/src/main/java/c/i/c/k/a.java @@ -14,7 +14,7 @@ public interface a { public final String b; /* renamed from: c reason: collision with root package name */ - public String f1294c; + public String f1295c; public String d; public String e; diff --git a/app/src/main/java/c/i/c/k/d/a.java b/app/src/main/java/c/i/c/k/d/a.java index 632756bdbc..9cc9a3e70e 100644 --- a/app/src/main/java/c/i/c/k/d/a.java +++ b/app/src/main/java/c/i/c/k/d/a.java @@ -3,7 +3,7 @@ package c.i.c.k.d; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.firebase.appindexing.internal.zza; import com.google.firebase.appindexing.internal.zzc; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ @@ -11,7 +11,7 @@ public final class a implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zza createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; String str3 = null; @@ -19,36 +19,36 @@ public final class a implements Parcelable.Creator { zzc zzc = null; String str5 = null; Bundle bundle = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 2: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 3: - str3 = AnimatableValueParser.T(parcel, readInt); + str3 = d.T(parcel, readInt); break; case 4: - str4 = AnimatableValueParser.T(parcel, readInt); + str4 = d.T(parcel, readInt); break; case 5: - zzc = (zzc) AnimatableValueParser.S(parcel, readInt, zzc.CREATOR); + zzc = (zzc) d.S(parcel, readInt, zzc.CREATOR); break; case 6: - str5 = AnimatableValueParser.T(parcel, readInt); + str5 = d.T(parcel, readInt); break; case 7: - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zza(str, str2, str3, str4, zzc, str5, bundle); } diff --git a/app/src/main/java/c/i/c/k/d/c.java b/app/src/main/java/c/i/c/k/d/c.java index a1aa72b07d..5767b10306 100644 --- a/app/src/main/java/c/i/c/k/d/c.java +++ b/app/src/main/java/c/i/c/k/d/c.java @@ -8,6 +8,6 @@ import c.i.c.h; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ public final class c extends b { public c(Context context) { - super(context, k.f1095c, (a.d) null, new h()); + super(context, k.f1096c, (a.d) null, new h()); } } diff --git a/app/src/main/java/c/i/c/k/d/e.java b/app/src/main/java/c/i/c/k/d/e.java index fd245c1085..538a03e88a 100644 --- a/app/src/main/java/c/i/c/k/d/e.java +++ b/app/src/main/java/c/i/c/k/d/e.java @@ -1,26 +1,26 @@ package c.i.c.k.d; import android.os.RemoteException; +import c.c.a.a0.d; import c.i.a.f.e.h.j.p; import c.i.a.f.e.o.c; import c.i.a.f.h.k.g; import c.i.a.f.h.k.h; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.common.api.Status; import com.google.android.gms.tasks.TaskCompletionSource; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ public abstract class e extends p implements c.i.a.f.e.h.j.e { /* renamed from: c reason: collision with root package name */ - public TaskCompletionSource f1295c; + public TaskCompletionSource f1296c; public e(d dVar) { } @Override // c.i.a.f.e.h.j.e public void a(Status status) { - AnimatableValueParser.p(!status.v0(), "Failed result must not be success."); - TaskCompletionSource taskCompletionSource = this.f1295c; + d.p(!status.v0(), "Failed result must not be success."); + TaskCompletionSource taskCompletionSource = this.f1296c; taskCompletionSource.a.s(c.D0(status, status.p)); } @@ -29,17 +29,17 @@ public abstract class e extends p implements c.i.a.f.e.h.j.e { public void b(Status status) { Status status2 = status; if (status2.v0()) { - this.f1295c.a.t(null); + this.f1296c.a.t(null); return; } - TaskCompletionSource taskCompletionSource = this.f1295c; + TaskCompletionSource taskCompletionSource = this.f1296c; taskCompletionSource.a.s(c.D0(status2, "User Action indexing error, please try again.")); } /* JADX DEBUG: Method arguments types fixed to match base method, original types: [c.i.a.f.e.h.a$b, com.google.android.gms.tasks.TaskCompletionSource] */ @Override // c.i.a.f.e.h.j.p public void c(g gVar, TaskCompletionSource taskCompletionSource) throws RemoteException { - this.f1295c = taskCompletionSource; + this.f1296c = taskCompletionSource; d dVar = (d) this; gVar.w().R(new h(dVar), dVar.d); } diff --git a/app/src/main/java/c/i/c/k/d/f.java b/app/src/main/java/c/i/c/k/d/f.java index 8fd93ed0ae..8456db1675 100644 --- a/app/src/main/java/c/i/c/k/d/f.java +++ b/app/src/main/java/c/i/c/k/d/f.java @@ -2,47 +2,47 @@ package c.i.c.k.d; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.firebase.appindexing.internal.zzc; /* compiled from: com.google.firebase:firebase-appindexing@@19.1.0 */ public final class f implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzc createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; byte[] bArr = null; int i = 0; boolean z2 = false; boolean z3 = false; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 2: - z2 = AnimatableValueParser.h2(parcel, readInt); + z2 = d.E1(parcel, readInt); break; case 3: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 4: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 5: - bArr = AnimatableValueParser.Q(parcel, readInt); + bArr = d.Q(parcel, readInt); break; case 6: - z3 = AnimatableValueParser.h2(parcel, readInt); + z3 = d.E1(parcel, readInt); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzc(i, z2, str, str2, bArr, z3); } diff --git a/app/src/main/java/c/i/c/l/d.java b/app/src/main/java/c/i/c/l/d.java index a46dc0e895..027650f5b9 100644 --- a/app/src/main/java/c/i/c/l/d.java +++ b/app/src/main/java/c/i/c/l/d.java @@ -11,7 +11,7 @@ public final class d { public final Set b; /* renamed from: c reason: collision with root package name */ - public final int f1296c; + public final int f1297c; public final int d; public final f e; public final Set> f; @@ -22,7 +22,7 @@ public final class d { public final Set b = new HashSet(); /* renamed from: c reason: collision with root package name */ - public int f1297c; + public int f1298c; public int d; public f e; public Set> f; @@ -30,7 +30,7 @@ public final class d { public b(Class cls, Class[] clsArr, a aVar) { HashSet hashSet = new HashSet(); this.a = hashSet; - this.f1297c = 0; + this.f1298c = 0; this.d = 0; this.f = new HashSet(); Objects.requireNonNull(cls, "Null interface"); @@ -51,7 +51,7 @@ public final class d { public d b() { if (this.e != null) { - return new d<>(new HashSet(this.a), new HashSet(this.b), this.f1297c, this.d, this.e, this.f, null); + return new d<>(new HashSet(this.a), new HashSet(this.b), this.f1298c, this.d, this.e, this.f, null); } throw new IllegalStateException("Missing required property: factory."); } @@ -62,8 +62,8 @@ public final class d { } public final b d(int i) { - if (this.f1297c == 0) { - this.f1297c = i; + if (this.f1298c == 0) { + this.f1298c = i; return this; } throw new IllegalStateException("Instantiation type has already been set."); @@ -73,7 +73,7 @@ public final class d { public d(Set set, Set set2, int i, int i2, f fVar, Set set3, a aVar) { this.a = Collections.unmodifiableSet(set); this.b = Collections.unmodifiableSet(set2); - this.f1296c = i; + this.f1297c = i; this.d = i2; this.e = fVar; this.f = Collections.unmodifiableSet(set3); @@ -95,6 +95,6 @@ public final class d { } public String toString() { - return "Component<" + Arrays.toString(this.a.toArray()) + ">{" + this.f1296c + ", type=" + this.d + ", deps=" + Arrays.toString(this.b.toArray()) + "}"; + return "Component<" + Arrays.toString(this.a.toArray()) + ">{" + this.f1297c + ", type=" + this.d + ", deps=" + Arrays.toString(this.b.toArray()) + "}"; } } diff --git a/app/src/main/java/c/i/c/l/k.java b/app/src/main/java/c/i/c/l/k.java index c0f10da852..0f85a4f6f8 100644 --- a/app/src/main/java/c/i/c/l/k.java +++ b/app/src/main/java/c/i/c/l/k.java @@ -19,7 +19,7 @@ public class k extends a { public final Map, r> b = new HashMap(); /* renamed from: c reason: collision with root package name */ - public final Map, r> f1298c = new HashMap(); + public final Map, r> f1299c = new HashMap(); public final Map, r>> d = new HashMap(); public final q e; @@ -63,10 +63,10 @@ public class k extends a { for (Set set3 : hashMap.values()) { for (m mVar2 : set3) { for (o oVar : mVar2.a.b) { - if ((oVar.f1300c == 0) && (set = (Set) hashMap.get(new n(oVar.a, oVar.a(), null))) != null) { + if ((oVar.f1301c == 0) && (set = (Set) hashMap.get(new n(oVar.a, oVar.a(), null))) != null) { for (m mVar3 : set) { mVar2.b.add(mVar3); - mVar3.f1299c.add(mVar2); + mVar3.f1300c.add(mVar2); } } } @@ -90,7 +90,7 @@ public class k extends a { hashSet2.remove(mVar5); i++; for (m mVar6 : mVar5.b) { - mVar6.f1299c.remove(mVar5); + mVar6.f1300c.remove(mVar5); if (mVar6.a()) { hashSet2.add(mVar6); } @@ -107,7 +107,7 @@ public class k extends a { if (key.b()) { r value = entry.getValue(); for (Class cls2 : key.a) { - this.f1298c.put(cls2, value); + this.f1299c.put(cls2, value); } } } @@ -116,7 +116,7 @@ public class k extends a { while (true) { if (it5.hasNext()) { o next = it5.next(); - if ((next.b == 1) && !this.f1298c.containsKey(next.a)) { + if ((next.b == 1) && !this.f1299c.containsKey(next.a)) { throw new MissingDependencyException(String.format("Unsatisfied dependency for component %s: %s", dVar4, next.a)); } } @@ -154,7 +154,7 @@ public class k extends a { @Override // c.i.c.l.e public a b(Class cls) { Objects.requireNonNull(cls, "Null interface requested."); - return this.f1298c.get(cls); + return this.f1299c.get(cls); } @Override // c.i.c.l.e diff --git a/app/src/main/java/c/i/c/l/m.java b/app/src/main/java/c/i/c/l/m.java index 358785245c..f2d65eac5e 100644 --- a/app/src/main/java/c/i/c/l/m.java +++ b/app/src/main/java/c/i/c/l/m.java @@ -8,13 +8,13 @@ public class m { public final Set b = new HashSet(); /* renamed from: c reason: collision with root package name */ - public final Set f1299c = new HashSet(); + public final Set f1300c = new HashSet(); public m(d dVar) { this.a = dVar; } public boolean a() { - return this.f1299c.isEmpty(); + return this.f1300c.isEmpty(); } } diff --git a/app/src/main/java/c/i/c/l/o.java b/app/src/main/java/c/i/c/l/o.java index ac4654f52f..59a76aa147 100644 --- a/app/src/main/java/c/i/c/l/o.java +++ b/app/src/main/java/c/i/c/l/o.java @@ -8,13 +8,13 @@ public final class o { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1300c; + public final int f1301c; public o(Class cls, int i, int i2) { Objects.requireNonNull(cls, "Null dependency anInterface."); this.a = cls; this.b = i; - this.f1300c = i2; + this.f1301c = i2; } public boolean a() { @@ -26,11 +26,11 @@ public final class o { return false; } o oVar = (o) obj; - return this.a == oVar.a && this.b == oVar.b && this.f1300c == oVar.f1300c; + return this.a == oVar.a && this.b == oVar.b && this.f1301c == oVar.f1301c; } public int hashCode() { - return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b) * 1000003) ^ this.f1300c; + return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b) * 1000003) ^ this.f1301c; } public String toString() { @@ -41,9 +41,9 @@ public final class o { boolean z2 = true; sb.append(i == 1 ? "required" : i == 0 ? "optional" : "set"); sb.append(", direct="); - if (this.f1300c != 0) { + if (this.f1301c != 0) { z2 = false; } - return a.L(sb, z2, "}"); + return a.K(sb, z2, "}"); } } diff --git a/app/src/main/java/c/i/c/l/q.java b/app/src/main/java/c/i/c/l/q.java index 6bd3dc00d6..f6c1180c93 100644 --- a/app/src/main/java/c/i/c/l/q.java +++ b/app/src/main/java/c/i/c/l/q.java @@ -20,15 +20,15 @@ public class q implements d, c { public Queue> b = new ArrayDeque(); /* renamed from: c reason: collision with root package name */ - public final Executor f1301c; + public final Executor f1302c; public q(Executor executor) { - this.f1301c = executor; + this.f1302c = executor; } @Override // c.i.c.q.d public void a(Class cls, b bVar) { - b(cls, this.f1301c, bVar); + b(cls, this.f1302c, bVar); } @Override // c.i.c.q.d diff --git a/app/src/main/java/c/i/c/l/r.java b/app/src/main/java/c/i/c/l/r.java index 36f47fadb8..75d9df88e7 100644 --- a/app/src/main/java/c/i/c/l/r.java +++ b/app/src/main/java/c/i/c/l/r.java @@ -7,10 +7,10 @@ public class r implements a { public volatile Object b = a; /* renamed from: c reason: collision with root package name */ - public volatile a f1302c; + public volatile a f1303c; public r(a aVar) { - this.f1302c = aVar; + this.f1303c = aVar; } @Override // c.i.c.t.a @@ -21,9 +21,9 @@ public class r implements a { synchronized (this) { t = this.b; if (t == obj) { - t = this.f1302c.get(); + t = this.f1303c.get(); this.b = t; - this.f1302c = null; + this.f1303c = null; } } } diff --git a/app/src/main/java/c/i/c/l/s.java b/app/src/main/java/c/i/c/l/s.java index d54211babb..6c4cc376fd 100644 --- a/app/src/main/java/c/i/c/l/s.java +++ b/app/src/main/java/c/i/c/l/s.java @@ -10,7 +10,7 @@ public final class s extends a { public final Set> b; /* renamed from: c reason: collision with root package name */ - public final Set> f1303c; + public final Set> f1304c; public final Set> d; public final Set> e; public final e f; @@ -30,7 +30,7 @@ public final class s extends a { HashSet hashSet3 = new HashSet(); HashSet hashSet4 = new HashSet(); for (o oVar : dVar.b) { - if (oVar.f1300c == 0) { + if (oVar.f1301c == 0) { if (oVar.a()) { hashSet3.add(oVar.a); } else { @@ -47,7 +47,7 @@ public final class s extends a { } this.a = Collections.unmodifiableSet(hashSet); this.b = Collections.unmodifiableSet(hashSet2); - this.f1303c = Collections.unmodifiableSet(hashSet3); + this.f1304c = Collections.unmodifiableSet(hashSet3); this.d = Collections.unmodifiableSet(hashSet4); this.e = dVar.f; this.f = eVar; @@ -80,7 +80,7 @@ public final class s extends a { @Override // c.i.c.l.a, c.i.c.l.e public Set d(Class cls) { - if (this.f1303c.contains(cls)) { + if (this.f1304c.contains(cls)) { return this.f.d(cls); } throw new IllegalArgumentException(String.format("Attempting to request an undeclared dependency Set<%s>.", cls)); diff --git a/app/src/main/java/c/i/c/m/b.java b/app/src/main/java/c/i/c/m/b.java index 1b0ae5e807..eb74c7aa80 100644 --- a/app/src/main/java/c/i/c/m/b.java +++ b/app/src/main/java/c/i/c/m/b.java @@ -145,7 +145,7 @@ public final /* synthetic */ class b implements f { cVar4.d(1, f).i(f, new c.i.c.m.d.g(hVar)); String l = c.i.c.m.d.k.h.l(k0Var.a); c.i.c.m.d.b bVar4 = c.i.c.m.d.b.a; - c.d.b.a.a.k0("Mapping file ID is: ", l, bVar4); + c.d.b.a.a.j0("Mapping file ID is: ", l, bVar4); if (!c.i.c.m.d.k.h.j(k0Var.a, "com.crashlytics.RequireBuildId", true)) { bVar4.b("Configured not to require a build ID."); } else if (c.i.c.m.d.k.h.s(l)) { @@ -195,7 +195,7 @@ public final /* synthetic */ class b implements f { try { c.i.c.m.d.k.b bVar6 = new c.i.c.m.d.k.b(str6, l, c5, packageName2, num, str7, aVar5); bVar4.b("Installer package name is: " + c5); - k0Var.h = new x(k0Var.a, k0Var.m, bVar5, k0Var.i, k0Var.f1314c, hVar2, k0Var.f, bVar6, null, null, k0Var.n, k0Var.k, cVar4); + k0Var.h = new x(k0Var.a, k0Var.m, bVar5, k0Var.i, k0Var.f1315c, hVar2, k0Var.f, bVar6, null, null, k0Var.n, k0Var.k, cVar4); boolean exists = k0Var.e.b().exists(); try { k0Var.g = Boolean.TRUE.equals((Boolean) h1.a(k0Var.m.b(new l0(k0Var)))); diff --git a/app/src/main/java/c/i/c/m/d/e.java b/app/src/main/java/c/i/c/m/d/e.java index 39ae9add9a..a026d79252 100644 --- a/app/src/main/java/c/i/c/m/d/e.java +++ b/app/src/main/java/c/i/c/m/d/e.java @@ -14,14 +14,14 @@ public class e implements f { public final /* synthetic */ c b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ Executor f1304c; + public final /* synthetic */ Executor f1305c; public final /* synthetic */ h d; public e(h hVar, String str, c cVar, Executor executor) { this.d = hVar; this.a = str; this.b = cVar; - this.f1304c = executor; + this.f1305c = executor; } /* Return type fixed from 'com.google.android.gms.tasks.Task' to match base method */ @@ -30,7 +30,7 @@ public class e implements f { @NonNull public Task a(@Nullable b bVar) throws Exception { try { - h.a(this.d, bVar, this.a, this.b, this.f1304c, true); + h.a(this.d, bVar, this.a, this.b, this.f1305c, true); return null; } catch (Exception e) { if (b.a.a(6)) { diff --git a/app/src/main/java/c/i/c/m/d/h.java b/app/src/main/java/c/i/c/m/d/h.java index a75ff26215..76d3a274c4 100644 --- a/app/src/main/java/c/i/c/m/d/h.java +++ b/app/src/main/java/c/i/c/m/d/h.java @@ -19,7 +19,7 @@ public class h { public final c b; /* renamed from: c reason: collision with root package name */ - public final Context f1305c; + public final Context f1306c; public PackageManager d; public String e; public PackageInfo f; @@ -33,7 +33,7 @@ public class h { public h(c cVar, Context context, v0 v0Var, q0 q0Var) { this.b = cVar; - this.f1305c = context; + this.f1306c = context; this.l = v0Var; this.m = q0Var; } @@ -55,11 +55,11 @@ public class h { } public final a b(String str, String str2) { - return new a(str, str2, this.l.e, this.h, this.g, c.i.c.m.d.k.h.f(c.i.c.m.d.k.h.l(this.f1305c), str2, this.h, this.g), this.j, r0.f(this.i).g(), this.k, "0"); + return new a(str, str2, this.l.e, this.h, this.g, c.i.c.m.d.k.h.f(c.i.c.m.d.k.h.l(this.f1306c), str2, this.h, this.g), this.j, r0.f(this.i).g(), this.k, "0"); } public String c() { - Context context = this.f1305c; + Context context = this.f1306c; int n = c.i.c.m.d.k.h.n(context, "com.crashlytics.ApiEndpoint", "string"); return n > 0 ? context.getString(n) : ""; } diff --git a/app/src/main/java/c/i/c/m/d/i/c.java b/app/src/main/java/c/i/c/m/d/i/c.java index f7bea624d7..c8ab042f8e 100644 --- a/app/src/main/java/c/i/c/m/d/i/c.java +++ b/app/src/main/java/c/i/c/m/d/i/c.java @@ -12,7 +12,7 @@ public class c implements b, a { public final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public CountDownLatch f1306c; + public CountDownLatch f1307c; public c(@NonNull e eVar, int i, TimeUnit timeUnit) { this.a = eVar; @@ -23,11 +23,11 @@ public class c implements b, a { synchronized (this.b) { b bVar = b.a; bVar.b("Logging Crashlytics event to Firebase"); - this.f1306c = new CountDownLatch(1); + this.f1307c = new CountDownLatch(1); this.a.a.a("clx", str, bundle); bVar.b("Awaiting app exception callback from FA..."); try { - if (this.f1306c.await((long) 500, TimeUnit.MILLISECONDS)) { + if (this.f1307c.await((long) 500, TimeUnit.MILLISECONDS)) { bVar.b("App exception callback received from FA listener."); } else { bVar.b("Timeout exceeded while awaiting app exception callback from FA listener."); @@ -35,13 +35,13 @@ public class c implements b, a { } catch (InterruptedException unused) { b.a.b("Interrupted while awaiting app exception callback from FA listener."); } - this.f1306c = null; + this.f1307c = null; } } @Override // c.i.c.m.d.i.b public void b(@NonNull String str, @NonNull Bundle bundle) { - CountDownLatch countDownLatch = this.f1306c; + CountDownLatch countDownLatch = this.f1307c; if (countDownLatch != null && "_ae".equals(str)) { countDownLatch.countDown(); } diff --git a/app/src/main/java/c/i/c/m/d/k/a.java b/app/src/main/java/c/i/c/m/d/k/a.java index 66e49723ac..2e3f2e7885 100644 --- a/app/src/main/java/c/i/c/m/d/k/a.java +++ b/app/src/main/java/c/i/c/m/d/k/a.java @@ -11,7 +11,7 @@ public abstract class a { public final String b; /* renamed from: c reason: collision with root package name */ - public final b f1307c; + public final b f1308c; public final int d; public final String e; @@ -21,7 +21,7 @@ public abstract class a { } else if (bVar != null) { this.e = str; this.b = !h.s(str) ? a.matcher(str2).replaceFirst(str) : str2; - this.f1307c = bVar; + this.f1308c = bVar; this.d = i; } else { throw new IllegalArgumentException("requestFactory must not be null."); @@ -33,7 +33,7 @@ public abstract class a { } public c.i.c.m.d.n.a c(Map map) { - b bVar = this.f1307c; + b bVar = this.f1308c; int i = this.d; String str = this.b; Objects.requireNonNull(bVar); diff --git a/app/src/main/java/c/i/c/m/d/k/a0.java b/app/src/main/java/c/i/c/m/d/k/a0.java index 86a84d4dcd..36a605c61f 100644 --- a/app/src/main/java/c/i/c/m/d/k/a0.java +++ b/app/src/main/java/c/i/c/m/d/k/a0.java @@ -18,7 +18,7 @@ public class a0 implements Callable { Bundle bundle = new Bundle(); bundle.putInt("fatal", 1); bundle.putLong("timestamp", this.i); - this.j.f1327z.a("_ae", bundle); + this.j.f1328z.a("_ae", bundle); return null; } } diff --git a/app/src/main/java/c/i/c/m/d/k/b.java b/app/src/main/java/c/i/c/m/d/k/b.java index 7a9ad9d29a..b48b47a910 100644 --- a/app/src/main/java/c/i/c/m/d/k/b.java +++ b/app/src/main/java/c/i/c/m/d/k/b.java @@ -7,7 +7,7 @@ public class b { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1308c; + public final String f1309c; public final String d; public final String e; public final String f; @@ -16,7 +16,7 @@ public class b { public b(String str, String str2, String str3, String str4, String str5, String str6, a aVar) { this.a = str; this.b = str2; - this.f1308c = str3; + this.f1309c = str3; this.d = str4; this.e = str5; this.f = str6; diff --git a/app/src/main/java/c/i/c/m/d/k/b1.java b/app/src/main/java/c/i/c/m/d/k/b1.java index b9ad6d9d17..442f6ea803 100644 --- a/app/src/main/java/c/i/c/m/d/k/b1.java +++ b/app/src/main/java/c/i/c/m/d/k/b1.java @@ -21,9 +21,9 @@ public final /* synthetic */ class b1 implements a { if (task.p()) { o0 o0Var = (o0) task.l(); b bVar = b.a; - StringBuilder P = c.d.b.a.a.P("Crashlytics report successfully enqueued to DataTransport: "); - P.append(o0Var.b()); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Crashlytics report successfully enqueued to DataTransport: "); + O.append(o0Var.b()); + bVar.b(O.toString()); d1Var.b.c(o0Var.b()); z2 = true; } else { diff --git a/app/src/main/java/c/i/c/m/d/k/c.java b/app/src/main/java/c/i/c/m/d/k/c.java index 06bbd9cfbb..62ed2c9baa 100644 --- a/app/src/main/java/c/i/c/m/d/k/c.java +++ b/app/src/main/java/c/i/c/m/d/k/c.java @@ -41,9 +41,9 @@ public final class c extends o0 { } public String toString() { - StringBuilder P = a.P("CrashlyticsReportWithSessionId{report="); - P.append(this.a); - P.append(", sessionId="); - return a.H(P, this.b, "}"); + StringBuilder O = a.O("CrashlyticsReportWithSessionId{report="); + O.append(this.a); + O.append(", sessionId="); + return a.G(O, this.b, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/k/d0.java b/app/src/main/java/c/i/c/m/d/k/d0.java index 299d126a83..e16d3a1434 100644 --- a/app/src/main/java/c/i/c/m/d/k/d0.java +++ b/app/src/main/java/c/i/c/m/d/k/d0.java @@ -59,7 +59,7 @@ public class d0 implements Callable> { Thread thread = this.k; String replaceAll = i.replaceAll("-", ""); Objects.requireNonNull(d1Var); - a.k0("Persisting fatal event for session ", replaceAll, c.i.c.m.d.b.a); + a.j0("Persisting fatal event for session ", replaceAll, c.i.c.m.d.b.a); d1Var.a(th2, thread, replaceAll, "crash", time, true); x xVar = this.m; Thread thread2 = this.k; diff --git a/app/src/main/java/c/i/c/m/d/k/d1.java b/app/src/main/java/c/i/c/m/d/k/d1.java index a88dfa1fe3..f63c44ebd0 100644 --- a/app/src/main/java/c/i/c/m/d/k/d1.java +++ b/app/src/main/java/c/i/c/m/d/k/d1.java @@ -40,14 +40,14 @@ public class d1 { public final g b; /* renamed from: c reason: collision with root package name */ - public final c f1309c; + public final c f1310c; public final b d; public final f1 e; public d1(n0 n0Var, g gVar, c cVar, b bVar, f1 f1Var) { this.a = n0Var; this.b = gVar; - this.f1309c = cVar; + this.f1310c = cVar; this.d = bVar; this.e = f1Var; } @@ -67,14 +67,14 @@ public class d1 { s sVar; boolean equals = str2.equals("crash"); n0 n0Var = this.a; - int i = n0Var.f1315c.getResources().getConfiguration().orientation; + int i = n0Var.f1316c.getResources().getConfiguration().orientation; e eVar = new e(th, n0Var.f); Long valueOf = Long.valueOf(j); - ActivityManager.RunningAppProcessInfo i2 = h.i(n0Var.e.d, n0Var.f1315c); + ActivityManager.RunningAppProcessInfo i2 = h.i(n0Var.e.d, n0Var.f1316c); Boolean valueOf2 = i2 != null ? Boolean.valueOf(i2.importance != 100) : null; Integer valueOf3 = Integer.valueOf(i); ArrayList arrayList = new ArrayList(); - arrayList.add(n0Var.c(thread, eVar.f1365c, 4)); + arrayList.add(n0Var.c(thread, eVar.f1366c, 4)); if (z2) { for (Map.Entry entry : Thread.getAllStackTraces().entrySet()) { Thread key = entry.getKey(); @@ -106,13 +106,13 @@ public class d1 { String str8 = valueOf3 == null ? " uiOrientation" : str3; if (str8.isEmpty()) { k kVar = new k(lVar, null, valueOf2, valueOf3.intValue(), null); - e a2 = e.a(n0Var.f1315c); + e a2 = e.a(n0Var.f1316c); Float f = a2.a; Double valueOf4 = f != null ? Double.valueOf(f.doubleValue()) : null; int b = a2.b(); - boolean m = h.m(n0Var.f1315c); + boolean m = h.m(n0Var.f1316c); long p = h.p(); - Context context = n0Var.f1315c; + Context context = n0Var.f1316c; ActivityManager.MemoryInfo memoryInfo = new ActivityManager.MemoryInfo(); ((ActivityManager) context.getSystemService(ActivityChooserModel.ATTRIBUTE_ACTIVITY)).getMemoryInfo(memoryInfo); long j2 = p - memoryInfo.availMem; @@ -120,7 +120,7 @@ public class d1 { r.b bVar = new r.b(); bVar.a = valueOf4; bVar.b = Integer.valueOf(b); - bVar.f1351c = Boolean.valueOf(m); + bVar.f1352c = Boolean.valueOf(m); bVar.d = Integer.valueOf(i); bVar.e = Long.valueOf(j2); bVar.f = Long.valueOf(a3); @@ -161,7 +161,7 @@ public class d1 { j jVar = new j(valueOf5.longValue(), str2, kVar2, a4, sVar, null); int i3 = ((c.i.c.m.d.s.c) gVar.k).c().b().a; File h = gVar.h(str); - Objects.requireNonNull(g.f1355c); + Objects.requireNonNull(g.f1356c); String a6 = ((d) h.a).a(jVar); String format = String.format(Locale.US, "%010d", Integer.valueOf(gVar.f.getAndIncrement())); if (equals) { @@ -211,7 +211,7 @@ public class d1 { while (it.hasNext()) { File file = (File) it.next(); try { - arrayList.add(new c(g.f1355c.f(g.j(file)), file.getName())); + arrayList.add(new c(g.f1356c.f(g.j(file)), file.getName())); } catch (IOException e2) { c.i.c.m.d.b bVar = c.i.c.m.d.b.a; bVar.c("Could not load report file " + file + "; deleting", e2); @@ -224,7 +224,7 @@ public class d1 { o0 o0Var = (o0) it2.next(); v a = o0Var.a(); if ((a.h() != null ? 2 : a.e() != null ? (char) 3 : 1) != 3 || i == 3) { - c cVar = this.f1309c; + c cVar = this.f1310c; Objects.requireNonNull(cVar); v a2 = o0Var.a(); TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); diff --git a/app/src/main/java/c/i/c/m/d/k/f0.java b/app/src/main/java/c/i/c/m/d/k/f0.java index 7c9663236e..f235b8b7bc 100644 --- a/app/src/main/java/c/i/c/m/d/k/f0.java +++ b/app/src/main/java/c/i/c/m/d/k/f0.java @@ -15,14 +15,14 @@ public class f0 implements f { public final /* synthetic */ boolean b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ Executor f1310c; + public final /* synthetic */ Executor f1311c; public final /* synthetic */ g0 d; public f0(g0 g0Var, List list, boolean z2, Executor executor) { this.d = g0Var; this.a = list; this.b = z2; - this.f1310c = executor; + this.f1311c = executor; } /* Return type fixed from 'com.google.android.gms.tasks.Task' to match base method */ @@ -54,7 +54,7 @@ public class f0 implements f { thread.start(); } } - x.this.A.b(this.f1310c, c.c.a.y.b.m(bVar2)); + x.this.A.b(this.f1311c, c.c.a.y.b.m(bVar2)); x.this.E.b(null); return c.F(null); } diff --git a/app/src/main/java/c/i/c/m/d/k/g0.java b/app/src/main/java/c/i/c/m/d/k/g0.java index 1f3102a97f..9bee5814d6 100644 --- a/app/src/main/java/c/i/c/m/d/k/g0.java +++ b/app/src/main/java/c/i/c/m/d/k/g0.java @@ -37,9 +37,9 @@ public class g0 implements Callable> { if (q != null) { for (File file : q) { b bVar = b.a; - StringBuilder P = c.d.b.a.a.P("Found crash report "); - P.append(file.getPath()); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Found crash report "); + O.append(file.getPath()); + bVar.b(O.toString()); linkedList.add(new d(file, Collections.emptyMap())); } } diff --git a/app/src/main/java/c/i/c/m/d/k/h.java b/app/src/main/java/c/i/c/m/d/k/h.java index 17d1a8331b..d06d2e8687 100644 --- a/app/src/main/java/c/i/c/m/d/k/h.java +++ b/app/src/main/java/c/i/c/m/d/k/h.java @@ -43,7 +43,7 @@ public class h { public static long b = -1; /* renamed from: c reason: collision with root package name */ - public static final Comparator f1311c = new a(); + public static final Comparator f1312c = new a(); /* compiled from: CommonUtils */ public class a implements Comparator { @@ -69,7 +69,7 @@ public class h { /* renamed from: s reason: collision with root package name */ - public static final Map f1312s; + public static final Map f1313s; static { b bVar = X86_32; @@ -77,7 +77,7 @@ public class h { b bVar3 = ARMV7; b bVar4 = ARM64; HashMap hashMap = new HashMap(4); - f1312s = hashMap; + f1313s = hashMap; hashMap.put("armeabi-v7a", bVar3); hashMap.put("armeabi", bVar2); hashMap.put("arm64-v8a", bVar4); diff --git a/app/src/main/java/c/i/c/m/d/k/h0.java b/app/src/main/java/c/i/c/m/d/k/h0.java index edf62cd3c5..59de0b193f 100644 --- a/app/src/main/java/c/i/c/m/d/k/h0.java +++ b/app/src/main/java/c/i/c/m/d/k/h0.java @@ -15,7 +15,7 @@ public class h0 implements b.AbstractC0144b { } public b a(@NonNull c.i.c.m.d.s.h.b bVar) { - String str = bVar.f1362c; + String str = bVar.f1363c; String str2 = bVar.d; String str3 = bVar.e; x xVar = this.a; diff --git a/app/src/main/java/c/i/c/m/d/k/i.java b/app/src/main/java/c/i/c/m/d/k/i.java index a900bc5b22..a4e3791e24 100644 --- a/app/src/main/java/c/i/c/m/d/k/i.java +++ b/app/src/main/java/c/i/c/m/d/k/i.java @@ -10,7 +10,7 @@ public class i { public Task b = c.F(null); /* renamed from: c reason: collision with root package name */ - public final Object f1313c = new Object(); + public final Object f1314c = new Object(); public ThreadLocal d = new ThreadLocal<>(); /* compiled from: CrashlyticsBackgroundWorker */ @@ -37,7 +37,7 @@ public class i { public Task b(Callable callable) { Task task; - synchronized (this.f1313c) { + synchronized (this.f1314c) { task = (Task) this.b.i(this.a, new k(this, callable)); this.b = task.i(this.a, new l(this)); } @@ -46,7 +46,7 @@ public class i { public Task c(Callable> callable) { Task task; - synchronized (this.f1313c) { + synchronized (this.f1314c) { task = (Task) this.b.j(this.a, new k(this, callable)); this.b = task.i(this.a, new l(this)); } diff --git a/app/src/main/java/c/i/c/m/d/k/k0.java b/app/src/main/java/c/i/c/m/d/k/k0.java index 578b517d10..deb45ad766 100644 --- a/app/src/main/java/c/i/c/m/d/k/k0.java +++ b/app/src/main/java/c/i/c/m/d/k/k0.java @@ -22,7 +22,7 @@ public class k0 { public final c b; /* renamed from: c reason: collision with root package name */ - public final q0 f1314c; + public final q0 f1315c; public final long d = System.currentTimeMillis(); public m0 e; public m0 f; @@ -73,7 +73,7 @@ public class k0 { public k0(c cVar, v0 v0Var, c.i.c.m.d.a aVar, q0 q0Var, c.i.c.m.d.j.a aVar2, c.i.c.m.d.i.a aVar3, ExecutorService executorService) { this.b = cVar; - this.f1314c = q0Var; + this.f1315c = q0Var; cVar.a(); this.a = cVar.d; this.i = v0Var; @@ -145,7 +145,7 @@ public class k0 { public void d(@Nullable Boolean bool) { Boolean bool2; - q0 q0Var = this.f1314c; + q0 q0Var = this.f1315c; synchronized (q0Var) { if (bool != null) { try { @@ -169,7 +169,7 @@ public class k0 { edit.remove("firebase_crashlytics_collection_enabled"); } edit.commit(); - synchronized (q0Var.f1317c) { + synchronized (q0Var.f1318c) { if (q0Var.b()) { if (!q0Var.e) { q0Var.d.b(null); diff --git a/app/src/main/java/c/i/c/m/d/k/m0.java b/app/src/main/java/c/i/c/m/d/k/m0.java index 8de6b9a489..aeae565f7a 100644 --- a/app/src/main/java/c/i/c/m/d/k/m0.java +++ b/app/src/main/java/c/i/c/m/d/k/m0.java @@ -20,9 +20,9 @@ public class m0 { return b().createNewFile(); } catch (IOException e) { b bVar = b.a; - StringBuilder P = a.P("Error creating marker: "); - P.append(this.a); - bVar.e(P.toString(), e); + StringBuilder O = a.O("Error creating marker: "); + O.append(this.a); + bVar.e(O.toString(), e); return false; } } diff --git a/app/src/main/java/c/i/c/m/d/k/n0.java b/app/src/main/java/c/i/c/m/d/k/n0.java index 55ce056115..69696cebd0 100644 --- a/app/src/main/java/c/i/c/m/d/k/n0.java +++ b/app/src/main/java/c/i/c/m/d/k/n0.java @@ -20,7 +20,7 @@ public class n0 { public static final Map b; /* renamed from: c reason: collision with root package name */ - public final Context f1315c; + public final Context f1316c; public final v0 d; public final b e; public final d f; @@ -28,12 +28,12 @@ public class n0 { static { HashMap hashMap = new HashMap(); b = hashMap; - a.f0(5, hashMap, "armeabi", 6, "armeabi-v7a", 9, "arm64-v8a", 0, "x86"); + a.d0(5, hashMap, "armeabi", 6, "armeabi-v7a", 9, "arm64-v8a", 0, "x86"); hashMap.put("x86_64", 1); } public n0(Context context, v0 v0Var, b bVar, d dVar) { - this.f1315c = context; + this.f1316c = context; this.d = v0Var; this.e = bVar; this.f = dVar; @@ -42,7 +42,7 @@ public class n0 { public final v.d.AbstractC0137d.a.b.AbstractC0140b a(e eVar, int i, int i2, int i3) { String str = eVar.b; String str2 = eVar.a; - StackTraceElement[] stackTraceElementArr = eVar.f1365c; + StackTraceElement[] stackTraceElementArr = eVar.f1366c; int i4 = 0; if (stackTraceElementArr == null) { stackTraceElementArr = new StackTraceElement[0]; @@ -84,7 +84,7 @@ public class n0 { bVar.a = Long.valueOf(max); Objects.requireNonNull(str, "Null symbol"); bVar.b = str; - bVar.f1349c = fileName; + bVar.f1350c = fileName; bVar.d = Long.valueOf(j); arrayList.add(bVar.a()); } diff --git a/app/src/main/java/c/i/c/m/d/k/o.java b/app/src/main/java/c/i/c/m/d/k/o.java index 0db6d68ad2..ef1c803105 100644 --- a/app/src/main/java/c/i/c/m/d/k/o.java +++ b/app/src/main/java/c/i/c/m/d/k/o.java @@ -45,7 +45,7 @@ public class o implements Runnable { String replaceAll = i3.replaceAll("-", ""); Objects.requireNonNull(d1Var); c.i.c.m.d.b bVar4 = c.i.c.m.d.b.a; - a.k0("Persisting non-fatal event for session ", replaceAll, bVar4); + a.j0("Persisting non-fatal event for session ", replaceAll, bVar4); d1Var.a(th2, thread, replaceAll, "error", time, false); x xVar = this.l; Thread thread2 = this.k; diff --git a/app/src/main/java/c/i/c/m/d/k/p0.java b/app/src/main/java/c/i/c/m/d/k/p0.java index 7569e46e9b..e7d6402cfb 100644 --- a/app/src/main/java/c/i/c/m/d/k/p0.java +++ b/app/src/main/java/c/i/c/m/d/k/p0.java @@ -11,7 +11,7 @@ public class p0 implements Thread.UncaughtExceptionHandler { public final d b; /* renamed from: c reason: collision with root package name */ - public final Thread.UncaughtExceptionHandler f1316c; + public final Thread.UncaughtExceptionHandler f1317c; public final AtomicBoolean d = new AtomicBoolean(false); /* compiled from: CrashlyticsUncaughtExceptionHandler */ @@ -21,7 +21,7 @@ public class p0 implements Thread.UncaughtExceptionHandler { public p0(a aVar, d dVar, Thread.UncaughtExceptionHandler uncaughtExceptionHandler) { this.a = aVar; this.b = dVar; - this.f1316c = uncaughtExceptionHandler; + this.f1317c = uncaughtExceptionHandler; } @Override // java.lang.Thread.UncaughtExceptionHandler @@ -38,7 +38,7 @@ public class p0 implements Thread.UncaughtExceptionHandler { bVar.b("Crashlytics completed exception processing. Invoking default exception handler."); } catch (Throwable th2) { b.a.b("Crashlytics completed exception processing. Invoking default exception handler."); - this.f1316c.uncaughtException(thread, th); + this.f1317c.uncaughtException(thread, th); this.d.set(false); throw th2; } @@ -48,7 +48,7 @@ public class p0 implements Thread.UncaughtExceptionHandler { ((b0) this.a).a(this.b, thread, th); } b.a.b("Crashlytics completed exception processing. Invoking default exception handler."); - this.f1316c.uncaughtException(thread, th); + this.f1317c.uncaughtException(thread, th); this.d.set(false); } } diff --git a/app/src/main/java/c/i/c/m/d/k/q0.java b/app/src/main/java/c/i/c/m/d/k/q0.java index 59adce09ba..ded1082102 100644 --- a/app/src/main/java/c/i/c/m/d/k/q0.java +++ b/app/src/main/java/c/i/c/m/d/k/q0.java @@ -19,7 +19,7 @@ public class q0 { public final c b; /* renamed from: c reason: collision with root package name */ - public final Object f1317c; + public final Object f1318c; public TaskCompletionSource d = new TaskCompletionSource<>(); public boolean e = false; public boolean f = false; @@ -30,7 +30,7 @@ public class q0 { public q0(c cVar) { Boolean bool; Object obj = new Object(); - this.f1317c = obj; + this.f1318c = obj; cVar.a(); Context context = cVar.d; this.b = cVar; @@ -90,7 +90,7 @@ public class q0 { public Task c() { b0 b0Var; b0 b0Var2 = this.h.a; - synchronized (this.f1317c) { + synchronized (this.f1318c) { b0Var = this.d.a; } FilenameFilter filenameFilter = h1.a; diff --git a/app/src/main/java/c/i/c/m/d/k/r0.java b/app/src/main/java/c/i/c/m/d/k/r0.java index 0f55a5c4da..7f57a754be 100644 --- a/app/src/main/java/c/i/c/m/d/k/r0.java +++ b/app/src/main/java/c/i/c/m/d/k/r0.java @@ -8,10 +8,10 @@ public enum r0 { /* renamed from: id reason: collision with root package name */ - private final int f1318id; + private final int f1319id; public r0(int i) { - this.f1318id = i; + this.f1319id = i; } public static r0 f(String str) { @@ -19,11 +19,11 @@ public enum r0 { } public int g() { - return this.f1318id; + return this.f1319id; } @Override // java.lang.Enum, java.lang.Object public String toString() { - return Integer.toString(this.f1318id); + return Integer.toString(this.f1319id); } } diff --git a/app/src/main/java/c/i/c/m/d/k/u.java b/app/src/main/java/c/i/c/m/d/k/u.java index d807ab180d..216aff1b13 100644 --- a/app/src/main/java/c/i/c/m/d/k/u.java +++ b/app/src/main/java/c/i/c/m/d/k/u.java @@ -10,19 +10,19 @@ public class u implements x.g { public final /* synthetic */ String b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ long f1319c; + public final /* synthetic */ long f1320c; public u(x xVar, String str, String str2, long j) { this.a = str; this.b = str2; - this.f1319c = j; + this.f1320c = j; } @Override // c.i.c.m.d.k.x.g public void a(c cVar) throws Exception { String str = this.a; String str2 = this.b; - long j = this.f1319c; + long j = this.f1320c; a aVar = d.a; cVar.l(1, a.a(str2)); cVar.l(2, a.a(str)); diff --git a/app/src/main/java/c/i/c/m/d/k/u0.java b/app/src/main/java/c/i/c/m/d/k/u0.java index de4d7e6a26..da1ce659b1 100644 --- a/app/src/main/java/c/i/c/m/d/k/u0.java +++ b/app/src/main/java/c/i/c/m/d/k/u0.java @@ -22,18 +22,18 @@ public class u0 implements a1 { @NonNull /* renamed from: c reason: collision with root package name */ - public final String f1320c; + public final String f1321c; public u0(@NonNull String str, @NonNull String str2, @NonNull File file) { this.b = str; - this.f1320c = str2; + this.f1321c = str2; this.a = file; } @Override // c.i.c.m.d.k.a1 @NonNull public String a() { - return this.f1320c; + return this.f1321c; } /* JADX WARNING: Removed duplicated region for block: B:37:0x0051 */ diff --git a/app/src/main/java/c/i/c/m/d/k/v.java b/app/src/main/java/c/i/c/m/d/k/v.java index ae2643d449..8d2e0bcfae 100644 --- a/app/src/main/java/c/i/c/m/d/k/v.java +++ b/app/src/main/java/c/i/c/m/d/k/v.java @@ -10,7 +10,7 @@ public class v implements x.g { public final /* synthetic */ String b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ String f1321c; + public final /* synthetic */ String f1322c; public final /* synthetic */ String d; public final /* synthetic */ int e; public final /* synthetic */ x f; @@ -19,7 +19,7 @@ public class v implements x.g { this.f = xVar; this.a = str; this.b = str2; - this.f1321c = str3; + this.f1322c = str3; this.d = str4; this.e = i; } @@ -28,10 +28,10 @@ public class v implements x.g { public void a(c cVar) throws Exception { String str = this.a; String str2 = this.b; - String str3 = this.f1321c; + String str3 = this.f1322c; String str4 = this.d; int i = this.e; - String str5 = this.f.f1326y; + String str5 = this.f.f1327y; a aVar = d.a; a a = a.a(str); a a2 = a.a(str2); diff --git a/app/src/main/java/c/i/c/m/d/k/v0.java b/app/src/main/java/c/i/c/m/d/k/v0.java index a78f1f85d1..2930fe68f7 100644 --- a/app/src/main/java/c/i/c/m/d/k/v0.java +++ b/app/src/main/java/c/i/c/m/d/k/v0.java @@ -17,7 +17,7 @@ public class v0 implements w0 { public static final String b = Pattern.quote(AutocompleteViewModel.COMMAND_DISCOVER_TOKEN); /* renamed from: c reason: collision with root package name */ - public final x0 f1322c; + public final x0 f1323c; public final Context d; public final String e; public final g f; @@ -28,7 +28,7 @@ public class v0 implements w0 { this.d = context; this.e = str; this.f = gVar; - this.f1322c = new x0(); + this.f1323c = new x0(); return; } throw new IllegalArgumentException("appIdentifier must not be null"); @@ -90,7 +90,7 @@ public class v0 implements w0 { public String c() { String str; - x0 x0Var = this.f1322c; + x0 x0Var = this.f1323c; Context context = this.d; synchronized (x0Var) { if (x0Var.a == null) { diff --git a/app/src/main/java/c/i/c/m/d/k/x.java b/app/src/main/java/c/i/c/m/d/k/x.java index 8b02a09ac7..11432fd12e 100644 --- a/app/src/main/java/c/i/c/m/d/k/x.java +++ b/app/src/main/java/c/i/c/m/d/k/x.java @@ -56,7 +56,7 @@ public class x { public static final FilenameFilter b = new b(); /* renamed from: c reason: collision with root package name */ - public static final Comparator f1323c = new c(); + public static final Comparator f1324c = new c(); public static final Comparator d = new d(); public static final Pattern e = Pattern.compile("([\\d|A-Z|a-z]{12}\\-[\\d|A-Z|a-z]{4}\\-[\\d|A-Z|a-z]{4}\\-[\\d|A-Z|a-z]{12}).+"); public static final Map f = Collections.singletonMap("X-CRASHLYTICS-SEND-FLAGS", "1"); @@ -80,20 +80,20 @@ public class x { public final b.AbstractC0144b r; /* renamed from: s reason: collision with root package name */ - public final j f1324s; + public final j f1325s; public final c.i.c.m.d.l.b t; public final c.i.c.m.d.q.a u; public final b.a v; public final c.i.c.m.d.a w; /* renamed from: x reason: collision with root package name */ - public final c.i.c.m.d.t.d f1325x; + public final c.i.c.m.d.t.d f1326x; /* renamed from: y reason: collision with root package name */ - public final String f1326y; + public final String f1327y; /* renamed from: z reason: collision with root package name */ - public final c.i.c.m.d.i.a f1327z; + public final c.i.c.m.d.i.a f1328z; /* compiled from: CrashlyticsController */ public class a extends h { @@ -270,24 +270,24 @@ public class x { this.q = bVar2; this.r = new h0(this); this.w = aVar2; - this.f1326y = bVar2.g.a(); - this.f1327z = aVar3; + this.f1327y = bVar2.g.a(); + this.f1328z = aVar3; f1 f1Var = new f1(); this.l = f1Var; j jVar = new j(hVar); - this.f1324s = jVar; + this.f1325s = jVar; c.i.c.m.d.l.b bVar4 = new c.i.c.m.d.l.b(context, jVar); this.t = bVar4; this.u = new c.i.c.m.d.q.a(new k(null)); this.v = new l(null); c.i.c.m.d.t.a aVar4 = new c.i.c.m.d.t.a(1024, new c.i.c.m.d.t.c(10)); - this.f1325x = aVar4; + this.f1326x = aVar4; File file = new File(new File(hVar.a.getFilesDir(), ".com.google.firebase.crashlytics").getPath()); n0 n0Var = new n0(context, v0Var, bVar2, aVar4); c.i.c.m.d.o.g gVar = new c.i.c.m.d.o.g(file, dVar); c.i.c.m.d.m.x.h hVar2 = c.i.c.m.d.r.c.a; c.i.a.b.j.n.b(context); - c.i.a.b.g c2 = c.i.a.b.j.n.a().c(new c.i.a.b.i.a(c.i.c.m.d.r.c.b, c.i.c.m.d.r.c.f1359c)); + c.i.a.b.g c2 = c.i.a.b.j.n.a().c(new c.i.a.b.i.a(c.i.c.m.d.r.c.b, c.i.c.m.d.r.c.f1360c)); c.i.a.b.b bVar5 = new c.i.a.b.b("json"); c.i.a.b.e eVar = c.i.c.m.d.r.c.d; this.A = new d1(n0Var, gVar, new c.i.c.m.d.r.c(((c.i.a.b.j.j) c2).a("FIREBASE_CRASHLYTICS_REPORT", v.class, bVar5, eVar), eVar), bVar4, f1Var); @@ -297,9 +297,9 @@ public class x { Throwable th; if (!file.exists()) { c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P("Tried to include a file that doesn't exist: "); - P.append(file.getName()); - bVar.d(P.toString()); + StringBuilder O = c.d.b.a.a.O("Tried to include a file that doesn't exist: "); + O.append(file.getName()); + bVar.d(O.toString()); return; } FileInputStream fileInputStream = null; @@ -330,7 +330,7 @@ public class x { new g(xVar.o); String str3 = g.b; c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - c.d.b.a.a.k0("Opening a new session with ID ", str3, bVar); + c.d.b.a.a.j0("Opening a new session with ID ", str3, bVar); xVar.w.h(str3); Locale locale = Locale.US; String format = String.format(locale, "Crashlytics Android SDK/%s", "17.3.0"); @@ -342,9 +342,9 @@ public class x { String str5 = bVar2.e; String str6 = bVar2.f; String b2 = v0Var.b(); - int g2 = r0.f(xVar.q.f1308c).g(); + int g2 = r0.f(xVar.q.f1309c).g(); xVar.z(str3, "SessionApp", new v(xVar, str4, str5, str6, b2, g2)); - xVar.w.f(str3, str4, str5, str6, b2, g2, xVar.f1326y); + xVar.w.f(str3, str4, str5, str6, b2, g2, xVar.f1327y); String str7 = Build.VERSION.RELEASE; String str8 = Build.VERSION.CODENAME; boolean t = h.t(xVar.i); @@ -357,7 +357,7 @@ public class x { if (TextUtils.isEmpty(str9)) { bVar.b("Architecture#getValue()::Build.CPU_ABI returned null or empty"); } else { - h.b bVar4 = h.b.f1312s.get(str9.toLowerCase(locale)); + h.b bVar4 = h.b.f1313s.get(str9.toLowerCase(locale)); if (bVar4 != null) { bVar3 = bVar4; } @@ -393,10 +393,10 @@ public class x { String str15 = n0Var.e.f; Objects.requireNonNull(str15, "Null displayVersion"); bVar5.f = str15; - bVar5.f1334c = 4; + bVar5.f1335c = 4; f.b bVar6 = new f.b(); bVar6.b(false); - bVar6.f1336c = Long.valueOf(j2); + bVar6.f1337c = Long.valueOf(j2); Objects.requireNonNull(t2, "Null identifier"); bVar6.b = t2; String str16 = n0.a; @@ -420,7 +420,7 @@ public class x { Integer num2 = 3; Objects.requireNonNull(str7, "Null version"); Objects.requireNonNull(str8, "Null buildVersion"); - Boolean valueOf = Boolean.valueOf(h.t(n0Var.f1315c)); + Boolean valueOf = Boolean.valueOf(h.t(n0Var.f1316c)); String str20 = num2 == null ? " platform" : ""; if (valueOf == null) { str20 = c.d.b.a.a.u(str20, " jailbroken"); @@ -435,13 +435,13 @@ public class x { int availableProcessors2 = Runtime.getRuntime().availableProcessors(); long p2 = h.p(); long blockCount2 = ((long) statFs2.getBlockCount()) * ((long) statFs2.getBlockSize()); - boolean r2 = h.r(n0Var.f1315c); - int k3 = h.k(n0Var.f1315c); + boolean r2 = h.r(n0Var.f1316c); + int k3 = h.k(n0Var.f1316c); i.b bVar7 = new i.b(); bVar7.a = Integer.valueOf(i2); Objects.requireNonNull(str10, "Null model"); bVar7.b = str10; - bVar7.f1339c = Integer.valueOf(availableProcessors2); + bVar7.f1340c = Integer.valueOf(availableProcessors2); bVar7.d = Long.valueOf(p2); bVar7.e = Long.valueOf(blockCount2); bVar7.f = Boolean.valueOf(r2); @@ -465,7 +465,7 @@ public class x { try { File h3 = gVar.h(g3); c.i.c.m.d.o.g.i(h3); - c.i.c.m.d.o.g.l(new File(h3, "report"), c.i.c.m.d.o.g.f1355c.g(a3)); + c.i.c.m.d.o.g.l(new File(h3, "report"), c.i.c.m.d.o.g.f1356c.g(a3)); } catch (IOException e2) { c.i.c.m.d.b.a.c("Could not persist report for session " + g3, e2); } @@ -498,9 +498,9 @@ public class x { arrayList.add(task); } catch (NumberFormatException unused2) { c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P("Could not parse timestamp from file "); - P.append(file.getName()); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Could not parse timestamp from file "); + O.append(file.getName()); + bVar.b(O.toString()); } file.delete(); } @@ -524,24 +524,24 @@ public class x { cVar.r(5, 2); cVar.p(b2); cVar.l(2, a2); - StringBuilder P = c.d.b.a.a.P("Failed to flush to append to "); - P.append(file.getPath()); - h.h(cVar, P.toString()); + StringBuilder O = c.d.b.a.a.O("Failed to flush to append to "); + O.append(file.getPath()); + h.h(cVar, O.toString()); h.c(fileOutputStream, "Failed to close " + file.getPath()); } catch (Throwable th2) { th = th2; - StringBuilder P2 = c.d.b.a.a.P("Failed to flush to append to "); - P2.append(file.getPath()); - h.h(cVar, P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Failed to flush to append to "); + O2.append(file.getPath()); + h.h(cVar, O2.toString()); h.c(fileOutputStream, "Failed to close " + file.getPath()); throw th; } } catch (Throwable th3) { th = th3; fileOutputStream = null; - StringBuilder P2 = c.d.b.a.a.P("Failed to flush to append to "); - P2.append(file.getPath()); - h.h(cVar, P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Failed to flush to append to "); + O2.append(file.getPath()); + h.h(cVar, O2.toString()); h.c(fileOutputStream, "Failed to close " + file.getPath()); throw th; } @@ -599,7 +599,7 @@ public class x { } public static void x(c.i.c.m.d.p.c cVar, File[] fileArr, String str) { - Arrays.sort(fileArr, h.f1311c); + Arrays.sort(fileArr, h.f1312c); for (File file : fileArr) { try { c.i.c.m.d.b.a.b(String.format(Locale.US, "Found Non Fatal for session ID %s in %s ", str, file.getName())); @@ -666,7 +666,7 @@ public class x { for (int i5 = 0; i5 < min; i5++) { hashSet.add(o(s2[i5])); } - File[] listFiles = ((j) this.t.f1330c).a().listFiles(); + File[] listFiles = ((j) this.t.f1331c).a().listFiles(); if (listFiles != null) { for (File file2 : listFiles) { String name = file2.getName(); @@ -796,14 +796,14 @@ public class x { String str5 = "user"; if (this.w.e(o)) { c.i.c.m.d.b bVar2 = c.i.c.m.d.b.a; - c.d.b.a.a.k0("Finalizing native report for session ", o, bVar2); + c.d.b.a.a.j0("Finalizing native report for session ", o, bVar2); c.i.c.m.d.d b3 = this.w.b(o); File d2 = b3.d(); if (d2 == null || !d2.exists()) { bVar2.g("No minidump data found for session " + o); } else { long lastModified = d2.lastModified(); - c.i.c.m.d.l.b bVar3 = new c.i.c.m.d.l.b(this.i, this.f1324s, o); + c.i.c.m.d.l.b bVar3 = new c.i.c.m.d.l.b(this.i, this.f1325s, o); File file4 = new File(m(), o); if (!file4.mkdirs()) { bVar2.b("Couldn't create native sessions directory"); @@ -866,7 +866,7 @@ public class x { File file5 = new File(gVar2.h(replaceAll), str4); File file6 = gVar2.j; try { - c.i.c.m.d.m.x.h hVar = c.i.c.m.d.o.g.f1355c; + c.i.c.m.d.m.x.h hVar = c.i.c.m.d.o.g.f1356c; b.C0135b bVar4 = (b.C0135b) hVar.f(c.i.c.m.d.o.g.j(file5)).i(); bVar4.g = null; bVar4.h = dVar; @@ -880,7 +880,7 @@ public class x { } } if (!this.w.a(o)) { - c.d.b.a.a.k0("Could not finalize native session: ", o, c.i.c.m.d.b.a); + c.d.b.a.a.j0("Could not finalize native session: ", o, c.i.c.m.d.b.a); } } c.i.c.m.d.b.a.b("Closing open sessions."); @@ -1013,7 +1013,7 @@ public class x { throw th; } } else { - c.d.b.a.a.k0("No events present for session ID ", o2, bVar5); + c.d.b.a.a.j0("No events present for session ID ", o2, bVar5); str3 = str5; } c.i.c.m.d.b.a.b("Removing session part files for ID " + o2); @@ -1041,15 +1041,15 @@ public class x { } for (File file11 : f2) { c.i.c.m.d.b bVar6 = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P("Finalizing report for session "); - P.append(file11.getName()); - bVar6.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Finalizing report for session "); + O.append(file11.getName()); + bVar6.b(O.toString()); List g2 = c.i.c.m.d.o.g.g(file11, c.i.c.m.d.o.g.e); if (g2.isEmpty()) { - StringBuilder P2 = c.d.b.a.a.P("Session "); - P2.append(file11.getName()); - P2.append(" has no events."); - bVar6.b(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Session "); + O2.append(file11.getName()); + O2.append(" has no events."); + bVar6.b(O2.toString()); } else { Collections.sort(g2); ArrayList arrayList4 = new ArrayList(); @@ -1062,7 +1062,7 @@ public class x { } File next = it3.next(); try { - c.i.c.m.d.m.x.h hVar2 = c.i.c.m.d.o.g.f1355c; + c.i.c.m.d.m.x.h hVar2 = c.i.c.m.d.o.g.f1356c; String j4 = c.i.c.m.d.o.g.j(next); Objects.requireNonNull(hVar2); try { @@ -1091,9 +1091,9 @@ public class x { } if (arrayList4.isEmpty()) { c.i.c.m.d.b bVar7 = c.i.c.m.d.b.a; - StringBuilder P3 = c.d.b.a.a.P("Could not parse event files for session "); - P3.append(file11.getName()); - bVar7.b(P3.toString()); + StringBuilder O3 = c.d.b.a.a.O("Could not parse event files for session "); + O3.append(file11.getName()); + bVar7.b(O3.toString()); } else { File file12 = new File(file11, str5); if (file12.isFile()) { @@ -1101,14 +1101,14 @@ public class x { str2 = c.i.c.m.d.o.g.j(file12); } catch (IOException e13) { c.i.c.m.d.b bVar8 = c.i.c.m.d.b.a; - StringBuilder P4 = c.d.b.a.a.P("Could not read user ID file in "); - P4.append(file11.getName()); - bVar8.c(P4.toString(), e13); + StringBuilder O4 = c.d.b.a.a.O("Could not read user ID file in "); + O4.append(file11.getName()); + bVar8.c(O4.toString(), e13); } str = str6; file = new File(file11, str); File file13 = !z3 ? gVar.h : gVar.i; - c.i.c.m.d.m.x.h hVar3 = c.i.c.m.d.o.g.f1355c; + c.i.c.m.d.m.x.h hVar3 = c.i.c.m.d.o.g.f1356c; j2 = hVar3.f(c.i.c.m.d.o.g.j(file)).j(j3, z3, str2); w wVar = new w<>(arrayList4); if (j2.h() == null) { @@ -1135,7 +1135,7 @@ public class x { if (!z3) { } try { - c.i.c.m.d.m.x.h hVar3 = c.i.c.m.d.o.g.f1355c; + c.i.c.m.d.m.x.h hVar3 = c.i.c.m.d.o.g.f1356c; j2 = hVar3.f(c.i.c.m.d.o.g.j(file)).j(j3, z3, str2); w wVar = new w<>(arrayList4); if (j2.h() == null) { @@ -1241,7 +1241,7 @@ public class x { public final File[] s() { File[] r = r(l(), a); - Arrays.sort(r, f1323c); + Arrays.sort(r, f1324c); return r; } @@ -1274,7 +1274,7 @@ public class x { bVar.b("Notifying that unsent reports are available."); this.C.b(Boolean.TRUE); q0 q0Var = this.j; - synchronized (q0Var.f1317c) { + synchronized (q0Var.f1318c) { b0Var = q0Var.d.a; } Task q2 = b0Var.q(new e0(this)); @@ -1328,7 +1328,7 @@ public class x { int length; int i2; Map map; - c.i.c.m.d.t.e eVar = new c.i.c.m.d.t.e(th, this.f1325x); + c.i.c.m.d.t.e eVar = new c.i.c.m.d.t.e(th, this.f1326x); Context context = this.i; e a2 = e.a(context); Float f2 = a2.a; @@ -1342,7 +1342,7 @@ public class x { long a3 = h.a(Environment.getDataDirectory().getPath()); ActivityManager.RunningAppProcessInfo i4 = h.i(context.getPackageName(), context); LinkedList linkedList = new LinkedList(); - StackTraceElement[] stackTraceElementArr = eVar.f1365c; + StackTraceElement[] stackTraceElementArr = eVar.f1366c; String str3 = this.q.b; String str4 = this.o.e; if (z2) { @@ -1351,7 +1351,7 @@ public class x { int i5 = 0; for (Map.Entry entry : allStackTraces.entrySet()) { threadArr2[i5] = entry.getKey(); - linkedList.add(this.f1325x.a(entry.getValue())); + linkedList.add(this.f1326x.a(entry.getValue())); i5++; threadArr2 = threadArr2; } diff --git a/app/src/main/java/c/i/c/m/d/k/y.java b/app/src/main/java/c/i/c/m/d/k/y.java index c1dee456c9..4fd194eb34 100644 --- a/app/src/main/java/c/i/c/m/d/k/y.java +++ b/app/src/main/java/c/i/c/m/d/k/y.java @@ -11,7 +11,7 @@ public class y implements x.g { public final /* synthetic */ int b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ long f1329c; + public final /* synthetic */ long f1330c; public final /* synthetic */ long d; public final /* synthetic */ boolean e; public final /* synthetic */ int f; @@ -19,7 +19,7 @@ public class y implements x.g { public y(x xVar, int i, String str, int i2, long j, long j2, boolean z2, int i3, String str2, String str3) { this.a = i; this.b = i2; - this.f1329c = j; + this.f1330c = j; this.d = j2; this.e = z2; this.f = i3; @@ -30,7 +30,7 @@ public class y implements x.g { int i = this.a; String str = Build.MODEL; int i2 = this.b; - long j = this.f1329c; + long j = this.f1330c; long j2 = this.d; boolean z2 = this.e; int i3 = this.f; diff --git a/app/src/main/java/c/i/c/m/d/l/b.java b/app/src/main/java/c/i/c/m/d/l/b.java index c5c4c78bcf..6454a2a165 100644 --- a/app/src/main/java/c/i/c/m/d/l/b.java +++ b/app/src/main/java/c/i/c/m/d/l/b.java @@ -10,7 +10,7 @@ public class b { public final Context b; /* renamed from: c reason: collision with root package name */ - public final AbstractC0132b f1330c; + public final AbstractC0132b f1331c; public a d = a; /* compiled from: LogFileManager */ @@ -48,13 +48,13 @@ public class b { public b(Context context, AbstractC0132b bVar) { this.b = context; - this.f1330c = bVar; + this.f1331c = bVar; a(null); } public b(Context context, AbstractC0132b bVar, String str) { this.b = context; - this.f1330c = bVar; + this.f1331c = bVar; a(str); } @@ -66,7 +66,7 @@ public class b { c.i.c.m.d.b.a.b("Preferences requested no custom logs. Aborting log file creation."); return; } - this.d = new e(new File(((x.j) this.f1330c).a(), c.d.b.a.a.v("crashlytics-userlog-", str, ".temp")), 65536); + this.d = new e(new File(((x.j) this.f1331c).a(), c.d.b.a.a.v("crashlytics-userlog-", str, ".temp")), 65536); } } } diff --git a/app/src/main/java/c/i/c/m/d/l/c.java b/app/src/main/java/c/i/c/m/d/l/c.java index bf99f0068f..1853295332 100644 --- a/app/src/main/java/c/i/c/m/d/l/c.java +++ b/app/src/main/java/c/i/c/m/d/l/c.java @@ -47,11 +47,11 @@ public class c implements Closeable { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1331c; + public final int f1332c; public b(int i, int i2) { this.b = i; - this.f1331c = i2; + this.f1332c = i2; } public String toString() { @@ -60,7 +60,7 @@ public class c implements Closeable { sb.append("[position = "); sb.append(this.b); sb.append(", length = "); - return c.d.b.a.a.z(sb, this.f1331c, "]"); + return c.d.b.a.a.z(sb, this.f1332c, "]"); } } @@ -74,7 +74,7 @@ public class c implements Closeable { int i = bVar.b + 4; int i2 = c.this.k; this.i = i >= i2 ? (i + 16) - i2 : i; - this.j = bVar.f1331c; + this.j = bVar.f1332c; } @Override // java.io.InputStream @@ -153,11 +153,11 @@ public class c implements Closeable { this.n = p(r3); return; } - StringBuilder P = c.d.b.a.a.P("File is truncated. Expected length: "); - P.append(this.k); - P.append(", Actual length: "); - P.append(randomAccessFile2.length()); - throw new IOException(P.toString()); + StringBuilder O = c.d.b.a.a.O("File is truncated. Expected length: "); + O.append(this.k); + O.append(", Actual length: "); + O.append(randomAccessFile2.length()); + throw new IOException(O.toString()); } public static void C(byte[] bArr, int i2, int i3) { @@ -200,7 +200,7 @@ public class c implements Closeable { i2 = 16; } else { b bVar = this.n; - i2 = z(bVar.b + 4 + bVar.f1331c); + i2 = z(bVar.b + 4 + bVar.f1332c); } b bVar2 = new b(i2, length); C(this.o, 0, length); @@ -248,7 +248,7 @@ public class c implements Closeable { this.j.setLength((long) i4); this.j.getChannel().force(true); b bVar = this.n; - int z2 = z(bVar.b + 4 + bVar.f1331c); + int z2 = z(bVar.b + 4 + bVar.f1332c); if (z2 < this.m.b) { FileChannel channel = this.j.getChannel(); channel.position((long) this.k); @@ -262,7 +262,7 @@ public class c implements Closeable { if (i5 < i6) { int i7 = (this.k + i5) - 16; B(i4, this.l, i6, i7); - this.n = new b(i7, this.n.f1331c); + this.n = new b(i7, this.n.f1332c); } else { B(i4, this.l, i6, i5); } @@ -274,8 +274,8 @@ public class c implements Closeable { int i2 = this.m.b; for (int i3 = 0; i3 < this.l; i3++) { b p = p(i2); - dVar.a(new C0133c(p, null), p.f1331c); - i2 = z(p.b + 4 + p.f1331c); + dVar.a(new C0133c(p, null), p.f1332c); + i2 = z(p.b + 4 + p.f1332c); } } @@ -298,7 +298,7 @@ public class c implements Closeable { c(); } else { b bVar = this.m; - int z2 = z(bVar.b + 4 + bVar.f1331c); + int z2 = z(bVar.b + 4 + bVar.f1332c); t(z2, this.o, 0, 4); int r = r(this.o, 0); B(this.k, this.l - 1, z2, this.n.b); @@ -371,7 +371,7 @@ public class c implements Closeable { b bVar = this.n; int i2 = bVar.b; int i3 = this.m.b; - return i2 >= i3 ? (i2 - i3) + 4 + bVar.f1331c + 16 : (((i2 + 4) + bVar.f1331c) + this.k) - i3; + return i2 >= i3 ? (i2 - i3) + 4 + bVar.f1332c + 16 : (((i2 + 4) + bVar.f1332c) + this.k) - i3; } public final int z(int i2) { diff --git a/app/src/main/java/c/i/c/m/d/l/e.java b/app/src/main/java/c/i/c/m/d/l/e.java index ed33b73cf1..b7702fb1cf 100644 --- a/app/src/main/java/c/i/c/m/d/l/e.java +++ b/app/src/main/java/c/i/c/m/d/l/e.java @@ -14,7 +14,7 @@ public class e implements a { public final File b; /* renamed from: c reason: collision with root package name */ - public final int f1332c; + public final int f1333c; public c d; /* compiled from: QueueFileLogStore */ @@ -30,7 +30,7 @@ public class e implements a { public e(File file, int i) { this.b = file; - this.f1332c = i; + this.f1333c = i; } @Override // c.i.c.m.d.l.a @@ -96,12 +96,12 @@ public class e implements a { str = "null"; } try { - int i = this.f1332c / 4; + int i = this.f1333c / 4; if (str.length() > i) { str = "..." + str.substring(str.length() - i); } this.d.b(String.format(Locale.US, "%d %s%n", Long.valueOf(j), str.replaceAll("\r", " ").replaceAll("\n", " ")).getBytes(a)); - while (!this.d.f() && this.d.x() > this.f1332c) { + while (!this.d.f() && this.d.x() > this.f1333c) { this.d.s(); } } catch (IOException e) { @@ -118,9 +118,9 @@ public class e implements a { this.d = new c(this.b); } catch (IOException e) { b bVar = b.a; - StringBuilder P = c.d.b.a.a.P("Could not open log file: "); - P.append(this.b); - bVar.e(P.toString(), e); + StringBuilder O = c.d.b.a.a.O("Could not open log file: "); + O.append(this.b); + bVar.e(O.toString(), e); } } } diff --git a/app/src/main/java/c/i/c/m/d/m/a.java b/app/src/main/java/c/i/c/m/d/m/a.java index 680549df2e..884c2acb31 100644 --- a/app/src/main/java/c/i/c/m/d/m/a.java +++ b/app/src/main/java/c/i/c/m/d/m/a.java @@ -335,103 +335,103 @@ public final class a implements c.i.c.p.g.a { b bVar2 = b.a; c.i.c.p.h.e eVar = (c.i.c.p.h.e) bVar; eVar.b.put(v.class, bVar2); - eVar.f1371c.remove(v.class); + eVar.f1372c.remove(v.class); eVar.b.put(b.class, bVar2); - eVar.f1371c.remove(b.class); + eVar.f1372c.remove(b.class); h hVar = h.a; eVar.b.put(v.d.class, hVar); - eVar.f1371c.remove(v.d.class); + eVar.f1372c.remove(v.d.class); eVar.b.put(f.class, hVar); - eVar.f1371c.remove(f.class); + eVar.f1372c.remove(f.class); e eVar2 = e.a; eVar.b.put(v.d.a.class, eVar2); - eVar.f1371c.remove(v.d.a.class); + eVar.f1372c.remove(v.d.a.class); eVar.b.put(g.class, eVar2); - eVar.f1371c.remove(g.class); + eVar.f1372c.remove(g.class); f fVar = f.a; eVar.b.put(v.d.a.AbstractC0136a.class, fVar); - eVar.f1371c.remove(v.d.a.AbstractC0136a.class); + eVar.f1372c.remove(v.d.a.AbstractC0136a.class); eVar.b.put(h.class, fVar); - eVar.f1371c.remove(h.class); + eVar.f1372c.remove(h.class); t tVar = t.a; eVar.b.put(v.d.f.class, tVar); - eVar.f1371c.remove(v.d.f.class); + eVar.f1372c.remove(v.d.f.class); eVar.b.put(u.class, tVar); - eVar.f1371c.remove(u.class); + eVar.f1372c.remove(u.class); s sVar = s.a; eVar.b.put(v.d.e.class, sVar); - eVar.f1371c.remove(v.d.e.class); + eVar.f1372c.remove(v.d.e.class); eVar.b.put(t.class, sVar); - eVar.f1371c.remove(t.class); + eVar.f1372c.remove(t.class); g gVar = g.a; eVar.b.put(v.d.c.class, gVar); - eVar.f1371c.remove(v.d.c.class); + eVar.f1372c.remove(v.d.c.class); eVar.b.put(i.class, gVar); - eVar.f1371c.remove(i.class); + eVar.f1372c.remove(i.class); q qVar = q.a; eVar.b.put(v.d.AbstractC0137d.class, qVar); - eVar.f1371c.remove(v.d.AbstractC0137d.class); + eVar.f1372c.remove(v.d.AbstractC0137d.class); eVar.b.put(j.class, qVar); - eVar.f1371c.remove(j.class); + eVar.f1372c.remove(j.class); i iVar = i.a; eVar.b.put(v.d.AbstractC0137d.a.class, iVar); - eVar.f1371c.remove(v.d.AbstractC0137d.a.class); + eVar.f1372c.remove(v.d.AbstractC0137d.a.class); eVar.b.put(k.class, iVar); - eVar.f1371c.remove(k.class); + eVar.f1372c.remove(k.class); k kVar = k.a; eVar.b.put(v.d.AbstractC0137d.a.b.class, kVar); - eVar.f1371c.remove(v.d.AbstractC0137d.a.b.class); + eVar.f1372c.remove(v.d.AbstractC0137d.a.b.class); eVar.b.put(l.class, kVar); - eVar.f1371c.remove(l.class); + eVar.f1372c.remove(l.class); n nVar = n.a; eVar.b.put(v.d.AbstractC0137d.a.b.AbstractC0141d.class, nVar); - eVar.f1371c.remove(v.d.AbstractC0137d.a.b.AbstractC0141d.class); + eVar.f1372c.remove(v.d.AbstractC0137d.a.b.AbstractC0141d.class); eVar.b.put(p.class, nVar); - eVar.f1371c.remove(p.class); + eVar.f1372c.remove(p.class); o oVar = o.a; eVar.b.put(v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142a.class, oVar); - eVar.f1371c.remove(v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142a.class); + eVar.f1372c.remove(v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142a.class); eVar.b.put(q.class, oVar); - eVar.f1371c.remove(q.class); + eVar.f1372c.remove(q.class); l lVar = l.a; eVar.b.put(v.d.AbstractC0137d.a.b.AbstractC0140b.class, lVar); - eVar.f1371c.remove(v.d.AbstractC0137d.a.b.AbstractC0140b.class); + eVar.f1372c.remove(v.d.AbstractC0137d.a.b.AbstractC0140b.class); eVar.b.put(n.class, lVar); - eVar.f1371c.remove(n.class); + eVar.f1372c.remove(n.class); m mVar = m.a; eVar.b.put(v.d.AbstractC0137d.a.b.c.class, mVar); - eVar.f1371c.remove(v.d.AbstractC0137d.a.b.c.class); + eVar.f1372c.remove(v.d.AbstractC0137d.a.b.c.class); eVar.b.put(o.class, mVar); - eVar.f1371c.remove(o.class); + eVar.f1372c.remove(o.class); j jVar = j.a; eVar.b.put(v.d.AbstractC0137d.a.b.AbstractC0139a.class, jVar); - eVar.f1371c.remove(v.d.AbstractC0137d.a.b.AbstractC0139a.class); + eVar.f1372c.remove(v.d.AbstractC0137d.a.b.AbstractC0139a.class); eVar.b.put(m.class, jVar); - eVar.f1371c.remove(m.class); + eVar.f1372c.remove(m.class); C0134a aVar = C0134a.a; eVar.b.put(v.b.class, aVar); - eVar.f1371c.remove(v.b.class); + eVar.f1372c.remove(v.b.class); eVar.b.put(c.class, aVar); - eVar.f1371c.remove(c.class); + eVar.f1372c.remove(c.class); p pVar = p.a; eVar.b.put(v.d.AbstractC0137d.b.class, pVar); - eVar.f1371c.remove(v.d.AbstractC0137d.b.class); + eVar.f1372c.remove(v.d.AbstractC0137d.b.class); eVar.b.put(r.class, pVar); - eVar.f1371c.remove(r.class); + eVar.f1372c.remove(r.class); r rVar = r.a; eVar.b.put(v.d.AbstractC0137d.c.class, rVar); - eVar.f1371c.remove(v.d.AbstractC0137d.c.class); + eVar.f1372c.remove(v.d.AbstractC0137d.c.class); eVar.b.put(s.class, rVar); - eVar.f1371c.remove(s.class); + eVar.f1372c.remove(s.class); c cVar = c.a; eVar.b.put(v.c.class, cVar); - eVar.f1371c.remove(v.c.class); + eVar.f1372c.remove(v.c.class); eVar.b.put(d.class, cVar); - eVar.f1371c.remove(d.class); + eVar.f1372c.remove(d.class); d dVar = d.a; eVar.b.put(v.c.a.class, dVar); - eVar.f1371c.remove(v.c.a.class); + eVar.f1372c.remove(v.c.a.class); eVar.b.put(e.class, dVar); - eVar.f1371c.remove(e.class); + eVar.f1372c.remove(e.class); } } diff --git a/app/src/main/java/c/i/c/m/d/m/b.java b/app/src/main/java/c/i/c/m/d/m/b.java index da6607cf78..794ae557fa 100644 --- a/app/src/main/java/c/i/c/m/d/m/b.java +++ b/app/src/main/java/c/i/c/m/d/m/b.java @@ -8,7 +8,7 @@ public final class b extends v { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1333c; + public final String f1334c; public final int d; public final String e; public final String f; @@ -23,7 +23,7 @@ public final class b extends v { public String b; /* renamed from: c reason: collision with root package name */ - public Integer f1334c; + public Integer f1335c; public String d; public String e; public String f; @@ -36,8 +36,8 @@ public final class b extends v { public C0135b(v vVar, a aVar) { b bVar = (b) vVar; this.a = bVar.b; - this.b = bVar.f1333c; - this.f1334c = Integer.valueOf(bVar.d); + this.b = bVar.f1334c; + this.f1335c = Integer.valueOf(bVar.d); this.d = bVar.e; this.e = bVar.f; this.f = bVar.g; @@ -51,7 +51,7 @@ public final class b extends v { if (this.b == null) { str = c.d.b.a.a.u(str, " gmpAppId"); } - if (this.f1334c == null) { + if (this.f1335c == null) { str = c.d.b.a.a.u(str, " platform"); } if (this.d == null) { @@ -64,7 +64,7 @@ public final class b extends v { str = c.d.b.a.a.u(str, " displayVersion"); } if (str.isEmpty()) { - return new b(this.a, this.b, this.f1334c.intValue(), this.d, this.e, this.f, this.g, this.h, null); + return new b(this.a, this.b, this.f1335c.intValue(), this.d, this.e, this.f, this.g, this.h, null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -72,7 +72,7 @@ public final class b extends v { public b(String str, String str2, int i, String str3, String str4, String str5, v.d dVar, v.c cVar, a aVar) { this.b = str; - this.f1333c = str2; + this.f1334c = str2; this.d = i; this.e = str3; this.f = str4; @@ -96,7 +96,7 @@ public final class b extends v { @Override // c.i.c.m.d.m.v @NonNull public String c() { - return this.f1333c; + return this.f1334c; } @Override // c.i.c.m.d.m.v @@ -120,7 +120,7 @@ public final class b extends v { return false; } v vVar = (v) obj; - if (this.b.equals(vVar.g()) && this.f1333c.equals(vVar.c()) && this.d == vVar.f() && this.e.equals(vVar.d()) && this.f.equals(vVar.a()) && this.g.equals(vVar.b()) && ((dVar = this.h) != null ? dVar.equals(vVar.h()) : vVar.h() == null)) { + if (this.b.equals(vVar.g()) && this.f1334c.equals(vVar.c()) && this.d == vVar.f() && this.e.equals(vVar.d()) && this.f.equals(vVar.a()) && this.g.equals(vVar.b()) && ((dVar = this.h) != null ? dVar.equals(vVar.h()) : vVar.h() == null)) { v.c cVar = this.i; if (cVar == null) { if (vVar.e() == null) { @@ -151,7 +151,7 @@ public final class b extends v { } public int hashCode() { - int hashCode = (((((((((((this.b.hashCode() ^ 1000003) * 1000003) ^ this.f1333c.hashCode()) * 1000003) ^ this.d) * 1000003) ^ this.e.hashCode()) * 1000003) ^ this.f.hashCode()) * 1000003) ^ this.g.hashCode()) * 1000003; + int hashCode = (((((((((((this.b.hashCode() ^ 1000003) * 1000003) ^ this.f1334c.hashCode()) * 1000003) ^ this.d) * 1000003) ^ this.e.hashCode()) * 1000003) ^ this.f.hashCode()) * 1000003) ^ this.g.hashCode()) * 1000003; v.d dVar = this.h; int i = 0; int hashCode2 = (hashCode ^ (dVar == null ? 0 : dVar.hashCode())) * 1000003; @@ -168,23 +168,23 @@ public final class b extends v { } public String toString() { - StringBuilder P = c.d.b.a.a.P("CrashlyticsReport{sdkVersion="); - P.append(this.b); - P.append(", gmpAppId="); - P.append(this.f1333c); - P.append(", platform="); - P.append(this.d); - P.append(", installationUuid="); - P.append(this.e); - P.append(", buildVersion="); - P.append(this.f); - P.append(", displayVersion="); - P.append(this.g); - P.append(", session="); - P.append(this.h); - P.append(", ndkPayload="); - P.append(this.i); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("CrashlyticsReport{sdkVersion="); + O.append(this.b); + O.append(", gmpAppId="); + O.append(this.f1334c); + O.append(", platform="); + O.append(this.d); + O.append(", installationUuid="); + O.append(this.e); + O.append(", buildVersion="); + O.append(this.f); + O.append(", displayVersion="); + O.append(this.g); + O.append(", session="); + O.append(this.h); + O.append(", ndkPayload="); + O.append(this.i); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/c/m/d/m/c.java b/app/src/main/java/c/i/c/m/d/m/c.java index fdaee73a7f..a4a65e94bf 100644 --- a/app/src/main/java/c/i/c/m/d/m/c.java +++ b/app/src/main/java/c/i/c/m/d/m/c.java @@ -40,9 +40,9 @@ public final class c extends v.b { } public String toString() { - StringBuilder P = c.d.b.a.a.P("CustomAttribute{key="); - P.append(this.a); - P.append(", value="); - return c.d.b.a.a.H(P, this.b, "}"); + StringBuilder O = c.d.b.a.a.O("CustomAttribute{key="); + O.append(this.a); + O.append(", value="); + return c.d.b.a.a.G(O, this.b, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/d.java b/app/src/main/java/c/i/c/m/d/m/d.java index 35bfb45ef8..d1fc980f9a 100644 --- a/app/src/main/java/c/i/c/m/d/m/d.java +++ b/app/src/main/java/c/i/c/m/d/m/d.java @@ -53,9 +53,9 @@ public final class d extends v.c { } public String toString() { - StringBuilder P = c.d.b.a.a.P("FilesPayload{files="); - P.append(this.a); - P.append(", orgId="); - return c.d.b.a.a.H(P, this.b, "}"); + StringBuilder O = c.d.b.a.a.O("FilesPayload{files="); + O.append(this.a); + O.append(", orgId="); + return c.d.b.a.a.G(O, this.b, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/e.java b/app/src/main/java/c/i/c/m/d/m/e.java index 716972702d..16f75e570a 100644 --- a/app/src/main/java/c/i/c/m/d/m/e.java +++ b/app/src/main/java/c/i/c/m/d/m/e.java @@ -46,11 +46,11 @@ public final class e extends v.c.a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("File{filename="); - P.append(this.a); - P.append(", contents="); - P.append(Arrays.toString(this.b)); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("File{filename="); + O.append(this.a); + O.append(", contents="); + O.append(Arrays.toString(this.b)); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/c/m/d/m/f.java b/app/src/main/java/c/i/c/m/d/m/f.java index e399444a36..e4c47c172e 100644 --- a/app/src/main/java/c/i/c/m/d/m/f.java +++ b/app/src/main/java/c/i/c/m/d/m/f.java @@ -9,7 +9,7 @@ public final class f extends v.d { public final String b; /* renamed from: c reason: collision with root package name */ - public final long f1335c; + public final long f1336c; public final Long d; public final boolean e; public final v.d.a f; @@ -25,7 +25,7 @@ public final class f extends v.d { public String b; /* renamed from: c reason: collision with root package name */ - public Long f1336c; + public Long f1337c; public Long d; public Boolean e; public v.d.a f; @@ -42,7 +42,7 @@ public final class f extends v.d { f fVar = (f) dVar; this.a = fVar.a; this.b = fVar.b; - this.f1336c = Long.valueOf(fVar.f1335c); + this.f1337c = Long.valueOf(fVar.f1336c); this.d = fVar.d; this.e = Boolean.valueOf(fVar.e); this.f = fVar.f; @@ -59,7 +59,7 @@ public final class f extends v.d { if (this.b == null) { str = c.d.b.a.a.u(str, " identifier"); } - if (this.f1336c == null) { + if (this.f1337c == null) { str = c.d.b.a.a.u(str, " startedAt"); } if (this.e == null) { @@ -72,7 +72,7 @@ public final class f extends v.d { str = c.d.b.a.a.u(str, " generatorType"); } if (str.isEmpty()) { - return new f(this.a, this.b, this.f1336c.longValue(), this.d, this.e.booleanValue(), this.f, this.g, this.h, this.i, this.j, this.k.intValue(), null); + return new f(this.a, this.b, this.f1337c.longValue(), this.d, this.e.booleanValue(), this.f, this.g, this.h, this.i, this.j, this.k.intValue(), null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -86,7 +86,7 @@ public final class f extends v.d { public f(String str, String str2, long j, Long l, boolean z2, v.d.a aVar, v.d.f fVar, v.d.e eVar, v.d.c cVar, w wVar, int i, a aVar2) { this.a = str; this.b = str2; - this.f1335c = j; + this.f1336c = j; this.d = l; this.e = z2; this.f = aVar; @@ -140,7 +140,7 @@ public final class f extends v.d { return false; } v.d dVar = (v.d) obj; - return this.a.equals(dVar.e()) && this.b.equals(dVar.g()) && this.f1335c == dVar.i() && ((l = this.d) != null ? l.equals(dVar.c()) : dVar.c() == null) && this.e == dVar.k() && this.f.equals(dVar.a()) && ((fVar = this.g) != null ? fVar.equals(dVar.j()) : dVar.j() == null) && ((eVar = this.h) != null ? eVar.equals(dVar.h()) : dVar.h() == null) && ((cVar = this.i) != null ? cVar.equals(dVar.b()) : dVar.b() == null) && ((wVar = this.j) != null ? wVar.equals(dVar.d()) : dVar.d() == null) && this.k == dVar.f(); + return this.a.equals(dVar.e()) && this.b.equals(dVar.g()) && this.f1336c == dVar.i() && ((l = this.d) != null ? l.equals(dVar.c()) : dVar.c() == null) && this.e == dVar.k() && this.f.equals(dVar.a()) && ((fVar = this.g) != null ? fVar.equals(dVar.j()) : dVar.j() == null) && ((eVar = this.h) != null ? eVar.equals(dVar.h()) : dVar.h() == null) && ((cVar = this.i) != null ? cVar.equals(dVar.b()) : dVar.b() == null) && ((wVar = this.j) != null ? wVar.equals(dVar.d()) : dVar.d() == null) && this.k == dVar.f(); } @Override // c.i.c.m.d.m.v.d @@ -161,7 +161,7 @@ public final class f extends v.d { } public int hashCode() { - long j = this.f1335c; + long j = this.f1336c; int hashCode = (((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003; Long l = this.d; int i = 0; @@ -181,7 +181,7 @@ public final class f extends v.d { @Override // c.i.c.m.d.m.v.d public long i() { - return this.f1335c; + return this.f1336c; } @Override // c.i.c.m.d.m.v.d @@ -201,27 +201,27 @@ public final class f extends v.d { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Session{generator="); - P.append(this.a); - P.append(", identifier="); - P.append(this.b); - P.append(", startedAt="); - P.append(this.f1335c); - P.append(", endedAt="); - P.append(this.d); - P.append(", crashed="); - P.append(this.e); - P.append(", app="); - P.append(this.f); - P.append(", user="); - P.append(this.g); - P.append(", os="); - P.append(this.h); - P.append(", device="); - P.append(this.i); - P.append(", events="); - P.append(this.j); - P.append(", generatorType="); - return c.d.b.a.a.z(P, this.k, "}"); + StringBuilder O = c.d.b.a.a.O("Session{generator="); + O.append(this.a); + O.append(", identifier="); + O.append(this.b); + O.append(", startedAt="); + O.append(this.f1336c); + O.append(", endedAt="); + O.append(this.d); + O.append(", crashed="); + O.append(this.e); + O.append(", app="); + O.append(this.f); + O.append(", user="); + O.append(this.g); + O.append(", os="); + O.append(this.h); + O.append(", device="); + O.append(this.i); + O.append(", events="); + O.append(this.j); + O.append(", generatorType="); + return c.d.b.a.a.z(O, this.k, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/g.java b/app/src/main/java/c/i/c/m/d/m/g.java index 0f9d225572..a617ca35ae 100644 --- a/app/src/main/java/c/i/c/m/d/m/g.java +++ b/app/src/main/java/c/i/c/m/d/m/g.java @@ -9,7 +9,7 @@ public final class g extends v.d.a { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1337c; + public final String f1338c; public final v.d.a.AbstractC0136a d = null; public final String e; public final String f; @@ -18,7 +18,7 @@ public final class g extends v.d.a { public g(String str, String str2, String str3, v.d.a.AbstractC0136a aVar, String str4, String str5, String str6, a aVar2) { this.a = str; this.b = str2; - this.f1337c = str3; + this.f1338c = str3; this.e = str4; this.f = str5; this.g = str6; @@ -39,7 +39,7 @@ public final class g extends v.d.a { @Override // c.i.c.m.d.m.v.d.a @Nullable public String c() { - return this.f1337c; + return this.f1338c; } @Override // c.i.c.m.d.m.v.d.a @@ -66,7 +66,7 @@ public final class g extends v.d.a { return false; } v.d.a aVar2 = (v.d.a) obj; - if (this.a.equals(aVar2.d()) && this.b.equals(aVar2.g()) && ((str = this.f1337c) != null ? str.equals(aVar2.c()) : aVar2.c() == null) && ((aVar = this.d) != null ? aVar.equals(aVar2.f()) : aVar2.f() == null) && ((str2 = this.e) != null ? str2.equals(aVar2.e()) : aVar2.e() == null) && ((str3 = this.f) != null ? str3.equals(aVar2.a()) : aVar2.a() == null)) { + if (this.a.equals(aVar2.d()) && this.b.equals(aVar2.g()) && ((str = this.f1338c) != null ? str.equals(aVar2.c()) : aVar2.c() == null) && ((aVar = this.d) != null ? aVar.equals(aVar2.f()) : aVar2.f() == null) && ((str2 = this.e) != null ? str2.equals(aVar2.e()) : aVar2.e() == null) && ((str3 = this.f) != null ? str3.equals(aVar2.a()) : aVar2.a() == null)) { String str4 = this.g; if (str4 == null) { if (aVar2.b() == null) { @@ -93,7 +93,7 @@ public final class g extends v.d.a { public int hashCode() { int hashCode = (((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003; - String str = this.f1337c; + String str = this.f1338c; int i = 0; int hashCode2 = (hashCode ^ (str == null ? 0 : str.hashCode())) * 1000003; v.d.a.AbstractC0136a aVar = this.d; @@ -110,19 +110,19 @@ public final class g extends v.d.a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Application{identifier="); - P.append(this.a); - P.append(", version="); - P.append(this.b); - P.append(", displayVersion="); - P.append(this.f1337c); - P.append(", organization="); - P.append(this.d); - P.append(", installationUuid="); - P.append(this.e); - P.append(", developmentPlatform="); - P.append(this.f); - P.append(", developmentPlatformVersion="); - return c.d.b.a.a.H(P, this.g, "}"); + StringBuilder O = c.d.b.a.a.O("Application{identifier="); + O.append(this.a); + O.append(", version="); + O.append(this.b); + O.append(", displayVersion="); + O.append(this.f1338c); + O.append(", organization="); + O.append(this.d); + O.append(", installationUuid="); + O.append(this.e); + O.append(", developmentPlatform="); + O.append(this.f); + O.append(", developmentPlatformVersion="); + return c.d.b.a.a.G(O, this.g, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/i.java b/app/src/main/java/c/i/c/m/d/m/i.java index ec8e4e4137..9d2dfe5728 100644 --- a/app/src/main/java/c/i/c/m/d/m/i.java +++ b/app/src/main/java/c/i/c/m/d/m/i.java @@ -8,7 +8,7 @@ public final class i extends v.d.c { public final String b; /* renamed from: c reason: collision with root package name */ - public final int f1338c; + public final int f1339c; public final long d; public final long e; public final boolean f; @@ -22,7 +22,7 @@ public final class i extends v.d.c { public String b; /* renamed from: c reason: collision with root package name */ - public Integer f1339c; + public Integer f1340c; public Long d; public Long e; public Boolean f; @@ -35,7 +35,7 @@ public final class i extends v.d.c { if (this.b == null) { str = c.d.b.a.a.u(str, " model"); } - if (this.f1339c == null) { + if (this.f1340c == null) { str = c.d.b.a.a.u(str, " cores"); } if (this.d == null) { @@ -57,7 +57,7 @@ public final class i extends v.d.c { str = c.d.b.a.a.u(str, " modelClass"); } if (str.isEmpty()) { - return new i(this.a.intValue(), this.b, this.f1339c.intValue(), this.d.longValue(), this.e.longValue(), this.f.booleanValue(), this.g.intValue(), this.h, this.i, null); + return new i(this.a.intValue(), this.b, this.f1340c.intValue(), this.d.longValue(), this.e.longValue(), this.f.booleanValue(), this.g.intValue(), this.h, this.i, null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -66,7 +66,7 @@ public final class i extends v.d.c { public i(int i, String str, int i2, long j, long j2, boolean z2, int i3, String str2, String str3, a aVar) { this.a = i; this.b = str; - this.f1338c = i2; + this.f1339c = i2; this.d = j; this.e = j2; this.f = z2; @@ -83,7 +83,7 @@ public final class i extends v.d.c { @Override // c.i.c.m.d.m.v.d.c public int b() { - return this.f1338c; + return this.f1339c; } @Override // c.i.c.m.d.m.v.d.c @@ -111,7 +111,7 @@ public final class i extends v.d.c { return false; } v.d.c cVar = (v.d.c) obj; - return this.a == cVar.a() && this.b.equals(cVar.e()) && this.f1338c == cVar.b() && this.d == cVar.g() && this.e == cVar.c() && this.f == cVar.i() && this.g == cVar.h() && this.h.equals(cVar.d()) && this.i.equals(cVar.f()); + return this.a == cVar.a() && this.b.equals(cVar.e()) && this.f1339c == cVar.b() && this.d == cVar.g() && this.e == cVar.c() && this.f == cVar.i() && this.g == cVar.h() && this.h.equals(cVar.d()) && this.i.equals(cVar.f()); } @Override // c.i.c.m.d.m.v.d.c @@ -133,7 +133,7 @@ public final class i extends v.d.c { public int hashCode() { long j = this.d; long j2 = this.e; - return ((((((((((((((((this.a ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1338c) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32)))) * 1000003) ^ (this.f ? 1231 : 1237)) * 1000003) ^ this.g) * 1000003) ^ this.h.hashCode()) * 1000003) ^ this.i.hashCode(); + return ((((((((((((((((this.a ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1339c) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32)))) * 1000003) ^ (this.f ? 1231 : 1237)) * 1000003) ^ this.g) * 1000003) ^ this.h.hashCode()) * 1000003) ^ this.i.hashCode(); } @Override // c.i.c.m.d.m.v.d.c @@ -142,23 +142,23 @@ public final class i extends v.d.c { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Device{arch="); - P.append(this.a); - P.append(", model="); - P.append(this.b); - P.append(", cores="); - P.append(this.f1338c); - P.append(", ram="); - P.append(this.d); - P.append(", diskSpace="); - P.append(this.e); - P.append(", simulator="); - P.append(this.f); - P.append(", state="); - P.append(this.g); - P.append(", manufacturer="); - P.append(this.h); - P.append(", modelClass="); - return c.d.b.a.a.H(P, this.i, "}"); + StringBuilder O = c.d.b.a.a.O("Device{arch="); + O.append(this.a); + O.append(", model="); + O.append(this.b); + O.append(", cores="); + O.append(this.f1339c); + O.append(", ram="); + O.append(this.d); + O.append(", diskSpace="); + O.append(this.e); + O.append(", simulator="); + O.append(this.f); + O.append(", state="); + O.append(this.g); + O.append(", manufacturer="); + O.append(this.h); + O.append(", modelClass="); + return c.d.b.a.a.G(O, this.i, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/j.java b/app/src/main/java/c/i/c/m/d/m/j.java index a668804b6a..e95ea96da8 100644 --- a/app/src/main/java/c/i/c/m/d/m/j.java +++ b/app/src/main/java/c/i/c/m/d/m/j.java @@ -9,14 +9,14 @@ public final class j extends v.d.AbstractC0137d { public final String b; /* renamed from: c reason: collision with root package name */ - public final v.d.AbstractC0137d.a f1340c; + public final v.d.AbstractC0137d.a f1341c; public final v.d.AbstractC0137d.b d; public final v.d.AbstractC0137d.c e; public j(long j, String str, v.d.AbstractC0137d.a aVar, v.d.AbstractC0137d.b bVar, v.d.AbstractC0137d.c cVar, a aVar2) { this.a = j; this.b = str; - this.f1340c = aVar; + this.f1341c = aVar; this.d = bVar; this.e = cVar; } @@ -24,7 +24,7 @@ public final class j extends v.d.AbstractC0137d { @Override // c.i.c.m.d.m.v.d.AbstractC0137d @NonNull public v.d.AbstractC0137d.a a() { - return this.f1340c; + return this.f1341c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d @@ -58,7 +58,7 @@ public final class j extends v.d.AbstractC0137d { return false; } v.d.AbstractC0137d dVar = (v.d.AbstractC0137d) obj; - if (this.a == dVar.d() && this.b.equals(dVar.e()) && this.f1340c.equals(dVar.a()) && this.d.equals(dVar.b())) { + if (this.a == dVar.d() && this.b.equals(dVar.e()) && this.f1341c.equals(dVar.a()) && this.d.equals(dVar.b())) { v.d.AbstractC0137d.c cVar = this.e; if (cVar == null) { if (dVar.c() == null) { @@ -73,23 +73,23 @@ public final class j extends v.d.AbstractC0137d { public int hashCode() { long j = this.a; - int hashCode = (((((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1340c.hashCode()) * 1000003) ^ this.d.hashCode()) * 1000003; + int hashCode = (((((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1341c.hashCode()) * 1000003) ^ this.d.hashCode()) * 1000003; v.d.AbstractC0137d.c cVar = this.e; return (cVar == null ? 0 : cVar.hashCode()) ^ hashCode; } public String toString() { - StringBuilder P = c.d.b.a.a.P("Event{timestamp="); - P.append(this.a); - P.append(", type="); - P.append(this.b); - P.append(", app="); - P.append(this.f1340c); - P.append(", device="); - P.append(this.d); - P.append(", log="); - P.append(this.e); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("Event{timestamp="); + O.append(this.a); + O.append(", type="); + O.append(this.b); + O.append(", app="); + O.append(this.f1341c); + O.append(", device="); + O.append(this.d); + O.append(", log="); + O.append(this.e); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/c/m/d/m/k.java b/app/src/main/java/c/i/c/m/d/m/k.java index 9afdfc553d..17a6da3df9 100644 --- a/app/src/main/java/c/i/c/m/d/m/k.java +++ b/app/src/main/java/c/i/c/m/d/m/k.java @@ -9,7 +9,7 @@ public final class k extends v.d.AbstractC0137d.a { public final w b; /* renamed from: c reason: collision with root package name */ - public final Boolean f1341c; + public final Boolean f1342c; public final int d; /* compiled from: AutoValue_CrashlyticsReport_Session_Event_Application */ @@ -18,7 +18,7 @@ public final class k extends v.d.AbstractC0137d.a { public w b; /* renamed from: c reason: collision with root package name */ - public Boolean f1342c; + public Boolean f1343c; public Integer d; public b() { @@ -28,7 +28,7 @@ public final class k extends v.d.AbstractC0137d.a { k kVar = (k) aVar; this.a = kVar.a; this.b = kVar.b; - this.f1342c = kVar.f1341c; + this.f1343c = kVar.f1342c; this.d = Integer.valueOf(kVar.d); } @@ -38,7 +38,7 @@ public final class k extends v.d.AbstractC0137d.a { str = c.d.b.a.a.u(str, " uiOrientation"); } if (str.isEmpty()) { - return new k(this.a, this.b, this.f1342c, this.d.intValue(), null); + return new k(this.a, this.b, this.f1343c, this.d.intValue(), null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -47,14 +47,14 @@ public final class k extends v.d.AbstractC0137d.a { public k(v.d.AbstractC0137d.a.b bVar, w wVar, Boolean bool, int i, a aVar) { this.a = bVar; this.b = wVar; - this.f1341c = bool; + this.f1342c = bool; this.d = i; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a @Nullable public Boolean a() { - return this.f1341c; + return this.f1342c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a @@ -88,7 +88,7 @@ public final class k extends v.d.AbstractC0137d.a { return false; } v.d.AbstractC0137d.a aVar = (v.d.AbstractC0137d.a) obj; - return this.a.equals(aVar.c()) && ((wVar = this.b) != null ? wVar.equals(aVar.b()) : aVar.b() == null) && ((bool = this.f1341c) != null ? bool.equals(aVar.a()) : aVar.a() == null) && this.d == aVar.d(); + return this.a.equals(aVar.c()) && ((wVar = this.b) != null ? wVar.equals(aVar.b()) : aVar.b() == null) && ((bool = this.f1342c) != null ? bool.equals(aVar.a()) : aVar.a() == null) && this.d == aVar.d(); } public int hashCode() { @@ -96,7 +96,7 @@ public final class k extends v.d.AbstractC0137d.a { w wVar = this.b; int i = 0; int hashCode2 = (hashCode ^ (wVar == null ? 0 : wVar.hashCode())) * 1000003; - Boolean bool = this.f1341c; + Boolean bool = this.f1342c; if (bool != null) { i = bool.hashCode(); } @@ -104,13 +104,13 @@ public final class k extends v.d.AbstractC0137d.a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Application{execution="); - P.append(this.a); - P.append(", customAttributes="); - P.append(this.b); - P.append(", background="); - P.append(this.f1341c); - P.append(", uiOrientation="); - return c.d.b.a.a.z(P, this.d, "}"); + StringBuilder O = c.d.b.a.a.O("Application{execution="); + O.append(this.a); + O.append(", customAttributes="); + O.append(this.b); + O.append(", background="); + O.append(this.f1342c); + O.append(", uiOrientation="); + return c.d.b.a.a.z(O, this.d, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/l.java b/app/src/main/java/c/i/c/m/d/m/l.java index af1d5f1067..1f4c33a5aa 100644 --- a/app/src/main/java/c/i/c/m/d/m/l.java +++ b/app/src/main/java/c/i/c/m/d/m/l.java @@ -8,13 +8,13 @@ public final class l extends v.d.AbstractC0137d.a.b { public final v.d.AbstractC0137d.a.b.AbstractC0140b b; /* renamed from: c reason: collision with root package name */ - public final v.d.AbstractC0137d.a.b.c f1343c; + public final v.d.AbstractC0137d.a.b.c f1344c; public final w d; public l(w wVar, v.d.AbstractC0137d.a.b.AbstractC0140b bVar, v.d.AbstractC0137d.a.b.c cVar, w wVar2, a aVar) { this.a = wVar; this.b = bVar; - this.f1343c = cVar; + this.f1344c = cVar; this.d = wVar2; } @@ -33,7 +33,7 @@ public final class l extends v.d.AbstractC0137d.a.b { @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b @NonNull public v.d.AbstractC0137d.a.b.c c() { - return this.f1343c; + return this.f1344c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b @@ -50,23 +50,23 @@ public final class l extends v.d.AbstractC0137d.a.b { return false; } v.d.AbstractC0137d.a.b bVar = (v.d.AbstractC0137d.a.b) obj; - return this.a.equals(bVar.d()) && this.b.equals(bVar.b()) && this.f1343c.equals(bVar.c()) && this.d.equals(bVar.a()); + return this.a.equals(bVar.d()) && this.b.equals(bVar.b()) && this.f1344c.equals(bVar.c()) && this.d.equals(bVar.a()); } public int hashCode() { - return ((((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1343c.hashCode()) * 1000003) ^ this.d.hashCode(); + return ((((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1344c.hashCode()) * 1000003) ^ this.d.hashCode(); } public String toString() { - StringBuilder P = c.d.b.a.a.P("Execution{threads="); - P.append(this.a); - P.append(", exception="); - P.append(this.b); - P.append(", signal="); - P.append(this.f1343c); - P.append(", binaries="); - P.append(this.d); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("Execution{threads="); + O.append(this.a); + O.append(", exception="); + O.append(this.b); + O.append(", signal="); + O.append(this.f1344c); + O.append(", binaries="); + O.append(this.d); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/c/m/d/m/m.java b/app/src/main/java/c/i/c/m/d/m/m.java index 0a623a8b6a..17d7fc0b60 100644 --- a/app/src/main/java/c/i/c/m/d/m/m.java +++ b/app/src/main/java/c/i/c/m/d/m/m.java @@ -9,13 +9,13 @@ public final class m extends v.d.AbstractC0137d.a.b.AbstractC0139a { public final long b; /* renamed from: c reason: collision with root package name */ - public final String f1344c; + public final String f1345c; public final String d; public m(long j, long j2, String str, String str2, a aVar) { this.a = j; this.b = j2; - this.f1344c = str; + this.f1345c = str; this.d = str2; } @@ -28,7 +28,7 @@ public final class m extends v.d.AbstractC0137d.a.b.AbstractC0139a { @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0139a @NonNull public String b() { - return this.f1344c; + return this.f1345c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0139a @@ -50,7 +50,7 @@ public final class m extends v.d.AbstractC0137d.a.b.AbstractC0139a { return false; } v.d.AbstractC0137d.a.b.AbstractC0139a aVar = (v.d.AbstractC0137d.a.b.AbstractC0139a) obj; - if (this.a == aVar.a() && this.b == aVar.c() && this.f1344c.equals(aVar.b())) { + if (this.a == aVar.a() && this.b == aVar.c() && this.f1345c.equals(aVar.b())) { String str = this.d; if (str == null) { if (aVar.d() == null) { @@ -66,19 +66,19 @@ public final class m extends v.d.AbstractC0137d.a.b.AbstractC0139a { public int hashCode() { long j = this.a; long j2 = this.b; - int hashCode = (((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003) ^ this.f1344c.hashCode()) * 1000003; + int hashCode = (((((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003) ^ this.f1345c.hashCode()) * 1000003; String str = this.d; return (str == null ? 0 : str.hashCode()) ^ hashCode; } public String toString() { - StringBuilder P = c.d.b.a.a.P("BinaryImage{baseAddress="); - P.append(this.a); - P.append(", size="); - P.append(this.b); - P.append(", name="); - P.append(this.f1344c); - P.append(", uuid="); - return c.d.b.a.a.H(P, this.d, "}"); + StringBuilder O = c.d.b.a.a.O("BinaryImage{baseAddress="); + O.append(this.a); + O.append(", size="); + O.append(this.b); + O.append(", name="); + O.append(this.f1345c); + O.append(", uuid="); + return c.d.b.a.a.G(O, this.d, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/n.java b/app/src/main/java/c/i/c/m/d/m/n.java index 001bbd1419..e4ee3e5be8 100644 --- a/app/src/main/java/c/i/c/m/d/m/n.java +++ b/app/src/main/java/c/i/c/m/d/m/n.java @@ -9,14 +9,14 @@ public final class n extends v.d.AbstractC0137d.a.b.AbstractC0140b { public final String b; /* renamed from: c reason: collision with root package name */ - public final w f1345c; + public final w f1346c; public final v.d.AbstractC0137d.a.b.AbstractC0140b d; public final int e; public n(String str, String str2, w wVar, v.d.AbstractC0137d.a.b.AbstractC0140b bVar, int i, a aVar) { this.a = str; this.b = str2; - this.f1345c = wVar; + this.f1346c = wVar; this.d = bVar; this.e = i; } @@ -30,7 +30,7 @@ public final class n extends v.d.AbstractC0137d.a.b.AbstractC0140b { @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0140b @NonNull public w b() { - return this.f1345c; + return this.f1346c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0140b @@ -60,14 +60,14 @@ public final class n extends v.d.AbstractC0137d.a.b.AbstractC0140b { return false; } v.d.AbstractC0137d.a.b.AbstractC0140b bVar2 = (v.d.AbstractC0137d.a.b.AbstractC0140b) obj; - return this.a.equals(bVar2.e()) && ((str = this.b) != null ? str.equals(bVar2.d()) : bVar2.d() == null) && this.f1345c.equals(bVar2.b()) && ((bVar = this.d) != null ? bVar.equals(bVar2.a()) : bVar2.a() == null) && this.e == bVar2.c(); + return this.a.equals(bVar2.e()) && ((str = this.b) != null ? str.equals(bVar2.d()) : bVar2.d() == null) && this.f1346c.equals(bVar2.b()) && ((bVar = this.d) != null ? bVar.equals(bVar2.a()) : bVar2.a() == null) && this.e == bVar2.c(); } public int hashCode() { int hashCode = (this.a.hashCode() ^ 1000003) * 1000003; String str = this.b; int i = 0; - int hashCode2 = (((hashCode ^ (str == null ? 0 : str.hashCode())) * 1000003) ^ this.f1345c.hashCode()) * 1000003; + int hashCode2 = (((hashCode ^ (str == null ? 0 : str.hashCode())) * 1000003) ^ this.f1346c.hashCode()) * 1000003; v.d.AbstractC0137d.a.b.AbstractC0140b bVar = this.d; if (bVar != null) { i = bVar.hashCode(); @@ -76,15 +76,15 @@ public final class n extends v.d.AbstractC0137d.a.b.AbstractC0140b { } public String toString() { - StringBuilder P = c.d.b.a.a.P("Exception{type="); - P.append(this.a); - P.append(", reason="); - P.append(this.b); - P.append(", frames="); - P.append(this.f1345c); - P.append(", causedBy="); - P.append(this.d); - P.append(", overflowCount="); - return c.d.b.a.a.z(P, this.e, "}"); + StringBuilder O = c.d.b.a.a.O("Exception{type="); + O.append(this.a); + O.append(", reason="); + O.append(this.b); + O.append(", frames="); + O.append(this.f1346c); + O.append(", causedBy="); + O.append(this.d); + O.append(", overflowCount="); + return c.d.b.a.a.z(O, this.e, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/o.java b/app/src/main/java/c/i/c/m/d/m/o.java index e8d7bdf2cb..2ced255c6e 100644 --- a/app/src/main/java/c/i/c/m/d/m/o.java +++ b/app/src/main/java/c/i/c/m/d/m/o.java @@ -8,18 +8,18 @@ public final class o extends v.d.AbstractC0137d.a.b.c { public final String b; /* renamed from: c reason: collision with root package name */ - public final long f1346c; + public final long f1347c; public o(String str, String str2, long j, a aVar) { this.a = str; this.b = str2; - this.f1346c = j; + this.f1347c = j; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.c @NonNull public long a() { - return this.f1346c; + return this.f1347c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.c @@ -42,20 +42,20 @@ public final class o extends v.d.AbstractC0137d.a.b.c { return false; } v.d.AbstractC0137d.a.b.c cVar = (v.d.AbstractC0137d.a.b.c) obj; - return this.a.equals(cVar.c()) && this.b.equals(cVar.b()) && this.f1346c == cVar.a(); + return this.a.equals(cVar.c()) && this.b.equals(cVar.b()) && this.f1347c == cVar.a(); } public int hashCode() { - long j = this.f1346c; + long j = this.f1347c; return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ ((int) (j ^ (j >>> 32))); } public String toString() { - StringBuilder P = c.d.b.a.a.P("Signal{name="); - P.append(this.a); - P.append(", code="); - P.append(this.b); - P.append(", address="); - return c.d.b.a.a.A(P, this.f1346c, "}"); + StringBuilder O = c.d.b.a.a.O("Signal{name="); + O.append(this.a); + O.append(", code="); + O.append(this.b); + O.append(", address="); + return c.d.b.a.a.A(O, this.f1347c, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/p.java b/app/src/main/java/c/i/c/m/d/m/p.java index 2fcf6a0926..e99e91a984 100644 --- a/app/src/main/java/c/i/c/m/d/m/p.java +++ b/app/src/main/java/c/i/c/m/d/m/p.java @@ -8,18 +8,18 @@ public final class p extends v.d.AbstractC0137d.a.b.AbstractC0141d { public final int b; /* renamed from: c reason: collision with root package name */ - public final w f1347c; + public final w f1348c; public p(String str, int i, w wVar, a aVar) { this.a = str; this.b = i; - this.f1347c = wVar; + this.f1348c = wVar; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0141d @NonNull public w a() { - return this.f1347c; + return this.f1348c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0141d @@ -41,21 +41,21 @@ public final class p extends v.d.AbstractC0137d.a.b.AbstractC0141d { return false; } v.d.AbstractC0137d.a.b.AbstractC0141d dVar = (v.d.AbstractC0137d.a.b.AbstractC0141d) obj; - return this.a.equals(dVar.c()) && this.b == dVar.b() && this.f1347c.equals(dVar.a()); + return this.a.equals(dVar.c()) && this.b == dVar.b() && this.f1348c.equals(dVar.a()); } public int hashCode() { - return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b) * 1000003) ^ this.f1347c.hashCode(); + return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ this.b) * 1000003) ^ this.f1348c.hashCode(); } public String toString() { - StringBuilder P = c.d.b.a.a.P("Thread{name="); - P.append(this.a); - P.append(", importance="); - P.append(this.b); - P.append(", frames="); - P.append(this.f1347c); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("Thread{name="); + O.append(this.a); + O.append(", importance="); + O.append(this.b); + O.append(", frames="); + O.append(this.f1348c); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/c/m/d/m/q.java b/app/src/main/java/c/i/c/m/d/m/q.java index 4189790328..b6e944981d 100644 --- a/app/src/main/java/c/i/c/m/d/m/q.java +++ b/app/src/main/java/c/i/c/m/d/m/q.java @@ -9,7 +9,7 @@ public final class q extends v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142 public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1348c; + public final String f1349c; public final long d; public final int e; @@ -19,7 +19,7 @@ public final class q extends v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142 public String b; /* renamed from: c reason: collision with root package name */ - public String f1349c; + public String f1350c; public Long d; public Integer e; @@ -35,7 +35,7 @@ public final class q extends v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142 str = c.d.b.a.a.u(str, " importance"); } if (str.isEmpty()) { - return new q(this.a.longValue(), this.b, this.f1349c, this.d.longValue(), this.e.intValue(), null); + return new q(this.a.longValue(), this.b, this.f1350c, this.d.longValue(), this.e.intValue(), null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -44,7 +44,7 @@ public final class q extends v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142 public q(long j, String str, String str2, long j2, int i, a aVar) { this.a = j; this.b = str; - this.f1348c = str2; + this.f1349c = str2; this.d = j2; this.e = i; } @@ -52,7 +52,7 @@ public final class q extends v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142 @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142a @Nullable public String a() { - return this.f1348c; + return this.f1349c; } @Override // c.i.c.m.d.m.v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142a @@ -85,28 +85,28 @@ public final class q extends v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142 return false; } v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142a aVar = (v.d.AbstractC0137d.a.b.AbstractC0141d.AbstractC0142a) obj; - return this.a == aVar.d() && this.b.equals(aVar.e()) && ((str = this.f1348c) != null ? str.equals(aVar.a()) : aVar.a() == null) && this.d == aVar.c() && this.e == aVar.b(); + return this.a == aVar.d() && this.b.equals(aVar.e()) && ((str = this.f1349c) != null ? str.equals(aVar.a()) : aVar.a() == null) && this.d == aVar.c() && this.e == aVar.b(); } public int hashCode() { long j = this.a; int hashCode = (((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003; - String str = this.f1348c; + String str = this.f1349c; int hashCode2 = str == null ? 0 : str.hashCode(); long j2 = this.d; return this.e ^ ((((hashCode ^ hashCode2) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003); } public String toString() { - StringBuilder P = c.d.b.a.a.P("Frame{pc="); - P.append(this.a); - P.append(", symbol="); - P.append(this.b); - P.append(", file="); - P.append(this.f1348c); - P.append(", offset="); - P.append(this.d); - P.append(", importance="); - return c.d.b.a.a.z(P, this.e, "}"); + StringBuilder O = c.d.b.a.a.O("Frame{pc="); + O.append(this.a); + O.append(", symbol="); + O.append(this.b); + O.append(", file="); + O.append(this.f1349c); + O.append(", offset="); + O.append(this.d); + O.append(", importance="); + return c.d.b.a.a.z(O, this.e, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/r.java b/app/src/main/java/c/i/c/m/d/m/r.java index a8db79559e..e6ff35a393 100644 --- a/app/src/main/java/c/i/c/m/d/m/r.java +++ b/app/src/main/java/c/i/c/m/d/m/r.java @@ -8,7 +8,7 @@ public final class r extends v.d.AbstractC0137d.b { public final int b; /* renamed from: c reason: collision with root package name */ - public final boolean f1350c; + public final boolean f1351c; public final int d; public final long e; public final long f; @@ -19,14 +19,14 @@ public final class r extends v.d.AbstractC0137d.b { public Integer b; /* renamed from: c reason: collision with root package name */ - public Boolean f1351c; + public Boolean f1352c; public Integer d; public Long e; public Long f; public v.d.AbstractC0137d.b a() { String str = this.b == null ? " batteryVelocity" : ""; - if (this.f1351c == null) { + if (this.f1352c == null) { str = c.d.b.a.a.u(str, " proximityOn"); } if (this.d == null) { @@ -39,7 +39,7 @@ public final class r extends v.d.AbstractC0137d.b { str = c.d.b.a.a.u(str, " diskUsed"); } if (str.isEmpty()) { - return new r(this.a, this.b.intValue(), this.f1351c.booleanValue(), this.d.intValue(), this.e.longValue(), this.f.longValue(), null); + return new r(this.a, this.b.intValue(), this.f1352c.booleanValue(), this.d.intValue(), this.e.longValue(), this.f.longValue(), null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -48,7 +48,7 @@ public final class r extends v.d.AbstractC0137d.b { public r(Double d, int i, boolean z2, int i2, long j, long j2, a aVar) { this.a = d; this.b = i; - this.f1350c = z2; + this.f1351c = z2; this.d = i2; this.e = j; this.f = j2; @@ -90,7 +90,7 @@ public final class r extends v.d.AbstractC0137d.b { v.d.AbstractC0137d.b bVar = (v.d.AbstractC0137d.b) obj; Double d = this.a; if (d != null ? d.equals(bVar.a()) : bVar.a() == null) { - if (this.b == bVar.b() && this.f1350c == bVar.f() && this.d == bVar.d() && this.e == bVar.e() && this.f == bVar.c()) { + if (this.b == bVar.b() && this.f1351c == bVar.f() && this.d == bVar.d() && this.e == bVar.e() && this.f == bVar.c()) { return true; } } @@ -99,30 +99,30 @@ public final class r extends v.d.AbstractC0137d.b { @Override // c.i.c.m.d.m.v.d.AbstractC0137d.b public boolean f() { - return this.f1350c; + return this.f1351c; } public int hashCode() { Double d = this.a; int hashCode = ((((d == null ? 0 : d.hashCode()) ^ 1000003) * 1000003) ^ this.b) * 1000003; - int i = this.f1350c ? 1231 : 1237; + int i = this.f1351c ? 1231 : 1237; long j = this.e; long j2 = this.f; return ((((((hashCode ^ i) * 1000003) ^ this.d) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32))); } public String toString() { - StringBuilder P = c.d.b.a.a.P("Device{batteryLevel="); - P.append(this.a); - P.append(", batteryVelocity="); - P.append(this.b); - P.append(", proximityOn="); - P.append(this.f1350c); - P.append(", orientation="); - P.append(this.d); - P.append(", ramUsed="); - P.append(this.e); - P.append(", diskUsed="); - return c.d.b.a.a.A(P, this.f, "}"); + StringBuilder O = c.d.b.a.a.O("Device{batteryLevel="); + O.append(this.a); + O.append(", batteryVelocity="); + O.append(this.b); + O.append(", proximityOn="); + O.append(this.f1351c); + O.append(", orientation="); + O.append(this.d); + O.append(", ramUsed="); + O.append(this.e); + O.append(", diskUsed="); + return c.d.b.a.a.A(O, this.f, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/s.java b/app/src/main/java/c/i/c/m/d/m/s.java index 95462b3940..68e10606de 100644 --- a/app/src/main/java/c/i/c/m/d/m/s.java +++ b/app/src/main/java/c/i/c/m/d/m/s.java @@ -31,6 +31,6 @@ public final class s extends v.d.AbstractC0137d.c { } public String toString() { - return c.d.b.a.a.H(c.d.b.a.a.P("Log{content="), this.a, "}"); + return c.d.b.a.a.G(c.d.b.a.a.O("Log{content="), this.a, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/t.java b/app/src/main/java/c/i/c/m/d/m/t.java index 8caece4c6c..416d6b608a 100644 --- a/app/src/main/java/c/i/c/m/d/m/t.java +++ b/app/src/main/java/c/i/c/m/d/m/t.java @@ -8,20 +8,20 @@ public final class t extends v.d.e { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1352c; + public final String f1353c; public final boolean d; public t(int i, String str, String str2, boolean z2, a aVar) { this.a = i; this.b = str; - this.f1352c = str2; + this.f1353c = str2; this.d = z2; } @Override // c.i.c.m.d.m.v.d.e @NonNull public String a() { - return this.f1352c; + return this.f1353c; } @Override // c.i.c.m.d.m.v.d.e @@ -48,21 +48,21 @@ public final class t extends v.d.e { return false; } v.d.e eVar = (v.d.e) obj; - return this.a == eVar.b() && this.b.equals(eVar.c()) && this.f1352c.equals(eVar.a()) && this.d == eVar.d(); + return this.a == eVar.b() && this.b.equals(eVar.c()) && this.f1353c.equals(eVar.a()) && this.d == eVar.d(); } public int hashCode() { - return ((((((this.a ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1352c.hashCode()) * 1000003) ^ (this.d ? 1231 : 1237); + return ((((((this.a ^ 1000003) * 1000003) ^ this.b.hashCode()) * 1000003) ^ this.f1353c.hashCode()) * 1000003) ^ (this.d ? 1231 : 1237); } public String toString() { - StringBuilder P = c.d.b.a.a.P("OperatingSystem{platform="); - P.append(this.a); - P.append(", version="); - P.append(this.b); - P.append(", buildVersion="); - P.append(this.f1352c); - P.append(", jailbroken="); - return c.d.b.a.a.L(P, this.d, "}"); + StringBuilder O = c.d.b.a.a.O("OperatingSystem{platform="); + O.append(this.a); + O.append(", version="); + O.append(this.b); + O.append(", buildVersion="); + O.append(this.f1353c); + O.append(", jailbroken="); + return c.d.b.a.a.K(O, this.d, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/u.java b/app/src/main/java/c/i/c/m/d/m/u.java index 9e0ce58712..b952787fdb 100644 --- a/app/src/main/java/c/i/c/m/d/m/u.java +++ b/app/src/main/java/c/i/c/m/d/m/u.java @@ -31,6 +31,6 @@ public final class u extends v.d.f { } public String toString() { - return c.d.b.a.a.H(c.d.b.a.a.P("User{identifier="), this.a, "}"); + return c.d.b.a.a.G(c.d.b.a.a.O("User{identifier="), this.a, "}"); } } diff --git a/app/src/main/java/c/i/c/m/d/m/x/h.java b/app/src/main/java/c/i/c/m/d/m/x/h.java index a04bb81ceb..904784878f 100644 --- a/app/src/main/java/c/i/c/m/d/m/x/h.java +++ b/app/src/main/java/c/i/c/m/d/m/x/h.java @@ -191,7 +191,7 @@ public class h { } else if (c3 != 5) { jsonReader.skipValue(); } else { - bVar2.f1351c = Boolean.valueOf(jsonReader.nextBoolean()); + bVar2.f1352c = Boolean.valueOf(jsonReader.nextBoolean()); } } jsonReader.endObject(); @@ -574,7 +574,7 @@ public class h { bVar.a = Long.valueOf(jsonReader.nextLong()); break; case 3: - bVar.f1349c = jsonReader.nextString(); + bVar.f1350c = jsonReader.nextString(); break; case 4: bVar.e = Integer.valueOf(jsonReader.nextInt()); @@ -711,7 +711,7 @@ public class h { bVar.d = nextString4; break; case 5: - bVar.f1334c = Integer.valueOf(jsonReader.nextInt()); + bVar.f1335c = Integer.valueOf(jsonReader.nextInt()); break; case 6: String nextString5 = jsonReader.nextString(); @@ -810,7 +810,7 @@ public class h { switch (c3) { case 0: str = str3; - bVar2.f1336c = Long.valueOf(jsonReader.nextLong()); + bVar2.f1337c = Long.valueOf(jsonReader.nextLong()); break; case 1: str = str3; @@ -914,7 +914,7 @@ public class h { bVar3.e = Long.valueOf(jsonReader.nextLong()); break; case 5: - bVar3.f1339c = Integer.valueOf(jsonReader.nextInt()); + bVar3.f1340c = Integer.valueOf(jsonReader.nextInt()); break; case 6: String nextString7 = jsonReader.nextString(); diff --git a/app/src/main/java/c/i/c/m/d/n/a.java b/app/src/main/java/c/i/c/m/d/n/a.java index ea2ddd6f10..ba4112619d 100644 --- a/app/src/main/java/c/i/c/m/d/n/a.java +++ b/app/src/main/java/c/i/c/m/d/n/a.java @@ -26,7 +26,7 @@ public class a { public final int b; /* renamed from: c reason: collision with root package name */ - public final String f1353c; + public final String f1354c; public final Map d; public final Map e; public MultipartBody.a f = null; @@ -42,7 +42,7 @@ public class a { /* JADX WARN: Incorrect types in method signature: (Ljava/lang/Object;Ljava/lang/String;Ljava/util/Map;)V */ public a(int i, String str, Map map) { this.b = i; - this.f1353c = str; + this.f1354c = str; this.d = map; this.e = new HashMap(); } @@ -58,7 +58,7 @@ public class a { } else { aVar.b("Cache-Control", dVar2); } - String str = this.f1353c; + String str = this.f1354c; m.checkParameterIsNotNull(str, "$this$toHttpUrlOrNull"); String str2 = null; try { @@ -105,7 +105,7 @@ public class a { } public a c(String str, String str2, String str3, File file) { - MediaType.a aVar = MediaType.f2945c; + MediaType.a aVar = MediaType.f2948c; RequestBody create = RequestBody.create(MediaType.a.b(str3), file); if (this.f == null) { MultipartBody.a aVar2 = new MultipartBody.a(); diff --git a/app/src/main/java/c/i/c/m/d/n/c.java b/app/src/main/java/c/i/c/m/d/n/c.java index ed2e2389f1..89a10b8e5f 100644 --- a/app/src/main/java/c/i/c/m/d/n/c.java +++ b/app/src/main/java/c/i/c/m/d/n/c.java @@ -7,11 +7,11 @@ public class c { public String b; /* renamed from: c reason: collision with root package name */ - public Headers f1354c; + public Headers f1355c; public c(int i, String str, Headers headers) { this.a = i; this.b = str; - this.f1354c = headers; + this.f1355c = headers; } } diff --git a/app/src/main/java/c/i/c/m/d/o/g.java b/app/src/main/java/c/i/c/m/d/o/g.java index 3b96e9d2e4..1d480d2c0b 100644 --- a/app/src/main/java/c/i/c/m/d/o/g.java +++ b/app/src/main/java/c/i/c/m/d/o/g.java @@ -27,7 +27,7 @@ public class g { public static final int b = 15; /* renamed from: c reason: collision with root package name */ - public static final h f1355c = new h(); + public static final h f1356c = new h(); public static final Comparator d = e.i; public static final FilenameFilter e = f.a; @NonNull diff --git a/app/src/main/java/c/i/c/m/d/p/b.java b/app/src/main/java/c/i/c/m/d/p/b.java index 176528524b..eaba6f145c 100644 --- a/app/src/main/java/c/i/c/m/d/p/b.java +++ b/app/src/main/java/c/i/c/m/d/p/b.java @@ -24,9 +24,9 @@ public class b extends FileOutputStream { super(new File(file, c.d.b.a.a.u(str, ".cls_temp"))); StringBuilder sb = new StringBuilder(); sb.append(file); - String H = c.d.b.a.a.H(sb, File.separator, str); - this.j = H; - this.k = new File(c.d.b.a.a.u(H, ".cls_temp")); + String G = c.d.b.a.a.G(sb, File.separator, str); + this.j = G; + this.k = new File(c.d.b.a.a.u(G, ".cls_temp")); } public void a() throws IOException { diff --git a/app/src/main/java/c/i/c/m/d/p/d.java b/app/src/main/java/c/i/c/m/d/p/d.java index 2b6a22296a..9eae81ac36 100644 --- a/app/src/main/java/c/i/c/m/d/p/d.java +++ b/app/src/main/java/c/i/c/m/d/p/d.java @@ -29,7 +29,7 @@ public class d { if (str != null) { b2 += c.b(3, a.a(str)); } - for (StackTraceElement stackTraceElement : eVar.f1365c) { + for (StackTraceElement stackTraceElement : eVar.f1366c) { int h = h(stackTraceElement, true); b2 += c.d(h) + c.e(4) + h; } @@ -164,7 +164,7 @@ public class d { cVar.l(3, a.a(str)); } int i4 = 0; - for (StackTraceElement stackTraceElement : eVar.f1365c) { + for (StackTraceElement stackTraceElement : eVar.f1366c) { k(cVar, 4, stackTraceElement, true); } e eVar2 = eVar.d; diff --git a/app/src/main/java/c/i/c/m/d/q/b.java b/app/src/main/java/c/i/c/m/d/q/b.java index 196942d3f1..75e157bd8c 100644 --- a/app/src/main/java/c/i/c/m/d/q/b.java +++ b/app/src/main/java/c/i/c/m/d/q/b.java @@ -13,7 +13,7 @@ public class b { @Nullable /* renamed from: c reason: collision with root package name */ - public final String f1356c; + public final String f1357c; public final String d; public final int e; public final a f; @@ -59,10 +59,10 @@ public class b { public final void b(List list, boolean z2) { c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P("Starting report processing in "); - P.append(this.k); - P.append(" second(s)..."); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Starting report processing in "); + O.append(this.k); + O.append(" second(s)..."); + bVar.b(O.toString()); float f = this.k; if (f > 0.0f) { try { @@ -76,10 +76,10 @@ public class b { int i = 0; while (list.size() > 0 && !x.this.p()) { c.i.c.m.d.b bVar2 = c.i.c.m.d.b.a; - StringBuilder P2 = c.d.b.a.a.P("Attempting to send "); - P2.append(list.size()); - P2.append(" report(s)"); - bVar2.b(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Attempting to send "); + O2.append(list.size()); + O2.append(" report(s)"); + bVar2.b(O2.toString()); ArrayList arrayList = new ArrayList(); for (c.i.c.m.d.q.c.c cVar : list) { if (!b.this.a(cVar, z2)) { @@ -109,7 +109,7 @@ public class b { public b(@Nullable String str, String str2, int i, a aVar, c.i.c.m.d.q.d.b bVar, a aVar2) { if (bVar != null) { this.b = bVar; - this.f1356c = str; + this.f1357c = str; this.d = str2; this.e = i; this.f = aVar; @@ -123,7 +123,7 @@ public class b { public boolean a(c.i.c.m.d.q.c.c cVar, boolean z2) { boolean z3; try { - c.i.c.m.d.q.c.a aVar = new c.i.c.m.d.q.c.a(this.f1356c, this.d, cVar); + c.i.c.m.d.q.c.a aVar = new c.i.c.m.d.q.c.a(this.f1357c, this.d, cVar); int i = this.e; if (i == 3) { c.i.c.m.d.b.a.b("Report configured to be sent via DataTransport."); diff --git a/app/src/main/java/c/i/c/m/d/q/c/a.java b/app/src/main/java/c/i/c/m/d/q/c/a.java index 4529b1f5f7..347eb2025f 100644 --- a/app/src/main/java/c/i/c/m/d/q/c/a.java +++ b/app/src/main/java/c/i/c/m/d/q/c/a.java @@ -8,11 +8,11 @@ public class a { public final String b; /* renamed from: c reason: collision with root package name */ - public final c f1357c; + public final c f1358c; public a(@Nullable String str, String str2, c cVar) { this.a = str; this.b = str2; - this.f1357c = cVar; + this.f1358c = cVar; } } diff --git a/app/src/main/java/c/i/c/m/d/q/c/b.java b/app/src/main/java/c/i/c/m/d/q/c/b.java index 9b80dc81ff..ac43de8493 100644 --- a/app/src/main/java/c/i/c/m/d/q/c/b.java +++ b/app/src/main/java/c/i/c/m/d/q/c/b.java @@ -46,15 +46,15 @@ public class b implements c { File[] e = e(); for (File file : e) { c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = a.P("Removing native report file at "); - P.append(file.getPath()); - bVar.b(P.toString()); + StringBuilder O = a.O("Removing native report file at "); + O.append(file.getPath()); + bVar.b(O.toString()); file.delete(); } c.i.c.m.d.b bVar2 = c.i.c.m.d.b.a; - StringBuilder P2 = a.P("Removing native report directory at "); - P2.append(this.a); - bVar2.b(P2.toString()); + StringBuilder O2 = a.O("Removing native report directory at "); + O2.append(this.a); + bVar2.b(O2.toString()); this.a.delete(); } } diff --git a/app/src/main/java/c/i/c/m/d/q/c/d.java b/app/src/main/java/c/i/c/m/d/q/c/d.java index 5f6153c5ec..5042ff9f7a 100644 --- a/app/src/main/java/c/i/c/m/d/q/c/d.java +++ b/app/src/main/java/c/i/c/m/d/q/c/d.java @@ -12,12 +12,12 @@ public class d implements c { public final File[] b; /* renamed from: c reason: collision with root package name */ - public final Map f1358c; + public final Map f1359c; public d(File file, Map map) { this.a = file; this.b = new File[]{file}; - this.f1358c = new HashMap(map); + this.f1359c = new HashMap(map); } @Override // c.i.c.m.d.q.c.c @@ -28,7 +28,7 @@ public class d implements c { @Override // c.i.c.m.d.q.c.c public Map b() { - return Collections.unmodifiableMap(this.f1358c); + return Collections.unmodifiableMap(this.f1359c); } @Override // c.i.c.m.d.q.c.c @@ -54,9 +54,9 @@ public class d implements c { @Override // c.i.c.m.d.q.c.c public void remove() { b bVar = b.a; - StringBuilder P = a.P("Removing report at "); - P.append(this.a.getPath()); - bVar.b(P.toString()); + StringBuilder O = a.O("Removing report at "); + O.append(this.a.getPath()); + bVar.b(O.toString()); this.a.delete(); } } diff --git a/app/src/main/java/c/i/c/m/d/q/d/a.java b/app/src/main/java/c/i/c/m/d/q/d/a.java index a86f84ef87..72d11607ae 100644 --- a/app/src/main/java/c/i/c/m/d/q/d/a.java +++ b/app/src/main/java/c/i/c/m/d/q/d/a.java @@ -13,7 +13,7 @@ public class a implements b { @Override // c.i.c.m.d.q.d.b public boolean a(c.i.c.m.d.q.c.a aVar, boolean z2) { - int h = b.h(aVar.f1357c.d()); + int h = b.h(aVar.f1358c.d()); if (h == 0) { this.a.a(aVar, z2); return true; diff --git a/app/src/main/java/c/i/c/m/d/q/d/c.java b/app/src/main/java/c/i/c/m/d/q/d/c.java index 29f5843276..0c4f5dd9d7 100644 --- a/app/src/main/java/c/i/c/m/d/q/d/c.java +++ b/app/src/main/java/c/i/c/m/d/q/d/c.java @@ -22,41 +22,41 @@ public class c extends a implements b { b.e.put("X-CRASHLYTICS-GOOGLE-APP-ID", aVar.b); b.e.put("X-CRASHLYTICS-API-CLIENT-TYPE", "android"); b.e.put("X-CRASHLYTICS-API-CLIENT-VERSION", this.f); - for (Map.Entry entry : aVar.f1357c.b().entrySet()) { + for (Map.Entry entry : aVar.f1358c.b().entrySet()) { b.e.put(entry.getKey(), entry.getValue()); } - c.i.c.m.d.q.c.c cVar = aVar.f1357c; + c.i.c.m.d.q.c.c cVar = aVar.f1358c; b.b("report[identifier]", cVar.a()); if (cVar.e().length == 1) { c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P("Adding single file "); - P.append(cVar.f()); - P.append(" to report "); - P.append(cVar.a()); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Adding single file "); + O.append(cVar.f()); + O.append(" to report "); + O.append(cVar.a()); + bVar.b(O.toString()); b.c("report[file]", cVar.f(), "application/octet-stream", cVar.c()); } else { File[] e = cVar.e(); int i = 0; for (File file : e) { c.i.c.m.d.b bVar2 = c.i.c.m.d.b.a; - StringBuilder P2 = c.d.b.a.a.P("Adding file "); - P2.append(file.getName()); - P2.append(" to report "); - P2.append(cVar.a()); - bVar2.b(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Adding file "); + O2.append(file.getName()); + O2.append(" to report "); + O2.append(cVar.a()); + bVar2.b(O2.toString()); b.c("report[file" + i + "]", file.getName(), "application/octet-stream", file); i++; } } c.i.c.m.d.b bVar3 = c.i.c.m.d.b.a; - StringBuilder P3 = c.d.b.a.a.P("Sending report to: "); - P3.append(this.b); - bVar3.b(P3.toString()); + StringBuilder O3 = c.d.b.a.a.O("Sending report to: "); + O3.append(this.b); + bVar3.b(O3.toString()); try { c.i.c.m.d.n.c a = b.a(); int i2 = a.a; - bVar3.b("Create report request ID: " + a.f1354c.c("X-REQUEST-ID")); + bVar3.b("Create report request ID: " + a.f1355c.c("X-REQUEST-ID")); bVar3.b("Result was: " + i2); return c.i.a.f.e.o.c.f0(i2) == 0; } catch (IOException e2) { diff --git a/app/src/main/java/c/i/c/m/d/q/d/d.java b/app/src/main/java/c/i/c/m/d/q/d/d.java index 9321854a00..f74d2afed6 100644 --- a/app/src/main/java/c/i/c/m/d/q/d/d.java +++ b/app/src/main/java/c/i/c/m/d/q/d/d.java @@ -24,7 +24,7 @@ public class d extends a implements b { b.e.put("X-CRASHLYTICS-API-CLIENT-VERSION", this.f); b.e.put("X-CRASHLYTICS-GOOGLE-APP-ID", str); String str2 = aVar.a; - c cVar = aVar.f1357c; + c cVar = aVar.f1358c; if (str2 != null) { b.b("org_id", str2); } @@ -54,9 +54,9 @@ public class d extends a implements b { } } c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P("Sending report to: "); - P.append(this.b); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Sending report to: "); + O.append(this.b); + bVar.b(O.toString()); try { int i = b.a().a; bVar.b("Result was: " + i); diff --git a/app/src/main/java/c/i/c/m/d/r/c.java b/app/src/main/java/c/i/c/m/d/r/c.java index 53a1927649..9c31721b2c 100644 --- a/app/src/main/java/c/i/c/m/d/r/c.java +++ b/app/src/main/java/c/i/c/m/d/r/c.java @@ -10,7 +10,7 @@ public class c { public static final String b = a("hts/cahyiseot-agolai.o/1frlglgc/aclg", "tp:/rsltcrprsp.ogepscmv/ieo/eaybtho"); /* renamed from: c reason: collision with root package name */ - public static final String f1359c = a("AzSBpY4F0rHiHFdinTvM", "IayrSTFL9eJ69YeSUO2"); + public static final String f1360c = a("AzSBpY4F0rHiHFdinTvM", "IayrSTFL9eJ69YeSUO2"); public static final e d = b.a; public final f e; diff --git a/app/src/main/java/c/i/c/m/d/s/c.java b/app/src/main/java/c/i/c/m/d/s/c.java index e4445710b9..27bd68f1ee 100644 --- a/app/src/main/java/c/i/c/m/d/s/c.java +++ b/app/src/main/java/c/i/c/m/d/s/c.java @@ -30,7 +30,7 @@ public class c implements d { public final g b; /* renamed from: c reason: collision with root package name */ - public final e f1360c; + public final e f1361c; public final e1 d; public final a e; public final d f; @@ -65,7 +65,7 @@ public class c implements d { cVar2.f.b("Requesting settings from " + cVar2.b); cVar2.f.b("Settings query params were: " + f); c.i.c.m.d.n.c a = c2.a(); - cVar2.f.b("Settings request ID: " + a.f1354c.c("X-REQUEST-ID")); + cVar2.f.b("Settings request ID: " + a.f1355c.c("X-REQUEST-ID")); jSONObject = cVar2.g(a); } catch (IOException e2) { if (cVar2.f.a(6)) { @@ -74,7 +74,7 @@ public class c implements d { jSONObject = null; } if (jSONObject != null) { - c.i.c.m.d.s.h.f a2 = c.this.f1360c.a(jSONObject); + c.i.c.m.d.s.h.f a2 = c.this.f1361c.a(jSONObject); a aVar = c.this.e; long j = a2.d; Objects.requireNonNull(aVar); @@ -148,7 +148,7 @@ public class c implements d { this.a = context; this.b = gVar; this.d = e1Var; - this.f1360c = eVar; + this.f1361c = eVar; this.e = aVar; this.f = dVar; this.g = q0Var; @@ -171,7 +171,7 @@ public class c implements d { } JSONObject a2 = this.e.a(); if (a2 != null) { - c.i.c.m.d.s.h.f a3 = this.f1360c.a(a2); + c.i.c.m.d.s.h.f a3 = this.f1361c.a(a2); if (a3 != null) { e(a2, "Loaded cached settings: "); Objects.requireNonNull(this.d); @@ -233,8 +233,8 @@ public class c implements d { public final void e(JSONObject jSONObject, String str) throws JSONException { c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P(str); - P.append(jSONObject.toString()); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O(str); + O.append(jSONObject.toString()); + bVar.b(O.toString()); } } diff --git a/app/src/main/java/c/i/c/m/d/s/h/a.java b/app/src/main/java/c/i/c/m/d/s/h/a.java index 45d08dd9fd..a606bbbd1e 100644 --- a/app/src/main/java/c/i/c/m/d/s/h/a.java +++ b/app/src/main/java/c/i/c/m/d/s/h/a.java @@ -5,7 +5,7 @@ public class a { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1361c; + public final String f1362c; public final String d; public final String e; public final String f; @@ -16,7 +16,7 @@ public class a { public a(String str, String str2, String str3, String str4, String str5, String str6, String str7, int i, String str8, String str9) { this.a = str; this.b = str2; - this.f1361c = str3; + this.f1362c = str3; this.d = str4; this.e = str5; this.f = str6; diff --git a/app/src/main/java/c/i/c/m/d/s/h/b.java b/app/src/main/java/c/i/c/m/d/s/h/b.java index eef5e36e5f..92ea7f935e 100644 --- a/app/src/main/java/c/i/c/m/d/s/h/b.java +++ b/app/src/main/java/c/i/c/m/d/s/h/b.java @@ -5,7 +5,7 @@ public class b { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1362c; + public final String f1363c; public final String d; public final String e; public final boolean f; @@ -15,7 +15,7 @@ public class b { public b(String str, String str2, String str3, String str4, String str5, String str6, boolean z2, int i, int i2) { this.a = str; this.b = str2; - this.f1362c = str3; + this.f1363c = str3; this.d = str4; this.e = str6; this.f = z2; @@ -26,7 +26,7 @@ public class b { public b(String str, String str2, String str3, String str4, boolean z2) { this.a = str; this.b = str2; - this.f1362c = str3; + this.f1363c = str3; this.d = str4; this.e = null; this.f = z2; diff --git a/app/src/main/java/c/i/c/m/d/s/h/f.java b/app/src/main/java/c/i/c/m/d/s/h/f.java index c041a60a8d..fda64483f4 100644 --- a/app/src/main/java/c/i/c/m/d/s/h/f.java +++ b/app/src/main/java/c/i/c/m/d/s/h/f.java @@ -5,19 +5,19 @@ public class f implements e { public final d b; /* renamed from: c reason: collision with root package name */ - public final c f1363c; + public final c f1364c; public final long d; public f(long j, b bVar, d dVar, c cVar, int i, int i2) { this.d = j; this.a = bVar; this.b = dVar; - this.f1363c = cVar; + this.f1364c = cVar; } @Override // c.i.c.m.d.s.h.e public c a() { - return this.f1363c; + return this.f1364c; } @Override // c.i.c.m.d.s.h.e diff --git a/app/src/main/java/c/i/c/m/d/s/h/g.java b/app/src/main/java/c/i/c/m/d/s/h/g.java index e1d6e84837..e2a7dcb395 100644 --- a/app/src/main/java/c/i/c/m/d/s/h/g.java +++ b/app/src/main/java/c/i/c/m/d/s/h/g.java @@ -7,7 +7,7 @@ public class g { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1364c; + public final String f1365c; public final String d; public final w0 e; public final String f; @@ -18,7 +18,7 @@ public class g { public g(String str, String str2, String str3, String str4, w0 w0Var, String str5, String str6, String str7, int i) { this.a = str; this.b = str2; - this.f1364c = str3; + this.f1365c = str3; this.d = str4; this.e = w0Var; this.f = str5; diff --git a/app/src/main/java/c/i/c/m/d/s/i/a.java b/app/src/main/java/c/i/c/m/d/s/i/a.java index 143ececd93..572dbc6a1a 100644 --- a/app/src/main/java/c/i/c/m/d/s/i/a.java +++ b/app/src/main/java/c/i/c/m/d/s/i/a.java @@ -23,7 +23,7 @@ public abstract class a extends c.i.c.m.d.k.a { b.e.put("X-CRASHLYTICS-API-CLIENT-TYPE", "android"); b.e.put("X-CRASHLYTICS-API-CLIENT-VERSION", this.f); b.b("org_id", aVar.a); - b.b("app[identifier]", aVar.f1361c); + b.b("app[identifier]", aVar.f1362c); b.b("app[name]", aVar.g); b.b("app[display_version]", aVar.d); b.b("app[build_version]", aVar.e); @@ -34,14 +34,14 @@ public abstract class a extends c.i.c.m.d.k.a { b.b("app[instance_identifier]", aVar.f); } c.i.c.m.d.b bVar = c.i.c.m.d.b.a; - StringBuilder P = c.d.b.a.a.P("Sending app info to "); - P.append(this.b); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Sending app info to "); + O.append(this.b); + bVar.b(O.toString()); try { c a = b.a(); int i = a.a; String str = ShareTarget.METHOD_POST.equalsIgnoreCase(c.c.a.y.b.n(b.b)) ? "Create" : "Update"; - bVar.b(str + " app request ID: " + a.f1354c.c("X-REQUEST-ID")); + bVar.b(str + " app request ID: " + a.f1355c.c("X-REQUEST-ID")); StringBuilder sb = new StringBuilder(); sb.append("Result was "); sb.append(i); diff --git a/app/src/main/java/c/i/c/m/d/s/i/c.java b/app/src/main/java/c/i/c/m/d/s/i/c.java index 459566d062..f4fa5a4dbb 100644 --- a/app/src/main/java/c/i/c/m/d/s/i/c.java +++ b/app/src/main/java/c/i/c/m/d/s/i/c.java @@ -26,7 +26,7 @@ public class c extends a implements d { e(aVar, "X-CRASHLYTICS-API-CLIENT-VERSION", "17.3.0"); e(aVar, "Accept", RestAPIBuilder.CONTENT_TYPE_JSON); e(aVar, "X-CRASHLYTICS-DEVICE-MODEL", gVar.b); - e(aVar, "X-CRASHLYTICS-OS-BUILD-VERSION", gVar.f1364c); + e(aVar, "X-CRASHLYTICS-OS-BUILD-VERSION", gVar.f1365c); e(aVar, "X-CRASHLYTICS-OS-DISPLAY-VERSION", gVar.d); e(aVar, "X-CRASHLYTICS-INSTALLATION-ID", ((v0) gVar.e).b()); return aVar; @@ -60,17 +60,17 @@ public class c extends a implements d { return new JSONObject(str); } catch (Exception e) { b bVar2 = this.f; - StringBuilder P = c.d.b.a.a.P("Failed to parse settings JSON from "); - P.append(this.b); - bVar2.c(P.toString(), e); - c.d.b.a.a.k0("Settings response ", str, this.f); + StringBuilder O = c.d.b.a.a.O("Failed to parse settings JSON from "); + O.append(this.b); + bVar2.c(O.toString(), e); + c.d.b.a.a.j0("Settings response ", str, this.f); return null; } } else { b bVar3 = this.f; - StringBuilder P2 = c.d.b.a.a.P("Failed to retrieve settings from "); - P2.append(this.b); - bVar3.d(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Failed to retrieve settings from "); + O2.append(this.b); + bVar3.d(O2.toString()); return null; } } diff --git a/app/src/main/java/c/i/c/m/d/t/e.java b/app/src/main/java/c/i/c/m/d/t/e.java index 5132342404..a4d5266bdd 100644 --- a/app/src/main/java/c/i/c/m/d/t/e.java +++ b/app/src/main/java/c/i/c/m/d/t/e.java @@ -5,13 +5,13 @@ public class e { public final String b; /* renamed from: c reason: collision with root package name */ - public final StackTraceElement[] f1365c; + public final StackTraceElement[] f1366c; public final e d; public e(Throwable th, d dVar) { this.a = th.getLocalizedMessage(); this.b = th.getClass().getName(); - this.f1365c = dVar.a(th.getStackTrace()); + this.f1366c = dVar.a(th.getStackTrace()); Throwable cause = th.getCause(); this.d = cause != null ? new e(cause, dVar) : null; } diff --git a/app/src/main/java/c/i/c/m/d/u/a.java b/app/src/main/java/c/i/c/m/d/u/a.java index a82986739f..65ec7ec339 100644 --- a/app/src/main/java/c/i/c/m/d/u/a.java +++ b/app/src/main/java/c/i/c/m/d/u/a.java @@ -9,7 +9,7 @@ public class a { public boolean b = false; /* renamed from: c reason: collision with root package name */ - public String f1366c; + public String f1367c; public a(Context context) { this.a = context; @@ -22,14 +22,14 @@ public class a { int n = h.n(context, "com.google.firebase.crashlytics.unity_version", "string"); if (n != 0) { str = context.getResources().getString(n); - c.d.b.a.a.k0("Unity Editor version is: ", str, b.a); + c.d.b.a.a.j0("Unity Editor version is: ", str, b.a); } else { str = null; } - this.f1366c = str; + this.f1367c = str; this.b = true; } - String str2 = this.f1366c; + String str2 = this.f1367c; if (str2 != null) { return str2; } diff --git a/app/src/main/java/c/i/c/m/e/a.java b/app/src/main/java/c/i/c/m/e/a.java index 5b40560b73..5ced6c43d8 100644 --- a/app/src/main/java/c/i/c/m/e/a.java +++ b/app/src/main/java/c/i/c/m/e/a.java @@ -19,12 +19,12 @@ public class a implements e { public final Context b; /* renamed from: c reason: collision with root package name */ - public final d f1367c; + public final d f1368c; public final f d; public a(Context context, d dVar, f fVar) { this.b = context; - this.f1367c = dVar; + this.f1368c = dVar; this.d = fVar; } @@ -47,18 +47,18 @@ public class a implements e { File a2 = this.d.a(str); File file = new File(a2, "pending"); b bVar = b.a; - StringBuilder P = c.d.b.a.a.P("Minidump directory: "); - P.append(file.getAbsolutePath()); - bVar.b(P.toString()); + StringBuilder O = c.d.b.a.a.O("Minidump directory: "); + O.append(file.getAbsolutePath()); + bVar.b(O.toString()); File b = b(file, ".dmp"); - StringBuilder P2 = c.d.b.a.a.P("Minidump "); - P2.append((b == null || !b.exists()) ? "does not exist" : "exists"); - bVar.b(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Minidump "); + O2.append((b == null || !b.exists()) ? "does not exist" : "exists"); + bVar.b(O2.toString()); g.b bVar2 = new g.b(); if (a2 != null && a2.exists() && file.exists()) { bVar2.a = b(file, ".dmp"); bVar2.b = b(a2, ".device_info"); - bVar2.f1369c = new File(a2, "session.json"); + bVar2.f1370c = new File(a2, "session.json"); bVar2.d = new File(a2, "app.json"); bVar2.e = new File(a2, "device.json"); bVar2.f = new File(a2, "os.json"); diff --git a/app/src/main/java/c/i/c/m/e/c.java b/app/src/main/java/c/i/c/m/e/c.java index 2e8988d34e..3fe959fe9a 100644 --- a/app/src/main/java/c/i/c/m/e/c.java +++ b/app/src/main/java/c/i/c/m/e/c.java @@ -106,7 +106,7 @@ public class c implements a { boolean z2 = false; if (a != null) { try { - z2 = ((JniNativeApi) aVar.f1367c).a(a.getCanonicalPath(), aVar.b.getAssets()); + z2 = ((JniNativeApi) aVar.f1368c).a(a.getCanonicalPath(), aVar.b.getAssets()); } catch (IOException e) { if (b.a.a(6)) { Log.e("FirebaseCrashlytics", "Error initializing CrashlyticsNdk", e); @@ -114,9 +114,9 @@ public class c implements a { } } b bVar = b.a; - StringBuilder P = c.d.b.a.a.P("Crashlytics NDK initialization "); - P.append(z2 ? "successful" : "FAILED"); - bVar.f(P.toString()); + StringBuilder O = c.d.b.a.a.O("Crashlytics NDK initialization "); + O.append(z2 ? "successful" : "FAILED"); + bVar.f(O.toString()); return z2; } } diff --git a/app/src/main/java/c/i/c/m/e/g.java b/app/src/main/java/c/i/c/m/e/g.java index a609a13526..afda09d6aa 100644 --- a/app/src/main/java/c/i/c/m/e/g.java +++ b/app/src/main/java/c/i/c/m/e/g.java @@ -7,7 +7,7 @@ public final class g { public final File b; /* renamed from: c reason: collision with root package name */ - public final File f1368c; + public final File f1369c; public final File d; public final File e; public final File f; @@ -18,7 +18,7 @@ public final class g { public File b; /* renamed from: c reason: collision with root package name */ - public File f1369c; + public File f1370c; public File d; public File e; public File f; @@ -27,7 +27,7 @@ public final class g { public g(b bVar, a aVar) { this.a = bVar.a; this.b = bVar.b; - this.f1368c = bVar.f1369c; + this.f1369c = bVar.f1370c; this.d = bVar.d; this.e = bVar.e; this.f = bVar.f; diff --git a/app/src/main/java/c/i/c/m/e/h.java b/app/src/main/java/c/i/c/m/e/h.java index d1027fd72c..38312b2f28 100644 --- a/app/src/main/java/c/i/c/m/e/h.java +++ b/app/src/main/java/c/i/c/m/e/h.java @@ -32,7 +32,7 @@ public class h implements d { @Override // c.i.c.m.d.d public File e() { - return this.a.f1368c; + return this.a.f1369c; } @Override // c.i.c.m.d.d diff --git a/app/src/main/java/c/i/c/o/b/a.java b/app/src/main/java/c/i/c/o/b/a.java index 5eadcd1730..f4fe01a2d2 100644 --- a/app/src/main/java/c/i/c/o/b/a.java +++ b/app/src/main/java/c/i/c/o/b/a.java @@ -4,47 +4,47 @@ import android.net.Uri; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.firebase.dynamiclinks.internal.DynamicLinkData; /* compiled from: com.google.firebase:firebase-dynamic-links@@19.1.1 */ public final class a implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final DynamicLinkData createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; String str2 = null; Bundle bundle = null; Uri uri = null; long j = 0; int i = 0; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); switch (65535 & readInt) { case 1: - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); break; case 2: - str2 = AnimatableValueParser.T(parcel, readInt); + str2 = d.T(parcel, readInt); break; case 3: - i = AnimatableValueParser.j2(parcel, readInt); + i = d.G1(parcel, readInt); break; case 4: - j = AnimatableValueParser.k2(parcel, readInt); + j = d.H1(parcel, readInt); break; case 5: - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); break; case 6: - uri = (Uri) AnimatableValueParser.S(parcel, readInt, Uri.CREATOR); + uri = (Uri) d.S(parcel, readInt, Uri.CREATOR); break; default: - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); break; } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new DynamicLinkData(str, str2, i, j, bundle, uri); } diff --git a/app/src/main/java/c/i/c/o/b/i.java b/app/src/main/java/c/i/c/o/b/i.java index 892e62ac93..04d67c154d 100644 --- a/app/src/main/java/c/i/c/o/b/i.java +++ b/app/src/main/java/c/i/c/o/b/i.java @@ -10,12 +10,12 @@ import com.google.firebase.dynamiclinks.PendingDynamicLinkData; public final class i extends p { /* renamed from: c reason: collision with root package name */ - public final String f1370c; + public final String f1371c; @Nullable public final a d; public i(a aVar, String str) { - this.f1370c = str; + this.f1371c = str; this.d = aVar; } @@ -24,7 +24,7 @@ public final class i extends p { public final /* synthetic */ void c(d dVar, TaskCompletionSource taskCompletionSource) throws RemoteException { d dVar2 = dVar; try { - dVar2.w().a0(new g(this.d, taskCompletionSource), this.f1370c); + dVar2.w().a0(new g(this.d, taskCompletionSource), this.f1371c); } catch (RemoteException unused) { } } diff --git a/app/src/main/java/c/i/c/o/b/m.java b/app/src/main/java/c/i/c/o/b/m.java index 3b84484c0e..b569f46f26 100644 --- a/app/src/main/java/c/i/c/o/b/m.java +++ b/app/src/main/java/c/i/c/o/b/m.java @@ -3,7 +3,7 @@ package c.i.c.o.b; import android.net.Uri; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.firebase.dynamiclinks.internal.zzo; import com.google.firebase.dynamiclinks.internal.zzr; import java.util.ArrayList; @@ -12,24 +12,24 @@ public final class m implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzo createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Uri uri = null; Uri uri2 = null; ArrayList arrayList = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); int i = 65535 & readInt; if (i == 1) { - uri = (Uri) AnimatableValueParser.S(parcel, readInt, Uri.CREATOR); + uri = (Uri) d.S(parcel, readInt, Uri.CREATOR); } else if (i == 2) { - uri2 = (Uri) AnimatableValueParser.S(parcel, readInt, Uri.CREATOR); + uri2 = (Uri) d.S(parcel, readInt, Uri.CREATOR); } else if (i != 3) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - arrayList = AnimatableValueParser.X(parcel, readInt, zzr.CREATOR); + arrayList = d.X(parcel, readInt, zzr.CREATOR); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzo(uri, uri2, arrayList); } diff --git a/app/src/main/java/c/i/c/o/b/n.java b/app/src/main/java/c/i/c/o/b/n.java index c038f94ee5..e8812ecb95 100644 --- a/app/src/main/java/c/i/c/o/b/n.java +++ b/app/src/main/java/c/i/c/o/b/n.java @@ -2,24 +2,24 @@ package c.i.c.o.b; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.firebase.dynamiclinks.internal.zzr; /* compiled from: com.google.firebase:firebase-dynamic-links@@19.1.1 */ public final class n implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public final zzr createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); String str = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - str = AnimatableValueParser.T(parcel, readInt); + str = d.T(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new zzr(str); } diff --git a/app/src/main/java/c/i/c/p/h/a.java b/app/src/main/java/c/i/c/p/h/a.java index db91f2ed32..ae03fba12b 100644 --- a/app/src/main/java/c/i/c/p/h/a.java +++ b/app/src/main/java/c/i/c/p/h/a.java @@ -12,8 +12,8 @@ public final /* synthetic */ class a implements c { @Override // c.i.c.p.b public void a(Object obj, d dVar) { e.a aVar = e.a; - StringBuilder P = c.d.b.a.a.P("Couldn't find encoder for type "); - P.append(obj.getClass().getCanonicalName()); - throw new EncodingException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Couldn't find encoder for type "); + O.append(obj.getClass().getCanonicalName()); + throw new EncodingException(O.toString()); } } diff --git a/app/src/main/java/c/i/c/p/h/d.java b/app/src/main/java/c/i/c/p/h/d.java index e1d12cbf0a..9741f66a21 100644 --- a/app/src/main/java/c/i/c/p/h/d.java +++ b/app/src/main/java/c/i/c/p/h/d.java @@ -24,7 +24,7 @@ public class d implements a { public void b(@NonNull Object obj, @NonNull Writer writer) throws IOException { e eVar = this.a; - f fVar = new f(writer, eVar.b, eVar.f1371c, eVar.d, eVar.e); + f fVar = new f(writer, eVar.b, eVar.f1372c, eVar.d, eVar.e); fVar.g(obj, false); fVar.i(); fVar.b.flush(); diff --git a/app/src/main/java/c/i/c/p/h/e.java b/app/src/main/java/c/i/c/p/h/e.java index 05f174d1c6..02311dbd3b 100644 --- a/app/src/main/java/c/i/c/p/h/e.java +++ b/app/src/main/java/c/i/c/p/h/e.java @@ -18,7 +18,7 @@ public final class e implements b { public final Map, c> b; /* renamed from: c reason: collision with root package name */ - public final Map, c.i.c.p.e> f1371c; + public final Map, c.i.c.p.e> f1372c; public c d = a.a; public boolean e = false; @@ -46,7 +46,7 @@ public final class e implements b { HashMap hashMap = new HashMap(); this.b = hashMap; HashMap hashMap2 = new HashMap(); - this.f1371c = hashMap2; + this.f1372c = hashMap2; hashMap2.put(String.class, b.a); hashMap.remove(String.class); hashMap2.put(Boolean.class, c.a); diff --git a/app/src/main/java/c/i/c/p/h/f.java b/app/src/main/java/c/i/c/p/h/f.java index a73b5cdd79..3217664909 100644 --- a/app/src/main/java/c/i/c/p/h/f.java +++ b/app/src/main/java/c/i/c/p/h/f.java @@ -19,14 +19,14 @@ public final class f implements d, c.i.c.p.f { public final JsonWriter b; /* renamed from: c reason: collision with root package name */ - public final Map, c> f1372c; + public final Map, c> f1373c; public final Map, e> d; public final c e; public final boolean f; public f(@NonNull Writer writer, @NonNull Map, c> map, @NonNull Map, e> map2, c cVar, boolean z2) { this.b = new JsonWriter(writer); - this.f1372c = map; + this.f1373c = map; this.d = map2; this.e = cVar; this.f = z2; @@ -163,7 +163,7 @@ public final class f implements d, c.i.c.p.f { this.b.endObject(); return this; } else { - c cVar = this.f1372c.get(obj.getClass()); + c cVar = this.f1373c.get(obj.getClass()); if (cVar != null) { if (!z2) { this.b.beginObject(); diff --git a/app/src/main/java/c/i/c/s/f.java b/app/src/main/java/c/i/c/s/f.java index a0eda760a8..d65588de88 100644 --- a/app/src/main/java/c/i/c/s/f.java +++ b/app/src/main/java/c/i/c/s/f.java @@ -22,16 +22,16 @@ public class f { public static d0 b; /* renamed from: c reason: collision with root package name */ - public final Context f1373c; + public final Context f1374c; public final Executor d; public f(Context context) { - this.f1373c = context; + this.f1374c = context; this.d = a.i; } public f(Context context, ExecutorService executorService) { - this.f1373c = context; + this.f1374c = context; this.d = executorService; } @@ -75,7 +75,7 @@ public class f { intent.putExtra("rawData", Base64.decode(stringExtra, 0)); intent.removeExtra("gcm.rawData64"); } - Context context = this.f1373c; + Context context = this.f1374c; boolean z3 = c.R() && context.getApplicationInfo().targetSdkVersion >= 26; if ((intent.getFlags() & 268435456) != 0) { z2 = true; diff --git a/app/src/main/java/c/i/c/s/i.java b/app/src/main/java/c/i/c/s/i.java index 07db1e6665..d615b4f939 100644 --- a/app/src/main/java/c/i/c/s/i.java +++ b/app/src/main/java/c/i/c/s/i.java @@ -9,16 +9,16 @@ public final /* synthetic */ class i implements a { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1374c; + public final String f1375c; public i(FirebaseInstanceId firebaseInstanceId, String str, String str2) { this.a = firebaseInstanceId; this.b = str; - this.f1374c = str2; + this.f1375c = str2; } @Override // c.i.a.f.n.a public final Object a(Task task) { - return this.a.m(this.b, this.f1374c); + return this.a.m(this.b, this.f1375c); } } diff --git a/app/src/main/java/c/i/c/s/l.java b/app/src/main/java/c/i/c/s/l.java index 5647440aff..ab8566a5b2 100644 --- a/app/src/main/java/c/i/c/s/l.java +++ b/app/src/main/java/c/i/c/s/l.java @@ -12,13 +12,13 @@ public final /* synthetic */ class l implements f { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1375c; + public final String f1376c; public final String d; public l(FirebaseInstanceId firebaseInstanceId, String str, String str2, String str3) { this.a = firebaseInstanceId; this.b = str; - this.f1375c = str2; + this.f1376c = str2; this.d = str3; } @@ -26,7 +26,7 @@ public final /* synthetic */ class l implements f { public final Task a(Object obj) { FirebaseInstanceId firebaseInstanceId = this.a; String str = this.b; - String str2 = this.f1375c; + String str2 = this.f1376c; String str3 = this.d; String str4 = (String) obj; w wVar = FirebaseInstanceId.b; diff --git a/app/src/main/java/c/i/c/s/n.java b/app/src/main/java/c/i/c/s/n.java index 8313de66e0..04444572b7 100644 --- a/app/src/main/java/c/i/c/s/n.java +++ b/app/src/main/java/c/i/c/s/n.java @@ -32,7 +32,7 @@ public class n { public final q b; /* renamed from: c reason: collision with root package name */ - public final b f1376c; + public final b f1377c; public final a d; public final a e; public final g f; @@ -42,7 +42,7 @@ public class n { b bVar = new b(cVar.d); this.a = cVar; this.b = qVar; - this.f1376c = bVar; + this.f1377c = bVar; this.d = aVar; this.e = aVar2; this.f = gVar; @@ -81,10 +81,10 @@ public class n { bundle.putString("app_ver", this.b.a()); q qVar2 = this.b; synchronized (qVar2) { - if (qVar2.f1377c == null) { + if (qVar2.f1378c == null) { qVar2.e(); } - str4 = qVar2.f1377c; + str4 = qVar2.f1378c; } bundle.putString("app_ver_name", str4); c cVar2 = this.a; @@ -113,7 +113,7 @@ public class n { bundle.putString("Firebase-Client-Log-Type", Integer.toString(a.f())); bundle.putString("Firebase-Client", hVar.getUserAgent()); } - b bVar = this.f1376c; + b bVar = this.f1377c; r rVar = bVar.e; synchronized (rVar) { if (rVar.b == 0 && (b = rVar.b("com.google.android.gms")) != null) { diff --git a/app/src/main/java/c/i/c/s/q.java b/app/src/main/java/c/i/c/s/q.java index db1a494867..ba3aafd269 100644 --- a/app/src/main/java/c/i/c/s/q.java +++ b/app/src/main/java/c/i/c/s/q.java @@ -15,7 +15,7 @@ public class q { public String b; /* renamed from: c reason: collision with root package name */ - public String f1377c; + public String f1378c; public int d; public int e = 0; @@ -57,7 +57,7 @@ public class q { return this.a.getPackageManager().getPackageInfo(str, 0); } catch (PackageManager.NameNotFoundException e) { String valueOf = String.valueOf(e); - a.c0(valueOf.length() + 23, "Failed to find package ", valueOf, "FirebaseInstanceId"); + a.b0(valueOf.length() + 23, "Failed to find package ", valueOf, "FirebaseInstanceId"); return null; } } @@ -106,7 +106,7 @@ public class q { PackageInfo c2 = c(this.a.getPackageName()); if (c2 != null) { this.b = Integer.toString(c2.versionCode); - this.f1377c = c2.versionName; + this.f1378c = c2.versionName; } } } diff --git a/app/src/main/java/c/i/c/s/v.java b/app/src/main/java/c/i/c/s/v.java index 41fce5286c..d7fba0d807 100644 --- a/app/src/main/java/c/i/c/s/v.java +++ b/app/src/main/java/c/i/c/s/v.java @@ -13,7 +13,7 @@ public class v { public String b = null; /* renamed from: c reason: collision with root package name */ - public Boolean f1378c = null; + public Boolean f1379c = null; public Boolean d = null; public final Queue e = new ArrayDeque(); @@ -32,19 +32,19 @@ public class v { if (this.d == null) { this.d = Boolean.valueOf(context.checkCallingOrSelfPermission("android.permission.ACCESS_NETWORK_STATE") == 0); } - if (!this.f1378c.booleanValue() && Log.isLoggable("FirebaseInstanceId", 3)) { + if (!this.f1379c.booleanValue() && Log.isLoggable("FirebaseInstanceId", 3)) { Log.d("FirebaseInstanceId", "Missing Permission: android.permission.ACCESS_NETWORK_STATE this should normally be included by the manifest merger, but may needed to be manually added to your manifest"); } return this.d.booleanValue(); } public boolean c(Context context) { - if (this.f1378c == null) { - this.f1378c = Boolean.valueOf(context.checkCallingOrSelfPermission("android.permission.WAKE_LOCK") == 0); + if (this.f1379c == null) { + this.f1379c = Boolean.valueOf(context.checkCallingOrSelfPermission("android.permission.WAKE_LOCK") == 0); } - if (!this.f1378c.booleanValue() && Log.isLoggable("FirebaseInstanceId", 3)) { + if (!this.f1379c.booleanValue() && Log.isLoggable("FirebaseInstanceId", 3)) { Log.d("FirebaseInstanceId", "Missing Permission: android.permission.WAKE_LOCK this should normally be included by the manifest merger, but may needed to be manually added to your manifest"); } - return this.f1378c.booleanValue(); + return this.f1379c.booleanValue(); } } diff --git a/app/src/main/java/c/i/c/s/w.java b/app/src/main/java/c/i/c/s/w.java index c457c49eb0..00fd61a8e5 100644 --- a/app/src/main/java/c/i/c/s/w.java +++ b/app/src/main/java/c/i/c/s/w.java @@ -22,7 +22,7 @@ public class w { @GuardedBy("this") /* renamed from: c reason: collision with root package name */ - public final Map f1379c = new ArrayMap(); + public final Map f1380c = new ArrayMap(); /* compiled from: com.google.firebase:firebase-iid@@21.0.0 */ public static class a { @@ -30,12 +30,12 @@ public class w { public static final /* synthetic */ int b = 0; /* renamed from: c reason: collision with root package name */ - public final String f1380c; + public final String f1381c; public final String d; public final long e; public a(String str, String str2, long j) { - this.f1380c = str; + this.f1381c = str; this.d = str2; this.e = j; } @@ -49,7 +49,7 @@ public class w { return jSONObject.toString(); } catch (JSONException e) { String valueOf = String.valueOf(e); - c.d.b.a.a.c0(valueOf.length() + 24, "Failed to encode token: ", valueOf, "FirebaseInstanceId"); + c.d.b.a.a.b0(valueOf.length() + 24, "Failed to encode token: ", valueOf, "FirebaseInstanceId"); return null; } } @@ -66,7 +66,7 @@ public class w { return new a(jSONObject.getString("token"), jSONObject.getString("appVersion"), jSONObject.getLong("timestamp")); } catch (JSONException e) { String valueOf = String.valueOf(e); - c.d.b.a.a.c0(valueOf.length() + 23, "Failed to parse token: ", valueOf, "FirebaseInstanceId"); + c.d.b.a.a.b0(valueOf.length() + 23, "Failed to parse token: ", valueOf, "FirebaseInstanceId"); return null; } } @@ -107,13 +107,13 @@ public class w { } public final String b(String str, String str2, String str3) { - StringBuilder O = c.d.b.a.a.O(c.d.b.a.a.b(str3, c.d.b.a.a.b(str2, c.d.b.a.a.b(str, 4))), str, "|T|", str2, "|"); - O.append(str3); - return O.toString(); + StringBuilder N = c.d.b.a.a.N(c.d.b.a.a.b(str3, c.d.b.a.a.b(str2, c.d.b.a.a.b(str, 4))), str, "|T|", str2, "|"); + N.append(str3); + return N.toString(); } public synchronized void c() { - this.f1379c.clear(); + this.f1380c.clear(); this.a.edit().clear().commit(); } diff --git a/app/src/main/java/c/i/c/s/x.java b/app/src/main/java/c/i/c/s/x.java index 6b72ded290..ff9e959739 100644 --- a/app/src/main/java/c/i/c/s/x.java +++ b/app/src/main/java/c/i/c/s/x.java @@ -102,7 +102,7 @@ public class x implements Runnable { if (Log.isLoggable("FirebaseInstanceId", 3)) { Log.d("FirebaseInstanceId", "Token successfully retrieved"); } - if (j == null || !b.equals(j.f1380c)) { + if (j == null || !b.equals(j.f1381c)) { b(b); } return true; @@ -113,7 +113,7 @@ public class x implements Runnable { } if (z2) { String message2 = e.getMessage(); - c.d.b.a.a.d0(c.d.b.a.a.b(message2, 52), "Token retrieval failed: ", message2, ". Will retry token retrieval", "FirebaseInstanceId"); + c.d.b.a.a.c0(c.d.b.a.a.b(message2, 52), "Token retrieval failed: ", message2, ". Will retry token retrieval", "FirebaseInstanceId"); return false; } else if (e.getMessage() == null) { Log.w("FirebaseInstanceId", "Token retrieval failed without exception message. Will retry token retrieval"); diff --git a/app/src/main/java/c/i/c/s/y.java b/app/src/main/java/c/i/c/s/y.java index e7b7dc6f5a..8853b26df5 100644 --- a/app/src/main/java/c/i/c/s/y.java +++ b/app/src/main/java/c/i/c/s/y.java @@ -12,14 +12,14 @@ public final class y { public static final Object b = new Object(); /* renamed from: c reason: collision with root package name */ - public static a f1381c; + public static a f1382c; public static ComponentName a(@NonNull Context context, @NonNull Intent intent) { synchronized (b) { - if (f1381c == null) { + if (f1382c == null) { a aVar = new a(context, 1, "wake:com.google.firebase.iid.WakeLockHolder"); - f1381c = aVar; - aVar.f1229c.setReferenceCounted(true); + f1382c = aVar; + aVar.f1230c.setReferenceCounted(true); aVar.h = true; } boolean booleanExtra = intent.getBooleanExtra("com.google.firebase.iid.WakeLockHolder.wakefulintent", false); @@ -29,7 +29,7 @@ public final class y { return null; } if (!booleanExtra) { - f1381c.a(a); + f1382c.a(a); } return startService; } diff --git a/app/src/main/java/c/i/c/u/a.java b/app/src/main/java/c/i/c/u/a.java index dff3b2a2fc..0e7e2fd826 100644 --- a/app/src/main/java/c/i/c/u/a.java +++ b/app/src/main/java/c/i/c/u/a.java @@ -7,12 +7,12 @@ public final class a extends k { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f1382c; + public final long f1383c; public a(String str, long j, long j2, C0145a aVar) { this.a = str; this.b = j; - this.f1382c = j2; + this.f1383c = j2; } @Override // c.i.c.u.k @@ -24,7 +24,7 @@ public final class a extends k { @Override // c.i.c.u.k @NonNull public long b() { - return this.f1382c; + return this.f1383c; } @Override // c.i.c.u.k @@ -41,21 +41,21 @@ public final class a extends k { return false; } k kVar = (k) obj; - return this.a.equals(kVar.a()) && this.b == kVar.c() && this.f1382c == kVar.b(); + return this.a.equals(kVar.a()) && this.b == kVar.c() && this.f1383c == kVar.b(); } public int hashCode() { long j = this.b; - long j2 = this.f1382c; + long j2 = this.f1383c; return ((((this.a.hashCode() ^ 1000003) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32))); } public String toString() { - StringBuilder P = c.d.b.a.a.P("InstallationTokenResult{token="); - P.append(this.a); - P.append(", tokenExpirationTimestamp="); - P.append(this.b); - P.append(", tokenCreationTimestamp="); - return c.d.b.a.a.A(P, this.f1382c, "}"); + StringBuilder O = c.d.b.a.a.O("InstallationTokenResult{token="); + O.append(this.a); + O.append(", tokenExpirationTimestamp="); + O.append(this.b); + O.append(", tokenCreationTimestamp="); + return c.d.b.a.a.A(O, this.f1383c, "}"); } } diff --git a/app/src/main/java/c/i/c/u/e.java b/app/src/main/java/c/i/c/u/e.java index 4fb26a828e..1f1ab94f02 100644 --- a/app/src/main/java/c/i/c/u/e.java +++ b/app/src/main/java/c/i/c/u/e.java @@ -28,7 +28,7 @@ public final /* synthetic */ class e implements Runnable { Objects.requireNonNull(fVar); Object obj2 = f.a; synchronized (obj2) { - c cVar = fVar.f1383c; + c cVar = fVar.f1384c; cVar.a(); b a = b.a(cVar.d, "generatefid.lock"); try { @@ -45,7 +45,7 @@ public final /* synthetic */ class e implements Runnable { if (z2 || fVar.f.d(b)) { dVar = fVar.c(b); synchronized (obj2) { - c.i.c.c cVar2 = fVar.f1383c; + c.i.c.c cVar2 = fVar.f1384c; cVar2.a(); b a2 = b.a(cVar2.d, "generatefid.lock"); try { diff --git a/app/src/main/java/c/i/c/u/f.java b/app/src/main/java/c/i/c/u/f.java index a10e2acd47..b46650dec0 100644 --- a/app/src/main/java/c/i/c/u/f.java +++ b/app/src/main/java/c/i/c/u/f.java @@ -17,7 +17,6 @@ import c.i.c.u.p.b; import c.i.c.u.p.d; import c.i.c.u.p.f; import c.i.c.x.h; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.google.android.gms.tasks.Task; import com.google.android.gms.tasks.TaskCompletionSource; import com.google.firebase.installations.FirebaseInstallationsException; @@ -42,7 +41,7 @@ public class f implements g { public static final ThreadFactory b = new a(); /* renamed from: c reason: collision with root package name */ - public final c f1383c; + public final c f1384c; public final c.i.c.u.p.c d; public final c.i.c.u.o.c e; public final n f; @@ -77,7 +76,7 @@ public class f implements g { n c2 = n.c(); b bVar = new b(cVar); l lVar = new l(); - this.f1383c = cVar; + this.f1384c = cVar; this.d = cVar2; this.e = cVar3; this.f = c2; @@ -90,7 +89,7 @@ public class f implements g { @NonNull public static f f() { c b2 = c.b(); - AnimatableValueParser.p(true, "Null is not a valid value of FirebaseApp."); + c.c.a.a0.d.p(true, "Null is not a valid value of FirebaseApp."); b2.a(); return (f) b2.g.a(g.class); } @@ -112,7 +111,7 @@ public class f implements g { public final void b(boolean z2) { c.i.c.u.o.d b2; synchronized (a) { - c cVar = this.f1383c; + c cVar = this.f1384c; cVar.a(); b a2 = b.a(cVar.d, "generatefid.lock"); try { @@ -134,7 +133,7 @@ public class f implements g { } if (z2) { a.b bVar2 = (a.b) b2.k(); - bVar2.f1386c = null; + bVar2.f1387c = null; b2 = bVar2.a(); } l(b2); @@ -172,7 +171,7 @@ public class f implements g { } else if (responseCode < 500 || responseCode >= 600) { Log.e("Firebase-Installations", "Firebase Installations can not communicate with Firebase server APIs due to invalid configuration. Please update your Firebase initialization process and set valid Firebase options (API key, Project ID, Application ID) when initializing Firebase."); b.C0148b bVar = (b.C0148b) c.i.c.u.p.f.a(); - bVar.f1390c = f.b.BAD_CONFIG; + bVar.f1391c = f.b.BAD_CONFIG; f = bVar.a(); } else { c2.disconnect(); @@ -180,18 +179,18 @@ public class f implements g { } } b.C0148b bVar2 = (b.C0148b) c.i.c.u.p.f.a(); - bVar2.f1390c = f.b.AUTH_ERROR; + bVar2.f1391c = f.b.AUTH_ERROR; f = bVar2.a(); } c2.disconnect(); c.i.c.u.p.b bVar3 = (c.i.c.u.p.b) f; - int ordinal = bVar3.f1389c.ordinal(); + int ordinal = bVar3.f1390c.ordinal(); if (ordinal == 0) { String str3 = bVar3.a; long j = bVar3.b; long b2 = this.f.b(); a.b bVar4 = (a.b) dVar.k(); - bVar4.f1386c = str3; + bVar4.f1387c = str3; bVar4.e = Long.valueOf(j); bVar4.f = Long.valueOf(b2); return bVar4.a(); @@ -223,21 +222,21 @@ public class f implements g { @Nullable public String d() { - c.i.c.c cVar = this.f1383c; + c.i.c.c cVar = this.f1384c; cVar.a(); return cVar.f.a; } @VisibleForTesting public String e() { - c.i.c.c cVar = this.f1383c; + c.i.c.c cVar = this.f1384c; cVar.a(); return cVar.f.b; } @Nullable public String g() { - c.i.c.c cVar = this.f1383c; + c.i.c.c cVar = this.f1384c; cVar.a(); return cVar.f.g; } @@ -264,21 +263,21 @@ public class f implements g { } public final void h() { - AnimatableValueParser.v(e(), "Please set your Application ID. A valid Firebase App ID is required to communicate with Firebase server APIs: It identifies your application with Firebase.Please refer to https://firebase.google.com/support/privacy/init-options."); - AnimatableValueParser.v(g(), "Please set your Project ID. A valid Firebase Project ID is required to communicate with Firebase server APIs: It identifies your application with Firebase.Please refer to https://firebase.google.com/support/privacy/init-options."); - AnimatableValueParser.v(d(), "Please set a valid API key. A Firebase API key is required to communicate with Firebase server APIs: It authenticates your project with Google.Please refer to https://firebase.google.com/support/privacy/init-options."); + c.c.a.a0.d.v(e(), "Please set your Application ID. A valid Firebase App ID is required to communicate with Firebase server APIs: It identifies your application with Firebase.Please refer to https://firebase.google.com/support/privacy/init-options."); + c.c.a.a0.d.v(g(), "Please set your Project ID. A valid Firebase Project ID is required to communicate with Firebase server APIs: It identifies your application with Firebase.Please refer to https://firebase.google.com/support/privacy/init-options."); + c.c.a.a0.d.v(d(), "Please set a valid API key. A Firebase API key is required to communicate with Firebase server APIs: It authenticates your project with Google.Please refer to https://firebase.google.com/support/privacy/init-options."); String e = e(); Pattern pattern = n.b; - AnimatableValueParser.p(e.contains(":"), "Please set your Application ID. A valid Firebase App ID is required to communicate with Firebase server APIs: It identifies your application with Firebase.Please refer to https://firebase.google.com/support/privacy/init-options."); - AnimatableValueParser.p(n.b.matcher(d()).matches(), "Please set a valid API key. A Firebase API key is required to communicate with Firebase server APIs: It authenticates your project with Google.Please refer to https://firebase.google.com/support/privacy/init-options."); + c.c.a.a0.d.p(e.contains(":"), "Please set your Application ID. A valid Firebase App ID is required to communicate with Firebase server APIs: It identifies your application with Firebase.Please refer to https://firebase.google.com/support/privacy/init-options."); + c.c.a.a0.d.p(n.b.matcher(d()).matches(), "Please set a valid API key. A Firebase API key is required to communicate with Firebase server APIs: It authenticates your project with Google.Please refer to https://firebase.google.com/support/privacy/init-options."); } public final String i(c.i.c.u.o.d dVar) { String string; - c.i.c.c cVar = this.f1383c; + c.i.c.c cVar = this.f1384c; cVar.a(); - if (cVar.e.equals("CHIME_ANDROID_SDK") || this.f1383c.h()) { - if (((c.i.c.u.o.a) dVar).f1385c == c.a.ATTEMPT_MIGRATION) { + if (cVar.e.equals("CHIME_ANDROID_SDK") || this.f1384c.h()) { + if (((c.i.c.u.o.a) dVar).f1386c == c.a.ATTEMPT_MIGRATION) { c.i.c.u.o.b bVar = this.g; synchronized (bVar.b) { synchronized (bVar.b) { @@ -312,7 +311,7 @@ public class f implements g { break; } String str3 = strArr[i]; - String str4 = bVar.f1387c; + String str4 = bVar.f1388c; String string = bVar.b.getString("|T|" + str4 + "|" + str3, null); if (string == null || string.isEmpty()) { i++; @@ -368,14 +367,14 @@ public class f implements g { int ordinal = aVar4.e.ordinal(); if (ordinal == 0) { String str6 = aVar4.b; - String str7 = aVar4.f1388c; + String str7 = aVar4.f1389c; long b2 = this.f.b(); String c3 = aVar4.d.c(); long d2 = aVar4.d.d(); a.b bVar2 = (a.b) dVar.k(); bVar2.a = str6; bVar2.b(c.a.REGISTERED); - bVar2.f1386c = c3; + bVar2.f1387c = c3; bVar2.d = str7; bVar2.e = Long.valueOf(d2); bVar2.f = Long.valueOf(b2); diff --git a/app/src/main/java/c/i/c/u/n.java b/app/src/main/java/c/i/c/u/n.java index 014be3647d..fc915b2352 100644 --- a/app/src/main/java/c/i/c/u/n.java +++ b/app/src/main/java/c/i/c/u/n.java @@ -13,7 +13,7 @@ public final class n { public static final Pattern b = Pattern.compile("\\AA[\\w-]{38}\\z"); /* renamed from: c reason: collision with root package name */ - public static n f1384c; + public static n f1385c; public final a d; public n(a aVar) { @@ -25,10 +25,10 @@ public final class n { a.a = new a(); } a aVar = a.a; - if (f1384c == null) { - f1384c = new n(aVar); + if (f1385c == null) { + f1385c = new n(aVar); } - return f1384c; + return f1385c; } public long a() { diff --git a/app/src/main/java/c/i/c/u/o/a.java b/app/src/main/java/c/i/c/u/o/a.java index bd0c9afb7f..45c609c1e7 100644 --- a/app/src/main/java/c/i/c/u/o/a.java +++ b/app/src/main/java/c/i/c/u/o/a.java @@ -10,7 +10,7 @@ public final class a extends d { public final String b; /* renamed from: c reason: collision with root package name */ - public final c.a f1385c; + public final c.a f1386c; public final String d; public final String e; public final long f; @@ -23,7 +23,7 @@ public final class a extends d { public c.a b; /* renamed from: c reason: collision with root package name */ - public String f1386c; + public String f1387c; public String d; public Long e; public Long f; @@ -35,8 +35,8 @@ public final class a extends d { public b(d dVar, C0146a aVar) { a aVar2 = (a) dVar; this.a = aVar2.b; - this.b = aVar2.f1385c; - this.f1386c = aVar2.d; + this.b = aVar2.f1386c; + this.f1387c = aVar2.d; this.d = aVar2.e; this.e = Long.valueOf(aVar2.f); this.f = Long.valueOf(aVar2.g); @@ -53,7 +53,7 @@ public final class a extends d { str = c.d.b.a.a.u(str, " tokenCreationEpochInSecs"); } if (str.isEmpty()) { - return new a(this.a, this.b, this.f1386c, this.d, this.e.longValue(), this.f.longValue(), this.g, null); + return new a(this.a, this.b, this.f1387c, this.d, this.e.longValue(), this.f.longValue(), this.g, null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -78,7 +78,7 @@ public final class a extends d { public a(String str, c.a aVar, String str2, String str3, long j, long j2, String str4, C0146a aVar2) { this.b = str; - this.f1385c = aVar; + this.f1386c = aVar; this.d = str2; this.e = str3; this.f = j; @@ -127,7 +127,7 @@ public final class a extends d { d dVar = (d) obj; String str3 = this.b; if (str3 != null ? str3.equals(dVar.c()) : dVar.c() == null) { - if (this.f1385c.equals(dVar.f()) && ((str = this.d) != null ? str.equals(dVar.a()) : dVar.a() == null) && ((str2 = this.e) != null ? str2.equals(dVar.e()) : dVar.e() == null) && this.f == dVar.b() && this.g == dVar.g()) { + if (this.f1386c.equals(dVar.f()) && ((str = this.d) != null ? str.equals(dVar.a()) : dVar.a() == null) && ((str2 = this.e) != null ? str2.equals(dVar.e()) : dVar.e() == null) && this.f == dVar.b() && this.g == dVar.g()) { String str4 = this.h; if (str4 == null) { if (dVar.d() == null) { @@ -144,7 +144,7 @@ public final class a extends d { @Override // c.i.c.u.o.d @NonNull public c.a f() { - return this.f1385c; + return this.f1386c; } @Override // c.i.c.u.o.d @@ -155,7 +155,7 @@ public final class a extends d { public int hashCode() { String str = this.b; int i = 0; - int hashCode = ((((str == null ? 0 : str.hashCode()) ^ 1000003) * 1000003) ^ this.f1385c.hashCode()) * 1000003; + int hashCode = ((((str == null ? 0 : str.hashCode()) ^ 1000003) * 1000003) ^ this.f1386c.hashCode()) * 1000003; String str2 = this.d; int hashCode2 = (hashCode ^ (str2 == null ? 0 : str2.hashCode())) * 1000003; String str3 = this.e; @@ -176,19 +176,19 @@ public final class a extends d { } public String toString() { - StringBuilder P = c.d.b.a.a.P("PersistedInstallationEntry{firebaseInstallationId="); - P.append(this.b); - P.append(", registrationStatus="); - P.append(this.f1385c); - P.append(", authToken="); - P.append(this.d); - P.append(", refreshToken="); - P.append(this.e); - P.append(", expiresInSecs="); - P.append(this.f); - P.append(", tokenCreationEpochInSecs="); - P.append(this.g); - P.append(", fisError="); - return c.d.b.a.a.H(P, this.h, "}"); + StringBuilder O = c.d.b.a.a.O("PersistedInstallationEntry{firebaseInstallationId="); + O.append(this.b); + O.append(", registrationStatus="); + O.append(this.f1386c); + O.append(", authToken="); + O.append(this.d); + O.append(", refreshToken="); + O.append(this.e); + O.append(", expiresInSecs="); + O.append(this.f); + O.append(", tokenCreationEpochInSecs="); + O.append(this.g); + O.append(", fisError="); + return c.d.b.a.a.G(O, this.h, "}"); } } diff --git a/app/src/main/java/c/i/c/u/o/b.java b/app/src/main/java/c/i/c/u/o/b.java index aa0b5c87d4..6b38831a60 100644 --- a/app/src/main/java/c/i/c/u/o/b.java +++ b/app/src/main/java/c/i/c/u/o/b.java @@ -20,7 +20,7 @@ public class b { public final SharedPreferences b; /* renamed from: c reason: collision with root package name */ - public final String f1387c; + public final String f1388c; /* JADX WARNING: Code restructure failed: missing block: B:9:0x0046, code lost: if (r0.isEmpty() != false) goto L_0x0048; @@ -41,7 +41,7 @@ public class b { str = null; } } - this.f1387c = str; + this.f1388c = str; } @Nullable diff --git a/app/src/main/java/c/i/c/u/o/c.java b/app/src/main/java/c/i/c/u/o/c.java index b806f8bcda..67011da292 100644 --- a/app/src/main/java/c/i/c/u/o/c.java +++ b/app/src/main/java/c/i/c/u/o/c.java @@ -28,10 +28,10 @@ public class c { public c(@NonNull c.i.c.c cVar) { cVar.a(); File filesDir = cVar.d.getFilesDir(); - StringBuilder P = c.d.b.a.a.P("PersistedInstallation."); - P.append(cVar.c()); - P.append(".json"); - this.a = new File(filesDir, P.toString()); + StringBuilder O = c.d.b.a.a.O("PersistedInstallation."); + O.append(cVar.c()); + O.append(".json"); + this.a = new File(filesDir, O.toString()); this.b = cVar; } @@ -96,7 +96,7 @@ public class c { bVar.c(0); bVar.a = optString; bVar.b(a.values()[optInt]); - bVar.f1386c = optString2; + bVar.f1387c = optString2; bVar.d = optString3; bVar.d(optLong); bVar.c(optLong2); diff --git a/app/src/main/java/c/i/c/u/o/d.java b/app/src/main/java/c/i/c/u/o/d.java index 03e24ff4f7..ba601096d9 100644 --- a/app/src/main/java/c/i/c/u/o/d.java +++ b/app/src/main/java/c/i/c/u/o/d.java @@ -57,7 +57,7 @@ public abstract class d { } public boolean i() { - c.a aVar = ((a) this).f1385c; + c.a aVar = ((a) this).f1386c; return aVar == c.a.NOT_GENERATED || aVar == c.a.ATTEMPT_MIGRATION; } diff --git a/app/src/main/java/c/i/c/u/p/a.java b/app/src/main/java/c/i/c/u/p/a.java index 1fd9fb3d35..775d37d0b0 100644 --- a/app/src/main/java/c/i/c/u/p/a.java +++ b/app/src/main/java/c/i/c/u/p/a.java @@ -8,14 +8,14 @@ public final class a extends d { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1388c; + public final String f1389c; public final f d; public final d.a e; public a(String str, String str2, String str3, f fVar, d.a aVar, C0147a aVar2) { this.a = str; this.b = str2; - this.f1388c = str3; + this.f1389c = str3; this.d = fVar; this.e = aVar; } @@ -35,7 +35,7 @@ public final class a extends d { @Override // c.i.c.u.p.d @Nullable public String c() { - return this.f1388c; + return this.f1389c; } @Override // c.i.c.u.p.d @@ -62,7 +62,7 @@ public final class a extends d { if (str != null ? str.equals(dVar.e()) : dVar.e() == null) { String str2 = this.b; if (str2 != null ? str2.equals(dVar.b()) : dVar.b() == null) { - String str3 = this.f1388c; + String str3 = this.f1389c; if (str3 != null ? str3.equals(dVar.c()) : dVar.c() == null) { f fVar = this.d; if (fVar != null ? fVar.equals(dVar.a()) : dVar.a() == null) { @@ -87,7 +87,7 @@ public final class a extends d { int hashCode = ((str == null ? 0 : str.hashCode()) ^ 1000003) * 1000003; String str2 = this.b; int hashCode2 = (hashCode ^ (str2 == null ? 0 : str2.hashCode())) * 1000003; - String str3 = this.f1388c; + String str3 = this.f1389c; int hashCode3 = (hashCode2 ^ (str3 == null ? 0 : str3.hashCode())) * 1000003; f fVar = this.d; int hashCode4 = (hashCode3 ^ (fVar == null ? 0 : fVar.hashCode())) * 1000003; @@ -99,17 +99,17 @@ public final class a extends d { } public String toString() { - StringBuilder P = c.d.b.a.a.P("InstallationResponse{uri="); - P.append(this.a); - P.append(", fid="); - P.append(this.b); - P.append(", refreshToken="); - P.append(this.f1388c); - P.append(", authToken="); - P.append(this.d); - P.append(", responseCode="); - P.append(this.e); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("InstallationResponse{uri="); + O.append(this.a); + O.append(", fid="); + O.append(this.b); + O.append(", refreshToken="); + O.append(this.f1389c); + O.append(", authToken="); + O.append(this.d); + O.append(", responseCode="); + O.append(this.e); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/c/u/p/b.java b/app/src/main/java/c/i/c/u/p/b.java index ce079fdefa..6d148ece4e 100644 --- a/app/src/main/java/c/i/c/u/p/b.java +++ b/app/src/main/java/c/i/c/u/p/b.java @@ -9,7 +9,7 @@ public final class b extends f { public final long b; /* renamed from: c reason: collision with root package name */ - public final f.b f1389c; + public final f.b f1390c; /* compiled from: AutoValue_TokenResult */ /* renamed from: c.i.c.u.p.b$b reason: collision with other inner class name */ @@ -18,13 +18,13 @@ public final class b extends f { public Long b; /* renamed from: c reason: collision with root package name */ - public f.b f1390c; + public f.b f1391c; @Override // c.i.c.u.p.f.a public f a() { String str = this.b == null ? " tokenExpirationTimestamp" : ""; if (str.isEmpty()) { - return new b(this.a, this.b.longValue(), this.f1390c, null); + return new b(this.a, this.b.longValue(), this.f1391c, null); } throw new IllegalStateException(c.d.b.a.a.u("Missing required properties:", str)); } @@ -39,13 +39,13 @@ public final class b extends f { public b(String str, long j, f.b bVar, a aVar) { this.a = str; this.b = j; - this.f1389c = bVar; + this.f1390c = bVar; } @Override // c.i.c.u.p.f @Nullable public f.b b() { - return this.f1389c; + return this.f1390c; } @Override // c.i.c.u.p.f @@ -71,7 +71,7 @@ public final class b extends f { String str = this.a; if (str != null ? str.equals(fVar.c()) : fVar.c() == null) { if (this.b == fVar.d()) { - f.b bVar = this.f1389c; + f.b bVar = this.f1390c; if (bVar == null) { if (fVar.b() == null) { return true; @@ -90,7 +90,7 @@ public final class b extends f { int hashCode = str == null ? 0 : str.hashCode(); long j = this.b; int i2 = (((hashCode ^ 1000003) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003; - f.b bVar = this.f1389c; + f.b bVar = this.f1390c; if (bVar != null) { i = bVar.hashCode(); } @@ -98,13 +98,13 @@ public final class b extends f { } public String toString() { - StringBuilder P = c.d.b.a.a.P("TokenResult{token="); - P.append(this.a); - P.append(", tokenExpirationTimestamp="); - P.append(this.b); - P.append(", responseCode="); - P.append(this.f1389c); - P.append("}"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("TokenResult{token="); + O.append(this.a); + O.append(", tokenExpirationTimestamp="); + O.append(this.b); + O.append(", responseCode="); + O.append(this.f1390c); + O.append("}"); + return O.toString(); } } diff --git a/app/src/main/java/c/i/c/u/p/c.java b/app/src/main/java/c/i/c/u/p/c.java index 1f0f5e83c9..2cd99c5345 100644 --- a/app/src/main/java/c/i/c/u/p/c.java +++ b/app/src/main/java/c/i/c/u/p/c.java @@ -18,7 +18,6 @@ import c.i.c.u.p.d; import c.i.c.u.p.f; import c.i.c.x.h; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.discord.restapi.RestAPIBuilder; import com.google.firebase.installations.FirebaseInstallationsException; @@ -43,13 +42,13 @@ public class c { public static final Charset b = Charset.forName(Constants.ENCODING); /* renamed from: c reason: collision with root package name */ - public final Context f1391c; + public final Context f1392c; public final a d; public final a e; public final e f = new e(); public c(@NonNull Context context, @NonNull a aVar, @NonNull a aVar2) { - this.f1391c = context; + this.f1392c = context; this.d = aVar; this.e = aVar2; } @@ -95,7 +94,7 @@ public class c { } public static long d(String str) { - AnimatableValueParser.p(a.matcher(str).matches(), "Invalid Expiration Timestamp."); + c.c.a.a0.d.p(a.matcher(str).matches(), "Invalid Expiration Timestamp."); if (str == null || str.length() == 0) { return 0; } @@ -140,26 +139,26 @@ public class c { httpURLConnection.addRequestProperty("Accept", RestAPIBuilder.CONTENT_TYPE_JSON); httpURLConnection.addRequestProperty("Content-Encoding", "gzip"); httpURLConnection.addRequestProperty("Cache-Control", "no-cache"); - httpURLConnection.addRequestProperty("X-Android-Package", this.f1391c.getPackageName()); + httpURLConnection.addRequestProperty("X-Android-Package", this.f1392c.getPackageName()); if (!(this.e.get() == null || this.d.get() == null || (a3 = this.e.get().a("fire-installations-id")) == d.a.NONE)) { httpURLConnection.addRequestProperty("x-firebase-client", this.d.get().getUserAgent()); httpURLConnection.addRequestProperty("x-firebase-client-log-type", Integer.toString(a3.f())); } String str2 = null; try { - Context context = this.f1391c; + Context context = this.f1392c; PackageInfo packageInfo = b.a(context).a.getPackageManager().getPackageInfo(context.getPackageName(), 64); Signature[] signatureArr = packageInfo.signatures; byte[] digest = (signatureArr == null || signatureArr.length != 1 || (a2 = c.i.a.f.e.o.a.a("SHA1")) == null) ? null : a2.digest(packageInfo.signatures[0].toByteArray()); if (digest == null) { - Log.e("ContentValues", "Could not get fingerprint hash for package: " + this.f1391c.getPackageName()); + Log.e("ContentValues", "Could not get fingerprint hash for package: " + this.f1392c.getPackageName()); } else { str2 = e.a(digest, false); } } catch (PackageManager.NameNotFoundException e) { - StringBuilder P = c.d.b.a.a.P("No such package: "); - P.append(this.f1391c.getPackageName()); - Log.e("ContentValues", P.toString(), e); + StringBuilder O = c.d.b.a.a.O("No such package: "); + O.append(this.f1392c.getPackageName()); + Log.e("ContentValues", O.toString(), e); } httpURLConnection.addRequestProperty("X-Android-Cert", str2); httpURLConnection.addRequestProperty("x-goog-api-key", str); @@ -229,7 +228,7 @@ public class c { jsonReader.close(); inputStream.close(); b.C0148b bVar = (b.C0148b) a2; - bVar.f1390c = f.b.OK; + bVar.f1391c = f.b.OK; return bVar.a(); } diff --git a/app/src/main/java/c/i/c/u/p/e.java b/app/src/main/java/c/i/c/u/p/e.java index 03592cb5f4..2bfbf04fb3 100644 --- a/app/src/main/java/c/i/c/u/p/e.java +++ b/app/src/main/java/c/i/c/u/p/e.java @@ -10,14 +10,14 @@ public class e { public static final long b = TimeUnit.MINUTES.toMillis(30); /* renamed from: c reason: collision with root package name */ - public final n f1392c = n.c(); + public final n f1393c = n.c(); @GuardedBy("this") public long d; @GuardedBy("this") public int e; public synchronized boolean a() { - return this.e == 0 || this.f1392c.a() > this.d; + return this.e == 0 || this.f1393c.a() > this.d; } public synchronized void b(int i) { @@ -38,11 +38,11 @@ public class e { j = a; } else { double pow = Math.pow(2.0d, (double) this.e); - Objects.requireNonNull(this.f1392c); + Objects.requireNonNull(this.f1393c); j = (long) Math.min(pow + ((double) ((long) (Math.random() * 1000.0d))), (double) b); } - this.d = this.f1392c.a() + j; + this.d = this.f1393c.a() + j; } - this.d = this.f1392c.a() + j; + this.d = this.f1393c.a() + j; } } diff --git a/app/src/main/java/c/i/c/v/a.java b/app/src/main/java/c/i/c/v/a.java index 57362329d2..e3b539ee5f 100644 --- a/app/src/main/java/c/i/c/v/a.java +++ b/app/src/main/java/c/i/c/v/a.java @@ -14,7 +14,7 @@ public class a { public final SharedPreferences b; /* renamed from: c reason: collision with root package name */ - public final c f1393c; + public final c f1394c; public boolean d; public a(Context context, String str, c cVar) { @@ -25,7 +25,7 @@ public class a { this.a = context; SharedPreferences sharedPreferences = context.getSharedPreferences("com.google.firebase.common.prefs:" + str, 0); this.b = sharedPreferences; - this.f1393c = cVar; + this.f1394c = cVar; boolean z3 = true; if (sharedPreferences.contains("firebase_data_collection_default_enabled")) { z2 = sharedPreferences.getBoolean("firebase_data_collection_default_enabled", true); diff --git a/app/src/main/java/c/i/c/w/c.java b/app/src/main/java/c/i/c/w/c.java index 1c2cc1211c..43faa5d7cc 100644 --- a/app/src/main/java/c/i/c/w/c.java +++ b/app/src/main/java/c/i/c/w/c.java @@ -44,12 +44,12 @@ public class c { public final Context b; /* renamed from: c reason: collision with root package name */ - public final r f1394c; + public final r f1395c; public c(Context context, r rVar, Executor executor) { this.a = executor; this.b = context; - this.f1394c = rVar; + this.f1395c = rVar; } /* JADX DEBUG: Can't convert new array creation: APUT found in different block: 0x04cc: APUT (r9v4 int[]), (0 ??[int, short, byte, char]), (r8v21 int) */ @@ -126,7 +126,7 @@ public class c { String e7; int i2; ApplicationInfo applicationInfo; - if (this.f1394c.a("gcm.n.noui")) { + if (this.f1395c.a("gcm.n.noui")) { return true; } if (!((KeyguardManager) this.b.getSystemService("keyguard")).inKeyguardRestrictedInputMode()) { @@ -151,7 +151,7 @@ public class c { if (z2) { return false; } - String e8 = this.f1394c.e("gcm.n.image"); + String e8 = this.f1395c.e("gcm.n.image"); if (!TextUtils.isEmpty(e8)) { try { oVar = new o(new URL(e8)); @@ -163,7 +163,7 @@ public class c { oVar.j = c.i.a.f.e.o.c.g(this.a, new n(oVar)); } context = this.b; - rVar = this.f1394c; + rVar = this.f1395c; AtomicInteger atomicInteger = a.a; applicationInfo = context.getPackageManager().getApplicationInfo(context.getPackageName(), 128); if (applicationInfo != null) { @@ -178,7 +178,7 @@ public class c { NotificationManager notificationManager = (NotificationManager) context.getSystemService(NotificationManager.class); if (!TextUtils.isEmpty(e9)) { if (notificationManager.getNotificationChannel(e9) == null) { - a.d0(a.b(e9, 122), "Notification Channel requested (", e9, ") has not been created by the app. Manifest configuration, or default, value will be used.", "FirebaseMessaging"); + a.c0(a.b(e9, 122), "Notification Channel requested (", e9, ") has not been created by the app. Manifest configuration, or default, value will be used.", "FirebaseMessaging"); } Resources resources = context.getResources(); packageManager = context.getPackageManager(); @@ -196,7 +196,7 @@ public class c { if (!TextUtils.isEmpty(e)) { i = resources.getIdentifier(e, "drawable", packageName); if ((i == 0 || !a.b(resources, i)) && ((i = resources.getIdentifier(e, "mipmap", packageName)) == 0 || !a.b(resources, i))) { - a.d0(a.b(e, 61), "Icon resource ", e, " not found. Notification will use default icon.", "FirebaseMessaging"); + a.c0(a.b(e, 61), "Icon resource ", e, " not found. Notification will use default icon.", "FirebaseMessaging"); } builder.setSmallIcon(i); e2 = rVar.e("gcm.n.sound2"); @@ -266,7 +266,7 @@ public class c { try { num = Integer.valueOf(Color.parseColor(e4)); } catch (IllegalArgumentException unused2) { - a.d0(a.b(e4, 56), "Color is invalid: ", e4, ". Notification will use default color.", "FirebaseMessaging"); + a.c0(a.b(e4, 56), "Color is invalid: ", e4, ". Notification will use default color.", "FirebaseMessaging"); } if (num != null) { builder.setColor(num.intValue()); @@ -281,7 +281,7 @@ public class c { if (b != null) { if (b.intValue() < -2 || b.intValue() > 2) { String valueOf2 = String.valueOf(b); - a.d0(valueOf2.length() + 72, "notificationPriority is invalid ", valueOf2, ". Skipping setting notificationPriority.", "FirebaseMessaging"); + a.c0(valueOf2.length() + 72, "notificationPriority is invalid ", valueOf2, ". Skipping setting notificationPriority.", "FirebaseMessaging"); } if (b != null) { builder.setPriority(b.intValue()); @@ -290,7 +290,7 @@ public class c { if (b2 != null) { if (b2.intValue() < -1 || b2.intValue() > 1) { String valueOf3 = String.valueOf(b2); - a.d0(valueOf3.length() + 53, "visibility is invalid: ", valueOf3, ". Skipping setting visibility.", "NotificationParams"); + a.c0(valueOf3.length() + 53, "visibility is invalid: ", valueOf3, ". Skipping setting visibility.", "NotificationParams"); } if (b2 != null) { builder.setVisibility(b2.intValue()); @@ -299,7 +299,7 @@ public class c { if (b3 != null) { if (b3.intValue() < 0) { String valueOf4 = String.valueOf(b3); - a.d0(valueOf4.length() + 67, "notificationCount is invalid: ", valueOf4, ". Skipping setting notificationCount.", "FirebaseMessaging"); + a.c0(valueOf4.length() + 67, "notificationCount is invalid: ", valueOf4, ". Skipping setting notificationCount.", "FirebaseMessaging"); } if (b3 != null) { builder.setNumber(b3.intValue()); @@ -310,7 +310,7 @@ public class c { l = Long.valueOf(Long.parseLong(e6)); } catch (NumberFormatException unused3) { String h = r.h("gcm.n.event_time"); - a.n0(a.O(a.b(e6, a.b(h, 38)), "Couldn't parse value of ", h, "(", e6), ") into a long", "NotificationParams"); + a.m0(a.N(a.b(e6, a.b(h, 38)), "Couldn't parse value of ", h, "(", e6), ") into a long", "NotificationParams"); } if (l != null) { builder.setShowWhen(true); @@ -373,7 +373,7 @@ public class c { builder.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(bitmap).bigLargeIcon(null)); } catch (ExecutionException e11) { String valueOf5 = String.valueOf(e11.getCause()); - a.c0(valueOf5.length() + 26, "Failed to download image: ", valueOf5, "FirebaseMessaging"); + a.b0(valueOf5.length() + 26, "Failed to download image: ", valueOf5, "FirebaseMessaging"); } catch (InterruptedException unused4) { Log.w("FirebaseMessaging", "Interrupted while downloading image, showing notification without it"); oVar.close(); @@ -394,11 +394,11 @@ public class c { throw new JSONException("lightSettings don't have all three fields"); } catch (JSONException unused6) { String valueOf6 = String.valueOf(c3); - a.d0(valueOf6.length() + 58, "LightSettings is invalid: ", valueOf6, ". Skipping setting LightSettings", "NotificationParams"); + a.c0(valueOf6.length() + 58, "LightSettings is invalid: ", valueOf6, ". Skipping setting LightSettings", "NotificationParams"); } catch (IllegalArgumentException e12) { String valueOf7 = String.valueOf(c3); String message = e12.getMessage(); - a.n0(a.O(a.b(message, valueOf7.length() + 60), "LightSettings is invalid: ", valueOf7, ". ", message), ". Skipping setting LightSettings", "NotificationParams"); + a.m0(a.N(a.b(message, valueOf7.length() + 60), "LightSettings is invalid: ", valueOf7, ". ", message), ". Skipping setting LightSettings", "NotificationParams"); } } iArr = null; @@ -427,7 +427,7 @@ public class c { throw new JSONException("vibrateTimings have invalid length"); } catch (NumberFormatException | JSONException unused7) { String valueOf8 = String.valueOf(c2); - a.d0(valueOf8.length() + 74, "User defined vibrateTimings is invalid: ", valueOf8, ". Skipping setting vibrateTimings.", "NotificationParams"); + a.c0(valueOf8.length() + 74, "User defined vibrateTimings is invalid: ", valueOf8, ". Skipping setting vibrateTimings.", "NotificationParams"); } } jArr = null; @@ -1280,7 +1280,7 @@ public class c { if (oVar != null) { } context = this.b; - rVar = this.f1394c; + rVar = this.f1395c; AtomicInteger atomicInteger = a.a; try { applicationInfo = context.getPackageManager().getApplicationInfo(context.getPackageName(), 128); @@ -1288,7 +1288,7 @@ public class c { } } catch (PackageManager.NameNotFoundException e13) { String valueOf9 = String.valueOf(e13); - a.c0(valueOf9.length() + 35, "Couldn't get own application info: ", valueOf9, "FirebaseMessaging"); + a.b0(valueOf9.length() + 35, "Couldn't get own application info: ", valueOf9, "FirebaseMessaging"); } bundle = Bundle.EMPTY; String packageName = context.getPackageName(); @@ -1313,7 +1313,7 @@ public class c { i = packageManager.getApplicationInfo(packageName, 0).icon; } catch (PackageManager.NameNotFoundException e14) { String valueOf10 = String.valueOf(e14); - a.c0(valueOf10.length() + 35, "Couldn't get own application info: ", valueOf10, "FirebaseMessaging"); + a.b0(valueOf10.length() + 35, "Couldn't get own application info: ", valueOf10, "FirebaseMessaging"); } i = 17301651; builder.setSmallIcon(i); diff --git a/app/src/main/java/c/i/c/w/m.java b/app/src/main/java/c/i/c/w/m.java index 0a134c5a79..089b07e8ba 100644 --- a/app/src/main/java/c/i/c/w/m.java +++ b/app/src/main/java/c/i/c/w/m.java @@ -4,7 +4,6 @@ import android.content.Intent; import androidx.annotation.NonNull; import c.i.c.p.d; import com.adjust.sdk.Constants; -import com.airbnb.lottie.parser.AnimatableValueParser; import com.discord.models.domain.ModelAuditLogEntry; import com.google.firebase.iid.FirebaseInstanceId; import java.io.IOException; @@ -51,7 +50,7 @@ public final class m { i = Integer.parseInt((String) obj2); } catch (NumberFormatException unused) { String valueOf = String.valueOf(obj2); - c.d.b.a.a.c0(valueOf.length() + 13, "Invalid TTL: ", valueOf, "FirebaseMessaging"); + c.d.b.a.a.b0(valueOf.length() + 13, "Invalid TTL: ", valueOf, "FirebaseMessaging"); } } i = 0; @@ -174,9 +173,9 @@ public final class m { } public m(@NonNull String str, @NonNull Intent intent) { - AnimatableValueParser.v(str, "evenType must be non-null"); + c.c.a.a0.d.v(str, "evenType must be non-null"); this.a = str; - AnimatableValueParser.z(intent, "intent must be non-null"); + c.c.a.a0.d.z(intent, "intent must be non-null"); this.b = intent; } } diff --git a/app/src/main/java/c/i/c/w/q.java b/app/src/main/java/c/i/c/w/q.java index 774386bd6b..27ac36d889 100644 --- a/app/src/main/java/c/i/c/w/q.java +++ b/app/src/main/java/c/i/c/w/q.java @@ -19,9 +19,9 @@ public class q { static { e eVar = new e(); eVar.b.put(m.b.class, new m.c()); - eVar.f1371c.remove(m.b.class); + eVar.f1372c.remove(m.b.class); eVar.b.put(m.class, new m.a()); - eVar.f1371c.remove(m.class); + eVar.f1372c.remove(m.class); a = new d(eVar); } diff --git a/app/src/main/java/c/i/c/w/r.java b/app/src/main/java/c/i/c/w/r.java index 0f179a265b..d9d738ee4e 100644 --- a/app/src/main/java/c/i/c/w/r.java +++ b/app/src/main/java/c/i/c/w/r.java @@ -42,7 +42,7 @@ public class r { return Integer.valueOf(Integer.parseInt(e)); } catch (NumberFormatException unused) { String h = h(str); - a.n0(a.O(a.b(e, a.b(h, 38)), "Couldn't parse value of ", h, "(", e), ") into an int", "NotificationParams"); + a.m0(a.N(a.b(e, a.b(h, 38)), "Couldn't parse value of ", h, "(", e), ") into an int", "NotificationParams"); return null; } } @@ -57,7 +57,7 @@ public class r { return new JSONArray(e); } catch (JSONException unused) { String h = h(str); - a.n0(a.O(a.b(e, a.b(h, 50)), "Malformed JSON for key ", h, ": ", e), ", falling back to default", "NotificationParams"); + a.m0(a.N(a.b(e, a.b(h, 50)), "Malformed JSON for key ", h, ": ", e), ", falling back to default", "NotificationParams"); return null; } } @@ -96,9 +96,9 @@ public class r { } catch (MissingFormatArgumentException e3) { String h2 = h(str2); String arrays = Arrays.toString(strArr); - StringBuilder O = a.O(a.b(arrays, a.b(h2, 58)), "Missing format argument for ", h2, ": ", arrays); - O.append(" Default value will be used."); - Log.w("NotificationParams", O.toString(), e3); + StringBuilder N = a.N(a.b(arrays, a.b(h2, 58)), "Missing format argument for ", h2, ": ", arrays); + N.append(" Default value will be used."); + Log.w("NotificationParams", N.toString(), e3); return null; } } diff --git a/app/src/main/java/c/i/c/w/s.java b/app/src/main/java/c/i/c/w/s.java index 9cf518f277..889a8c13be 100644 --- a/app/src/main/java/c/i/c/w/s.java +++ b/app/src/main/java/c/i/c/w/s.java @@ -3,24 +3,24 @@ package c.i.c.w; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import com.airbnb.lottie.parser.AnimatableValueParser; +import c.c.a.a0.d; import com.google.firebase.messaging.RemoteMessage; /* compiled from: com.google.firebase:firebase-messaging@@21.0.0 */ public class s implements Parcelable.Creator { /* Return type fixed from 'java.lang.Object' to match base method */ @Override // android.os.Parcelable.Creator public RemoteMessage createFromParcel(Parcel parcel) { - int P2 = AnimatableValueParser.P2(parcel); + int l2 = d.l2(parcel); Bundle bundle = null; - while (parcel.dataPosition() < P2) { + while (parcel.dataPosition() < l2) { int readInt = parcel.readInt(); if ((65535 & readInt) != 2) { - AnimatableValueParser.G2(parcel, readInt); + d.c2(parcel, readInt); } else { - bundle = AnimatableValueParser.P(parcel, readInt); + bundle = d.P(parcel, readInt); } } - AnimatableValueParser.h0(parcel, P2); + d.h0(parcel, l2); return new RemoteMessage(bundle); } diff --git a/app/src/main/java/c/i/c/w/t.java b/app/src/main/java/c/i/c/w/t.java index 6fd7bff8d7..069e69f9d1 100644 --- a/app/src/main/java/c/i/c/w/t.java +++ b/app/src/main/java/c/i/c/w/t.java @@ -20,7 +20,7 @@ public final /* synthetic */ class t implements Runnable { Iterator it = uVar.d.iterator(); while (it.hasNext()) { sb.append(it.next()); - sb.append(uVar.f1395c); + sb.append(uVar.f1396c); } edit.putString(str, sb.toString()).commit(); } diff --git a/app/src/main/java/c/i/c/w/u.java b/app/src/main/java/c/i/c/w/u.java index b3c2057ae4..84e38fb458 100644 --- a/app/src/main/java/c/i/c/w/u.java +++ b/app/src/main/java/c/i/c/w/u.java @@ -13,7 +13,7 @@ public final class u { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1395c; + public final String f1396c; @GuardedBy("internalQueue") public final ArrayDeque d = new ArrayDeque<>(); public final Executor e; @@ -21,7 +21,7 @@ public final class u { public u(SharedPreferences sharedPreferences, String str, String str2, Executor executor) { this.a = sharedPreferences; this.b = str; - this.f1395c = str2; + this.f1396c = str2; this.e = executor; } @@ -32,8 +32,8 @@ public final class u { uVar.d.clear(); String string = uVar.a.getString(uVar.b, ""); if (!TextUtils.isEmpty(string)) { - if (string.contains(uVar.f1395c)) { - String[] split = string.split(uVar.f1395c, -1); + if (string.contains(uVar.f1396c)) { + String[] split = string.split(uVar.f1396c, -1); if (split.length == 0) { Log.e("FirebaseMessaging", "Corrupted queue. Please check the queue contents and item separator provided"); } diff --git a/app/src/main/java/c/i/c/w/v.java b/app/src/main/java/c/i/c/w/v.java index 21a1c4aa6b..5cc1b8e52c 100644 --- a/app/src/main/java/c/i/c/w/v.java +++ b/app/src/main/java/c/i/c/w/v.java @@ -11,7 +11,7 @@ public final class v { public final String b; /* renamed from: c reason: collision with root package name */ - public final String f1396c; + public final String f1397c; public final String d; public v(String str, String str2) { @@ -26,7 +26,7 @@ public final class v { throw new IllegalArgumentException(String.format("Invalid topic name: %s does not match the allowed format %s.", str3, "[a-zA-Z0-9-_.~%]{1,900}")); } this.b = str3; - this.f1396c = str; + this.f1397c = str; this.d = a.g(a.b(str2, a.b(str, 1)), str, "!", str2); } @@ -35,10 +35,10 @@ public final class v { return false; } v vVar = (v) obj; - return this.b.equals(vVar.b) && this.f1396c.equals(vVar.f1396c); + return this.b.equals(vVar.b) && this.f1397c.equals(vVar.f1397c); } public final int hashCode() { - return Arrays.hashCode(new Object[]{this.f1396c, this.b}); + return Arrays.hashCode(new Object[]{this.f1397c, this.b}); } } diff --git a/app/src/main/java/c/i/c/w/w.java b/app/src/main/java/c/i/c/w/w.java index b746a87d24..5badcf585f 100644 --- a/app/src/main/java/c/i/c/w/w.java +++ b/app/src/main/java/c/i/c/w/w.java @@ -14,7 +14,7 @@ public final class w { public final SharedPreferences b; /* renamed from: c reason: collision with root package name */ - public u f1397c; + public u f1398c; public final Executor d; public w(SharedPreferences sharedPreferences, Executor executor) { @@ -26,7 +26,7 @@ public final class w { public final synchronized v a() { String peek; v vVar; - u uVar = this.f1397c; + u uVar = this.f1398c; synchronized (uVar.d) { peek = uVar.d.peek(); } diff --git a/app/src/main/java/c/i/c/w/x.java b/app/src/main/java/c/i/c/w/x.java index 543580c8bb..767db82cf7 100644 --- a/app/src/main/java/c/i/c/w/x.java +++ b/app/src/main/java/c/i/c/w/x.java @@ -42,7 +42,7 @@ public final /* synthetic */ class x implements Callable { SharedPreferences sharedPreferences = context.getSharedPreferences("com.google.android.gms.appid", 0); w wVar2 = new w(sharedPreferences, scheduledExecutorService); synchronized (wVar2) { - wVar2.f1397c = u.a(sharedPreferences, "topic_operation_queue", ",", scheduledExecutorService); + wVar2.f1398c = u.a(sharedPreferences, "topic_operation_queue", ",", scheduledExecutorService); } w.a = new WeakReference<>(wVar2); wVar = wVar2; diff --git a/app/src/main/java/c/i/c/w/y.java b/app/src/main/java/c/i/c/w/y.java index 4f804eb8d4..ad451df553 100644 --- a/app/src/main/java/c/i/c/w/y.java +++ b/app/src/main/java/c/i/c/w/y.java @@ -30,7 +30,7 @@ public class y { public static final /* synthetic */ int b = 0; /* renamed from: c reason: collision with root package name */ - public final FirebaseInstanceId f1398c; + public final FirebaseInstanceId f1399c; public final Context d; public final q e; public final n f; @@ -42,7 +42,7 @@ public class y { public final w j; public y(FirebaseInstanceId firebaseInstanceId, q qVar, w wVar, n nVar, Context context, @NonNull ScheduledExecutorService scheduledExecutorService) { - this.f1398c = firebaseInstanceId; + this.f1399c = firebaseInstanceId; this.e = qVar; this.j = wVar; this.f = nVar; @@ -77,7 +77,7 @@ public class y { @WorkerThread public final void b(String str) throws IOException { - o oVar = (o) a(this.f1398c.f()); + o oVar = (o) a(this.f1399c.f()); n nVar = this.f; String id2 = oVar.getId(); String a2 = oVar.a(); @@ -91,7 +91,7 @@ public class y { @WorkerThread public final void c(String str) throws IOException { - o oVar = (o) a(this.f1398c.f()); + o oVar = (o) a(this.f1399c.f()); n nVar = this.f; String id2 = oVar.getId(); String a2 = oVar.a(); @@ -124,7 +124,7 @@ public class y { } } try { - String str = a2.f1396c; + String str = a2.f1397c; char c2 = 65535; int hashCode = str.hashCode(); if (hashCode != 83) { @@ -184,7 +184,7 @@ public class y { } w wVar = this.j; synchronized (wVar) { - u uVar = wVar.f1397c; + u uVar = wVar.f1398c; String str4 = a2.d; synchronized (uVar.d) { if (uVar.d.remove(str4)) { diff --git a/app/src/main/java/c/i/c/x/a.java b/app/src/main/java/c/i/c/x/a.java index cd8a64d562..c84455a1db 100644 --- a/app/src/main/java/c/i/c/x/a.java +++ b/app/src/main/java/c/i/c/x/a.java @@ -39,9 +39,9 @@ public final class a extends e { } public String toString() { - StringBuilder P = c.d.b.a.a.P("LibraryVersion{libraryName="); - P.append(this.a); - P.append(", version="); - return c.d.b.a.a.H(P, this.b, "}"); + StringBuilder O = c.d.b.a.a.O("LibraryVersion{libraryName="); + O.append(this.a); + O.append(", version="); + return c.d.b.a.a.G(O, this.b, "}"); } } diff --git a/app/src/main/java/c/i/d/c.java b/app/src/main/java/c/i/d/c.java index 224eb48164..4b2ca48a16 100644 --- a/app/src/main/java/c/i/d/c.java +++ b/app/src/main/java/c/i/d/c.java @@ -69,9 +69,9 @@ public enum c implements d { } char upperCase = Character.toUpperCase(charAt); if (i == 0) { - StringBuilder N = c.d.b.a.a.N(upperCase); - N.append(str.substring(1)); - return N.toString(); + StringBuilder M = c.d.b.a.a.M(upperCase); + M.append(str.substring(1)); + return M.toString(); } return str.substring(0, i) + upperCase + str.substring(i + 1); } diff --git a/app/src/main/java/c/i/d/e.java b/app/src/main/java/c/i/d/e.java index dde3e402e6..27faaa9e63 100644 --- a/app/src/main/java/c/i/d/e.java +++ b/app/src/main/java/c/i/d/e.java @@ -22,7 +22,7 @@ public final class e { public n b = n.DEFAULT; /* renamed from: c reason: collision with root package name */ - public d f1399c = c.IDENTITY; + public d f1400c = c.IDENTITY; public final Map> d = new HashMap(); public final List e = new ArrayList(); public final List f = new ArrayList(); @@ -49,7 +49,7 @@ public final class e { arrayList.add(new TypeAdapters.AnonymousClass32(Timestamp.class, defaultDateTypeAdapter2)); arrayList.add(new TypeAdapters.AnonymousClass32(java.sql.Date.class, defaultDateTypeAdapter3)); } - return new Gson(this.a, this.f1399c, this.d, this.g, false, false, this.j, false, false, false, this.b, null, this.h, this.i, this.e, this.f, arrayList); + return new Gson(this.a, this.f1400c, this.d, this.g, false, false, this.j, false, false, false, this.b, null, this.h, this.i, this.e, this.f, arrayList); } public e b(Type type, Object obj) { diff --git a/app/src/main/java/c/i/d/q/a.java b/app/src/main/java/c/i/d/q/a.java index 9e8743bab2..811741a552 100644 --- a/app/src/main/java/c/i/d/q/a.java +++ b/app/src/main/java/c/i/d/q/a.java @@ -174,15 +174,15 @@ public final class a { @Override // java.lang.Object public String toString() { if (this.lowerBound != null) { - StringBuilder P = c.d.b.a.a.P("? super "); - P.append(a.i(this.lowerBound)); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("? super "); + O.append(a.i(this.lowerBound)); + return O.toString(); } else if (this.upperBound == Object.class) { return "?"; } else { - StringBuilder P2 = c.d.b.a.a.P("? extends "); - P2.append(a.i(this.upperBound)); - return P2.toString(); + StringBuilder O2 = c.d.b.a.a.O("? extends "); + O2.append(a.i(this.upperBound)); + return O2.toString(); } } } diff --git a/app/src/main/java/c/i/d/q/f.java b/app/src/main/java/c/i/d/q/f.java index 8011cc8954..d4226c86b4 100644 --- a/app/src/main/java/c/i/d/q/f.java +++ b/app/src/main/java/c/i/d/q/f.java @@ -12,12 +12,12 @@ public class f implements r { public final /* synthetic */ Class b; /* renamed from: c reason: collision with root package name */ - public final /* synthetic */ Type f1400c; + public final /* synthetic */ Type f1401c; public f(g gVar, Class cls, Type type) { w wVar; this.b = cls; - this.f1400c = type; + this.f1401c = type; try { Class cls2 = Class.forName("sun.misc.Unsafe"); Field declaredField = cls2.getDeclaredField("theUnsafe"); @@ -50,10 +50,10 @@ public class f implements r { try { return this.a.b(this.b); } catch (Exception e) { - StringBuilder P = a.P("Unable to invoke no-args constructor for "); - P.append(this.f1400c); - P.append(". Registering an InstanceCreator with Gson for this type may fix this problem."); - throw new RuntimeException(P.toString(), e); + StringBuilder O = a.O("Unable to invoke no-args constructor for "); + O.append(this.f1401c); + O.append(". Registering an InstanceCreator with Gson for this type may fix this problem."); + throw new RuntimeException(O.toString(), e); } } } diff --git a/app/src/main/java/c/i/d/q/h.java b/app/src/main/java/c/i/d/q/h.java index f008aab731..92e305cf0e 100644 --- a/app/src/main/java/c/i/d/q/h.java +++ b/app/src/main/java/c/i/d/q/h.java @@ -17,15 +17,15 @@ public class h implements r { try { return this.a.newInstance(null); } catch (InstantiationException e) { - StringBuilder P = a.P("Failed to invoke "); - P.append(this.a); - P.append(" with no args"); - throw new RuntimeException(P.toString(), e); + StringBuilder O = a.O("Failed to invoke "); + O.append(this.a); + O.append(" with no args"); + throw new RuntimeException(O.toString(), e); } catch (InvocationTargetException e2) { - StringBuilder P2 = a.P("Failed to invoke "); - P2.append(this.a); - P2.append(" with no args"); - throw new RuntimeException(P2.toString(), e2.getTargetException()); + StringBuilder O2 = a.O("Failed to invoke "); + O2.append(this.a); + O2.append(" with no args"); + throw new RuntimeException(O2.toString(), e2.getTargetException()); } catch (IllegalAccessException e3) { throw new AssertionError(e3); } diff --git a/app/src/main/java/c/i/d/q/j.java b/app/src/main/java/c/i/d/q/j.java index 2d887ee9d6..a0459fccf9 100644 --- a/app/src/main/java/c/i/d/q/j.java +++ b/app/src/main/java/c/i/d/q/j.java @@ -22,12 +22,12 @@ public class j implements r { if (type2 instanceof Class) { return EnumSet.noneOf((Class) type2); } - StringBuilder P = a.P("Invalid EnumSet type: "); - P.append(this.a.toString()); - throw new JsonIOException(P.toString()); + StringBuilder O = a.O("Invalid EnumSet type: "); + O.append(this.a.toString()); + throw new JsonIOException(O.toString()); } - StringBuilder P2 = a.P("Invalid EnumSet type: "); - P2.append(this.a.toString()); - throw new JsonIOException(P2.toString()); + StringBuilder O2 = a.O("Invalid EnumSet type: "); + O2.append(this.a.toString()); + throw new JsonIOException(O2.toString()); } } diff --git a/app/src/main/java/c/i/d/q/w.java b/app/src/main/java/c/i/d/q/w.java index 169bb6c6af..e3a1dc2ba2 100644 --- a/app/src/main/java/c/i/d/q/w.java +++ b/app/src/main/java/c/i/d/q/w.java @@ -7,13 +7,13 @@ public abstract class w { public static void a(Class cls) { int modifiers = cls.getModifiers(); if (Modifier.isInterface(modifiers)) { - StringBuilder P = a.P("Interface can't be instantiated! Interface name: "); - P.append(cls.getName()); - throw new UnsupportedOperationException(P.toString()); + StringBuilder O = a.O("Interface can't be instantiated! Interface name: "); + O.append(cls.getName()); + throw new UnsupportedOperationException(O.toString()); } else if (Modifier.isAbstract(modifiers)) { - StringBuilder P2 = a.P("Abstract class can't be instantiated! Class name: "); - P2.append(cls.getName()); - throw new UnsupportedOperationException(P2.toString()); + StringBuilder O2 = a.O("Abstract class can't be instantiated! Class name: "); + O2.append(cls.getName()); + throw new UnsupportedOperationException(O2.toString()); } } diff --git a/app/src/main/java/c/i/d/q/x/a.java b/app/src/main/java/c/i/d/q/x/a.java index 45586d14d1..32822e6f2d 100644 --- a/app/src/main/java/c/i/d/q/x/a.java +++ b/app/src/main/java/c/i/d/q/x/a.java @@ -17,10 +17,10 @@ import java.util.Map; public final class a extends JsonReader { /* renamed from: y reason: collision with root package name */ - public static final Reader f1401y = new C0151a(); + public static final Reader f1402y = new C0151a(); /* renamed from: z reason: collision with root package name */ - public static final Object f1402z = new Object(); + public static final Object f1403z = new Object(); public Object[] A = new Object[32]; public int B = 0; public String[] C = new String[32]; @@ -41,14 +41,14 @@ public final class a extends JsonReader { } public a(JsonElement jsonElement) { - super(f1401y); + super(f1402y); c0(jsonElement); } private String t() { - StringBuilder P = c.d.b.a.a.P(" at path "); - P.append(getPath()); - return P.toString(); + StringBuilder O = c.d.b.a.a.O(" at path "); + O.append(getPath()); + return O.toString(); } @Override // com.google.gson.stream.JsonReader @@ -147,7 +147,7 @@ public final class a extends JsonReader { } else if (a02 instanceof j) { return JsonToken.NULL; } else { - if (a02 == f1402z) { + if (a02 == f1403z) { throw new IllegalStateException("JsonReader is closed"); } throw new AssertionError(); @@ -224,7 +224,7 @@ public final class a extends JsonReader { @Override // com.google.gson.stream.JsonReader, java.io.Closeable, java.lang.AutoCloseable public void close() throws IOException { - this.A = new Object[]{f1402z}; + this.A = new Object[]{f1403z}; this.B = 1; } @@ -256,30 +256,30 @@ public final class a extends JsonReader { @Override // com.google.gson.stream.JsonReader public String getPath() { - StringBuilder N = c.d.b.a.a.N('$'); + StringBuilder M = c.d.b.a.a.M('$'); int i = 0; while (i < this.B) { Object[] objArr = this.A; if (objArr[i] instanceof g) { i++; if (objArr[i] instanceof Iterator) { - N.append('['); - N.append(this.D[i]); - N.append(']'); + M.append('['); + M.append(this.D[i]); + M.append(']'); } } else if (objArr[i] instanceof JsonObject) { i++; if (objArr[i] instanceof Iterator) { - N.append('.'); + M.append('.'); String[] strArr = this.C; if (strArr[i] != null) { - N.append(strArr[i]); + M.append(strArr[i]); } } } i++; } - return N.toString(); + return M.toString(); } @Override // com.google.gson.stream.JsonReader diff --git a/app/src/main/java/c/i/d/q/x/b.java b/app/src/main/java/c/i/d/q/x/b.java index 241b3265f0..9ba461aec7 100644 --- a/app/src/main/java/c/i/d/q/x/b.java +++ b/app/src/main/java/c/i/d/q/x/b.java @@ -18,7 +18,7 @@ public final class b extends JsonWriter { public String w; /* renamed from: x reason: collision with root package name */ - public JsonElement f1403x = j.a; + public JsonElement f1404x = j.a; /* compiled from: JsonTreeWriter */ public class a extends Writer { @@ -92,11 +92,11 @@ public final class b extends JsonWriter { public JsonElement M() { if (this.v.isEmpty()) { - return this.f1403x; + return this.f1404x; } - StringBuilder P = c.d.b.a.a.P("Expected one JSON element but was "); - P.append(this.v); - throw new IllegalStateException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Expected one JSON element but was "); + O.append(this.v); + throw new IllegalStateException(O.toString()); } public final JsonElement N() { @@ -106,12 +106,12 @@ public final class b extends JsonWriter { public final void Q(JsonElement jsonElement) { if (this.w != null) { - if (!(jsonElement instanceof j) || this.f2453s) { + if (!(jsonElement instanceof j) || this.f2456s) { ((JsonObject) N()).a.put(this.w, jsonElement); } this.w = null; } else if (this.v.isEmpty()) { - this.f1403x = jsonElement; + this.f1404x = jsonElement; } else { JsonElement N = N(); if (N instanceof g) { diff --git a/app/src/main/java/c/i/d/q/x/d/a.java b/app/src/main/java/c/i/d/q/x/d/a.java index 2bfaddb594..cb7559fd4b 100644 --- a/app/src/main/java/c/i/d/q/x/d/a.java +++ b/app/src/main/java/c/i/d/q/x/d/a.java @@ -161,10 +161,10 @@ public class a { } String message = e.getMessage(); if (message == null || message.isEmpty()) { - StringBuilder P = c.d.b.a.a.P("("); - P.append(e.getClass().getName()); - P.append(")"); - message = P.toString(); + StringBuilder O = c.d.b.a.a.O("("); + O.append(e.getClass().getName()); + O.append(")"); + message = O.toString(); } ParseException parseException = new ParseException("Failed to parse date [" + str2 + "]: " + message, parsePosition.getIndex()); parseException.initCause(e); @@ -184,9 +184,9 @@ public class a { if (digit >= 0) { i3 = -digit; } else { - StringBuilder P = c.d.b.a.a.P("Invalid number: "); - P.append(str.substring(i, i2)); - throw new NumberFormatException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Invalid number: "); + O.append(str.substring(i, i2)); + throw new NumberFormatException(O.toString()); } } else { i3 = 0; @@ -199,9 +199,9 @@ public class a { i3 = (i3 * 10) - digit2; i4 = i5; } else { - StringBuilder P2 = c.d.b.a.a.P("Invalid number: "); - P2.append(str.substring(i, i2)); - throw new NumberFormatException(P2.toString()); + StringBuilder O2 = c.d.b.a.a.O("Invalid number: "); + O2.append(str.substring(i, i2)); + throw new NumberFormatException(O2.toString()); } } return -i3; diff --git a/app/src/main/java/c/i/d/q/y/c.java b/app/src/main/java/c/i/d/q/y/c.java index 22ea0dcd9d..5954c040e5 100644 --- a/app/src/main/java/c/i/d/q/y/c.java +++ b/app/src/main/java/c/i/d/q/y/c.java @@ -8,7 +8,7 @@ public final class c extends b { public static Class b; /* renamed from: c reason: collision with root package name */ - public final Object f1404c; + public final Object f1405c; public final Field d; public c() { @@ -23,7 +23,7 @@ public final class c extends b { } catch (Exception unused) { obj = null; } - this.f1404c = obj; + this.f1405c = obj; try { field = AccessibleObject.class.getDeclaredField("override"); } catch (NoSuchFieldException unused2) { @@ -34,9 +34,9 @@ public final class c extends b { @Override // c.i.d.q.y.b public void a(AccessibleObject accessibleObject) { boolean z2 = false; - if (!(this.f1404c == null || this.d == null)) { + if (!(this.f1405c == null || this.d == null)) { try { - b.getMethod("putBoolean", Object.class, Long.TYPE, Boolean.TYPE).invoke(this.f1404c, accessibleObject, Long.valueOf(((Long) b.getMethod("objectFieldOffset", Field.class).invoke(this.f1404c, this.d)).longValue()), Boolean.TRUE); + b.getMethod("putBoolean", Object.class, Long.TYPE, Boolean.TYPE).invoke(this.f1405c, accessibleObject, Long.valueOf(((Long) b.getMethod("objectFieldOffset", Field.class).invoke(this.f1405c, this.d)).longValue()), Boolean.TRUE); z2 = true; } catch (Exception unused) { } diff --git a/app/src/main/java/c/i/e/c.java b/app/src/main/java/c/i/e/c.java index 94fd27a150..113faffa5f 100644 --- a/app/src/main/java/c/i/e/c.java +++ b/app/src/main/java/c/i/e/c.java @@ -29,7 +29,7 @@ public final class c { hVar.b(i2); int[] iArr = hVar.d; for (int i4 = 1; i4 < 5; i4++) { - byte[] b = fVar.b((i3 * i4) / 5, hVar.f1422c); + byte[] b = fVar.b((i3 * i4) / 5, hVar.f1423c); int i5 = (i2 << 2) / 5; for (int i6 = i2 / 5; i6 < i5; i6++) { int i7 = (b[i6] & 255) >> 3; @@ -224,7 +224,7 @@ public final class c { } } hVar.b(i3); - byte[] b = fVar.b(i, hVar.f1422c); + byte[] b = fVar.b(i, hVar.f1423c); int[] iArr = hVar.d; int i5 = 0; while (true) { diff --git a/app/src/main/java/c/i/e/e.java b/app/src/main/java/c/i/e/e.java index 69eec65b3f..ec4663b2bc 100644 --- a/app/src/main/java/c/i/e/e.java +++ b/app/src/main/java/c/i/e/e.java @@ -3,16 +3,16 @@ package c.i.e; public final class e extends f { /* renamed from: c reason: collision with root package name */ - public final f f1410c; + public final f f1411c; public e(f fVar) { super(fVar.a, fVar.b); - this.f1410c = fVar; + this.f1411c = fVar; } @Override // c.i.e.f public byte[] a() { - byte[] a = this.f1410c.a(); + byte[] a = this.f1411c.a(); int i = this.a * this.b; byte[] bArr = new byte[i]; for (int i2 = 0; i2 < i; i2++) { @@ -23,7 +23,7 @@ public final class e extends f { @Override // c.i.e.f public byte[] b(int i, byte[] bArr) { - byte[] b = this.f1410c.b(i, bArr); + byte[] b = this.f1411c.b(i, bArr); int i2 = this.a; for (int i3 = 0; i3 < i2; i3++) { b[i3] = (byte) (255 - (b[i3] & 255)); @@ -33,11 +33,11 @@ public final class e extends f { @Override // c.i.e.f public boolean c() { - return this.f1410c.c(); + return this.f1411c.c(); } @Override // c.i.e.f public f d() { - return new e(this.f1410c.d()); + return new e(this.f1411c.d()); } } diff --git a/app/src/main/java/c/i/e/h.java b/app/src/main/java/c/i/e/h.java index 564a03159f..968c89452f 100644 --- a/app/src/main/java/c/i/e/h.java +++ b/app/src/main/java/c/i/e/h.java @@ -3,7 +3,7 @@ package c.i.e; public final class h extends f { /* renamed from: c reason: collision with root package name */ - public final byte[] f1411c; + public final byte[] f1412c; public final int d; public final int e; public final int f; @@ -14,7 +14,7 @@ public final class h extends f { if (i3 + i5 > i || i4 + i6 > i2) { throw new IllegalArgumentException("Crop rectangle does not fit within image data."); } - this.f1411c = bArr; + this.f1412c = bArr; this.d = i; this.e = i2; this.f = i3; @@ -45,17 +45,17 @@ public final class h extends f { int i2 = this.b; int i3 = this.d; if (i == i3 && i2 == this.e) { - return this.f1411c; + return this.f1412c; } int i4 = i * i2; byte[] bArr = new byte[i4]; int i5 = (this.g * i3) + this.f; if (i == i3) { - System.arraycopy(this.f1411c, i5, bArr, 0, i4); + System.arraycopy(this.f1412c, i5, bArr, 0, i4); return bArr; } for (int i6 = 0; i6 < i2; i6++) { - System.arraycopy(this.f1411c, i5, bArr, i6 * i, i); + System.arraycopy(this.f1412c, i5, bArr, i6 * i, i); i5 += this.d; } return bArr; @@ -70,7 +70,7 @@ public final class h extends f { if (bArr == null || bArr.length < i2) { bArr = new byte[i2]; } - System.arraycopy(this.f1411c, ((i + this.g) * this.d) + this.f, bArr, 0, i2); + System.arraycopy(this.f1412c, ((i + this.g) * this.d) + this.f, bArr, 0, i2); return bArr; } } diff --git a/app/src/main/java/c/i/e/m/a.java b/app/src/main/java/c/i/e/m/a.java index e47d5ccfe2..56292eef81 100644 --- a/app/src/main/java/c/i/e/m/a.java +++ b/app/src/main/java/c/i/e/m/a.java @@ -7,13 +7,13 @@ import c.i.e.n.g; public final class a extends g { /* renamed from: c reason: collision with root package name */ - public final boolean f1413c; + public final boolean f1414c; public final int d; public final int e; public a(b bVar, k[] kVarArr, boolean z2, int i, int i2) { super(bVar, kVarArr); - this.f1413c = z2; + this.f1414c = z2; this.d = i; this.e = i2; } diff --git a/app/src/main/java/c/i/e/m/b.java b/app/src/main/java/c/i/e/m/b.java index cb8f37a0a3..7df6eb0418 100644 --- a/app/src/main/java/c/i/e/m/b.java +++ b/app/src/main/java/c/i/e/m/b.java @@ -47,7 +47,7 @@ public final class b implements i { } while (r11 < r0) { } - Result result = new Result(eVar.f1421c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); + Result result = new Result(eVar.f1422c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); list = eVar.d; if (list != null) { } @@ -64,7 +64,7 @@ public final class b implements i { } while (r11 < r0) { } - Result result = new Result(eVar.f1421c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); + Result result = new Result(eVar.f1422c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); list = eVar.d; if (list != null) { } @@ -82,7 +82,7 @@ public final class b implements i { } while (r11 < r0) { } - Result result = new Result(eVar.f1421c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); + Result result = new Result(eVar.f1422c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); list = eVar.d; if (list != null) { } @@ -100,7 +100,7 @@ public final class b implements i { } while (r11 < r0) { } - Result result = new Result(eVar.f1421c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); + Result result = new Result(eVar.f1422c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); list = eVar.d; if (list != null) { } @@ -129,7 +129,7 @@ public final class b implements i { lVar.a(kVar); } } - Result result = new Result(eVar.f1421c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); + Result result = new Result(eVar.f1422c, eVar.a, eVar.b, kVarArr, c.i.e.a.AZTEC, System.currentTimeMillis()); list = eVar.d; if (list != null) { result.b(j.BYTE_SEGMENTS, list); diff --git a/app/src/main/java/c/i/e/m/c/a.java b/app/src/main/java/c/i/e/m/c/a.java index e75527ac25..5b21c3c7cf 100644 --- a/app/src/main/java/c/i/e/m/c/a.java +++ b/app/src/main/java/c/i/e/m/c/a.java @@ -16,7 +16,7 @@ public final class a { public static final String[] b = {"CTRL_PS", " ", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "CTRL_US", "CTRL_ML", "CTRL_DL", "CTRL_BS"}; /* renamed from: c reason: collision with root package name */ - public static final String[] f1414c = {"CTRL_PS", " ", "\u0001", "\u0002", "\u0003", "\u0004", "\u0005", "\u0006", "\u0007", "\b", "\t", "\n", "\u000b", "\f", "\r", "\u001b", "\u001c", "\u001d", "\u001e", "\u001f", "@", "\\", "^", "_", "`", "|", "~", "", "CTRL_LL", "CTRL_UL", "CTRL_PL", "CTRL_BS"}; + public static final String[] f1415c = {"CTRL_PS", " ", "\u0001", "\u0002", "\u0003", "\u0004", "\u0005", "\u0006", "\u0007", "\b", "\t", "\n", "\u000b", "\f", "\r", "\u001b", "\u001c", "\u001d", "\u001e", "\u001f", "@", "\\", "^", "_", "`", "|", "~", "", "CTRL_LL", "CTRL_UL", "CTRL_PL", "CTRL_BS"}; public static final String[] d = {"", "\r", "\r\n", ". ", ", ", ": ", "!", "\"", "#", "$", "%", "&", "'", "(", ")", "*", BadgeDrawable.DEFAULT_EXCEED_MAX_BADGE_NUMBER_SUFFIX, ",", "-", ".", AutocompleteViewModel.COMMAND_DISCOVER_TOKEN, ":", ";", "<", "=", ">", "?", "[", "]", "{", "}", "CTRL_UL"}; public static final String[] e = {"CTRL_PS", " ", "0", "1", ExifInterface.GPS_MEASUREMENT_2D, ExifInterface.GPS_MEASUREMENT_3D, "4", "5", "6", "7", "8", "9", ",", ".", "CTRL_UL", "CTRL_US"}; public c.i.e.m.a f; @@ -38,7 +38,7 @@ public final class a { String str; this.f = aVar; b bVar = aVar.a; - boolean z2 = aVar.f1413c; + boolean z2 = aVar.f1414c; int i2 = aVar.e; int i3 = (z2 ? 11 : 14) + (i2 << 2); int[] iArr = new int[i3]; @@ -102,7 +102,7 @@ public final class a { int i24 = aVar3.e; int i25 = 8; if (i24 <= 2) { - aVar2 = c.i.e.n.l.a.f1425c; + aVar2 = c.i.e.n.l.a.f1426c; i = 6; } else if (i24 <= 8) { aVar2 = c.i.e.n.l.a.g; @@ -213,7 +213,7 @@ public final class a { } else if (h == 1) { str = b[b3]; } else if (h == 2) { - str = f1414c[b3]; + str = f1415c[b3]; } else if (h == 3) { str = e[b3]; } else if (h == 4) { diff --git a/app/src/main/java/c/i/e/m/d/a.java b/app/src/main/java/c/i/e/m/d/a.java index 17dd762269..3d1ecbb278 100644 --- a/app/src/main/java/c/i/e/m/d/a.java +++ b/app/src/main/java/c/i/e/m/d/a.java @@ -13,7 +13,7 @@ public final class a { public final b b; /* renamed from: c reason: collision with root package name */ - public boolean f1415c; + public boolean f1416c; public int d; public int e; public int f; @@ -297,7 +297,7 @@ public final class a { } int i48 = this.f; if (i48 == 5 || i48 == 7) { - this.f1415c = i48 == 5; + this.f1416c = i48 == 5; int i49 = i48 * 2; k[] b3 = b(new k[]{new k(((float) aVar2.a) + 0.5f, ((float) aVar2.b) - 0.5f), new k(((float) aVar3.a) + 0.5f, ((float) aVar3.b) + 0.5f), new k(((float) aVar4.a) - 0.5f, ((float) aVar4.b) + 0.5f), new k(((float) aVar5.a) - 0.5f, ((float) aVar5.b) - 0.5f)}, i49 - 3, i49); if (z2) { @@ -322,7 +322,7 @@ public final class a { long j2 = 0; for (int i56 = 0; i56 < 4; i56++) { int i57 = iArr[(this.g + i56) % 4]; - if (this.f1415c) { + if (this.f1416c) { j = j2 << 7; i2 = (i57 >> 1) & 127; } else { @@ -332,7 +332,7 @@ public final class a { j2 = j + ((long) i2); } int i58 = 7; - if (this.f1415c) { + if (this.f1416c) { i = 2; } else { i = 4; @@ -358,7 +358,7 @@ public final class a { for (int i61 = 0; i61 < i; i61++) { i60 = (i60 << 4) + iArr2[i61]; } - if (this.f1415c) { + if (this.f1416c) { this.d = (i60 >> 6) + 1; this.e = (i60 & 63) + 1; } else { @@ -377,7 +377,7 @@ public final class a { float f2 = (float) this.f; float f3 = f - f2; float f4 = f + f2; - return new c.i.e.m.a(fVar.a(bVar3, d, d, i.a(f3, f3, f4, f3, f4, f4, f3, f4, kVar16.a, kVar16.b, kVar17.a, kVar17.b, kVar18.a, kVar18.b, kVar19.a, kVar19.b)), b(b3, this.f * 2, d()), this.f1415c, this.e, this.d); + return new c.i.e.m.a(fVar.a(bVar3, d, d, i.a(f3, f3, f4, f3, f4, f4, f3, f4, kVar16.a, kVar16.b, kVar17.a, kVar17.b, kVar18.a, kVar18.b, kVar19.a, kVar19.b)), b(b3, this.f * 2, d()), this.f1416c, this.e, this.d); } } throw NotFoundException.k; @@ -417,7 +417,7 @@ public final class a { } public final int d() { - if (this.f1415c) { + if (this.f1416c) { return (this.d * 4) + 11; } int i = this.d; diff --git a/app/src/main/java/c/i/e/n/c.java b/app/src/main/java/c/i/e/n/c.java index c2503e2aa1..27250e9832 100644 --- a/app/src/main/java/c/i/e/n/c.java +++ b/app/src/main/java/c/i/e/n/c.java @@ -5,21 +5,21 @@ public final class c { public int b; /* renamed from: c reason: collision with root package name */ - public int f1416c; + public int f1417c; public c(byte[] bArr) { this.a = bArr; } public int a() { - return ((this.a.length - this.b) * 8) - this.f1416c; + return ((this.a.length - this.b) * 8) - this.f1417c; } public int b(int i) { if (i <= 0 || i > 32 || i > a()) { throw new IllegalArgumentException(String.valueOf(i)); } - int i2 = this.f1416c; + int i2 = this.f1417c; int i3 = 0; if (i2 > 0) { int i4 = 8 - i2; @@ -30,9 +30,9 @@ public final class c { int i8 = (((255 >> (8 - i5)) << i6) & bArr[i7]) >> i6; i -= i5; int i9 = i2 + i5; - this.f1416c = i9; + this.f1417c = i9; if (i9 == 8) { - this.f1416c = 0; + this.f1417c = 0; this.b = i7 + 1; } i3 = i8; @@ -53,7 +53,7 @@ public final class c { } int i12 = 8 - i; int i13 = (i3 << i) | ((((255 >> i12) << i12) & this.a[this.b]) >> i12); - this.f1416c += i; + this.f1417c += i; return i13; } } diff --git a/app/src/main/java/c/i/e/n/e.java b/app/src/main/java/c/i/e/n/e.java index d05175711d..d0201fad67 100644 --- a/app/src/main/java/c/i/e/n/e.java +++ b/app/src/main/java/c/i/e/n/e.java @@ -7,7 +7,7 @@ public final class e { public int b; /* renamed from: c reason: collision with root package name */ - public final String f1421c; + public final String f1422c; public final List d; public final String e; public Object f; @@ -21,7 +21,7 @@ public final class e { public e(byte[] bArr, String str, List list, String str2, int i, int i2) { this.a = bArr; this.b = bArr == null ? 0 : bArr.length * 8; - this.f1421c = str; + this.f1422c = str; this.d = list; this.e = str2; this.g = i2; diff --git a/app/src/main/java/c/i/e/n/f.java b/app/src/main/java/c/i/e/n/f.java index cb51ba0298..edab03fb32 100644 --- a/app/src/main/java/c/i/e/n/f.java +++ b/app/src/main/java/c/i/e/n/f.java @@ -28,7 +28,7 @@ public final class f { Objects.requireNonNull(iVar); float f2 = iVar.a; float f3 = iVar.b; - float f4 = iVar.f1423c; + float f4 = iVar.f1424c; float f5 = iVar.d; float f6 = iVar.e; float f7 = iVar.f; diff --git a/app/src/main/java/c/i/e/n/h.java b/app/src/main/java/c/i/e/n/h.java index d9c7289163..11008c711e 100644 --- a/app/src/main/java/c/i/e/n/h.java +++ b/app/src/main/java/c/i/e/n/h.java @@ -8,7 +8,7 @@ public final class h extends b { public static final byte[] b = new byte[0]; /* renamed from: c reason: collision with root package name */ - public byte[] f1422c = b; + public byte[] f1423c = b; public final int[] d = new int[32]; public b e; @@ -63,8 +63,8 @@ public final class h extends b { } public final void b(int i) { - if (this.f1422c.length < i) { - this.f1422c = new byte[i]; + if (this.f1423c.length < i) { + this.f1423c = new byte[i]; } for (int i2 = 0; i2 < 32; i2++) { this.d[i2] = 0; diff --git a/app/src/main/java/c/i/e/n/i.java b/app/src/main/java/c/i/e/n/i.java index 217f5b12be..1e0baefca0 100644 --- a/app/src/main/java/c/i/e/n/i.java +++ b/app/src/main/java/c/i/e/n/i.java @@ -5,7 +5,7 @@ public final class i { public final float b; /* renamed from: c reason: collision with root package name */ - public final float f1423c; + public final float f1424c; public final float d; public final float e; public final float f; @@ -16,7 +16,7 @@ public final class i { public i(float f, float f2, float f3, float f4, float f5, float f6, float f7, float f8, float f9) { this.a = f; this.b = f4; - this.f1423c = f7; + this.f1424c = f7; this.d = f2; this.e = f5; this.f = f8; @@ -36,7 +36,7 @@ public final class i { float f23 = b.d; float f24 = (f19 * f22) - (f23 * f18); float f25 = (f23 * f20) - (f17 * f22); - float f26 = b.f1423c; + float f26 = b.f1424c; float f27 = b.b; float f28 = (f26 * f20) - (f27 * f18); float f29 = b.a; @@ -59,7 +59,7 @@ public final class i { float f45 = (f44 * f32) + (f43 * f28) + (f42 * f21); float f46 = (f43 * f30) + (f42 * f24); float f47 = (f43 * f31) + (f42 * f25) + (f44 * f34); - float f48 = b2.f1423c; + float f48 = b2.f1424c; float f49 = b2.f; float f50 = f28 * f49; float f51 = b2.i; diff --git a/app/src/main/java/c/i/e/n/k/a.java b/app/src/main/java/c/i/e/n/k/a.java index 75f12d5581..0f0cff318d 100644 --- a/app/src/main/java/c/i/e/n/k/a.java +++ b/app/src/main/java/c/i/e/n/k/a.java @@ -10,7 +10,7 @@ public final class a { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1424c; + public final int f1425c; public final int d; public final int e; public final int f; @@ -21,7 +21,7 @@ public final class a { int i4 = bVar.j; this.b = i4; int i5 = bVar.i; - this.f1424c = i5; + this.f1425c = i5; int i6 = i / 2; int i7 = i2 - i6; this.d = i7; @@ -75,7 +75,7 @@ public final class a { boolean z9 = true; boolean z10 = false; while (true) { - if ((z9 || !z4) && i2 < this.f1424c) { + if ((z9 || !z4) && i2 < this.f1425c) { z9 = a(i3, i4, i2, false); if (z9) { i2++; @@ -86,7 +86,7 @@ public final class a { } } } - if (i2 >= this.f1424c) { + if (i2 >= this.f1425c) { break; } boolean z11 = true; @@ -182,7 +182,7 @@ public final class a { float f6 = kVar4.b; float f7 = kVar3.a; float f8 = kVar3.b; - return f < ((float) this.f1424c) / 2.0f ? new k[]{new k(f7 - 1.0f, f8 + 1.0f), new k(f3 + 1.0f, f4 + 1.0f), new k(f5 - 1.0f, f6 - 1.0f), new k(f + 1.0f, f2 - 1.0f)} : new k[]{new k(f7 + 1.0f, f8 + 1.0f), new k(f3 + 1.0f, f4 - 1.0f), new k(f5 - 1.0f, f6 + 1.0f), new k(f - 1.0f, f2 - 1.0f)}; + return f < ((float) this.f1425c) / 2.0f ? new k[]{new k(f7 - 1.0f, f8 + 1.0f), new k(f3 + 1.0f, f4 + 1.0f), new k(f5 - 1.0f, f6 - 1.0f), new k(f + 1.0f, f2 - 1.0f)} : new k[]{new k(f7 + 1.0f, f8 + 1.0f), new k(f3 + 1.0f, f4 - 1.0f), new k(f5 - 1.0f, f6 + 1.0f), new k(f - 1.0f, f2 - 1.0f)}; } throw NotFoundException.k; } diff --git a/app/src/main/java/c/i/e/n/l/a.java b/app/src/main/java/c/i/e/n/l/a.java index 1751024650..5fbb6caa55 100644 --- a/app/src/main/java/c/i/e/n/l/a.java +++ b/app/src/main/java/c/i/e/n/l/a.java @@ -5,7 +5,7 @@ public final class a { public static final a b = new a(1033, 1024, 1); /* renamed from: c reason: collision with root package name */ - public static final a f1425c; + public static final a f1426c; public static final a d = new a(19, 16, 1); public static final a e = new a(285, 256, 0); public static final a f; @@ -21,7 +21,7 @@ public final class a { static { a aVar = new a(67, 64, 1); - f1425c = aVar; + f1426c = aVar; a aVar2 = new a(301, 256, 1); f = aVar2; g = aVar2; diff --git a/app/src/main/java/c/i/e/o/a.java b/app/src/main/java/c/i/e/o/a.java index ab601ed868..5c6e1b696c 100644 --- a/app/src/main/java/c/i/e/o/a.java +++ b/app/src/main/java/c/i/e/o/a.java @@ -71,8 +71,8 @@ public final class a implements i { if (hashMap.containsKey(kVar)) { kVar = !hashMap.containsKey(kVar2) ? kVar2 : !hashMap.containsKey(kVar3) ? kVar3 : kVar4; } - int i = aVar.e(kVar11, kVar).f1429c; - int i2 = aVar.e(kVar9, kVar).f1429c; + int i = aVar.e(kVar11, kVar).f1430c; + int i2 = aVar.e(kVar9, kVar).f1430c; if ((i & 1) == 1) { i++; } @@ -98,14 +98,14 @@ public final class a implements i { if (!aVar.c(kVar13)) { kVar13 = null; } - } else if (!aVar.c(kVar13) || Math.abs(i4 - aVar.e(kVar9, kVar12).f1429c) + Math.abs(i3 - aVar.e(kVar11, kVar12).f1429c) <= Math.abs(i4 - aVar.e(kVar9, kVar13).f1429c) + Math.abs(i3 - aVar.e(kVar11, kVar13).f1429c)) { + } else if (!aVar.c(kVar13) || Math.abs(i4 - aVar.e(kVar9, kVar12).f1430c) + Math.abs(i3 - aVar.e(kVar11, kVar12).f1430c) <= Math.abs(i4 - aVar.e(kVar9, kVar13).f1430c) + Math.abs(i3 - aVar.e(kVar11, kVar13).f1430c)) { kVar13 = kVar12; } if (kVar13 != null) { kVar = kVar13; } - int i5 = aVar.e(kVar11, kVar).f1429c; - int i6 = aVar.e(kVar9, kVar).f1429c; + int i5 = aVar.e(kVar11, kVar).f1430c; + int i6 = aVar.e(kVar9, kVar).f1430c; if ((i5 & 1) == 1) { i5++; } @@ -131,13 +131,13 @@ public final class a implements i { if (!aVar.c(kVar15)) { kVar15 = null; } - } else if (!aVar.c(kVar15) || Math.abs(aVar.e(kVar11, kVar14).f1429c - aVar.e(kVar9, kVar14).f1429c) <= Math.abs(aVar.e(kVar11, kVar15).f1429c - aVar.e(kVar9, kVar15).f1429c)) { + } else if (!aVar.c(kVar15) || Math.abs(aVar.e(kVar11, kVar14).f1430c - aVar.e(kVar9, kVar14).f1430c) <= Math.abs(aVar.e(kVar11, kVar15).f1430c - aVar.e(kVar9, kVar15).f1430c)) { kVar15 = kVar14; } if (kVar15 != null) { kVar = kVar15; } - int max = Math.max(aVar.e(kVar11, kVar).f1429c, aVar.e(kVar9, kVar).f1429c) + 1; + int max = Math.max(aVar.e(kVar11, kVar).f1430c, aVar.e(kVar9, kVar).f1430c) + 1; if ((max & 1) == 1) { max++; } @@ -190,7 +190,7 @@ public final class a implements i { throw NotFoundException.k; } } - Result result = new Result(eVar.f1421c, eVar.a, kVarArr, c.i.e.a.DATA_MATRIX); + Result result = new Result(eVar.f1422c, eVar.a, kVarArr, c.i.e.a.DATA_MATRIX); List list = eVar.d; if (list != null) { result.b(j.BYTE_SEGMENTS, list); diff --git a/app/src/main/java/c/i/e/o/b/a.java b/app/src/main/java/c/i/e/o/b/a.java index dfc9ee11f8..37a1216bb9 100644 --- a/app/src/main/java/c/i/e/o/b/a.java +++ b/app/src/main/java/c/i/e/o/b/a.java @@ -8,7 +8,7 @@ public final class a { public final b b; /* renamed from: c reason: collision with root package name */ - public final e f1426c; + public final e f1427c; public a(b bVar) throws FormatException { int i; @@ -21,9 +21,9 @@ public final class a { if ((i2 & 1) == 0 && (i3 & 1) == 0) { e[] eVarArr2 = e.a; for (e eVar : eVarArr2) { - int i4 = eVar.f1428c; + int i4 = eVar.f1429c; if (i4 == i2 && (i = eVar.d) == i3) { - this.f1426c = eVar; + this.f1427c = eVar; if (bVar.j == i4) { int i5 = eVar.e; int i6 = eVar.f; diff --git a/app/src/main/java/c/i/e/o/b/c.java b/app/src/main/java/c/i/e/o/b/c.java index 150f61b9e9..4b07ecc5e3 100644 --- a/app/src/main/java/c/i/e/o/b/c.java +++ b/app/src/main/java/c/i/e/o/b/c.java @@ -7,7 +7,7 @@ public final class c { public static final char[] b; /* renamed from: c reason: collision with root package name */ - public static final char[] f1427c = {'*', '*', '*', ' ', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'}; + public static final char[] f1428c = {'*', '*', '*', ' ', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'}; public static final char[] d; public static final char[] e = {'`', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '{', '|', '}', '~', 127}; diff --git a/app/src/main/java/c/i/e/o/b/d.java b/app/src/main/java/c/i/e/o/b/d.java index 15752cb62f..b2fca5bc3f 100644 --- a/app/src/main/java/c/i/e/o/b/d.java +++ b/app/src/main/java/c/i/e/o/b/d.java @@ -44,7 +44,7 @@ public final class d { int b2; int b3; a aVar = new a(bVar); - e eVar = aVar.f1426c; + e eVar = aVar.f1427c; int i2 = eVar.h; byte[] bArr = new byte[i2]; b bVar2 = aVar.a; @@ -249,7 +249,7 @@ public final class d { } i5 = 0; } - if (i8 == aVar.f1426c.h) { + if (i8 == aVar.f1427c.h) { e.c cVar = eVar.g; e.b[] bVarArr = cVar.b; int i52 = 0; @@ -551,7 +551,7 @@ public final class d { } else if (i83 < i80) { i81 = i83 + 1; } else { - char[] cArr5 = c.f1427c; + char[] cArr5 = c.f1428c; if (i83 < cArr5.length) { char c7 = cArr5[i83]; if (z11) { @@ -612,7 +612,7 @@ public final class d { if (i87 < 4) { int b5 = cVar2.b(6); if (b5 == 31) { - int i88 = 8 - cVar2.f1416c; + int i88 = 8 - cVar2.f1417c; if (i88 != i60) { cVar2.b(i88); } diff --git a/app/src/main/java/c/i/e/o/b/e.java b/app/src/main/java/c/i/e/o/b/e.java index ed59bf5d6f..43b83fca14 100644 --- a/app/src/main/java/c/i/e/o/b/e.java +++ b/app/src/main/java/c/i/e/o/b/e.java @@ -7,7 +7,7 @@ public final class e { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1428c; + public final int f1429c; public final int d; public final int e; public final int f; @@ -43,7 +43,7 @@ public final class e { public e(int i, int i2, int i3, int i4, int i5, c cVar) { this.b = i; - this.f1428c = i2; + this.f1429c = i2; this.d = i3; this.e = i4; this.f = i5; diff --git a/app/src/main/java/c/i/e/o/c/a.java b/app/src/main/java/c/i/e/o/c/a.java index da83d6f7d1..9f3abb55f3 100644 --- a/app/src/main/java/c/i/e/o/c/a.java +++ b/app/src/main/java/c/i/e/o/c/a.java @@ -20,16 +20,16 @@ public final class a { public final k b; /* renamed from: c reason: collision with root package name */ - public final int f1429c; + public final int f1430c; public b(k kVar, k kVar2, int i, C0153a aVar) { this.a = kVar; this.b = kVar2; - this.f1429c = i; + this.f1430c = i; } public String toString() { - return this.a + AutocompleteViewModel.COMMAND_DISCOVER_TOKEN + this.b + MentionUtilsKt.SLASH_CHAR + this.f1429c; + return this.a + AutocompleteViewModel.COMMAND_DISCOVER_TOKEN + this.b + MentionUtilsKt.SLASH_CHAR + this.f1430c; } } @@ -41,7 +41,7 @@ public final class a { /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object, java.lang.Object] */ @Override // java.util.Comparator public int compare(b bVar, b bVar2) { - return bVar.f1429c - bVar2.f1429c; + return bVar.f1430c - bVar2.f1430c; } } diff --git a/app/src/main/java/c/i/e/q/a.java b/app/src/main/java/c/i/e/q/a.java index 6b25da895b..67ba8550fb 100644 --- a/app/src/main/java/c/i/e/q/a.java +++ b/app/src/main/java/c/i/e/q/a.java @@ -12,7 +12,7 @@ public final class a extends k { public static final int[] b = {3, 6, 9, 96, 18, 66, 33, 36, 48, 72, 12, 24, 69, 81, 84, 21, 26, 41, 11, 14}; /* renamed from: c reason: collision with root package name */ - public static final char[] f1430c = {'A', 'B', 'C', 'D'}; + public static final char[] f1431c = {'A', 'B', 'C', 'D'}; public final StringBuilder d = new StringBuilder(20); public int[] e = new int[80]; public int f = 0; @@ -51,7 +51,7 @@ public final class a extends k { int i4 = 1; while (i4 < this.f) { int i5 = i(i4); - if (i5 != -1 && g(f1430c, a[i5])) { + if (i5 != -1 && g(f1431c, a[i5])) { int i6 = 0; for (int i7 = i4; i7 < i4 + 7; i7++) { i6 += this.e[i7]; @@ -64,7 +64,7 @@ public final class a extends k { if (i9 != -1) { this.d.append((char) i9); i8 += 8; - if ((this.d.length() <= 1 || !g(f1430c, a[i9])) && i8 < this.f) { + if ((this.d.length() <= 1 || !g(f1431c, a[i9])) && i8 < this.f) { } } else { throw NotFoundException.k; @@ -129,7 +129,7 @@ public final class a extends k { sb.setCharAt(i27, a[sb.charAt(i27)]); } char charAt = this.d.charAt(0); - char[] cArr = f1430c; + char[] cArr = f1431c; if (g(cArr, charAt)) { StringBuilder sb2 = this.d; if (!g(cArr, sb2.charAt(sb2.length() - 1))) { diff --git a/app/src/main/java/c/i/e/q/c.java b/app/src/main/java/c/i/e/q/c.java index ea09e1cbbf..350acdaf33 100644 --- a/app/src/main/java/c/i/e/q/c.java +++ b/app/src/main/java/c/i/e/q/c.java @@ -15,7 +15,7 @@ public final class c extends k { public final boolean b; /* renamed from: c reason: collision with root package name */ - public final StringBuilder f1431c = new StringBuilder(20); + public final StringBuilder f1432c = new StringBuilder(20); public final int[] d = new int[9]; public c(boolean z2) { @@ -67,7 +67,7 @@ public final class c extends k { char c2; int[] iArr = this.d; Arrays.fill(iArr, 0); - StringBuilder sb = this.f1431c; + StringBuilder sb = this.f1432c; sb.setLength(0); int i2 = aVar.j; int f = aVar.f(0); @@ -129,7 +129,7 @@ public final class c extends k { int length2 = sb.length() - 1; int i13 = 0; for (int i14 = 0; i14 < length2; i14++) { - i13 += "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%".indexOf(this.f1431c.charAt(i14)); + i13 += "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%".indexOf(this.f1432c.charAt(i14)); } if (sb.charAt(length2) == "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%".charAt(i13 % 43)) { sb.setLength(length2); diff --git a/app/src/main/java/c/i/e/q/d.java b/app/src/main/java/c/i/e/q/d.java index 033e351d5f..7c6f209401 100644 --- a/app/src/main/java/c/i/e/q/d.java +++ b/app/src/main/java/c/i/e/q/d.java @@ -13,14 +13,14 @@ public final class d extends k { public static final int[] b; /* renamed from: c reason: collision with root package name */ - public static final int f1432c; + public static final int f1433c; public final StringBuilder d = new StringBuilder(20); public final int[] e = new int[6]; static { int[] iArr = {276, 328, 324, 322, 296, 292, 290, 336, 274, 266, 424, 420, 418, 404, 402, 394, 360, 356, 354, 308, 282, 344, 332, 326, 300, 278, 436, 434, 428, 422, 406, 410, 364, 358, 310, 314, 302, 468, 466, 458, 366, 374, 430, 294, 474, 470, 306, 350}; b = iArr; - f1432c = iArr[47]; + f1433c = iArr[47]; } public static void g(CharSequence charSequence, int i, int i2) throws ChecksumException { @@ -277,7 +277,7 @@ public final class d extends k { } else { if (i4 != length - 1) { i4++; - } else if (h(iArr) == f1432c) { + } else if (h(iArr) == f1433c) { int[] iArr2 = {i3, f2}; int f3 = aVar.f(iArr2[1]); int i5 = aVar.j; diff --git a/app/src/main/java/c/i/e/q/e.java b/app/src/main/java/c/i/e/q/e.java index 2d991e09cd..51aa34ae9a 100644 --- a/app/src/main/java/c/i/e/q/e.java +++ b/app/src/main/java/c/i/e/q/e.java @@ -33,7 +33,7 @@ public final class e extends p { int[] iArr3 = p.b; int i7 = p.l(aVar, i2, true, iArr3, new int[iArr3.length])[1]; for (int i8 = 0; i8 < 6 && i7 < i; i8++) { - sb.append((char) (p.h(aVar, iArr2, i7, p.f1436c) + 48)); + sb.append((char) (p.h(aVar, iArr2, i7, p.f1437c) + 48)); for (int i9 : iArr2) { i7 += i9; } diff --git a/app/src/main/java/c/i/e/q/f.java b/app/src/main/java/c/i/e/q/f.java index da6f989903..3bbe24e51c 100644 --- a/app/src/main/java/c/i/e/q/f.java +++ b/app/src/main/java/c/i/e/q/f.java @@ -16,7 +16,7 @@ public final class f extends p { int i = aVar.j; int i2 = iArr[1]; for (int i3 = 0; i3 < 4 && i2 < i; i3++) { - sb.append((char) (p.h(aVar, iArr2, i2, p.f1436c) + 48)); + sb.append((char) (p.h(aVar, iArr2, i2, p.f1437c) + 48)); for (int i4 : iArr2) { i2 += i4; } @@ -24,7 +24,7 @@ public final class f extends p { int[] iArr3 = p.b; int i5 = p.l(aVar, i2, true, iArr3, new int[iArr3.length])[1]; for (int i6 = 0; i6 < 4 && i5 < i; i6++) { - sb.append((char) (p.h(aVar, iArr2, i5, p.f1436c) + 48)); + sb.append((char) (p.h(aVar, iArr2, i5, p.f1437c) + 48)); for (int i7 : iArr2) { i5 += i7; } diff --git a/app/src/main/java/c/i/e/q/h.java b/app/src/main/java/c/i/e/q/h.java index bd0273579a..a242447ba9 100644 --- a/app/src/main/java/c/i/e/q/h.java +++ b/app/src/main/java/c/i/e/q/h.java @@ -13,7 +13,7 @@ public final class h extends k { public static final int[] b = {1, 1, 1, 1}; /* renamed from: c reason: collision with root package name */ - public static final int[][] f1433c = {new int[]{1, 1, 2}, new int[]{1, 1, 3}}; + public static final int[][] f1434c = {new int[]{1, 1, 2}, new int[]{1, 1, 3}}; public static final int[][] d = {new int[]{1, 1, 2, 2, 1}, new int[]{2, 1, 1, 1, 2}, new int[]{1, 2, 1, 1, 2}, new int[]{2, 2, 1, 1, 1}, new int[]{1, 1, 2, 1, 2}, new int[]{2, 1, 2, 1, 1}, new int[]{1, 2, 2, 1, 1}, new int[]{1, 1, 1, 2, 2}, new int[]{2, 1, 1, 2, 1}, new int[]{1, 2, 1, 2, 1}, new int[]{1, 1, 3, 3, 1}, new int[]{3, 1, 1, 1, 3}, new int[]{1, 3, 1, 1, 3}, new int[]{3, 3, 1, 1, 1}, new int[]{1, 1, 3, 1, 3}, new int[]{3, 1, 3, 1, 1}, new int[]{1, 3, 3, 1, 1}, new int[]{1, 1, 1, 3, 3}, new int[]{3, 1, 1, 3, 1}, new int[]{1, 3, 1, 3, 1}}; public int e = -1; @@ -84,9 +84,9 @@ public final class h extends k { int f2 = aVar.f(0); if (f2 != i3) { try { - iArr = h(aVar, f2, f1433c[0]); + iArr = h(aVar, f2, f1434c[0]); } catch (NotFoundException unused) { - iArr = h(aVar, f2, f1433c[1]); + iArr = h(aVar, f2, f1434c[1]); } i(aVar, iArr[0]); int i4 = iArr[0]; diff --git a/app/src/main/java/c/i/e/q/j.java b/app/src/main/java/c/i/e/q/j.java index 523d0028c6..db2ee03ae5 100644 --- a/app/src/main/java/c/i/e/q/j.java +++ b/app/src/main/java/c/i/e/q/j.java @@ -54,7 +54,7 @@ public final class j extends k { if (z3 || !z2) { return k; } - Result result = new Result(k.a.substring(1), k.b, k.f2454c, aVar2); + Result result = new Result(k.a.substring(1), k.b, k.f2457c, aVar2); result.a(k.e); return result; } diff --git a/app/src/main/java/c/i/e/q/k.java b/app/src/main/java/c/i/e/q/k.java index 89a668f661..2fab7a7166 100644 --- a/app/src/main/java/c/i/e/q/k.java +++ b/app/src/main/java/c/i/e/q/k.java @@ -113,7 +113,7 @@ public abstract class k implements i { i = (((Integer) map2.get(jVar)).intValue() + 270) % 360; } c2.b(jVar, Integer.valueOf(i)); - c.i.e.k[] kVarArr = c2.f2454c; + c.i.e.k[] kVarArr = c2.f2457c; if (kVarArr != null) { int i2 = d.b; for (int i3 = 0; i3 < kVarArr.length; i3++) { @@ -171,7 +171,7 @@ public abstract class k implements i { Result b = kVar.b(i10, aVar, enumMap); if (i11 != i4) { b.b(j.ORIENTATION, Integer.valueOf((int) BaseTransientBottomBar.ANIMATION_FADE_DURATION)); - c.i.e.k[] kVarArr = b.f2454c; + c.i.e.k[] kVarArr = b.f2457c; if (kVarArr != null) { float f = (float) i2; map2 = enumMap; diff --git a/app/src/main/java/c/i/e/q/l.java b/app/src/main/java/c/i/e/q/l.java index d6d8990e0e..62d02d73a4 100644 --- a/app/src/main/java/c/i/e/q/l.java +++ b/app/src/main/java/c/i/e/q/l.java @@ -16,7 +16,7 @@ public final class l extends p { public static Result o(Result result) throws FormatException { String str = result.a; if (str.charAt(0) == '0') { - Result result2 = new Result(str.substring(1), null, result.f2454c, a.UPC_A); + Result result2 = new Result(str.substring(1), null, result.f2457c, a.UPC_A); Map map = result.e; if (map != null) { result2.a(map); diff --git a/app/src/main/java/c/i/e/q/n.java b/app/src/main/java/c/i/e/q/n.java index e931415696..01dea8ab21 100644 --- a/app/src/main/java/c/i/e/q/n.java +++ b/app/src/main/java/c/i/e/q/n.java @@ -12,7 +12,7 @@ public final class n { public final int[] b = new int[4]; /* renamed from: c reason: collision with root package name */ - public final StringBuilder f1434c = new StringBuilder(); + public final StringBuilder f1435c = new StringBuilder(); /* JADX WARNING: Removed duplicated region for block: B:60:0x0121 */ /* JADX WARNING: Removed duplicated region for block: B:63:0x0153 */ @@ -20,7 +20,7 @@ public final class n { EnumMap enumMap; String str; String str2; - StringBuilder sb = this.f1434c; + StringBuilder sb = this.f1435c; sb.setLength(0); int[] iArr2 = this.b; iArr2[0] = 0; diff --git a/app/src/main/java/c/i/e/q/o.java b/app/src/main/java/c/i/e/q/o.java index 7973cfc5d7..f54c6c95b8 100644 --- a/app/src/main/java/c/i/e/q/o.java +++ b/app/src/main/java/c/i/e/q/o.java @@ -13,14 +13,14 @@ public final class o { public final m b = new m(); /* renamed from: c reason: collision with root package name */ - public final n f1435c = new n(); + public final n f1436c = new n(); public Result a(int i, a aVar, int i2) throws NotFoundException { EnumMap enumMap; int[] iArr = a; int[] l = p.l(aVar, i2, false, iArr, new int[iArr.length]); try { - return this.f1435c.a(i, aVar, l); + return this.f1436c.a(i, aVar, l); } catch (ReaderException unused) { m mVar = this.b; StringBuilder sb = mVar.b; diff --git a/app/src/main/java/c/i/e/q/p.java b/app/src/main/java/c/i/e/q/p.java index 83b7836197..85e3b311af 100644 --- a/app/src/main/java/c/i/e/q/p.java +++ b/app/src/main/java/c/i/e/q/p.java @@ -18,7 +18,7 @@ public abstract class p extends k { public static final int[] b = {1, 1, 1, 1, 1}; /* renamed from: c reason: collision with root package name */ - public static final int[][] f1436c; + public static final int[][] f1437c; public static final int[][] d; public final StringBuilder e = new StringBuilder(20); public final o f = new o(); @@ -26,12 +26,12 @@ public abstract class p extends k { static { int[][] iArr = {new int[]{3, 2, 1, 1}, new int[]{2, 2, 2, 1}, new int[]{2, 1, 2, 2}, new int[]{1, 4, 1, 1}, new int[]{1, 1, 3, 2}, new int[]{1, 2, 3, 1}, new int[]{1, 1, 1, 4}, new int[]{1, 3, 1, 2}, new int[]{1, 2, 1, 3}, new int[]{3, 1, 1, 2}}; - f1436c = iArr; + f1437c = iArr; int[][] iArr2 = new int[20][]; d = iArr2; System.arraycopy(iArr, 0, iArr2, 0, 10); for (int i = 10; i < 20; i++) { - int[] iArr3 = f1436c[i - 10]; + int[] iArr3 = f1437c[i - 10]; int[] iArr4 = new int[iArr3.length]; for (int i2 = 0; i2 < iArr3.length; i2++) { iArr4[i2] = iArr3[(iArr3.length - i2) - 1]; @@ -187,15 +187,15 @@ public abstract class p extends k { Result a2 = this.f.a(i, aVar, i3[1]); result.b(j.UPC_EAN_EXTENSION, a2.a); result.a(a2.e); - k[] kVarArr = a2.f2454c; - k[] kVarArr2 = result.f2454c; + k[] kVarArr = a2.f2457c; + k[] kVarArr2 = result.f2457c; if (kVarArr2 == null) { - result.f2454c = kVarArr; + result.f2457c = kVarArr; } else if (kVarArr != null && kVarArr.length > 0) { k[] kVarArr3 = new k[(kVarArr2.length + kVarArr.length)]; System.arraycopy(kVarArr2, 0, kVarArr3, 0, kVarArr2.length); System.arraycopy(kVarArr, 0, kVarArr3, kVarArr2.length, kVarArr.length); - result.f2454c = kVarArr3; + result.f2457c = kVarArr3; } i2 = a2.a.length(); } catch (ReaderException unused) { diff --git a/app/src/main/java/c/i/e/q/r/a.java b/app/src/main/java/c/i/e/q/r/a.java index 31c7d4735d..bf68d12202 100644 --- a/app/src/main/java/c/i/e/q/r/a.java +++ b/app/src/main/java/c/i/e/q/r/a.java @@ -8,7 +8,7 @@ public abstract class a extends k { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final float[] f1437c; + public final float[] f1438c; public final float[] d; public final int[] e; public final int[] f; @@ -16,7 +16,7 @@ public abstract class a extends k { public a() { int[] iArr = new int[8]; this.b = iArr; - this.f1437c = new float[4]; + this.f1438c = new float[4]; this.d = new float[4]; this.e = new int[(iArr.length / 2)]; this.f = new int[(iArr.length / 2)]; diff --git a/app/src/main/java/c/i/e/q/r/c.java b/app/src/main/java/c/i/e/q/r/c.java index fbe5800be3..9add914ddc 100644 --- a/app/src/main/java/c/i/e/q/r/c.java +++ b/app/src/main/java/c/i/e/q/r/c.java @@ -7,13 +7,13 @@ public final class c { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final k[] f1438c; + public final k[] f1439c; public c(int i, int[] iArr, int i2, int i3, int i4) { this.a = i; this.b = iArr; float f = (float) i4; - this.f1438c = new k[]{new k((float) i2, f), new k((float) i3, f)}; + this.f1439c = new k[]{new k((float) i2, f), new k((float) i3, f)}; } public boolean equals(Object obj) { diff --git a/app/src/main/java/c/i/e/q/r/d.java b/app/src/main/java/c/i/e/q/r/d.java index 1e01b4d548..900ef090ff 100644 --- a/app/src/main/java/c/i/e/q/r/d.java +++ b/app/src/main/java/c/i/e/q/r/d.java @@ -3,11 +3,11 @@ package c.i.e.q.r; public final class d extends b { /* renamed from: c reason: collision with root package name */ - public final c f1439c; + public final c f1440c; public int d; public d(int i, int i2, c cVar) { super(i, i2); - this.f1439c = cVar; + this.f1440c = cVar; } } diff --git a/app/src/main/java/c/i/e/q/r/e.java b/app/src/main/java/c/i/e/q/r/e.java index 0ffae8c4fe..e79df0fbbc 100644 --- a/app/src/main/java/c/i/e/q/r/e.java +++ b/app/src/main/java/c/i/e/q/r/e.java @@ -56,7 +56,7 @@ public final class e extends a { for (d dVar2 : this.o) { if (dVar2.d > 1) { int i3 = ((dVar2.b * 16) + dVar.b) % 79; - int i4 = (dVar.f1439c.a * 9) + dVar2.f1439c.a; + int i4 = (dVar.f1440c.a * 9) + dVar2.f1440c.a; if (i4 > 72) { i4--; } @@ -83,8 +83,8 @@ public final class e extends a { i7 = 0; } sb.append(i7); - k[] kVarArr = dVar.f1439c.f1438c; - k[] kVarArr2 = dVar2.f1439c.f1438c; + k[] kVarArr = dVar.f1440c.f1439c; + k[] kVarArr2 = dVar2.f1440c.f1439c; return new Result(sb.toString(), null, new k[]{kVarArr[0], kVarArr[1], kVarArr2[0], kVarArr2[1]}, c.i.e.a.RSS_14); } } @@ -143,7 +143,7 @@ public final class e extends a { float k0 = ((float) c.k0(iArr)) / ((float) i5); int[] iArr2 = this.e; int[] iArr3 = this.f; - float[] fArr = this.f1437c; + float[] fArr = this.f1438c; float[] fArr2 = this.d; for (int i6 = 0; i6 < iArr.length; i6++) { float f = ((float) iArr[i6]) / k0; @@ -243,17 +243,17 @@ public final class e extends a { z3 = true; if (z4) { if (!z3) { - a.h(this.e, this.f1437c); + a.h(this.e, this.f1438c); } else { throw NotFoundException.k; } } if (z3) { - a.g(this.e, this.f1437c); + a.g(this.e, this.f1438c); } if (z5) { if (!z6) { - a.h(this.f, this.f1437c); + a.h(this.f, this.f1438c); } else { throw NotFoundException.k; } diff --git a/app/src/main/java/c/i/e/q/r/f/a.java b/app/src/main/java/c/i/e/q/r/f/a.java index 5479be0e5b..7b6c5e6016 100644 --- a/app/src/main/java/c/i/e/q/r/f/a.java +++ b/app/src/main/java/c/i/e/q/r/f/a.java @@ -8,12 +8,12 @@ public final class a { public final b b; /* renamed from: c reason: collision with root package name */ - public final c f1440c; + public final c f1441c; public a(b bVar, b bVar2, c cVar, boolean z2) { this.a = bVar; this.b = bVar2; - this.f1440c = cVar; + this.f1441c = cVar; } public static boolean a(Object obj, Object obj2) { @@ -32,11 +32,11 @@ public final class a { return false; } a aVar = (a) obj; - return a(this.a, aVar.a) && a(this.b, aVar.b) && a(this.f1440c, aVar.f1440c); + return a(this.a, aVar.a) && a(this.b, aVar.b) && a(this.f1441c, aVar.f1441c); } public int hashCode() { - return (b(this.a) ^ b(this.b)) ^ b(this.f1440c); + return (b(this.a) ^ b(this.b)) ^ b(this.f1441c); } public String toString() { @@ -45,7 +45,7 @@ public final class a { sb.append(" , "); sb.append(this.b); sb.append(" : "); - c cVar = this.f1440c; + c cVar = this.f1441c; sb.append(cVar == null ? "null" : Integer.valueOf(cVar.a)); sb.append(" ]"); return sb.toString(); diff --git a/app/src/main/java/c/i/e/q/r/f/b.java b/app/src/main/java/c/i/e/q/r/f/b.java index 611f0c6cfd..139828df5c 100644 --- a/app/src/main/java/c/i/e/q/r/f/b.java +++ b/app/src/main/java/c/i/e/q/r/f/b.java @@ -9,12 +9,12 @@ public final class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final boolean f1441c; + public final boolean f1442c; public b(List list, int i, boolean z2) { this.a = new ArrayList(list); this.b = i; - this.f1441c = z2; + this.f1442c = z2; } public boolean equals(Object obj) { @@ -22,14 +22,14 @@ public final class b { return false; } b bVar = (b) obj; - return this.a.equals(bVar.a) && this.f1441c == bVar.f1441c; + return this.a.equals(bVar.a) && this.f1442c == bVar.f1442c; } public int hashCode() { - return this.a.hashCode() ^ Boolean.valueOf(this.f1441c).hashCode(); + return this.a.hashCode() ^ Boolean.valueOf(this.f1442c).hashCode(); } public String toString() { - return a.J(new StringBuilder("{ "), this.a, " }"); + return a.H(new StringBuilder("{ "), this.a, " }"); } } diff --git a/app/src/main/java/c/i/e/q/r/f/c.java b/app/src/main/java/c/i/e/q/r/f/c.java index 1c72c33683..6ff7f4cd06 100644 --- a/app/src/main/java/c/i/e/q/r/f/c.java +++ b/app/src/main/java/c/i/e/q/r/f/c.java @@ -116,8 +116,8 @@ public final class c extends a { } } String a = jVar.a(); - c.i.e.k[] kVarArr = list.get(0).f1440c.f1438c; - c.i.e.k[] kVarArr2 = list.get(list.size() - 1).f1440c.f1438c; + c.i.e.k[] kVarArr = list.get(0).f1441c.f1439c; + c.i.e.k[] kVarArr2 = list.get(list.size() - 1).f1441c.f1439c; return new Result(a, null, new c.i.e.k[]{kVarArr[0], kVarArr[1], kVarArr2[0], kVarArr2[1]}, c.i.e.a.RSS_EXPANDED); } @@ -191,7 +191,7 @@ public final class c extends a { if (i4 >= list2.size()) { z2 = true; break; - } else if (list2.get(i4).f1440c.a != iArr2[i4]) { + } else if (list2.get(i4).f1441c.a != iArr2[i4]) { z2 = false; break; } else { @@ -281,7 +281,7 @@ public final class c extends a { if (Math.abs(k0 - f) / f <= 0.3f) { int[] iArr3 = this.e; int[] iArr4 = this.f; - float[] fArr = this.f1437c; + float[] fArr = this.f1438c; float[] fArr2 = this.d; for (int i6 = 0; i6 < iArr.length; i6++) { float f2 = (((float) iArr[i6]) * 1.0f) / k0; @@ -381,17 +381,17 @@ public final class c extends a { z4 = true; if (z5) { if (!z4) { - a.h(this.e, this.f1437c); + a.h(this.e, this.f1438c); } else { throw NotFoundException.k; } } if (z4) { - a.g(this.e, this.f1437c); + a.g(this.e, this.f1438c); } if (z7) { if (!z6) { - a.h(this.f, this.f1437c); + a.h(this.f, this.f1438c); } else { throw NotFoundException.k; } @@ -604,7 +604,7 @@ public final class c extends a { iArr[i7] = i8; iArr[3] = i8; int i10 = aVar.j; - int i11 = i9 >= 0 ? i9 : list.isEmpty() ? 0 : list.get(list.size() - 1).f1440c.b[1]; + int i11 = i9 >= 0 ? i9 : list.isEmpty() ? 0 : list.get(list.size() - 1).f1441c.b[1]; boolean z4 = list.size() % i7 != 0; if (this.p) { z4 = !z4; diff --git a/app/src/main/java/c/i/e/q/r/f/d/e.java b/app/src/main/java/c/i/e/q/r/f/d/e.java index 8426053524..30afda4e02 100644 --- a/app/src/main/java/c/i/e/q/r/f/d/e.java +++ b/app/src/main/java/c/i/e/q/r/f/d/e.java @@ -6,12 +6,12 @@ import com.google.zxing.NotFoundException; public final class e extends i { /* renamed from: c reason: collision with root package name */ - public final String f1442c; + public final String f1443c; public final String d; public e(a aVar, String str, String str2) { super(aVar); - this.f1442c = str2; + this.f1443c = str2; this.d = str; } @@ -24,7 +24,7 @@ public final class e extends i { int d = s.d(this.b.a, 68, 16); if (d != 38400) { sb.append('('); - sb.append(this.f1442c); + sb.append(this.f1443c); sb.append(')'); int i = d % 32; int i2 = d / 32; diff --git a/app/src/main/java/c/i/e/q/r/f/d/g.java b/app/src/main/java/c/i/e/q/r/f/d/g.java index e4098b3174..2680a6a98e 100644 --- a/app/src/main/java/c/i/e/q/r/f/d/g.java +++ b/app/src/main/java/c/i/e/q/r/f/d/g.java @@ -11,10 +11,10 @@ public final class g extends h { @Override // c.i.e.q.r.f.d.j public String a() throws NotFoundException, FormatException { - StringBuilder P = c.d.b.a.a.P("(01)"); - int length = P.length(); - P.append(this.b.c(4, 4)); - c(P, 8, length); - return this.b.a(P, 48); + StringBuilder O = c.d.b.a.a.O("(01)"); + int length = O.length(); + O.append(this.b.c(4, 4)); + c(O, 8, length); + return this.b.a(O, 48); } } diff --git a/app/src/main/java/c/i/e/q/r/f/d/o.java b/app/src/main/java/c/i/e/q/r/f/d/o.java index 2dccc3a0b6..67fbe99f28 100644 --- a/app/src/main/java/c/i/e/q/r/f/d/o.java +++ b/app/src/main/java/c/i/e/q/r/f/d/o.java @@ -4,20 +4,20 @@ public final class o extends q { public final String b; /* renamed from: c reason: collision with root package name */ - public final int f1443c; + public final int f1444c; public final boolean d; public o(int i, String str) { super(i); this.b = str; this.d = false; - this.f1443c = 0; + this.f1444c = 0; } public o(int i, String str, int i2) { super(i); this.d = true; - this.f1443c = i2; + this.f1444c = i2; this.b = str; } } diff --git a/app/src/main/java/c/i/e/q/r/f/d/p.java b/app/src/main/java/c/i/e/q/r/f/d/p.java index 0dd836a3ce..66a1193de8 100644 --- a/app/src/main/java/c/i/e/q/r/f/d/p.java +++ b/app/src/main/java/c/i/e/q/r/f/d/p.java @@ -6,7 +6,7 @@ public final class p extends q { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1444c; + public final int f1445c; public p(int i, int i2, int i3) throws FormatException { super(i); @@ -14,6 +14,6 @@ public final class p extends q { throw FormatException.a(); } this.b = i2; - this.f1444c = i3; + this.f1445c = i3; } } diff --git a/app/src/main/java/c/i/e/q/r/f/d/r.java b/app/src/main/java/c/i/e/q/r/f/d/r.java index 186738daa2..7687251310 100644 --- a/app/src/main/java/c/i/e/q/r/f/d/r.java +++ b/app/src/main/java/c/i/e/q/r/f/d/r.java @@ -8,7 +8,7 @@ public final class r { public static final Object[][] b; /* renamed from: c reason: collision with root package name */ - public static final Object[][] f1445c; + public static final Object[][] f1446c; public static final Object[][] d; public static final Object[][] e; @@ -16,7 +16,7 @@ public final class r { Object obj = new Object(); a = obj; b = new Object[][]{new Object[]{"00", 18}, new Object[]{"01", 14}, new Object[]{"02", 14}, new Object[]{"10", obj, 20}, new Object[]{"11", 6}, new Object[]{"12", 6}, new Object[]{"13", 6}, new Object[]{"15", 6}, new Object[]{"17", 6}, new Object[]{"20", 2}, new Object[]{"21", obj, 20}, new Object[]{"22", obj, 29}, new Object[]{"30", obj, 8}, new Object[]{"37", obj, 8}, new Object[]{"90", obj, 30}, new Object[]{"91", obj, 30}, new Object[]{"92", obj, 30}, new Object[]{"93", obj, 30}, new Object[]{"94", obj, 30}, new Object[]{"95", obj, 30}, new Object[]{"96", obj, 30}, new Object[]{"97", obj, 30}, new Object[]{"98", obj, 30}, new Object[]{"99", obj, 30}}; - f1445c = new Object[][]{new Object[]{"240", obj, 30}, new Object[]{"241", obj, 30}, new Object[]{"242", obj, 6}, new Object[]{"250", obj, 30}, new Object[]{"251", obj, 30}, new Object[]{"253", obj, 17}, new Object[]{"254", obj, 20}, new Object[]{"400", obj, 30}, new Object[]{"401", obj, 30}, new Object[]{"402", 17}, new Object[]{"403", obj, 30}, new Object[]{"410", 13}, new Object[]{"411", 13}, new Object[]{"412", 13}, new Object[]{"413", 13}, new Object[]{"414", 13}, new Object[]{"420", obj, 20}, new Object[]{"421", obj, 15}, new Object[]{"422", 3}, new Object[]{"423", obj, 15}, new Object[]{"424", 3}, new Object[]{"425", 3}, new Object[]{"426", 3}}; + f1446c = new Object[][]{new Object[]{"240", obj, 30}, new Object[]{"241", obj, 30}, new Object[]{"242", obj, 6}, new Object[]{"250", obj, 30}, new Object[]{"251", obj, 30}, new Object[]{"253", obj, 17}, new Object[]{"254", obj, 20}, new Object[]{"400", obj, 30}, new Object[]{"401", obj, 30}, new Object[]{"402", 17}, new Object[]{"403", obj, 30}, new Object[]{"410", 13}, new Object[]{"411", 13}, new Object[]{"412", 13}, new Object[]{"413", 13}, new Object[]{"414", 13}, new Object[]{"420", obj, 20}, new Object[]{"421", obj, 15}, new Object[]{"422", 3}, new Object[]{"423", obj, 15}, new Object[]{"424", 3}, new Object[]{"425", 3}, new Object[]{"426", 3}}; d = new Object[][]{new Object[]{"310", 6}, new Object[]{"311", 6}, new Object[]{"312", 6}, new Object[]{"313", 6}, new Object[]{"314", 6}, new Object[]{"315", 6}, new Object[]{"316", 6}, new Object[]{"320", 6}, new Object[]{"321", 6}, new Object[]{"322", 6}, new Object[]{"323", 6}, new Object[]{"324", 6}, new Object[]{"325", 6}, new Object[]{"326", 6}, new Object[]{"327", 6}, new Object[]{"328", 6}, new Object[]{"329", 6}, new Object[]{"330", 6}, new Object[]{"331", 6}, new Object[]{"332", 6}, new Object[]{"333", 6}, new Object[]{"334", 6}, new Object[]{"335", 6}, new Object[]{"336", 6}, new Object[]{"340", 6}, new Object[]{"341", 6}, new Object[]{"342", 6}, new Object[]{"343", 6}, new Object[]{"344", 6}, new Object[]{"345", 6}, new Object[]{"346", 6}, new Object[]{"347", 6}, new Object[]{"348", 6}, new Object[]{"349", 6}, new Object[]{"350", 6}, new Object[]{"351", 6}, new Object[]{"352", 6}, new Object[]{"353", 6}, new Object[]{"354", 6}, new Object[]{"355", 6}, new Object[]{"356", 6}, new Object[]{"357", 6}, new Object[]{"360", 6}, new Object[]{"361", 6}, new Object[]{"362", 6}, new Object[]{"363", 6}, new Object[]{"364", 6}, new Object[]{"365", 6}, new Object[]{"366", 6}, new Object[]{"367", 6}, new Object[]{"368", 6}, new Object[]{"369", 6}, new Object[]{"390", obj, 15}, new Object[]{"391", obj, 18}, new Object[]{"392", obj, 15}, new Object[]{"393", obj, 18}, new Object[]{"703", obj, 30}}; e = new Object[][]{new Object[]{"7001", 13}, new Object[]{"7002", obj, 30}, new Object[]{"7003", 10}, new Object[]{"8001", 14}, new Object[]{"8002", obj, 20}, new Object[]{"8003", obj, 30}, new Object[]{"8004", obj, 30}, new Object[]{"8005", 6}, new Object[]{"8006", 18}, new Object[]{"8007", obj, 30}, new Object[]{"8008", obj, 12}, new Object[]{"8018", 18}, new Object[]{"8020", obj, 25}, new Object[]{"8100", 6}, new Object[]{"8101", 10}, new Object[]{"8102", 2}, new Object[]{"8110", obj, 70}, new Object[]{"8200", obj, 70}}; } @@ -35,7 +35,7 @@ public final class r { } if (str.length() >= 3) { String substring2 = str.substring(0, 3); - Object[][] objArr3 = f1445c; + Object[][] objArr3 = f1446c; for (Object[] objArr4 : objArr3) { if (objArr4[0].equals(substring2)) { return objArr4[1] == a ? c(3, ((Integer) objArr4[2]).intValue(), str) : b(3, ((Integer) objArr4[1]).intValue(), str); diff --git a/app/src/main/java/c/i/e/q/r/f/d/s.java b/app/src/main/java/c/i/e/q/r/f/d/s.java index cb4ad23310..865791389f 100644 --- a/app/src/main/java/c/i/e/q/r/f/d/s.java +++ b/app/src/main/java/c/i/e/q/r/f/d/s.java @@ -10,7 +10,7 @@ public final class s { public final m b = new m(); /* renamed from: c reason: collision with root package name */ - public final StringBuilder f1446c = new StringBuilder(); + public final StringBuilder f1447c = new StringBuilder(); public s(a aVar) { this.a = aVar; @@ -34,7 +34,7 @@ public final class s { if (a != null) { sb.append(a); } - String valueOf = b.d ? String.valueOf(b.f1443c) : null; + String valueOf = b.d ? String.valueOf(b.f1444c) : null; int i2 = b.a; if (i == i2) { return sb.toString(); @@ -74,9 +74,9 @@ public final class s { n nVar3; char c3; n nVar4; - this.f1446c.setLength(0); + this.f1447c.setLength(0); if (str != null) { - this.f1446c.append(str); + this.f1447c.append(str); } this.b.a = i; int i3 = 2; @@ -144,9 +144,9 @@ public final class s { mVar2.a = i10; char c4 = nVar3.b; if (c4 == '$') { - lVar = new l(new o(i10, this.f1446c.toString()), true); + lVar = new l(new o(i10, this.f1447c.toString()), true); } else { - this.f1446c.append(c4); + this.f1447c.append(c4); } } else { if (e(this.b.a)) { @@ -288,9 +288,9 @@ public final class s { mVar4.a = i18; char c5 = nVar.b; if (c5 == '$') { - lVar = new l(new o(i18, this.f1446c.toString()), true); + lVar = new l(new o(i18, this.f1447c.toString()), true); } else { - this.f1446c.append(c5); + this.f1447c.append(c5); } } else { if (e(this.b.a)) { @@ -348,14 +348,14 @@ public final class s { mVar6.a = i28; int i29 = pVar.b; if (i29 == 10) { - lVar = new l(pVar.f1444c == 10 ? new o(i28, this.f1446c.toString()) : new o(i28, this.f1446c.toString(), pVar.f1444c), true); + lVar = new l(pVar.f1445c == 10 ? new o(i28, this.f1447c.toString()) : new o(i28, this.f1447c.toString(), pVar.f1445c), true); } else { - this.f1446c.append(i29); - int i30 = pVar.f1444c; + this.f1447c.append(i29); + int i30 = pVar.f1445c; if (i30 == 10) { - lVar = new l(new o(this.b.a, this.f1446c.toString()), true); + lVar = new l(new o(this.b.a, this.f1447c.toString()), true); } else { - this.f1446c.append(i30); + this.f1447c.append(i30); } } } else { @@ -409,7 +409,7 @@ public final class s { i3 = 2; } o oVar = lVar.a; - return (oVar == null || !oVar.d) ? new o(i2, this.f1446c.toString()) : new o(i2, this.f1446c.toString(), oVar.f1443c); + return (oVar == null || !oVar.d) ? new o(i2, this.f1447c.toString()) : new o(i2, this.f1447c.toString(), oVar.f1444c); } public int c(int i, int i2) { diff --git a/app/src/main/java/c/i/e/r/a.java b/app/src/main/java/c/i/e/r/a.java index 98c0f46cf8..8083c56bbd 100644 --- a/app/src/main/java/c/i/e/r/a.java +++ b/app/src/main/java/c/i/e/r/a.java @@ -21,14 +21,14 @@ public final class a { public static final int[] b = {66142, 66170, 66206, 66236, 66290, 66292, 66350, 66382, 66396, 66454, 66470, 66476, 66594, 66600, 66614, 66626, 66628, 66632, 66640, 66654, 66662, 66668, 66682, 66690, 66718, 66720, 66748, 66758, 66776, 66798, 66802, 66804, 66820, 66824, 66832, 66846, 66848, 66876, 66880, 66936, 66950, 66956, 66968, 66992, 67006, 67022, 67036, 67042, 67044, 67048, 67062, 67118, 67150, 67164, 67214, 67228, 67256, 67294, 67322, 67350, 67366, 67372, 67398, 67404, 67416, 67438, 67474, 67476, 67490, 67492, 67496, 67510, 67618, 67624, 67650, 67656, 67664, 67678, 67686, 67692, 67706, 67714, 67716, 67728, 67742, 67744, 67772, 67782, 67788, 67800, 67822, 67826, 67828, 67842, 67848, 67870, 67872, 67900, 67904, 67960, 67974, 67992, 68016, 68030, 68046, 68060, 68066, 68068, 68072, 68086, 68104, 68112, 68126, 68128, 68156, 68160, 68216, 68336, 68358, 68364, 68376, 68400, 68414, 68448, 68476, 68494, 68508, 68536, 68546, 68548, 68552, 68560, 68574, 68582, 68588, 68654, 68686, 68700, 68706, 68708, 68712, 68726, 68750, 68764, 68792, 68802, 68804, 68808, 68816, 68830, 68838, 68844, 68858, 68878, 68892, 68920, 68976, 68990, 68994, 68996, 69000, 69008, 69022, 69024, 69052, 69062, 69068, 69080, 69102, 69106, 69108, 69142, 69158, 69164, 69190, 69208, 69230, 69254, 69260, 69272, 69296, 69310, 69326, 69340, 69386, 69394, 69396, 69410, 69416, 69430, 69442, 69444, 69448, 69456, 69470, 69478, 69484, 69554, 69556, 69666, 69672, 69698, 69704, 69712, 69726, 69754, 69762, 69764, 69776, 69790, 69792, 69820, 69830, 69836, 69848, 69870, 69874, 69876, 69890, 69918, 69920, 69948, 69952, 70008, 70022, 70040, 70064, 70078, 70094, 70108, 70114, 70116, 70120, 70134, 70152, 70174, 70176, 70264, 70384, 70412, 70448, 70462, 70496, 70524, 70542, 70556, 70584, 70594, 70600, 70608, 70622, 70630, 70636, 70664, 70672, 70686, 70688, 70716, 70720, 70776, 70896, 71136, 71180, 71192, 71216, 71230, 71264, 71292, 71360, 71416, 71452, 71480, 71536, 71550, 71554, 71556, 71560, 71568, 71582, 71584, 71612, 71622, 71628, 71640, 71662, 71726, 71732, 71758, 71772, 71778, 71780, 71784, 71798, 71822, 71836, 71864, 71874, 71880, 71888, 71902, 71910, 71916, 71930, 71950, 71964, 71992, 72048, 72062, 72066, 72068, 72080, 72094, 72096, 72124, 72134, 72140, 72152, 72174, 72178, 72180, 72206, 72220, 72248, 72304, 72318, 72416, 72444, 72456, 72464, 72478, 72480, 72508, 72512, 72568, 72588, 72600, 72624, 72638, 72654, 72668, 72674, 72676, 72680, 72694, 72726, 72742, 72748, 72774, 72780, 72792, 72814, 72838, 72856, 72880, 72894, 72910, 72924, 72930, 72932, 72936, 72950, 72966, 72972, 72984, 73008, 73022, 73056, 73084, 73102, 73116, 73144, 73156, 73160, 73168, 73182, 73190, 73196, 73210, 73226, 73234, 73236, 73250, 73252, 73256, 73270, 73282, 73284, 73296, 73310, 73318, 73324, 73346, 73348, 73352, 73360, 73374, 73376, 73404, 73414, 73420, 73432, 73454, 73498, 73518, 73522, 73524, 73550, 73564, 73570, 73572, 73576, 73590, 73800, 73822, 73858, 73860, 73872, 73886, 73888, 73916, 73944, 73970, 73972, 73992, 74014, 74016, 74044, 74048, 74104, 74118, 74136, 74160, 74174, 74210, 74212, 74216, 74230, 74244, 74256, 74270, 74272, 74360, 74480, 74502, 74508, 74544, 74558, 74592, 74620, 74638, 74652, 74680, 74690, 74696, 74704, 74726, 74732, 74782, 74784, 74812, 74992, 75232, 75288, 75326, 75360, 75388, 75456, 75512, 75576, 75632, 75646, 75650, 75652, 75664, 75678, 75680, 75708, 75718, 75724, 75736, 75758, 75808, 75836, 75840, 75896, 76016, 76256, 76736, 76824, 76848, 76862, 76896, 76924, 76992, 77048, 77296, 77340, 77368, 77424, 77438, 77536, 77564, 77572, 77576, 77584, 77600, 77628, 77632, 77688, 77702, 77708, 77720, 77744, 77758, 77774, 77788, 77870, 77902, 77916, 77922, 77928, 77966, 77980, 78008, 78018, 78024, 78032, 78046, 78060, 78074, 78094, 78136, 78192, 78206, 78210, 78212, 78224, 78238, 78240, 78268, 78278, 78284, 78296, 78322, 78324, 78350, 78364, 78448, 78462, 78560, 78588, 78600, 78622, 78624, 78652, 78656, 78712, 78726, 78744, 78768, 78782, 78798, 78812, 78818, 78820, 78824, 78838, 78862, 78876, 78904, 78960, 78974, 79072, 79100, 79296, 79352, 79368, 79376, 79390, 79392, 79420, 79424, 79480, 79600, 79628, 79640, 79664, 79678, 79712, 79740, 79772, 79800, 79810, 79812, 79816, 79824, 79838, 79846, 79852, 79894, 79910, 79916, 79942, 79948, 79960, 79982, 79988, 80006, 80024, 80048, 80062, 80078, 80092, 80098, 80100, 80104, 80134, 80140, 80176, 80190, 80224, 80252, 80270, 80284, 80312, 80328, 80336, 80350, 80358, 80364, 80378, 80390, 80396, 80408, 80432, 80446, 80480, 80508, 80576, 80632, 80654, 80668, 80696, 80752, 80766, 80776, 80784, 80798, 80800, 80828, 80844, 80856, 80878, 80882, 80884, 80914, 80916, 80930, 80932, 80936, 80950, 80962, 80968, 80976, 80990, 80998, 81004, 81026, 81028, 81040, 81054, 81056, 81084, 81094, 81100, 81112, 81134, 81154, 81156, 81160, 81168, 81182, 81184, 81212, 81216, 81272, 81286, 81292, 81304, 81328, 81342, 81358, 81372, 81380, 81384, 81398, 81434, 81454, 81458, 81460, 81486, 81500, 81506, 81508, 81512, 81526, 81550, 81564, 81592, 81602, 81604, 81608, 81616, 81630, 81638, 81644, 81702, 81708, 81722, 81734, 81740, 81752, 81774, 81778, 81780, 82050, 82078, 82080, 82108, 82180, 82184, 82192, 82206, 82208, 82236, 82240, 82296, 82316, 82328, 82352, 82366, 82402, 82404, 82408, 82440, 82448, 82462, 82464, 82492, 82496, 82552, 82672, 82694, 82700, 82712, 82736, 82750, 82784, 82812, 82830, 82882, 82884, 82888, 82896, 82918, 82924, 82952, 82960, 82974, 82976, 83004, 83008, 83064, 83184, 83424, 83468, 83480, 83504, 83518, 83552, 83580, 83648, 83704, 83740, 83768, 83824, 83838, 83842, 83844, 83848, 83856, 83872, 83900, 83910, 83916, 83928, 83950, 83984, 84000, 84028, 84032, 84088, 84208, 84448, 84928, 85040, 85054, 85088, 85116, 85184, 85240, 85488, 85560, 85616, 85630, 85728, 85756, 85764, 85768, 85776, 85790, 85792, 85820, 85824, 85880, 85894, 85900, 85912, 85936, 85966, 85980, 86048, 86080, 86136, 86256, 86496, 86976, 88160, 88188, 88256, 88312, 88560, 89056, 89200, 89214, 89312, 89340, 89536, 89592, 89608, 89616, 89632, 89664, 89720, 89840, 89868, 89880, 89904, 89952, 89980, 89998, 90012, 90040, 90190, 90204, 90254, 90268, 90296, 90306, 90308, 90312, 90334, 90382, 90396, 90424, 90480, 90494, 90500, 90504, 90512, 90526, 90528, 90556, 90566, 90572, 90584, 90610, 90612, 90638, 90652, 90680, 90736, 90750, 90848, 90876, 90884, 90888, 90896, 90910, 90912, 90940, 90944, 91000, 91014, 91020, 91032, 91056, 91070, 91086, 91100, 91106, 91108, 91112, 91126, 91150, 91164, 91192, 91248, 91262, 91360, 91388, 91584, 91640, 91664, 91678, 91680, 91708, 91712, 91768, 91888, 91928, 91952, 91966, 92000, 92028, 92046, 92060, 92088, 92098, 92100, 92104, 92112, 92126, 92134, 92140, 92188, 92216, 92272, 92384, 92412, 92608, 92664, 93168, 93200, 93214, 93216, 93244, 93248, 93304, 93424, 93664, 93720, 93744, 93758, 93792, 93820, 93888, 93944, 93980, 94008, 94064, 94078, 94084, 94088, 94096, 94110, 94112, 94140, 94150, 94156, 94168, 94246, 94252, 94278, 94284, 94296, 94318, 94342, 94348, 94360, 94384, 94398, 94414, 94428, 94440, 94470, 94476, 94488, 94512, 94526, 94560, 94588, 94606, 94620, 94648, 94658, 94660, 94664, 94672, 94686, 94694, 94700, 94714, 94726, 94732, 94744, 94768, 94782, 94816, 94844, 94912, 94968, 94990, 95004, 95032, 95088, 95102, 95112, 95120, 95134, 95136, 95164, 95180, 95192, 95214, 95218, 95220, 95244, 95256, 95280, 95294, 95328, 95356, 95424, 95480, 95728, 95758, 95772, 95800, 95856, 95870, 95968, 95996, 96008, 96016, 96030, 96032, 96060, 96064, 96120, 96152, 96176, 96190, 96220, 96226, 96228, 96232, 96290, 96292, 96296, 96310, 96322, 96324, 96328, 96336, 96350, 96358, 96364, 96386, 96388, 96392, 96400, 96414, 96416, 96444, 96454, 96460, 96472, 96494, 96498, 96500, 96514, 96516, 96520, 96528, 96542, 96544, 96572, 96576, 96632, 96646, 96652, 96664, 96688, 96702, 96718, 96732, 96738, 96740, 96744, 96758, 96772, 96776, 96784, 96798, 96800, 96828, 96832, 96888, 97008, 97030, 97036, 97048, 97072, 97086, 97120, 97148, 97166, 97180, 97208, 97220, 97224, 97232, 97246, 97254, 97260, 97326, 97330, 97332, 97358, 97372, 97378, 97380, 97384, 97398, 97422, 97436, 97464, 97474, 97476, 97480, 97488, 97502, 97510, 97516, 97550, 97564, 97592, 97648, 97666, 97668, 97672, 97680, 97694, 97696, 97724, 97734, 97740, 97752, 97774, 97830, 97836, 97850, 97862, 97868, 97880, 97902, 97906, 97908, 97926, 97932, 97944, 97968, 97998, 98012, 98018, 98020, 98024, 98038, 98618, 98674, 98676, 98838, 98854, 98874, 98892, 98904, 98926, 98930, 98932, 98968, 99006, 99042, 99044, 99048, 99062, 99166, 99194, 99246, 99286, 99350, 99366, 99372, 99386, 99398, 99416, 99438, 99442, 99444, 99462, 99504, 99518, 99534, 99548, 99554, 99556, 99560, 99574, 99590, 99596, 99608, 99632, 99646, 99680, 99708, 99726, 99740, 99768, 99778, 99780, 99784, 99792, 99806, 99814, 99820, 99834, 99858, 99860, 99874, 99880, 99894, 99906, 99920, 99934, 99962, 99970, 99972, 99976, 99984, 99998, 100000, 100028, 100038, 100044, 100056, 100078, 100082, 100084, 100142, 100174, 100188, 100246, 100262, 100268, 100306, 100308, 100390, 100396, 100410, 100422, 100428, 100440, 100462, 100466, 100468, 100486, 100504, 100528, 100542, 100558, 100572, 100578, 100580, 100584, 100598, 100620, 100656, 100670, 100704, 100732, 100750, 100792, 100802, 100808, 100816, 100830, 100838, 100844, 100858, 100888, 100912, 100926, 100960, 100988, 101056, 101112, 101148, 101176, 101232, 101246, 101250, 101252, 101256, 101264, 101278, 101280, 101308, 101318, 101324, 101336, 101358, 101362, 101364, 101410, 101412, 101416, 101430, 101442, 101448, 101456, 101470, 101478, 101498, 101506, 101508, 101520, 101534, 101536, 101564, 101580, 101618, 101620, 101636, 101640, 101648, 101662, 101664, 101692, 101696, 101752, 101766, 101784, 101838, 101858, 101860, 101864, 101934, 101938, 101940, 101966, 101980, 101986, 101988, 101992, 102030, 102044, 102072, 102082, 102084, 102088, 102096, 102138, 102166, 102182, 102188, 102214, 102220, 102232, 102254, 102282, 102290, 102292, 102306, 102308, 102312, 102326, 102444, 102458, 102470, 102476, 102488, 102514, 102516, 102534, 102552, 102576, 102590, 102606, 102620, 102626, 102632, 102646, 102662, 102668, 102704, 102718, 102752, 102780, 102798, 102812, 102840, 102850, 102856, 102864, 102878, 102886, 102892, 102906, 102936, 102974, 103008, 103036, 103104, 103160, 103224, 103280, 103294, 103298, 103300, 103312, 103326, 103328, 103356, 103366, 103372, 103384, 103406, 103410, 103412, 103472, 103486, 103520, 103548, 103616, 103672, 103920, 103992, 104048, 104062, 104160, 104188, 104194, 104196, 104200, 104208, 104224, 104252, 104256, 104312, 104326, 104332, 104344, 104368, 104382, 104398, 104412, 104418, 104420, 104424, 104482, 104484, 104514, 104520, 104528, 104542, 104550, 104570, 104578, 104580, 104592, 104606, 104608, 104636, 104652, 104690, 104692, 104706, 104712, 104734, 104736, 104764, 104768, 104824, 104838, 104856, 104910, 104930, 104932, 104936, 104968, 104976, 104990, 104992, 105020, 105024, 105080, 105200, 105240, 105278, 105312, 105372, 105410, 105412, 105416, 105424, 105446, 105518, 105524, 105550, 105564, 105570, 105572, 105576, 105614, 105628, 105656, 105666, 105672, 105680, 105702, 105722, 105742, 105756, 105784, 105840, 105854, 105858, 105860, 105864, 105872, 105888, 105932, 105970, 105972, 106006, 106022, 106028, 106054, 106060, 106072, 106100, 106118, 106124, 106136, 106160, 106174, 106190, 106210, 106212, 106216, 106250, 106258, 106260, 106274, 106276, 106280, 106306, 106308, 106312, 106320, 106334, 106348, 106394, 106414, 106418, 106420, 106566, 106572, 106610, 106612, 106630, 106636, 106648, 106672, 106686, 106722, 106724, 106728, 106742, 106758, 106764, 106776, 106800, 106814, 106848, 106876, 106894, 106908, 106936, 106946, 106948, 106952, 106960, 106974, 106982, 106988, 107032, 107056, 107070, 107104, 107132, 107200, 107256, 107292, 107320, 107376, 107390, 107394, 107396, 107400, 107408, 107422, 107424, 107452, 107462, 107468, 107480, 107502, 107506, 107508, 107544, 107568, 107582, 107616, 107644, 107712, 107768, 108016, 108060, 108088, 108144, 108158, 108256, 108284, 108290, 108292, 108296, 108304, 108318, 108320, 108348, 108352, 108408, 108422, 108428, 108440, 108464, 108478, 108494, 108508, 108514, 108516, 108520, 108592, 108640, 108668, 108736, 108792, 109040, 109536, 109680, 109694, 109792, 109820, 110016, 110072, 110084, 110088, 110096, 110112, 110140, 110144, 110200, 110320, 110342, 110348, 110360, 110384, 110398, 110432, 110460, 110478, 110492, 110520, 110532, 110536, 110544, 110558, 110658, 110686, 110714, 110722, 110724, 110728, 110736, 110750, 110752, 110780, 110796, 110834, 110836, 110850, 110852, 110856, 110864, 110878, 110880, 110908, 110912, 110968, 110982, RestAPIAbortCodes.SEARCH_INDEXING, 111054, 111074, 111076, 111080, 111108, 111112, 111120, 111134, 111136, 111164, 111168, 111224, 111344, 111372, 111422, 111456, 111516, 111554, 111556, 111560, 111568, 111590, 111632, 111646, 111648, 111676, 111680, 111736, 111856, 112096, 112152, 112224, 112252, 112320, 112440, 112514, 112516, 112520, 112528, 112542, 112544, 112588, 112686, 112718, 112732, 112782, 112796, 112824, 112834, 112836, 112840, 112848, 112870, 112890, 112910, 112924, 112952, 113008, 113022, 113026, 113028, 113032, 113040, 113054, 113056, 113100, 113138, 113140, 113166, 113180, 113208, 113264, 113278, 113376, 113404, 113416, 113424, 113440, 113468, 113472, 113560, 113614, 113634, 113636, 113640, 113686, 113702, 113708, 113734, 113740, 113752, 113778, 113780, 113798, 113804, 113816, 113840, 113854, 113870, 113890, 113892, 113896, 113926, 113932, 113944, 113968, 113982, 114016, 114044, 114076, 114114, 114116, 114120, 114128, 114150, 114170, 114194, 114196, 114210, 114212, 114216, 114242, 114244, 114248, 114256, 114270, 114278, 114306, 114308, 114312, 114320, 114334, 114336, 114364, 114380, 114420, 114458, 114478, 114482, 114484, 114510, 114524, 114530, 114532, 114536, 114842, 114866, 114868, 114970, 114994, 114996, 115042, 115044, 115048, 115062, 115130, 115226, 115250, 115252, 115278, 115292, 115298, 115300, 115304, 115318, 115342, 115394, 115396, 115400, 115408, 115422, 115430, 115436, 115450, 115478, 115494, 115514, 115526, 115532, 115570, 115572, 115738, 115758, 115762, 115764, 115790, 115804, 115810, 115812, 115816, 115830, 115854, 115868, 115896, 115906, 115912, 115920, 115934, 115942, 115948, 115962, 115996, 116024, 116080, 116094, 116098, 116100, 116104, 116112, 116126, 116128, 116156, 116166, 116172, 116184, 116206, 116210, 116212, 116246, 116262, 116268, 116282, 116294, 116300, 116312, 116334, 116338, 116340, 116358, 116364, 116376, 116400, 116414, 116430, 116444, 116450, 116452, 116456, 116498, 116500, 116514, 116520, 116534, 116546, 116548, 116552, 116560, 116574, 116582, 116588, 116602, 116654, 116694, 116714, 116762, 116782, 116786, 116788, 116814, 116828, 116834, 116836, 116840, 116854, 116878, 116892, 116920, 116930, 116936, 116944, 116958, 116966, 116972, 116986, 117006, 117048, 117104, 117118, 117122, 117124, 117136, 117150, 117152, 117180, 117190, 117196, 117208, 117230, 117234, 117236, 117304, 117360, 117374, 117472, 117500, 117506, 117508, 117512, 117520, 117536, 117564, 117568, 117624, 117638, 117644, 117656, 117680, 117694, 117710, 117724, 117730, 117732, 117736, 117750, 117782, 117798, 117804, 117818, 117830, 117848, 117874, 117876, 117894, 117936, 117950, 117966, 117986, 117988, 117992, 118022, 118028, 118040, 118064, 118078, 118112, 118140, 118172, 118210, 118212, 118216, 118224, 118238, 118246, 118266, 118306, 118312, 118338, 118352, 118366, 118374, 118394, 118402, 118404, 118408, 118416, 118430, 118432, 118460, 118476, 118514, 118516, 118574, 118578, 118580, 118606, 118620, 118626, 118628, 118632, 118678, 118694, 118700, 118730, 118738, 118740, 118830, 118834, 118836, 118862, 118876, 118882, 118884, 118888, 118902, 118926, 118940, 118968, 118978, 118980, 118984, 118992, 119006, 119014, 119020, 119034, 119068, 119096, 119152, 119166, 119170, 119172, 119176, 119184, 119198, 119200, 119228, 119238, 119244, 119256, 119278, 119282, 119284, 119324, 119352, 119408, 119422, 119520, 119548, 119554, 119556, 119560, 119568, 119582, 119584, 119612, 119616, 119672, 119686, 119692, 119704, 119728, 119742, 119758, 119772, 119778, 119780, 119784, 119798, 119920, 119934, 120032, 120060, 120256, 120312, 120324, 120328, 120336, 120352, 120384, 120440, 120560, 120582, 120588, 120600, 120624, 120638, 120672, 120700, 120718, 120732, 120760, 120770, 120772, 120776, 120784, 120798, 120806, 120812, 120870, 120876, 120890, 120902, 120908, 120920, 120946, 120948, 120966, 120972, 120984, 121008, 121022, 121038, 121058, 121060, 121064, 121078, 121100, 121112, 121136, 121150, 121184, 121212, 121244, 121282, 121284, 121288, 121296, 121318, 121338, 121356, 121368, 121392, 121406, 121440, 121468, 121536, 121592, 121656, 121730, 121732, 121736, 121744, 121758, 121760, 121804, 121842, 121844, 121890, 121922, 121924, 121928, 121936, 121950, 121958, 121978, 121986, 121988, 121992, 122000, 122014, 122016, 122044, 122060, 122098, 122100, 122116, 122120, 122128, 122142, 122144, 122172, 122176, 122232, 122246, 122264, 122318, 122338, 122340, 122344, 122414, 122418, 122420, 122446, 122460, 122466, 122468, 122472, 122510, 122524, 122552, 122562, 122564, 122568, 122576, 122598, 122618, 122646, 122662, 122668, 122694, 122700, 122712, 122738, 122740, 122762, 122770, 122772, 122786, 122788, 122792, 123018, 123026, 123028, 123042, 123044, 123048, 123062, 123098, 123146, 123154, 123156, 123170, 123172, 123176, 123190, 123202, 123204, 123208, 123216, 123238, 123244, 123258, 123290, 123314, 123316, 123402, 123410, 123412, 123426, 123428, 123432, 123446, 123458, 123464, 123472, 123486, 123494, 123500, 123514, 123522, 123524, 123528, 123536, 123552, 123580, 123590, 123596, 123608, 123630, 123634, 123636, 123674, 123698, 123700, 123740, 123746, 123748, 123752, 123834, 123914, 123922, 123924, 123938, 123944, 123958, 123970, 123976, 123984, 123998, 124006, 124012, 124026, 124034, 124036, 124048, 124062, 124064, 124092, 124102, 124108, 124120, 124142, 124146, 124148, 124162, 124164, 124168, 124176, 124190, 124192, 124220, 124224, 124280, 124294, 124300, 124312, 124336, 124350, 124366, 124380, 124386, 124388, 124392, 124406, 124442, 124462, 124466, 124468, 124494, 124508, 124514, 124520, 124558, 124572, 124600, 124610, 124612, 124616, 124624, 124646, 124666, 124694, 124710, 124716, 124730, 124742, 124748, 124760, 124786, 124788, 124818, 124820, 124834, 124836, 124840, 124854, 124946, 124948, 124962, 124964, 124968, 124982, 124994, 124996, 125000, 125008, 125022, 125030, 125036, 125050, 125058, 125060, 125064, 125072, 125086, 125088, 125116, 125126, 125132, 125144, 125166, 125170, 125172, 125186, 125188, 125192, 125200, 125216, 125244, 125248, 125304, 125318, 125324, 125336, 125360, 125374, 125390, 125404, 125410, 125412, 125416, 125430, 125444, 125448, 125456, 125472, 125504, 125560, 125680, 125702, 125708, 125720, 125744, 125758, 125792, 125820, 125838, 125852, 125880, 125890, 125892, 125896, 125904, 125918, 125926, 125932, 125978, 125998, 126002, 126004, 126030, 126044, 126050, 126052, 126056, 126094, 126108, 126136, 126146, 126148, 126152, 126160, 126182, 126202, 126222, 126236, 126264, 126320, 126334, 126338, 126340, 126344, 126352, 126366, 126368, 126412, 126450, 126452, 126486, 126502, 126508, 126522, 126534, 126540, 126552, 126574, 126578, 126580, 126598, 126604, 126616, 126640, 126654, 126670, 126684, 126690, 126692, 126696, 126738, 126754, 126756, 126760, 126774, 126786, 126788, 126792, 126800, 126814, 126822, 126828, 126842, 126894, 126898, 126900, 126934, 127126, 127142, 127148, 127162, 127178, 127186, 127188, 127254, 127270, 127276, 127290, 127302, 127308, 127320, 127342, 127346, 127348, 127370, 127378, 127380, 127394, 127396, 127400, 127450, 127510, 127526, 127532, 127546, 127558, 127576, 127598, 127602, 127604, 127622, 127628, 127640, 127664, 127678, 127694, 127708, 127714, 127716, 127720, 127734, 127754, 127762, 127764, 127778, 127784, 127810, 127812, 127816, 127824, 127838, 127846, 127866, 127898, 127918, 127922, 127924, 128022, 128038, 128044, 128058, 128070, 128076, 128088, 128110, 128114, 128116, 128134, 128140, 128152, 128176, 128190, 128206, 128220, 128226, 128228, 128232, 128246, 128262, 128268, 128280, 128304, 128318, 128352, 128380, 128398, 128412, 128440, 128450, 128452, 128456, 128464, 128478, 128486, 128492, 128506, 128522, 128530, 128532, 128546, 128548, 128552, 128566, 128578, 128580, 128584, 128592, 128606, 128614, 128634, 128642, 128644, 128648, 128656, 128670, 128672, 128700, 128716, 128754, 128756, 128794, 128814, 128818, 128820, 128846, 128860, 128866, 128868, 128872, 128886, 128918, 128934, 128940, 128954, 128978, 128980, 129178, 129198, 129202, 129204, 129238, 129258, 129306, 129326, 129330, 129332, 129358, 129372, 129378, 129380, 129384, 129398, 129430, 129446, 129452, 129466, 129482, 129490, 129492, 129562, 129582, 129586, 129588, 129614, 129628, 129634, 129636, 129640, 129654, 129678, 129692, 129720, 129730, 129732, 129736, 129744, 129758, 129766, 129772, 129814, 129830, 129836, 129850, 129862, 129868, 129880, 129902, 129906, 129908, 129930, 129938, 129940, 129954, 129956, 129960, 129974, 130010}; /* renamed from: c reason: collision with root package name */ - public static final int[] f1447c = {2627, 1819, 2622, 2621, 1813, 1812, 2729, 2724, 2723, 2779, 2774, 2773, 902, 896, 908, 868, 865, 861, 859, 2511, 873, 871, 1780, 835, 2493, 825, 2491, 842, 837, 844, 1764, 1762, 811, 810, 809, 2483, 807, 2482, 806, 2480, 815, 814, 813, 812, 2484, 817, 816, 1745, 1744, 1742, 1746, 2655, 2637, 2635, 2626, 2625, 2623, 2628, 1820, 2752, 2739, 2737, 2728, 2727, 2725, 2730, 2785, 2783, 2778, 2777, 2775, 2780, 787, 781, 747, 739, 736, 2413, 754, 752, 1719, 692, 689, 681, 2371, 678, 2369, 700, 697, 694, 703, 1688, 1686, 642, 638, 2343, 631, 2341, 627, 2338, 651, 646, 643, 2345, 654, 652, 1652, 1650, 1647, 1654, 601, 599, 2322, 596, 2321, 594, 2319, 2317, 611, 610, 608, 606, 2324, 603, 2323, 615, 614, 612, 1617, 1616, 1614, 1612, 616, 1619, 1618, 2575, 2538, 2536, 905, 901, 898, 909, 2509, 2507, 2504, 870, 867, 864, 860, 2512, 875, 872, 1781, 2490, 2489, 2487, 2485, 1748, 836, 834, 832, 830, 2494, 827, 2492, 843, 841, 839, 845, 1765, 1763, 2701, 2676, 2674, 2653, 2648, 2656, 2634, 2633, 2631, 2629, 1821, 2638, 2636, 2770, 2763, 2761, 2750, 2745, 2753, 2736, 2735, 2733, 2731, 1848, 2740, 2738, 2786, 2784, 591, 588, 576, 569, 566, 2296, 1590, 537, 534, 526, 2276, 522, 2274, 545, 542, 539, 548, 1572, 1570, 481, 2245, 466, 2242, 462, 2239, 492, 485, 482, 2249, 496, 494, 1534, 1531, 1528, 1538, 413, 2196, 406, 2191, 2188, 425, 419, 2202, 415, 2199, 432, 430, 427, 1472, 1467, 1464, 433, 1476, 1474, 368, 367, 2160, 365, 2159, 362, 2157, 2155, 2152, 378, 377, 375, 2166, 372, 2165, 369, 2162, 383, 381, 379, 2168, 1419, 1418, 1416, 1414, 385, 1411, 384, 1423, 1422, 1420, 1424, 2461, 802, 2441, 2439, 790, 786, 783, 794, 2409, 2406, 2403, 750, 742, 738, 2414, 756, 753, 1720, 2367, 2365, 2362, 2359, 1663, 693, 691, 684, 2373, 680, 2370, 702, 699, 696, 704, 1690, 1687, 2337, 2336, 2334, 2332, 1624, 2329, 1622, 640, 637, 2344, 634, 2342, 630, 2340, 650, 648, 645, 2346, 655, 653, 1653, 1651, 1649, 1655, 2612, 2597, 2595, 2571, 2568, 2565, 2576, 2534, 2529, 2526, 1787, 2540, 2537, 907, 904, 900, 910, 2503, 2502, GuildConstantsKt.MAX_GUILD_MEMBERS_NOTIFY_ALL_MESSAGES, 2498, 1768, 2495, 1767, 2510, 2508, 2506, 869, 866, 863, 2513, 876, 874, 1782, 2720, 2713, 2711, 2697, 2694, 2691, 2702, 2672, 2670, 2664, 1828, 2678, 2675, 2647, 2646, 2644, 2642, 1823, 2639, 1822, 2654, 2652, 2650, 2657, 2771, 1855, 2765, 2762, 1850, 1849, 2751, 2749, 2747, 2754, 353, 2148, 344, 342, 336, 2142, 332, 2140, 345, 1375, 1373, 306, 2130, 299, 2128, 295, 2125, 319, 314, 311, 2132, 1354, 1352, 1349, 1356, 262, 257, 2101, 253, 2096, 2093, 274, AudioAttributesCompat.FLAG_ALL_PUBLIC, 267, 2107, 263, 2104, 280, 278, 275, 1316, 1311, 1308, 1320, 1318, 2052, 202, 2050, 2044, 2040, 219, 2063, 212, 2060, 208, 2055, 224, 221, 2066, 1260, 1258, 1252, 231, 1248, 229, 1266, 1264, 1261, 1268, 155, 1998, 153, 1996, 1994, 1991, 1988, 165, 164, 2007, 162, 2006, 159, 2003, 2000, 172, 171, 169, 2012, 166, 2010, 1186, 1184, 1182, 1179, HideBottomViewOnScrollBehavior.EXIT_ANIMATION_DURATION, 1176, 173, 1192, 1191, 1189, 1187, 176, 1194, 1193, 2313, 2307, 2305, 592, 589, 2294, 2292, 2289, 578, 572, 568, 2297, 580, 1591, 2272, 2267, 2264, 1547, 538, 536, 529, 2278, 525, 2275, 547, 544, 541, 1574, 1571, 2237, 2235, 2229, 1493, 2225, 1489, 478, 2247, 470, 2244, 465, 2241, 493, 488, 484, 2250, 498, 495, 1536, 1533, 1530, 1539, 2187, 2186, 2184, 2182, 1432, 2179, 1430, 2176, 1427, 414, 412, 2197, 409, 2195, 405, 2193, 2190, 426, 424, 421, 2203, 418, 2201, 431, 429, 1473, 1471, 1469, 1466, 434, 1477, 1475, 2478, 2472, 2470, 2459, 2457, 2454, 2462, 803, 2437, 2432, 2429, 1726, 2443, 2440, 792, 789, 785, 2401, 2399, 2393, 1702, 2389, 1699, 2411, 2408, 2405, 745, 741, 2415, 758, 755, 1721, 2358, 2357, 2355, 2353, 1661, 2350, 1660, 2347, 1657, 2368, 2366, 2364, 2361, 1666, 690, 687, 2374, 683, 2372, 701, 698, 705, 1691, 1689, 2619, 2617, 2610, 2608, 2605, 2613, 2593, 2588, 2585, 1803, 2599, 2596, 2563, 2561, 2555, 1797, 2551, 1795, 2573, 2570, 2567, 2577, 2525, 2524, 2522, 2520, 1786, 2517, 1785, 2514, 1783, 2535, 2533, 2531, 2528, 1788, 2541, 2539, 906, 903, 911, 2721, 1844, 2715, 2712, 1838, 1836, 2699, 2696, 2693, 2703, 1827, 1826, 1824, 2673, 2671, 2669, 2666, 1829, 2679, 2677, 1858, 1857, 2772, 1854, 1853, 1851, 1856, 2766, 2764, 143, 1987, 139, 1986, 135, 133, 131, 1984, 128, 1983, 125, 1981, 138, 137, 136, 1985, 1133, 1132, 1130, 112, 110, 1974, 107, 1973, 104, 1971, 1969, 122, 121, 119, 117, 1977, 114, 1976, 124, 1115, 1114, 1112, 1110, 1117, 1116, 84, 83, 1953, 81, 1952, 78, 1950, 1948, 1945, 94, 93, 91, 1959, 88, 1958, 85, 1955, 99, 97, 95, 1961, 1086, 1085, 1083, 1081, 1078, 100, 1090, 1089, 1087, 1091, 49, 47, 1917, 44, 1915, 1913, 1910, 1907, 59, 1926, 56, 1925, 53, 1922, 1919, 66, 64, 1931, 61, 1929, 1042, 1040, 1038, 71, 1035, 70, 1032, 68, 1048, 1047, 1045, 1043, 1050, 1049, 12, 10, 1869, 1867, 1864, 1861, 21, 1880, 19, 1877, 1874, 1871, 28, 1888, 25, 1886, 22, 1883, 982, 980, 977, 974, 32, 30, 991, 989, 987, 984, 34, 995, 994, 992, 2151, 2150, 2147, 2146, 2144, 356, 355, 354, 2149, 2139, 2138, 2136, 2134, 1359, 343, 341, 338, 2143, 335, 2141, 348, 347, 346, 1376, 1374, 2124, 2123, 2121, 2119, 1326, 2116, 1324, 310, 308, 305, 2131, 302, 2129, 298, 2127, 320, 318, 316, 313, 2133, 322, 321, 1355, 1353, 1351, 1357, 2092, 2091, 2089, 2087, 1276, 2084, 1274, 2081, 1271, 259, 2102, 256, 2100, 252, 2098, 2095, 272, 269, 2108, 266, 2106, 281, 279, 277, 1317, 1315, 1313, 1310, 282, 1321, 1319, 2039, 2037, 2035, 2032, 1203, 2029, 1200, 1197, 207, 2053, 205, 2051, 201, 2049, 2046, 2043, 220, 218, 2064, 215, 2062, 211, 2059, 228, 226, 223, 2069, 1259, 1257, 1254, 232, 1251, 230, 1267, 1265, 1263, 2316, 2315, 2312, 2311, 2309, 2314, 2304, 2303, 2301, 2299, 1593, 2308, 2306, 590, 2288, 2287, 2285, 2283, 1578, 2280, 1577, 2295, 2293, 2291, 579, 577, 574, 571, 2298, 582, 581, 1592, 2263, 2262, 2260, 2258, 1545, 2255, 1544, 2252, 1541, 2273, 2271, 2269, 2266, 1550, 535, 532, 2279, 528, 2277, 546, 543, 549, 1575, 1573, 2224, 2222, 2220, 1486, 2217, 1485, 2214, 1482, 1479, 2238, 2236, 2234, 2231, 1496, 2228, 1492, 480, 477, 2248, 473, 2246, 469, 2243, 490, 487, 2251, 497, 1537, 1535, 1532, 2477, 2476, 2474, 2479, 2469, 2468, 2466, 2464, 1730, 2473, 2471, 2453, 2452, 2450, 2448, 1729, 2445, 1728, 2460, 2458, 2456, 2463, 805, 804, 2428, 2427, 2425, 2423, 1725, 2420, 1724, 2417, 1722, 2438, 2436, 2434, 2431, 1727, 2444, 2442, 793, 791, 788, 795, 2388, 2386, 2384, 1697, 2381, 1696, 2378, 1694, 1692, 2402, 2400, 2398, 2395, 1703, 2392, 1701, 2412, 2410, 2407, 751, 748, 744, 2416, 759, 757, 1807, 2620, 2618, 1806, 1805, 2611, 2609, 2607, 2614, 1802, 1801, 1799, 2594, 2592, 2590, 2587, 1804, 2600, 2598, 1794, 1793, 1791, 1789, 2564, 2562, 2560, 2557, 1798, 2554, 1796, 2574, 2572, 2569, 2578, 1847, 1846, 2722, 1843, 1842, 1840, 1845, 2716, 2714, 1835, 1834, 1832, 1830, 1839, 1837, 2700, 2698, 2695, 2704, 1817, 1811, 1810, 897, 862, 1777, 829, 826, 838, 1760, 1758, 808, 2481, 1741, 1740, 1738, 1743, 2624, 1818, 2726, 2776, 782, 740, 737, 1715, 686, 679, 695, 1682, 1680, 639, 628, 2339, 647, 644, 1645, 1643, 1640, 1648, 602, 600, 597, 595, 2320, 593, 2318, 609, 607, 604, 1611, 1610, 1608, 1606, 613, 1615, 1613, 2328, 926, 924, 892, 886, 899, 857, 850, 2505, 1778, 824, 823, 821, 819, 2488, 818, 2486, 833, 831, 828, 840, 1761, 1759, 2649, 2632, 2630, 2746, 2734, 2732, 2782, 2781, 570, 567, 1587, 531, 527, 523, 540, 1566, 1564, 476, 467, 463, 2240, 486, 483, 1524, 1521, 1518, 1529, 411, 403, 2192, 399, 2189, 423, 416, 1462, 1457, 1454, 428, 1468, 1465, 2210, 366, 363, 2158, 360, 2156, 357, 2153, 376, 373, 370, 2163, 1410, 1409, 1407, 1405, 382, 1402, 380, 1417, 1415, 1412, 1421, 2175, 2174, 777, 774, 771, 784, 732, 725, 722, 2404, 743, 1716, 676, 674, 668, 2363, 665, 2360, 685, 1684, 1681, 626, 624, 622, 2335, 620, 2333, 617, 2330, 641, 635, 649, 1646, 1644, 1642, 2566, 928, 925, 2530, 2527, 894, 891, 888, 2501, 2499, 2496, 858, 856, 854, 851, 1779, 2692, 2668, 2665, 2645, 2643, 2640, 2651, 2768, 2759, 2757, 2744, 2743, 2741, 2748, 352, 1382, 340, 337, 333, 1371, 1369, 307, 300, 296, 2126, 315, 312, 1347, 1342, 1350, 261, 258, 250, 2097, 246, 2094, 271, 268, 264, 1306, 1301, 1298, 276, 1312, 1309, 2115, 203, 2048, 195, 2045, 191, 2041, 213, 209, 2056, 1246, 1244, 1238, HideBottomViewOnScrollBehavior.ENTER_ANIMATION_DURATION, 1234, 222, 1256, 1253, 1249, 1262, 2080, 2079, 154, 1997, FontUtils.MAX_FONT_SCALING, 1995, 147, 1992, 1989, 163, 160, 2004, 156, 2001, 1175, 1174, 1172, 1170, 1167, 170, 1164, 167, 1185, 1183, 1180, 1177, 174, 1190, 1188, 2025, 2024, 2022, 587, 586, 564, 559, 556, 2290, 573, 1588, 520, 518, 512, 2268, 508, 2265, 530, 1568, 1565, 461, 457, 2233, 450, 2230, 446, 2226, 479, 471, 489, 1526, 1523, 1520, 397, 395, 2185, 392, 2183, 389, 2180, 2177, 410, 2194, 402, 422, 1463, 1461, 1459, 1456, 1470, 2455, 799, 2433, 2430, 779, 776, 773, 2397, 2394, 2390, 734, 728, 724, 746, 1717, 2356, 2354, 2351, 2348, 1658, 677, 675, 673, 670, 667, 688, 1685, 1683, 2606, 2589, 2586, 2559, 2556, 2552, 927, 2523, 2521, 2518, 2515, 1784, 2532, 895, 893, 890, 2718, 2709, 2707, 2689, 2687, 2684, 2663, 2662, 2660, 2658, 1825, 2667, 2769, 1852, 2760, 2758, 142, 141, 1139, 1138, 134, 132, 129, 126, 1982, 1129, 1128, 1126, 1131, 113, 111, 108, 105, 1972, 101, 1970, 120, 118, 115, 1109, 1108, 1106, 1104, 123, 1113, 1111, 82, 79, 1951, 75, 1949, 72, 1946, 92, 89, 86, 1956, 1077, 1076, 1074, 1072, 98, 1069, 96, 1084, 1082, 1079, 1088, 1968, 1967, 48, 45, 1916, 42, 1914, 39, 1911, 1908, 60, 57, 54, 1923, 50, 1920, 1031, 1030, 1028, 1026, 67, AudioAttributesCompat.FLAG_ALL, 65, PointerIconCompat.TYPE_GRAB, 62, 1041, 1039, 1036, 1033, 69, 1046, 1044, 1944, 1943, 1941, 11, 9, 1868, 7, 1865, 1862, 1859, 20, 1878, 16, 1875, 13, 1872, 970, 968, 966, 963, 29, 960, 26, 23, 983, 981, 978, 975, 33, 971, 31, 990, 988, 985, 1906, 1904, 1902, 993, 351, 2145, 1383, 331, 330, 328, 326, 2137, 323, 2135, 339, 1372, 1370, 294, 293, 291, 289, 2122, 286, 2120, 283, 2117, 309, 303, 317, 1348, 1346, 1344, 245, 244, 242, 2090, 239, 2088, 236, 2085, 2082, 260, 2099, 249, 270, 1307, 1305, 1303, 1300, 1314, 189, 2038, 186, 2036, 183, 2033, 2030, 2026, 206, 198, 2047, 194, 216, 1247, 1245, 1243, 1240, 227, 1237, 1255, 2310, 2302, 2300, 2286, 2284, 2281, 565, 563, 561, 558, 575, 1589, 2261, 2259, 2256, 2253, 1542, 521, 519, 517, 514, 2270, FrameMetricsAggregator.EVERY_DURATION, 533, 1569, 1567, 2223, 2221, 2218, 2215, 1483, 2211, 1480, 459, 456, 453, 2232, 449, 474, 491, 1527, 1525, 1522, 2475, 2467, 2465, 2451, 2449, 2446, 801, 800, 2426, 2424, 2421, 2418, 1723, 2435, 780, 778, 775, 2387, 2385, 2382, 2379, 1695, 2375, 1693, 2396, 735, 733, 730, 727, 749, 1718, 2616, 2615, 2604, 2603, 2601, 2584, 2583, 2581, 2579, ModelInvite.Settings.HALF_HOUR, 2591, 2550, 2549, 2547, 2545, 1792, 2542, 1790, 2558, 929, 2719, 1841, 2710, 2708, 1833, 1831, 2690, 2688, 2686, 1815, 1809, 1808, 1774, 1756, 1754, 1737, 1736, 1734, 1739, 1816, 1711, 1676, 1674, 633, 629, 1638, 1636, 1633, 1641, 598, 1605, 1604, 1602, 1600, 605, 1609, 1607, 2327, 887, 853, 1775, 822, 820, 1757, 1755, 1584, 524, 1560, 1558, 468, 464, 1514, 1511, 1508, 1519, 408, 404, 400, 1452, 1447, 1444, 417, 1458, 1455, 2208, 364, 361, 358, 2154, 1401, 1400, 1398, 1396, 374, 1393, 371, 1408, 1406, 1403, 1413, 2173, 2172, 772, 726, 723, 1712, 672, 669, 666, 682, 1678, 1675, 625, 623, 621, 618, 2331, 636, 632, 1639, 1637, 1635, 920, 918, 884, 880, 889, 849, 848, 847, 846, 2497, 855, 852, 1776, 2641, 2742, 2787, 1380, 334, 1367, 1365, 301, 297, 1340, 1338, 1335, 1343, 255, 251, 247, 1296, 1291, 1288, 265, 1302, 1299, 2113, 204, 196, 192, 2042, 1232, 1230, 1224, 214, 1220, 210, 1242, 1239, 1235, 1250, 2077, 2075, 151, 148, 1993, 144, 1990, 1163, 1162, 1160, 1158, 1155, 161, 1152, 157, 1173, 1171, 1168, 1165, 168, 1181, 1178, 2021, 2020, 2018, 2023, 585, 560, 557, 1585, 516, 509, 1562, 1559, 458, 447, 2227, 472, 1516, 1513, 1510, 398, 396, 393, 390, 2181, 386, 2178, 407, 1453, 1451, 1449, 1446, 420, 1460, 2209, 769, 764, 720, 712, 2391, 729, 1713, 664, 663, 661, 659, 2352, 656, 2349, 671, 1679, 1677, 2553, 922, 919, 2519, 2516, 885, 883, 881, 2685, 2661, 2659, 2767, 2756, 2755, 140, 1137, 1136, 130, 127, 1125, 1124, 1122, 1127, 109, 106, 102, 1103, 1102, 1100, 1098, 116, 1107, 1105, 1980, 80, 76, 73, 1947, 1068, 1067, 1065, 1063, 90, 1060, 87, 1075, 1073, 1070, WidgetSettingsUserProfile.MAX_BANNER_IMAGE_SIZE, 1966, 1965, 46, 43, 40, 1912, 36, 1909, PointerIconCompat.TYPE_ZOOM_OUT, PointerIconCompat.TYPE_ZOOM_IN, PointerIconCompat.TYPE_TOP_RIGHT_DIAGONAL_DOUBLE_ARROW, PointerIconCompat.TYPE_HORIZONTAL_DOUBLE_ARROW, 58, PointerIconCompat.TYPE_COPY, 55, PointerIconCompat.TYPE_TEXT, 51, 1029, 1027, 1024, PointerIconCompat.TYPE_GRABBING, 63, 1037, 1034, 1940, 1939, 1937, 1942, 8, 1866, 4, 1863, 1, 1860, 956, 954, 952, 949, 946, 17, 14, 969, 967, 964, 961, 27, 957, 24, 979, 976, 972, 1901, 1900, 1898, 1896, 986, 1905, 1903, 350, 349, 1381, 329, 327, 324, 1368, 1366, 292, 290, 287, 284, 2118, 304, 1341, 1339, 1337, 1345, 243, 240, 237, 2086, 233, 2083, 254, 1297, 1295, 1293, 1290, 1304, 2114, 190, 187, 184, 2034, BaseTransientBottomBar.ANIMATION_FADE_DURATION, 2031, 177, 2027, 199, 1233, 1231, 1229, 1226, 217, 1223, 1241, 2078, 2076, 584, 555, 554, 552, 550, 2282, 562, 1586, 507, 506, 504, 502, 2257, 499, 2254, 515, 1563, 1561, 445, 443, 441, 2219, 438, 2216, 435, 2212, 460, 454, 475, 1517, 1515, 1512, 2447, 798, 797, 2422, 2419, 770, 768, 766, 2383, 2380, 2376, 721, 719, 717, 714, 731, 1714, 2602, 2582, 2580, 2548, 2546, 2543, 923, 921, 2717, 2706, 2705, 2683, 2682, 2680, 1771, 1752, 1750, 1733, 1732, 1731, 1735, 1814, 1707, 1670, 1668, 1631, 1629, 1626, 1634, 1599, 1598, 1596, 1594, 1603, 1601, 2326, 1772, 1753, 1751, 1581, 1554, 1552, 1504, 1501, 1498, 1509, 1442, 1437, 1434, 401, 1448, 1445, 2206, 1392, 1391, 1389, 1387, 1384, 359, 1399, 1397, 1394, 1404, 2171, 2170, 1708, 1672, 1669, 619, 1632, 1630, 1628, 1773, 1378, 1363, 1361, 1333, 1328, 1336, 1286, 1281, 1278, 248, 1292, 1289, 2111, 1218, 1216, 1210, 197, 1206, 193, 1228, 1225, 1221, 1236, 2073, 2071, 1151, 1150, 1148, 1146, 152, 1143, 149, 1140, 145, 1161, 1159, 1156, 1153, 158, 1169, 1166, 2017, 2016, 2014, 2019, 1582, 510, 1556, 1553, 452, 448, 1506, 1500, 394, 391, 387, 1443, 1441, 1439, 1436, 1450, 2207, 765, 716, 713, 1709, 662, 660, 657, 1673, 1671, 916, 914, 879, 878, 877, 882, 1135, 1134, 1121, 1120, 1118, 1123, 1097, 1096, 1094, 1092, 103, 1101, 1099, 1979, 1059, 1058, 1056, 1054, 77, 1051, 74, 1066, 1064, 1061, 1071, 1964, 1963, PointerIconCompat.TYPE_CROSSHAIR, PointerIconCompat.TYPE_CELL, PointerIconCompat.TYPE_WAIT, PointerIconCompat.TYPE_HAND, RoomDatabase.MAX_BIND_PARAMETER_CNT, 41, 996, 37, PointerIconCompat.TYPE_TOP_LEFT_DIAGONAL_DOUBLE_ARROW, PointerIconCompat.TYPE_VERTICAL_DOUBLE_ARROW, PointerIconCompat.TYPE_NO_DROP, PointerIconCompat.TYPE_VERTICAL_TEXT, 52, InputDeviceCompat.SOURCE_GAMEPAD, 1022, 1936, 1935, 1933, 1938, 942, 940, 938, 935, 932, 5, 2, 955, 953, 950, 947, 18, 943, 15, 965, 962, 958, 1895, 1894, 1892, 1890, 973, 1899, 1897, 1379, 325, 1364, 1362, ScreenShareManager.THUMBNAIL_HEIGHT_PX, 285, 1334, 1332, 1330, 241, 238, 234, 1287, 1285, 1283, 1280, 1294, 2112, 188, 185, 181, 178, 2028, 1219, 1217, 1215, 1212, 200, 1209, 1227, 2074, 2072, 583, 553, 551, 1583, 505, 503, 500, InputDeviceCompat.SOURCE_DPAD, 1557, 1555, 444, 442, 439, 436, 2213, 455, 451, 1507, 1505, 1502, 796, 763, 762, 760, 767, 711, 710, 708, 706, 2377, 718, 715, 1710, 2544, 917, 915, 2681, 1627, 1597, 1595, 2325, 1769, 1749, 1747, 1499, 1438, 1435, 2204, 1390, 1388, 1385, 1395, 2169, 2167, 1704, 1665, 1662, 1625, 1623, 1620, 1770, 1329, 1282, 1279, 2109, 1214, 1207, 1222, 2068, 2065, 1149, 1147, 1144, 1141, 146, 1157, 1154, 2013, 2011, 2008, 2015, 1579, 1549, 1546, 1495, 1487, 1433, 1431, 1428, 1425, 388, 1440, 2205, 1705, 658, 1667, 1664, 1119, 1095, 1093, 1978, 1057, 1055, 1052, 1062, 1962, 1960, 1005, PointerIconCompat.TYPE_HELP, 1000, 997, 38, PointerIconCompat.TYPE_ALL_SCROLL, PointerIconCompat.TYPE_ALIAS, 1932, 1930, 1927, 1934, 941, 939, 936, 933, 6, 930, 3, 951, 948, 944, 1889, 1887, 1884, 1881, 959, 1893, 1891, 35, 1377, 1360, 1358, 1327, 1325, 1322, 1331, 1277, 1275, 1272, 1269, 235, 1284, 2110, 1205, 1204, 1201, 1198, 182, 1195, 179, 1213, 2070, 2067, 1580, 501, 1551, 1548, 440, 437, 1497, 1494, 1490, 1503, 761, 709, 707, 1706, 913, 912, 2198, 1386, 2164, 2161, 1621, 1766, 2103, 1208, 2058, 2054, 1145, 1142, 2005, 2002, 1999, 2009, 1488, 1429, 1426, 2200, 1698, 1659, 1656, 1975, 1053, 1957, 1954, PointerIconCompat.TYPE_CONTEXT_MENU, 998, 1924, 1921, 1918, 1928, 937, 934, 931, 1879, 1876, 1873, 1870, 945, 1885, 1882, 1323, 1273, 1270, 2105, 1202, 1199, 1196, 1211, 2061, 2057, 1576, 1543, 1540, 1484, 1481, 1478, 1491, 1700}; + public static final int[] f1448c = {2627, 1819, 2622, 2621, 1813, 1812, 2729, 2724, 2723, 2779, 2774, 2773, 902, 896, 908, 868, 865, 861, 859, 2511, 873, 871, 1780, 835, 2493, 825, 2491, 842, 837, 844, 1764, 1762, 811, 810, 809, 2483, 807, 2482, 806, 2480, 815, 814, 813, 812, 2484, 817, 816, 1745, 1744, 1742, 1746, 2655, 2637, 2635, 2626, 2625, 2623, 2628, 1820, 2752, 2739, 2737, 2728, 2727, 2725, 2730, 2785, 2783, 2778, 2777, 2775, 2780, 787, 781, 747, 739, 736, 2413, 754, 752, 1719, 692, 689, 681, 2371, 678, 2369, 700, 697, 694, 703, 1688, 1686, 642, 638, 2343, 631, 2341, 627, 2338, 651, 646, 643, 2345, 654, 652, 1652, 1650, 1647, 1654, 601, 599, 2322, 596, 2321, 594, 2319, 2317, 611, 610, 608, 606, 2324, 603, 2323, 615, 614, 612, 1617, 1616, 1614, 1612, 616, 1619, 1618, 2575, 2538, 2536, 905, 901, 898, 909, 2509, 2507, 2504, 870, 867, 864, 860, 2512, 875, 872, 1781, 2490, 2489, 2487, 2485, 1748, 836, 834, 832, 830, 2494, 827, 2492, 843, 841, 839, 845, 1765, 1763, 2701, 2676, 2674, 2653, 2648, 2656, 2634, 2633, 2631, 2629, 1821, 2638, 2636, 2770, 2763, 2761, 2750, 2745, 2753, 2736, 2735, 2733, 2731, 1848, 2740, 2738, 2786, 2784, 591, 588, 576, 569, 566, 2296, 1590, 537, 534, 526, 2276, 522, 2274, 545, 542, 539, 548, 1572, 1570, 481, 2245, 466, 2242, 462, 2239, 492, 485, 482, 2249, 496, 494, 1534, 1531, 1528, 1538, 413, 2196, 406, 2191, 2188, 425, 419, 2202, 415, 2199, 432, 430, 427, 1472, 1467, 1464, 433, 1476, 1474, 368, 367, 2160, 365, 2159, 362, 2157, 2155, 2152, 378, 377, 375, 2166, 372, 2165, 369, 2162, 383, 381, 379, 2168, 1419, 1418, 1416, 1414, 385, 1411, 384, 1423, 1422, 1420, 1424, 2461, 802, 2441, 2439, 790, 786, 783, 794, 2409, 2406, 2403, 750, 742, 738, 2414, 756, 753, 1720, 2367, 2365, 2362, 2359, 1663, 693, 691, 684, 2373, 680, 2370, 702, 699, 696, 704, 1690, 1687, 2337, 2336, 2334, 2332, 1624, 2329, 1622, 640, 637, 2344, 634, 2342, 630, 2340, 650, 648, 645, 2346, 655, 653, 1653, 1651, 1649, 1655, 2612, 2597, 2595, 2571, 2568, 2565, 2576, 2534, 2529, 2526, 1787, 2540, 2537, 907, 904, 900, 910, 2503, 2502, GuildConstantsKt.MAX_GUILD_MEMBERS_NOTIFY_ALL_MESSAGES, 2498, 1768, 2495, 1767, 2510, 2508, 2506, 869, 866, 863, 2513, 876, 874, 1782, 2720, 2713, 2711, 2697, 2694, 2691, 2702, 2672, 2670, 2664, 1828, 2678, 2675, 2647, 2646, 2644, 2642, 1823, 2639, 1822, 2654, 2652, 2650, 2657, 2771, 1855, 2765, 2762, 1850, 1849, 2751, 2749, 2747, 2754, 353, 2148, 344, 342, 336, 2142, 332, 2140, 345, 1375, 1373, 306, 2130, 299, 2128, 295, 2125, 319, 314, 311, 2132, 1354, 1352, 1349, 1356, 262, 257, 2101, 253, 2096, 2093, 274, AudioAttributesCompat.FLAG_ALL_PUBLIC, 267, 2107, 263, 2104, 280, 278, 275, 1316, 1311, 1308, 1320, 1318, 2052, 202, 2050, 2044, 2040, 219, 2063, 212, 2060, 208, 2055, 224, 221, 2066, 1260, 1258, 1252, 231, 1248, 229, 1266, 1264, 1261, 1268, 155, 1998, 153, 1996, 1994, 1991, 1988, 165, 164, 2007, 162, 2006, 159, 2003, 2000, 172, 171, 169, 2012, 166, 2010, 1186, 1184, 1182, 1179, HideBottomViewOnScrollBehavior.EXIT_ANIMATION_DURATION, 1176, 173, 1192, 1191, 1189, 1187, 176, 1194, 1193, 2313, 2307, 2305, 592, 589, 2294, 2292, 2289, 578, 572, 568, 2297, 580, 1591, 2272, 2267, 2264, 1547, 538, 536, 529, 2278, 525, 2275, 547, 544, 541, 1574, 1571, 2237, 2235, 2229, 1493, 2225, 1489, 478, 2247, 470, 2244, 465, 2241, 493, 488, 484, 2250, 498, 495, 1536, 1533, 1530, 1539, 2187, 2186, 2184, 2182, 1432, 2179, 1430, 2176, 1427, 414, 412, 2197, 409, 2195, 405, 2193, 2190, 426, 424, 421, 2203, 418, 2201, 431, 429, 1473, 1471, 1469, 1466, 434, 1477, 1475, 2478, 2472, 2470, 2459, 2457, 2454, 2462, 803, 2437, 2432, 2429, 1726, 2443, 2440, 792, 789, 785, 2401, 2399, 2393, 1702, 2389, 1699, 2411, 2408, 2405, 745, 741, 2415, 758, 755, 1721, 2358, 2357, 2355, 2353, 1661, 2350, 1660, 2347, 1657, 2368, 2366, 2364, 2361, 1666, 690, 687, 2374, 683, 2372, 701, 698, 705, 1691, 1689, 2619, 2617, 2610, 2608, 2605, 2613, 2593, 2588, 2585, 1803, 2599, 2596, 2563, 2561, 2555, 1797, 2551, 1795, 2573, 2570, 2567, 2577, 2525, 2524, 2522, 2520, 1786, 2517, 1785, 2514, 1783, 2535, 2533, 2531, 2528, 1788, 2541, 2539, 906, 903, 911, 2721, 1844, 2715, 2712, 1838, 1836, 2699, 2696, 2693, 2703, 1827, 1826, 1824, 2673, 2671, 2669, 2666, 1829, 2679, 2677, 1858, 1857, 2772, 1854, 1853, 1851, 1856, 2766, 2764, 143, 1987, 139, 1986, 135, 133, 131, 1984, 128, 1983, 125, 1981, 138, 137, 136, 1985, 1133, 1132, 1130, 112, 110, 1974, 107, 1973, 104, 1971, 1969, 122, 121, 119, 117, 1977, 114, 1976, 124, 1115, 1114, 1112, 1110, 1117, 1116, 84, 83, 1953, 81, 1952, 78, 1950, 1948, 1945, 94, 93, 91, 1959, 88, 1958, 85, 1955, 99, 97, 95, 1961, 1086, 1085, 1083, 1081, 1078, 100, 1090, 1089, 1087, 1091, 49, 47, 1917, 44, 1915, 1913, 1910, 1907, 59, 1926, 56, 1925, 53, 1922, 1919, 66, 64, 1931, 61, 1929, 1042, 1040, 1038, 71, 1035, 70, 1032, 68, 1048, 1047, 1045, 1043, 1050, 1049, 12, 10, 1869, 1867, 1864, 1861, 21, 1880, 19, 1877, 1874, 1871, 28, 1888, 25, 1886, 22, 1883, 982, 980, 977, 974, 32, 30, 991, 989, 987, 984, 34, 995, 994, 992, 2151, 2150, 2147, 2146, 2144, 356, 355, 354, 2149, 2139, 2138, 2136, 2134, 1359, 343, 341, 338, 2143, 335, 2141, 348, 347, 346, 1376, 1374, 2124, 2123, 2121, 2119, 1326, 2116, 1324, 310, 308, 305, 2131, 302, 2129, 298, 2127, 320, 318, 316, 313, 2133, 322, 321, 1355, 1353, 1351, 1357, 2092, 2091, 2089, 2087, 1276, 2084, 1274, 2081, 1271, 259, 2102, 256, 2100, 252, 2098, 2095, 272, 269, 2108, 266, 2106, 281, 279, 277, 1317, 1315, 1313, 1310, 282, 1321, 1319, 2039, 2037, 2035, 2032, 1203, 2029, 1200, 1197, 207, 2053, 205, 2051, 201, 2049, 2046, 2043, 220, 218, 2064, 215, 2062, 211, 2059, 228, 226, 223, 2069, 1259, 1257, 1254, 232, 1251, 230, 1267, 1265, 1263, 2316, 2315, 2312, 2311, 2309, 2314, 2304, 2303, 2301, 2299, 1593, 2308, 2306, 590, 2288, 2287, 2285, 2283, 1578, 2280, 1577, 2295, 2293, 2291, 579, 577, 574, 571, 2298, 582, 581, 1592, 2263, 2262, 2260, 2258, 1545, 2255, 1544, 2252, 1541, 2273, 2271, 2269, 2266, 1550, 535, 532, 2279, 528, 2277, 546, 543, 549, 1575, 1573, 2224, 2222, 2220, 1486, 2217, 1485, 2214, 1482, 1479, 2238, 2236, 2234, 2231, 1496, 2228, 1492, 480, 477, 2248, 473, 2246, 469, 2243, 490, 487, 2251, 497, 1537, 1535, 1532, 2477, 2476, 2474, 2479, 2469, 2468, 2466, 2464, 1730, 2473, 2471, 2453, 2452, 2450, 2448, 1729, 2445, 1728, 2460, 2458, 2456, 2463, 805, 804, 2428, 2427, 2425, 2423, 1725, 2420, 1724, 2417, 1722, 2438, 2436, 2434, 2431, 1727, 2444, 2442, 793, 791, 788, 795, 2388, 2386, 2384, 1697, 2381, 1696, 2378, 1694, 1692, 2402, 2400, 2398, 2395, 1703, 2392, 1701, 2412, 2410, 2407, 751, 748, 744, 2416, 759, 757, 1807, 2620, 2618, 1806, 1805, 2611, 2609, 2607, 2614, 1802, 1801, 1799, 2594, 2592, 2590, 2587, 1804, 2600, 2598, 1794, 1793, 1791, 1789, 2564, 2562, 2560, 2557, 1798, 2554, 1796, 2574, 2572, 2569, 2578, 1847, 1846, 2722, 1843, 1842, 1840, 1845, 2716, 2714, 1835, 1834, 1832, 1830, 1839, 1837, 2700, 2698, 2695, 2704, 1817, 1811, 1810, 897, 862, 1777, 829, 826, 838, 1760, 1758, 808, 2481, 1741, 1740, 1738, 1743, 2624, 1818, 2726, 2776, 782, 740, 737, 1715, 686, 679, 695, 1682, 1680, 639, 628, 2339, 647, 644, 1645, 1643, 1640, 1648, 602, 600, 597, 595, 2320, 593, 2318, 609, 607, 604, 1611, 1610, 1608, 1606, 613, 1615, 1613, 2328, 926, 924, 892, 886, 899, 857, 850, 2505, 1778, 824, 823, 821, 819, 2488, 818, 2486, 833, 831, 828, 840, 1761, 1759, 2649, 2632, 2630, 2746, 2734, 2732, 2782, 2781, 570, 567, 1587, 531, 527, 523, 540, 1566, 1564, 476, 467, 463, 2240, 486, 483, 1524, 1521, 1518, 1529, 411, 403, 2192, 399, 2189, 423, 416, 1462, 1457, 1454, 428, 1468, 1465, 2210, 366, 363, 2158, 360, 2156, 357, 2153, 376, 373, 370, 2163, 1410, 1409, 1407, 1405, 382, 1402, 380, 1417, 1415, 1412, 1421, 2175, 2174, 777, 774, 771, 784, 732, 725, 722, 2404, 743, 1716, 676, 674, 668, 2363, 665, 2360, 685, 1684, 1681, 626, 624, 622, 2335, 620, 2333, 617, 2330, 641, 635, 649, 1646, 1644, 1642, 2566, 928, 925, 2530, 2527, 894, 891, 888, 2501, 2499, 2496, 858, 856, 854, 851, 1779, 2692, 2668, 2665, 2645, 2643, 2640, 2651, 2768, 2759, 2757, 2744, 2743, 2741, 2748, 352, 1382, 340, 337, 333, 1371, 1369, 307, 300, 296, 2126, 315, 312, 1347, 1342, 1350, 261, 258, 250, 2097, 246, 2094, 271, 268, 264, 1306, 1301, 1298, 276, 1312, 1309, 2115, 203, 2048, 195, 2045, 191, 2041, 213, 209, 2056, 1246, 1244, 1238, HideBottomViewOnScrollBehavior.ENTER_ANIMATION_DURATION, 1234, 222, 1256, 1253, 1249, 1262, 2080, 2079, 154, 1997, FontUtils.MAX_FONT_SCALING, 1995, 147, 1992, 1989, 163, 160, 2004, 156, 2001, 1175, 1174, 1172, 1170, 1167, 170, 1164, 167, 1185, 1183, 1180, 1177, 174, 1190, 1188, 2025, 2024, 2022, 587, 586, 564, 559, 556, 2290, 573, 1588, 520, 518, 512, 2268, 508, 2265, 530, 1568, 1565, 461, 457, 2233, 450, 2230, 446, 2226, 479, 471, 489, 1526, 1523, 1520, 397, 395, 2185, 392, 2183, 389, 2180, 2177, 410, 2194, 402, 422, 1463, 1461, 1459, 1456, 1470, 2455, 799, 2433, 2430, 779, 776, 773, 2397, 2394, 2390, 734, 728, 724, 746, 1717, 2356, 2354, 2351, 2348, 1658, 677, 675, 673, 670, 667, 688, 1685, 1683, 2606, 2589, 2586, 2559, 2556, 2552, 927, 2523, 2521, 2518, 2515, 1784, 2532, 895, 893, 890, 2718, 2709, 2707, 2689, 2687, 2684, 2663, 2662, 2660, 2658, 1825, 2667, 2769, 1852, 2760, 2758, 142, 141, 1139, 1138, 134, 132, 129, 126, 1982, 1129, 1128, 1126, 1131, 113, 111, 108, 105, 1972, 101, 1970, 120, 118, 115, 1109, 1108, 1106, 1104, 123, 1113, 1111, 82, 79, 1951, 75, 1949, 72, 1946, 92, 89, 86, 1956, 1077, 1076, 1074, 1072, 98, 1069, 96, 1084, 1082, 1079, 1088, 1968, 1967, 48, 45, 1916, 42, 1914, 39, 1911, 1908, 60, 57, 54, 1923, 50, 1920, 1031, 1030, 1028, 1026, 67, AudioAttributesCompat.FLAG_ALL, 65, PointerIconCompat.TYPE_GRAB, 62, 1041, 1039, 1036, 1033, 69, 1046, 1044, 1944, 1943, 1941, 11, 9, 1868, 7, 1865, 1862, 1859, 20, 1878, 16, 1875, 13, 1872, 970, 968, 966, 963, 29, 960, 26, 23, 983, 981, 978, 975, 33, 971, 31, 990, 988, 985, 1906, 1904, 1902, 993, 351, 2145, 1383, 331, 330, 328, 326, 2137, 323, 2135, 339, 1372, 1370, 294, 293, 291, 289, 2122, 286, 2120, 283, 2117, 309, 303, 317, 1348, 1346, 1344, 245, 244, 242, 2090, 239, 2088, 236, 2085, 2082, 260, 2099, 249, 270, 1307, 1305, 1303, 1300, 1314, 189, 2038, 186, 2036, 183, 2033, 2030, 2026, 206, 198, 2047, 194, 216, 1247, 1245, 1243, 1240, 227, 1237, 1255, 2310, 2302, 2300, 2286, 2284, 2281, 565, 563, 561, 558, 575, 1589, 2261, 2259, 2256, 2253, 1542, 521, 519, 517, 514, 2270, FrameMetricsAggregator.EVERY_DURATION, 533, 1569, 1567, 2223, 2221, 2218, 2215, 1483, 2211, 1480, 459, 456, 453, 2232, 449, 474, 491, 1527, 1525, 1522, 2475, 2467, 2465, 2451, 2449, 2446, 801, 800, 2426, 2424, 2421, 2418, 1723, 2435, 780, 778, 775, 2387, 2385, 2382, 2379, 1695, 2375, 1693, 2396, 735, 733, 730, 727, 749, 1718, 2616, 2615, 2604, 2603, 2601, 2584, 2583, 2581, 2579, ModelInvite.Settings.HALF_HOUR, 2591, 2550, 2549, 2547, 2545, 1792, 2542, 1790, 2558, 929, 2719, 1841, 2710, 2708, 1833, 1831, 2690, 2688, 2686, 1815, 1809, 1808, 1774, 1756, 1754, 1737, 1736, 1734, 1739, 1816, 1711, 1676, 1674, 633, 629, 1638, 1636, 1633, 1641, 598, 1605, 1604, 1602, 1600, 605, 1609, 1607, 2327, 887, 853, 1775, 822, 820, 1757, 1755, 1584, 524, 1560, 1558, 468, 464, 1514, 1511, 1508, 1519, 408, 404, 400, 1452, 1447, 1444, 417, 1458, 1455, 2208, 364, 361, 358, 2154, 1401, 1400, 1398, 1396, 374, 1393, 371, 1408, 1406, 1403, 1413, 2173, 2172, 772, 726, 723, 1712, 672, 669, 666, 682, 1678, 1675, 625, 623, 621, 618, 2331, 636, 632, 1639, 1637, 1635, 920, 918, 884, 880, 889, 849, 848, 847, 846, 2497, 855, 852, 1776, 2641, 2742, 2787, 1380, 334, 1367, 1365, 301, 297, 1340, 1338, 1335, 1343, 255, 251, 247, 1296, 1291, 1288, 265, 1302, 1299, 2113, 204, 196, 192, 2042, 1232, 1230, 1224, 214, 1220, 210, 1242, 1239, 1235, 1250, 2077, 2075, 151, 148, 1993, 144, 1990, 1163, 1162, 1160, 1158, 1155, 161, 1152, 157, 1173, 1171, 1168, 1165, 168, 1181, 1178, 2021, 2020, 2018, 2023, 585, 560, 557, 1585, 516, 509, 1562, 1559, 458, 447, 2227, 472, 1516, 1513, 1510, 398, 396, 393, 390, 2181, 386, 2178, 407, 1453, 1451, 1449, 1446, 420, 1460, 2209, 769, 764, 720, 712, 2391, 729, 1713, 664, 663, 661, 659, 2352, 656, 2349, 671, 1679, 1677, 2553, 922, 919, 2519, 2516, 885, 883, 881, 2685, 2661, 2659, 2767, 2756, 2755, 140, 1137, 1136, 130, 127, 1125, 1124, 1122, 1127, 109, 106, 102, 1103, 1102, 1100, 1098, 116, 1107, 1105, 1980, 80, 76, 73, 1947, 1068, 1067, 1065, 1063, 90, 1060, 87, 1075, 1073, 1070, WidgetSettingsUserProfile.MAX_BANNER_IMAGE_SIZE, 1966, 1965, 46, 43, 40, 1912, 36, 1909, PointerIconCompat.TYPE_ZOOM_OUT, PointerIconCompat.TYPE_ZOOM_IN, PointerIconCompat.TYPE_TOP_RIGHT_DIAGONAL_DOUBLE_ARROW, PointerIconCompat.TYPE_HORIZONTAL_DOUBLE_ARROW, 58, PointerIconCompat.TYPE_COPY, 55, PointerIconCompat.TYPE_TEXT, 51, 1029, 1027, 1024, PointerIconCompat.TYPE_GRABBING, 63, 1037, 1034, 1940, 1939, 1937, 1942, 8, 1866, 4, 1863, 1, 1860, 956, 954, 952, 949, 946, 17, 14, 969, 967, 964, 961, 27, 957, 24, 979, 976, 972, 1901, 1900, 1898, 1896, 986, 1905, 1903, 350, 349, 1381, 329, 327, 324, 1368, 1366, 292, 290, 287, 284, 2118, 304, 1341, 1339, 1337, 1345, 243, 240, 237, 2086, 233, 2083, 254, 1297, 1295, 1293, 1290, 1304, 2114, 190, 187, 184, 2034, BaseTransientBottomBar.ANIMATION_FADE_DURATION, 2031, 177, 2027, 199, 1233, 1231, 1229, 1226, 217, 1223, 1241, 2078, 2076, 584, 555, 554, 552, 550, 2282, 562, 1586, 507, 506, 504, 502, 2257, 499, 2254, 515, 1563, 1561, 445, 443, 441, 2219, 438, 2216, 435, 2212, 460, 454, 475, 1517, 1515, 1512, 2447, 798, 797, 2422, 2419, 770, 768, 766, 2383, 2380, 2376, 721, 719, 717, 714, 731, 1714, 2602, 2582, 2580, 2548, 2546, 2543, 923, 921, 2717, 2706, 2705, 2683, 2682, 2680, 1771, 1752, 1750, 1733, 1732, 1731, 1735, 1814, 1707, 1670, 1668, 1631, 1629, 1626, 1634, 1599, 1598, 1596, 1594, 1603, 1601, 2326, 1772, 1753, 1751, 1581, 1554, 1552, 1504, 1501, 1498, 1509, 1442, 1437, 1434, 401, 1448, 1445, 2206, 1392, 1391, 1389, 1387, 1384, 359, 1399, 1397, 1394, 1404, 2171, 2170, 1708, 1672, 1669, 619, 1632, 1630, 1628, 1773, 1378, 1363, 1361, 1333, 1328, 1336, 1286, 1281, 1278, 248, 1292, 1289, 2111, 1218, 1216, 1210, 197, 1206, 193, 1228, 1225, 1221, 1236, 2073, 2071, 1151, 1150, 1148, 1146, 152, 1143, 149, 1140, 145, 1161, 1159, 1156, 1153, 158, 1169, 1166, 2017, 2016, 2014, 2019, 1582, 510, 1556, 1553, 452, 448, 1506, 1500, 394, 391, 387, 1443, 1441, 1439, 1436, 1450, 2207, 765, 716, 713, 1709, 662, 660, 657, 1673, 1671, 916, 914, 879, 878, 877, 882, 1135, 1134, 1121, 1120, 1118, 1123, 1097, 1096, 1094, 1092, 103, 1101, 1099, 1979, 1059, 1058, 1056, 1054, 77, 1051, 74, 1066, 1064, 1061, 1071, 1964, 1963, PointerIconCompat.TYPE_CROSSHAIR, PointerIconCompat.TYPE_CELL, PointerIconCompat.TYPE_WAIT, PointerIconCompat.TYPE_HAND, RoomDatabase.MAX_BIND_PARAMETER_CNT, 41, 996, 37, PointerIconCompat.TYPE_TOP_LEFT_DIAGONAL_DOUBLE_ARROW, PointerIconCompat.TYPE_VERTICAL_DOUBLE_ARROW, PointerIconCompat.TYPE_NO_DROP, PointerIconCompat.TYPE_VERTICAL_TEXT, 52, InputDeviceCompat.SOURCE_GAMEPAD, 1022, 1936, 1935, 1933, 1938, 942, 940, 938, 935, 932, 5, 2, 955, 953, 950, 947, 18, 943, 15, 965, 962, 958, 1895, 1894, 1892, 1890, 973, 1899, 1897, 1379, 325, 1364, 1362, ScreenShareManager.THUMBNAIL_HEIGHT_PX, 285, 1334, 1332, 1330, 241, 238, 234, 1287, 1285, 1283, 1280, 1294, 2112, 188, 185, 181, 178, 2028, 1219, 1217, 1215, 1212, 200, 1209, 1227, 2074, 2072, 583, 553, 551, 1583, 505, 503, 500, InputDeviceCompat.SOURCE_DPAD, 1557, 1555, 444, 442, 439, 436, 2213, 455, 451, 1507, 1505, 1502, 796, 763, 762, 760, 767, 711, 710, 708, 706, 2377, 718, 715, 1710, 2544, 917, 915, 2681, 1627, 1597, 1595, 2325, 1769, 1749, 1747, 1499, 1438, 1435, 2204, 1390, 1388, 1385, 1395, 2169, 2167, 1704, 1665, 1662, 1625, 1623, 1620, 1770, 1329, 1282, 1279, 2109, 1214, 1207, 1222, 2068, 2065, 1149, 1147, 1144, 1141, 146, 1157, 1154, 2013, 2011, 2008, 2015, 1579, 1549, 1546, 1495, 1487, 1433, 1431, 1428, 1425, 388, 1440, 2205, 1705, 658, 1667, 1664, 1119, 1095, 1093, 1978, 1057, 1055, 1052, 1062, 1962, 1960, 1005, PointerIconCompat.TYPE_HELP, 1000, 997, 38, PointerIconCompat.TYPE_ALL_SCROLL, PointerIconCompat.TYPE_ALIAS, 1932, 1930, 1927, 1934, 941, 939, 936, 933, 6, 930, 3, 951, 948, 944, 1889, 1887, 1884, 1881, 959, 1893, 1891, 35, 1377, 1360, 1358, 1327, 1325, 1322, 1331, 1277, 1275, 1272, 1269, 235, 1284, 2110, 1205, 1204, 1201, 1198, 182, 1195, 179, 1213, 2070, 2067, 1580, 501, 1551, 1548, 440, 437, 1497, 1494, 1490, 1503, 761, 709, 707, 1706, 913, 912, 2198, 1386, 2164, 2161, 1621, 1766, 2103, 1208, 2058, 2054, 1145, 1142, 2005, 2002, 1999, 2009, 1488, 1429, 1426, 2200, 1698, 1659, 1656, 1975, 1053, 1957, 1954, PointerIconCompat.TYPE_CONTEXT_MENU, 998, 1924, 1921, 1918, 1928, 937, 934, 931, 1879, 1876, 1873, 1870, 945, 1885, 1882, 1323, 1273, 1270, 2105, 1202, 1199, 1196, 1211, 2061, 2057, 1576, 1543, 1540, 1484, 1481, 1478, 1491, 1700}; public static int a(int i) { int binarySearch = Arrays.binarySearch(b, i & 262143); if (binarySearch < 0) { return -1; } - return (f1447c[binarySearch] - 1) % 929; + return (f1448c[binarySearch] - 1) % 929; } public static int[] b(Collection collection) { diff --git a/app/src/main/java/c/i/e/r/b.java b/app/src/main/java/c/i/e/r/b.java index f26b934ffc..712e06a351 100644 --- a/app/src/main/java/c/i/e/r/b.java +++ b/app/src/main/java/c/i/e/r/b.java @@ -36,7 +36,7 @@ public final class b implements i { } /* JADX WARNING: Code restructure failed: missing block: B:312:0x064c, code lost: - r3 = new com.google.zxing.Result(r2.f1421c, r2.a, r4, c.i.e.a.PDF_417); + r3 = new com.google.zxing.Result(r2.f1422c, r2.a, r4, c.i.e.a.PDF_417); r3.b(c.i.e.j.ERROR_CORRECTION_LEVEL, r2.e); r2 = (c.i.e.r.c) r2.f; */ @@ -170,11 +170,11 @@ public final class b implements i { if (a3 == null) { a3 = a4; } else if (a4 != null) { - a3 = new c.i.e.r.d.c(a3.a, a3.b, a3.f1449c, a4.d, a4.e); + a3 = new c.i.e.r.d.c(a3.a, a3.b, a3.f1450c, a4.d, a4.e); } fVar2 = new f(aVar, a3); if (fVar2 == null) { - if (i12 != 0 || (cVar6 = fVar2.f1452c) == null) { + if (i12 != 0 || (cVar6 = fVar2.f1453c) == null) { break; } cVar2 = cVar5; @@ -197,7 +197,7 @@ public final class b implements i { if (fVar2 == null) { } } - fVar2.f1452c = cVar2; + fVar2.f1453c = cVar2; fVar = fVar2; hVar = hVar; int i21 = fVar.d + 1; @@ -263,7 +263,7 @@ public final class b implements i { i25 = i5; } else { i5 = i25; - i6 = z3 ? fVar.f1452c.f : fVar.f1452c.g; + i6 = z3 ? fVar.f1453c.f : fVar.f1453c.g; } } if (i6 < 0 && i6 <= cVar2.g) { @@ -468,7 +468,7 @@ public final class b implements i { int i64 = 0; for (int i65 = 14; i64 < i65; i65 = 14) { c.i.e.r.d.d dVar7 = dVarArr9[i64]; - if (dVar7 != null && dVar7.a() && dVar7.f1450c == dVar6.f1450c) { + if (dVar7 != null && dVar7.a() && dVar7.f1451c == dVar6.f1451c) { dVar6.e = dVar7.e; z2 = true; } else { diff --git a/app/src/main/java/c/i/e/r/d/a.java b/app/src/main/java/c/i/e/r/d/a.java index eb55c85d04..0462e21bb9 100644 --- a/app/src/main/java/c/i/e/r/d/a.java +++ b/app/src/main/java/c/i/e/r/d/a.java @@ -5,14 +5,14 @@ public final class a { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1448c; + public final int f1449c; public final int d; public final int e; public a(int i, int i2, int i3, int i4) { this.a = i; this.b = i4; - this.f1448c = i2; + this.f1449c = i2; this.d = i3; this.e = i2 + i3; } diff --git a/app/src/main/java/c/i/e/r/d/c.java b/app/src/main/java/c/i/e/r/d/c.java index 5968edef96..74bd3b9126 100644 --- a/app/src/main/java/c/i/e/r/d/c.java +++ b/app/src/main/java/c/i/e/r/d/c.java @@ -9,7 +9,7 @@ public final class c { public final k b; /* renamed from: c reason: collision with root package name */ - public final k f1449c; + public final k f1450c; public final k d; public final k e; public final int f; @@ -32,7 +32,7 @@ public final class c { } this.a = bVar; this.b = kVar; - this.f1449c = kVar2; + this.f1450c = kVar2; this.d = kVar3; this.e = kVar4; this.f = (int) Math.min(kVar.a, kVar2.a); @@ -47,7 +47,7 @@ public final class c { public c(c cVar) { this.a = cVar.a; this.b = cVar.b; - this.f1449c = cVar.f1449c; + this.f1450c = cVar.f1450c; this.d = cVar.d; this.e = cVar.e; this.f = cVar.f; diff --git a/app/src/main/java/c/i/e/r/d/d.java b/app/src/main/java/c/i/e/r/d/d.java index 32dc4ea6a3..e5e725c56d 100644 --- a/app/src/main/java/c/i/e/r/d/d.java +++ b/app/src/main/java/c/i/e/r/d/d.java @@ -5,24 +5,24 @@ public final class d { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1450c; + public final int f1451c; public final int d; public int e = -1; public d(int i, int i2, int i3, int i4) { this.a = i; this.b = i2; - this.f1450c = i3; + this.f1451c = i3; this.d = i4; } public boolean a() { int i = this.e; - return i != -1 && this.f1450c == (i % 3) * 3; + return i != -1 && this.f1451c == (i % 3) * 3; } public void b() { - this.e = (this.f1450c / 3) + ((this.d / 30) * 3); + this.e = (this.f1451c / 3) + ((this.d / 30) * 3); } public String toString() { diff --git a/app/src/main/java/c/i/e/r/d/e.java b/app/src/main/java/c/i/e/r/d/e.java index 167954dd45..e86c6734b3 100644 --- a/app/src/main/java/c/i/e/r/d/e.java +++ b/app/src/main/java/c/i/e/r/d/e.java @@ -9,17 +9,17 @@ public final class e { public static final char[] b = "0123456789&\r\t,:#-.$/+%*=^".toCharArray(); /* renamed from: c reason: collision with root package name */ - public static final BigInteger[] f1451c; + public static final BigInteger[] f1452c; static { BigInteger[] bigIntegerArr = new BigInteger[16]; - f1451c = bigIntegerArr; + f1452c = bigIntegerArr; bigIntegerArr[0] = BigInteger.ONE; BigInteger valueOf = BigInteger.valueOf(900); bigIntegerArr[1] = valueOf; int i = 2; while (true) { - BigInteger[] bigIntegerArr2 = f1451c; + BigInteger[] bigIntegerArr2 = f1452c; if (i < bigIntegerArr2.length) { bigIntegerArr2[i] = bigIntegerArr2[i - 1].multiply(valueOf); i++; @@ -32,7 +32,7 @@ public final class e { public static String a(int[] iArr, int i) throws FormatException { BigInteger bigInteger = BigInteger.ZERO; for (int i2 = 0; i2 < i; i2++) { - bigInteger = bigInteger.add(f1451c[(i - i2) - 1].multiply(BigInteger.valueOf((long) iArr[i2]))); + bigInteger = bigInteger.add(f1452c[(i - i2) - 1].multiply(BigInteger.valueOf((long) iArr[i2]))); } String bigInteger2 = bigInteger.toString(); if (bigInteger2.charAt(0) == '1') { diff --git a/app/src/main/java/c/i/e/r/d/f.java b/app/src/main/java/c/i/e/r/d/f.java index 63a9ea42b2..ffafd77928 100644 --- a/app/src/main/java/c/i/e/r/d/f.java +++ b/app/src/main/java/c/i/e/r/d/f.java @@ -8,14 +8,14 @@ public final class f { public final g[] b; /* renamed from: c reason: collision with root package name */ - public c f1452c; + public c f1453c; public final int d; public f(a aVar, c cVar) { this.a = aVar; int i = aVar.a; this.d = i; - this.f1452c = cVar; + this.f1453c = cVar; this.b = new g[(i + 2)]; } @@ -23,7 +23,7 @@ public final class f { if (dVar.a()) { return i2; } - if (!(i != -1 && dVar.f1450c == (i % 3) * 3)) { + if (!(i != -1 && dVar.f1451c == (i % 3) * 3)) { return i2 + 1; } dVar.e = i; @@ -43,9 +43,9 @@ public final class f { } hVar.d(dVarArr, aVar); c cVar = hVar.a; - boolean z2 = hVar.f1453c; + boolean z2 = hVar.f1454c; k kVar = z2 ? cVar.b : cVar.d; - k kVar2 = z2 ? cVar.f1449c : cVar.e; + k kVar2 = z2 ? cVar.f1450c : cVar.e; int b = hVar.b((int) kVar.b); int b2 = hVar.b((int) kVar2.b); int i2 = -1; diff --git a/app/src/main/java/c/i/e/r/d/h.java b/app/src/main/java/c/i/e/r/d/h.java index 13113e0445..82c836f4cd 100644 --- a/app/src/main/java/c/i/e/r/d/h.java +++ b/app/src/main/java/c/i/e/r/d/h.java @@ -3,11 +3,11 @@ package c.i.e.r.d; public final class h extends g { /* renamed from: c reason: collision with root package name */ - public final boolean f1453c; + public final boolean f1454c; public h(c cVar, boolean z2) { super(cVar); - this.f1453c = z2; + this.f1454c = z2; } public a c() { @@ -21,7 +21,7 @@ public final class h extends g { dVar.b(); int i = dVar.d % 30; int i2 = dVar.e; - if (!this.f1453c) { + if (!this.f1454c) { i2 += 2; } int i3 = i2 % 3; @@ -52,7 +52,7 @@ public final class h extends g { if (i3 > aVar.e) { dVarArr[i] = null; } else { - if (!this.f1453c) { + if (!this.f1454c) { i3 += 2; } int i4 = i3 % 3; @@ -64,7 +64,7 @@ public final class h extends g { } else if (i2 / 3 != aVar.b || i2 % 3 != aVar.d) { dVarArr[i] = null; } - } else if ((i2 * 3) + 1 != aVar.f1448c) { + } else if ((i2 * 3) + 1 != aVar.f1449c) { dVarArr[i] = null; } } @@ -74,6 +74,6 @@ public final class h extends g { @Override // c.i.e.r.d.g public String toString() { - return "IsLeft: " + this.f1453c + '\n' + super.toString(); + return "IsLeft: " + this.f1454c + '\n' + super.toString(); } } diff --git a/app/src/main/java/c/i/e/r/d/j.java b/app/src/main/java/c/i/e/r/d/j.java index 37e1ccaa42..02cab8c9fa 100644 --- a/app/src/main/java/c/i/e/r/d/j.java +++ b/app/src/main/java/c/i/e/r/d/j.java @@ -35,9 +35,9 @@ public final class j { iArr = null; } else { c cVar = hVar.a; - boolean z2 = hVar.f1453c; + boolean z2 = hVar.f1454c; k kVar5 = z2 ? cVar.b : cVar.d; - k kVar6 = z2 ? cVar.f1449c : cVar.e; + k kVar6 = z2 ? cVar.f1450c : cVar.e; int b = hVar.b((int) kVar6.b); d[] dVarArr = hVar.b; int i3 = -1; @@ -106,9 +106,9 @@ public final class j { length2--; } c cVar2 = hVar.a; - boolean z3 = hVar.f1453c; + boolean z3 = hVar.f1454c; k kVar7 = cVar2.b; - k kVar8 = cVar2.f1449c; + k kVar8 = cVar2.f1450c; k kVar9 = cVar2.d; k kVar10 = cVar2.e; if (i11 > 0) { @@ -242,7 +242,7 @@ public final class j { int i16 = iArr4[i15]; Objects.requireNonNull(bVar3); if (i16 != 0) { - int i17 = length - bVar3.f1454c[i16]; + int i17 = length - bVar3.f1455c[i16]; if (i17 >= 0) { iArr[i17] = aVar.a.e(iArr[i17], iArr6[i15]); } else { diff --git a/app/src/main/java/c/i/e/r/d/k/b.java b/app/src/main/java/c/i/e/r/d/k/b.java index a85aa2283c..62e4d92c06 100644 --- a/app/src/main/java/c/i/e/r/d/k/b.java +++ b/app/src/main/java/c/i/e/r/d/k/b.java @@ -5,20 +5,20 @@ public final class b { public final int[] b; /* renamed from: c reason: collision with root package name */ - public final int[] f1454c; + public final int[] f1455c; public final c d; public final c e; public b(int i, int i2) { this.b = new int[i]; - this.f1454c = new int[i]; + this.f1455c = new int[i]; int i3 = 1; for (int i4 = 0; i4 < i; i4++) { this.b[i4] = i3; i3 = (i3 * i2) % i; } for (int i5 = 0; i5 < i - 1; i5++) { - this.f1454c[this.b[i5]] = i5; + this.f1455c[this.b[i5]] = i5; } this.d = new c(this, new int[]{0}); this.e = new c(this, new int[]{1}); @@ -42,7 +42,7 @@ public final class b { public int c(int i) { if (i != 0) { - return this.b[(929 - this.f1454c[i]) - 1]; + return this.b[(929 - this.f1455c[i]) - 1]; } throw new ArithmeticException(); } @@ -52,7 +52,7 @@ public final class b { return 0; } int[] iArr = this.b; - int[] iArr2 = this.f1454c; + int[] iArr2 = this.f1455c; return iArr[(iArr2[i] + iArr2[i2]) % 928]; } diff --git a/app/src/main/java/c/i/e/r/e/a.java b/app/src/main/java/c/i/e/r/e/a.java index 7d6230becc..e7a1c9b7b8 100644 --- a/app/src/main/java/c/i/e/r/e/a.java +++ b/app/src/main/java/c/i/e/r/e/a.java @@ -11,7 +11,7 @@ public final class a { public static final int[] b = {6, 2, 7, 3}; /* renamed from: c reason: collision with root package name */ - public static final int[] f1455c = {8, 1, 1, 1, 1, 1, 1, 3}; + public static final int[] f1456c = {8, 1, 1, 1, 1, 1, 1, 3}; public static final int[] d = {7, 1, 1, 3, 1, 1, 1, 2, 1}; /* JADX WARNING: Code restructure failed: missing block: B:20:0x0068, code lost: @@ -55,7 +55,7 @@ public final class a { } int i6 = bVar.i; k[] kVarArr = new k[8]; - k[] c2 = c(bVar, i5, i6, i3, i4, f1455c); + k[] c2 = c(bVar, i5, i6, i3, i4, f1456c); int[] iArr = a; for (int i7 = 0; i7 < iArr.length; i7++) { kVarArr[iArr[i7]] = c2[i7]; diff --git a/app/src/main/java/c/i/e/s/a.java b/app/src/main/java/c/i/e/s/a.java index 0b5eefe99c..e3cfae813e 100644 --- a/app/src/main/java/c/i/e/s/a.java +++ b/app/src/main/java/c/i/e/s/a.java @@ -70,7 +70,7 @@ public class a implements i { if (!c.i.e.s.c.e.c(iArr)) { eVar2.g(iArr); } else if (eVar2.e(iArr, i7, i9)) { - if (eVar2.f1463c) { + if (eVar2.f1464c) { z3 = eVar2.f(); } else { if (eVar2.b.size() > 1) { @@ -83,7 +83,7 @@ public class a implements i { c.i.e.s.c.d next = it.next(); if (next.d >= 2) { if (dVar != null) { - eVar2.f1463c = true; + eVar2.f1464c = true; i2 = 2; i3 = ((int) (Math.abs(dVar.a - next.a) - Math.abs(dVar.b - next.b))) / 2; break; @@ -115,7 +115,7 @@ public class a implements i { } if (c.i.e.s.c.e.c(iArr) && eVar2.e(iArr, i7, i5)) { i6 = iArr[0]; - if (eVar2.f1463c) { + if (eVar2.f1464c) { z3 = eVar2.f(); } } @@ -128,7 +128,7 @@ public class a implements i { float f5 = 0.0f; float f6 = 0.0f; for (c.i.e.s.c.d dVar2 : eVar2.b) { - float f7 = dVar2.f1462c; + float f7 = dVar2.f1463c; f5 += f7; f6 += f7 * f7; } @@ -138,7 +138,7 @@ public class a implements i { float max = Math.max(0.2f * f9, (float) Math.sqrt((double) ((f6 / f8) - (f9 * f9)))); int i11 = 0; while (i11 < eVar2.b.size() && eVar2.b.size() > 3) { - if (Math.abs(eVar2.b.get(i11).f1462c - f9) > max) { + if (Math.abs(eVar2.b.get(i11).f1463c - f9) > max) { eVar2.b.remove(i11); i11--; } @@ -147,7 +147,7 @@ public class a implements i { } if (eVar2.b.size() > 3) { for (c.i.e.s.c.d dVar3 : eVar2.b) { - f4 += dVar3.f1462c; + f4 += dVar3.f1463c; } Collections.sort(eVar2.b, new e.b(f4 / ((float) eVar2.b.size()), null)); List list = eVar2.b; @@ -163,7 +163,7 @@ public class a implements i { k.b(dVarArr); f fVar = new f(dVarArr); c.i.e.s.c.d dVar4 = fVar.b; - c.i.e.s.c.d dVar5 = fVar.f1464c; + c.i.e.s.c.d dVar5 = fVar.f1465c; c.i.e.s.c.d dVar6 = fVar.a; float a3 = (cVar2.a(dVar4, dVar6) + cVar2.a(dVar4, dVar5)) / 2.0f; if (a3 >= 1.0f) { @@ -315,7 +315,7 @@ public class a implements i { kVarArr[0] = kVarArr[2]; kVarArr[2] = kVar; } - Result result = new Result(eVar.f1421c, eVar.a, kVarArr, c.i.e.a.QR_CODE); + Result result = new Result(eVar.f1422c, eVar.a, kVarArr, c.i.e.a.QR_CODE); List list2 = eVar.d; if (list2 != null) { result.b(c.i.e.j.BYTE_SEGMENTS, list2); diff --git a/app/src/main/java/c/i/e/s/b/a.java b/app/src/main/java/c/i/e/s/b/a.java index 31c334ec19..a6fb6756e5 100644 --- a/app/src/main/java/c/i/e/s/b/a.java +++ b/app/src/main/java/c/i/e/s/b/a.java @@ -8,7 +8,7 @@ public final class a { public j b; /* renamed from: c reason: collision with root package name */ - public g f1456c; + public g f1457c; public boolean d; public a(b bVar) throws FormatException { @@ -44,7 +44,7 @@ public final class a { } public g c() throws FormatException { - g gVar = this.f1456c; + g gVar = this.f1457c; if (gVar != null) { return gVar; } @@ -69,7 +69,7 @@ public final class a { if (a2 == null) { a2 = g.a(a ^ 21522, i ^ 21522); } - this.f1456c = a2; + this.f1457c = a2; if (a2 != null) { return a2; } @@ -113,8 +113,8 @@ public final class a { } public void e() { - if (this.f1456c != null) { - c cVar = c.values()[this.f1456c.f1457c]; + if (this.f1457c != null) { + c cVar = c.values()[this.f1457c.f1458c]; b bVar = this.a; cVar.g(bVar, bVar.j); } diff --git a/app/src/main/java/c/i/e/s/b/e.java b/app/src/main/java/c/i/e/s/b/e.java index 2dda8e13c3..552f5cb077 100644 --- a/app/src/main/java/c/i/e/s/b/e.java +++ b/app/src/main/java/c/i/e/s/b/e.java @@ -26,7 +26,7 @@ public final class e { try { aVar.e(); aVar.b = null; - aVar.f1456c = null; + aVar.f1457c = null; aVar.d = true; aVar.d(); aVar.c(); @@ -45,7 +45,7 @@ public final class e { e = null; aVar.e(); aVar.b = null; - aVar.f1456c = null; + aVar.f1457c = null; aVar.d = true; aVar.d(); aVar.c(); @@ -70,7 +70,7 @@ public final class e { f fVar = aVar.c().b; g c2 = aVar.c(); j d2 = aVar.d(); - c cVar = c.values()[c2.f1457c]; + c cVar = c.values()[c2.f1458c]; b bVar2 = aVar.a; int i4 = bVar2.j; cVar.g(bVar2, i4); @@ -94,7 +94,7 @@ public final class e { int i11 = 6; bVar3.k(6, 9, 1, i10); bVar3.k(9, 6, i10, 1); - if (d2.f1459c > 6) { + if (d2.f1460c > 6) { int i12 = c3 - 11; bVar3.k(i12, 0, 3, 6); bVar3.k(0, i12, 6, 3); diff --git a/app/src/main/java/c/i/e/s/b/g.java b/app/src/main/java/c/i/e/s/b/g.java index 0d07fd05ed..394664ade0 100644 --- a/app/src/main/java/c/i/e/s/b/g.java +++ b/app/src/main/java/c/i/e/s/b/g.java @@ -5,7 +5,7 @@ public final class g { public final f b; /* renamed from: c reason: collision with root package name */ - public final byte f1457c; + public final byte f1458c; public g(int i) { int i2 = (i >> 3) & 3; @@ -13,7 +13,7 @@ public final class g { f[] fVarArr = f.m; if (i2 < fVarArr.length) { this.b = fVarArr[i2]; - this.f1457c = (byte) (i & 7); + this.f1458c = (byte) (i & 7); return; } } @@ -55,10 +55,10 @@ public final class g { return false; } g gVar = (g) obj; - return this.b == gVar.b && this.f1457c == gVar.f1457c; + return this.b == gVar.b && this.f1458c == gVar.f1458c; } public int hashCode() { - return (this.b.ordinal() << 3) | this.f1457c; + return (this.b.ordinal() << 3) | this.f1458c; } } diff --git a/app/src/main/java/c/i/e/s/b/h.java b/app/src/main/java/c/i/e/s/b/h.java index 5a86ea555e..0ed64bcf1d 100644 --- a/app/src/main/java/c/i/e/s/b/h.java +++ b/app/src/main/java/c/i/e/s/b/h.java @@ -21,7 +21,7 @@ public enum h { } public int f(j jVar) { - int i = jVar.f1459c; + int i = jVar.f1460c; return this.characterCountBitsForVersions[i <= 9 ? 0 : i <= 26 ? (char) 1 : 2]; } } diff --git a/app/src/main/java/c/i/e/s/b/j.java b/app/src/main/java/c/i/e/s/b/j.java index 4aee6539f3..a43a721d25 100644 --- a/app/src/main/java/c/i/e/s/b/j.java +++ b/app/src/main/java/c/i/e/s/b/j.java @@ -7,7 +7,7 @@ public final class j { public static final j[] b = a(); /* renamed from: c reason: collision with root package name */ - public final int f1459c; + public final int f1460c; public final int[] d; public final b[] e; public final int f; @@ -35,7 +35,7 @@ public final class j { } public j(int i, int[] iArr, b... bVarArr) { - this.f1459c = i; + this.f1460c = i; this.d = iArr; this.e = bVarArr; int i2 = bVarArr[0].a; @@ -84,10 +84,10 @@ public final class j { } public int c() { - return (this.f1459c * 4) + 17; + return (this.f1460c * 4) + 17; } public String toString() { - return String.valueOf(this.f1459c); + return String.valueOf(this.f1460c); } } diff --git a/app/src/main/java/c/i/e/s/c/a.java b/app/src/main/java/c/i/e/s/c/a.java index 8b1d797ba7..724982e980 100644 --- a/app/src/main/java/c/i/e/s/c/a.java +++ b/app/src/main/java/c/i/e/s/c/a.java @@ -5,10 +5,10 @@ import c.i.e.k; public final class a extends k { /* renamed from: c reason: collision with root package name */ - public final float f1460c; + public final float f1461c; public a(float f, float f2, float f3) { super(f, f2); - this.f1460c = f3; + this.f1461c = f3; } } diff --git a/app/src/main/java/c/i/e/s/c/b.java b/app/src/main/java/c/i/e/s/c/b.java index 8a17bc757f..e4a15eb038 100644 --- a/app/src/main/java/c/i/e/s/c/b.java +++ b/app/src/main/java/c/i/e/s/c/b.java @@ -9,7 +9,7 @@ public final class b { public final List b = new ArrayList(5); /* renamed from: c reason: collision with root package name */ - public final int f1461c; + public final int f1462c; public final int d; public final int e; public final int f; @@ -19,7 +19,7 @@ public final class b { public b(c.i.e.n.b bVar, int i, int i2, int i3, int i4, float f, l lVar) { this.a = bVar; - this.f1461c = i; + this.f1462c = i; this.d = i2; this.e = i3; this.f = i4; @@ -90,12 +90,12 @@ public final class b { float f2 = ((float) ((iArr[0] + iArr[1]) + iArr[2])) / 3.0f; for (a aVar : this.b) { if (Math.abs(f - aVar.b) <= f2 && Math.abs(a - aVar.a) <= f2) { - float abs = Math.abs(f2 - aVar.f1460c); - if (abs <= 1.0f || abs <= aVar.f1460c) { + float abs = Math.abs(f2 - aVar.f1461c); + if (abs <= 1.0f || abs <= aVar.f1461c) { z2 = true; continue; if (z2) { - return new a((aVar.a + a) / 2.0f, (aVar.b + f) / 2.0f, (aVar.f1460c + f2) / 2.0f); + return new a((aVar.a + a) / 2.0f, (aVar.b + f) / 2.0f, (aVar.f1461c + f2) / 2.0f); } } } diff --git a/app/src/main/java/c/i/e/s/c/c.java b/app/src/main/java/c/i/e/s/c/c.java index 16c25ebe0f..34ea19ec41 100644 --- a/app/src/main/java/c/i/e/s/c/c.java +++ b/app/src/main/java/c/i/e/s/c/c.java @@ -32,7 +32,7 @@ public class c { int min2 = Math.min(this.a.j - 1, i2 + i3) - max2; if (((float) min2) >= f3) { b bVar = new b(this.a, max, max2, min, min2, f, this.b); - int i4 = bVar.f1461c; + int i4 = bVar.f1462c; int i5 = bVar.f; int i6 = bVar.e + i4; int i7 = (i5 / 2) + bVar.d; diff --git a/app/src/main/java/c/i/e/s/c/d.java b/app/src/main/java/c/i/e/s/c/d.java index c452199054..654b97486d 100644 --- a/app/src/main/java/c/i/e/s/c/d.java +++ b/app/src/main/java/c/i/e/s/c/d.java @@ -5,18 +5,18 @@ import c.i.e.k; public final class d extends k { /* renamed from: c reason: collision with root package name */ - public final float f1462c; + public final float f1463c; public final int d; public d(float f, float f2, float f3) { super(f, f2); - this.f1462c = f3; + this.f1463c = f3; this.d = 1; } public d(float f, float f2, float f3, int i) { super(f, f2); - this.f1462c = f3; + this.f1463c = f3; this.d = i; } } diff --git a/app/src/main/java/c/i/e/s/c/e.java b/app/src/main/java/c/i/e/s/c/e.java index 69a34d52ea..e1966e3029 100644 --- a/app/src/main/java/c/i/e/s/c/e.java +++ b/app/src/main/java/c/i/e/s/c/e.java @@ -11,7 +11,7 @@ public class e { public final List b = new ArrayList(); /* renamed from: c reason: collision with root package name */ - public boolean f1463c; + public boolean f1464c; public final int[] d = new int[5]; public final l e; @@ -29,7 +29,7 @@ public class e { d dVar3 = dVar; d dVar4 = dVar2; int compare = Integer.compare(dVar4.d, dVar3.d); - return compare == 0 ? Float.compare(Math.abs(dVar3.f1462c - this.average), Math.abs(dVar4.f1462c - this.average)) : compare; + return compare == 0 ? Float.compare(Math.abs(dVar3.f1463c - this.average), Math.abs(dVar4.f1463c - this.average)) : compare; } } @@ -44,7 +44,7 @@ public class e { /* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object, java.lang.Object] */ @Override // java.util.Comparator public int compare(d dVar, d dVar2) { - return Float.compare(Math.abs(dVar2.f1462c - this.average), Math.abs(dVar.f1462c - this.average)); + return Float.compare(Math.abs(dVar2.f1463c - this.average), Math.abs(dVar.f1463c - this.average)); } } @@ -267,8 +267,8 @@ public class e { } d dVar = this.b.get(i27); if (Math.abs(f - dVar.b) <= f5 && Math.abs(f2 - dVar.a) <= f5) { - float abs = Math.abs(f5 - dVar.f1462c); - if (abs <= 1.0f || abs <= dVar.f1462c) { + float abs = Math.abs(f5 - dVar.f1463c); + if (abs <= 1.0f || abs <= dVar.f1463c) { z4 = true; if (!z4) { List list = this.b; @@ -276,7 +276,7 @@ public class e { int i29 = i28 + 1; float f6 = (float) i28; float f7 = (float) i29; - list.set(i27, new d(((dVar.a * f6) + f2) / f7, ((dVar.b * f6) + f) / f7, ((f6 * dVar.f1462c) + f5) / f7, i29)); + list.set(i27, new d(((dVar.a * f6) + f2) / f7, ((dVar.b * f6) + f) / f7, ((f6 * dVar.f1463c) + f5) / f7, i29)); z3 = true; break; } @@ -324,7 +324,7 @@ public class e { for (d dVar : this.b) { if (dVar.d >= 2) { i++; - f2 += dVar.f1462c; + f2 += dVar.f1463c; } } if (i < 3) { @@ -332,7 +332,7 @@ public class e { } float f3 = f2 / ((float) size); for (d dVar2 : this.b) { - f += Math.abs(dVar2.f1462c - f3); + f += Math.abs(dVar2.f1463c - f3); } return f <= f2 * 0.05f; } diff --git a/app/src/main/java/c/i/e/s/c/f.java b/app/src/main/java/c/i/e/s/c/f.java index c6c42830c5..9876226542 100644 --- a/app/src/main/java/c/i/e/s/c/f.java +++ b/app/src/main/java/c/i/e/s/c/f.java @@ -5,11 +5,11 @@ public final class f { public final d b; /* renamed from: c reason: collision with root package name */ - public final d f1464c; + public final d f1465c; public f(d[] dVarArr) { this.a = dVarArr[0]; this.b = dVarArr[1]; - this.f1464c = dVarArr[2]; + this.f1465c = dVarArr[2]; } } diff --git a/app/src/main/java/c/j/a/e.java b/app/src/main/java/c/j/a/e.java index 800d8256d4..11d8fbc29f 100644 --- a/app/src/main/java/c/j/a/e.java +++ b/app/src/main/java/c/j/a/e.java @@ -70,7 +70,7 @@ public class e implements Serializable { rVar.b(rVar.c(iVar), hCaptchaConfig); String c2 = iVar.i.c(); k kVar = iVar.i; - kVar.f539c = -1; + kVar.f540c = -1; kVar.h = 0; kVar.j = null; if (kVar.e) { @@ -127,15 +127,15 @@ public class e implements Serializable { @Override // java.lang.Object public String toString() { - StringBuilder P = c.d.b.a.a.P("HCaptchaJSInterface(hCaptchaConfig="); - P.append(this.hCaptchaConfig); - P.append(", onLoadedListener="); - P.append(this.onLoadedListener); - P.append(", onSuccessListener="); - P.append(this.onSuccessListener); - P.append(", onFailureListener="); - P.append(this.onFailureListener); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("HCaptchaJSInterface(hCaptchaConfig="); + O.append(this.hCaptchaConfig); + O.append(", onLoadedListener="); + O.append(this.onLoadedListener); + O.append(", onSuccessListener="); + O.append(this.onSuccessListener); + O.append(", onFailureListener="); + O.append(this.onFailureListener); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/j/a/f/d.java b/app/src/main/java/c/j/a/f/d.java index e23f5ad6ac..b6e30d6c8c 100644 --- a/app/src/main/java/c/j/a/f/d.java +++ b/app/src/main/java/c/j/a/f/d.java @@ -9,12 +9,12 @@ public abstract class d { public HCaptchaException b; /* renamed from: c reason: collision with root package name */ - public final List> f1465c = new ArrayList(); + public final List> f1466c = new ArrayList(); public final List d = new ArrayList(); public final void a() { if (this.a != null) { - Iterator> it = this.f1465c.iterator(); + Iterator> it = this.f1466c.iterator(); while (it.hasNext()) { it.next().onSuccess(this.a); it.remove(); diff --git a/app/src/main/java/c/k/a/a/a.java b/app/src/main/java/c/k/a/a/a.java index 84938e9b05..0c8fa4a3f1 100644 --- a/app/src/main/java/c/k/a/a/a.java +++ b/app/src/main/java/c/k/a/a/a.java @@ -12,7 +12,7 @@ public class a extends Drawable { public Paint b = new Paint(); /* renamed from: c reason: collision with root package name */ - public Paint f1466c = new Paint(); + public Paint f1467c = new Paint(); public Paint d = new Paint(); public int e; public int f; @@ -20,7 +20,7 @@ public class a extends Drawable { public a(int i) { this.a = i; - this.f1466c.setColor(-1); + this.f1467c.setColor(-1); this.d.setColor(-3421237); } @@ -58,7 +58,7 @@ public class a extends Drawable { rect2.left = i5; rect2.bottom = i4 + i3; rect2.right = i5 + i3; - canvas.drawRect(rect2, z3 ? this.f1466c : this.d); + canvas.drawRect(rect2, z3 ? this.f1467c : this.d); z3 = !z3; } z2 = !z2; diff --git a/app/src/main/java/c/k/a/a/b.java b/app/src/main/java/c/k/a/a/b.java index b58a19c5bd..56b5eff451 100644 --- a/app/src/main/java/c/k/a/a/b.java +++ b/app/src/main/java/c/k/a/a/b.java @@ -30,14 +30,14 @@ public class b extends BaseAdapter { public ColorPanelView b; /* renamed from: c reason: collision with root package name */ - public ImageView f1467c; + public ImageView f1468c; public int d; public C0155b(Context context) { View inflate = View.inflate(context, b.this.l == 0 ? R.d.cpv_color_item_square : R.d.cpv_color_item_circle, null); this.a = inflate; this.b = (ColorPanelView) inflate.findViewById(R.c.cpv_color_panel_view); - this.f1467c = (ImageView) this.a.findViewById(R.c.cpv_color_image_view); + this.f1468c = (ImageView) this.a.findViewById(R.c.cpv_color_image_view); this.d = this.b.getBorderColor(); this.a.setTag(this); } @@ -79,20 +79,20 @@ public class b extends BaseAdapter { int i2 = b.this.j[i]; int alpha = Color.alpha(i2); bVar.b.setColor(i2); - bVar.f1467c.setImageResource(b.this.k == i ? R.b.cpv_preset_checked : 0); + bVar.f1468c.setImageResource(b.this.k == i ? R.b.cpv_preset_checked : 0); if (alpha == 255) { b bVar2 = b.this; if (i != bVar2.k || ColorUtils.calculateLuminance(bVar2.j[i]) < 0.65d) { - bVar.f1467c.setColorFilter((ColorFilter) null); + bVar.f1468c.setColorFilter((ColorFilter) null); } else { - bVar.f1467c.setColorFilter(ViewCompat.MEASURED_STATE_MASK, PorterDuff.Mode.SRC_IN); + bVar.f1468c.setColorFilter(ViewCompat.MEASURED_STATE_MASK, PorterDuff.Mode.SRC_IN); } } else if (alpha <= 165) { bVar.b.setBorderColor(i2 | ViewCompat.MEASURED_STATE_MASK); - bVar.f1467c.setColorFilter(ViewCompat.MEASURED_STATE_MASK, PorterDuff.Mode.SRC_IN); + bVar.f1468c.setColorFilter(ViewCompat.MEASURED_STATE_MASK, PorterDuff.Mode.SRC_IN); } else { bVar.b.setBorderColor(bVar.d); - bVar.f1467c.setColorFilter(-1, PorterDuff.Mode.SRC_IN); + bVar.f1468c.setColorFilter(-1, PorterDuff.Mode.SRC_IN); } bVar.b.setOnClickListener(new c(bVar, i)); bVar.b.setOnLongClickListener(new d(bVar)); diff --git a/app/src/main/java/c/k/a/a/e.java b/app/src/main/java/c/k/a/a/e.java index c9876070ee..627bc6c75b 100644 --- a/app/src/main/java/c/k/a/a/e.java +++ b/app/src/main/java/c/k/a/a/e.java @@ -26,13 +26,13 @@ public class e implements SeekBar.OnSeekBarChangeListener { int i2 = 255 - i; int i3 = 0; while (true) { - bVar = this.a.f2457s; + bVar = this.a.f2460s; int[] iArr = bVar.j; if (i3 >= iArr.length) { break; } int i4 = iArr[i3]; - this.a.f2457s.j[i3] = Color.argb(i2, Color.red(i4), Color.green(i4), Color.blue(i4)); + this.a.f2460s.j[i3] = Color.argb(i2, Color.red(i4), Color.green(i4), Color.blue(i4)); i3++; } bVar.notifyDataSetChanged(); diff --git a/app/src/main/java/c/l/a/a.java b/app/src/main/java/c/l/a/a.java index d047d372d8..d7cc1ae7b6 100644 --- a/app/src/main/java/c/l/a/a.java +++ b/app/src/main/java/c/l/a/a.java @@ -37,7 +37,7 @@ public final class a extends Drawable implements Animatable2Compat { public int r; /* renamed from: s reason: collision with root package name */ - public int f1468s; + public int f1469s; public boolean t; public long u; public Long v; @@ -50,7 +50,7 @@ public final class a extends Drawable implements Animatable2Compat { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1469c; + public final int f1470c; public final int d; public final Function0 e; @@ -73,7 +73,7 @@ public final class a extends Drawable implements Animatable2Compat { /* JADX INFO: this call moved to the top of the method (can break code semantics) */ public C0156a(C0156a aVar) { - this(aVar.a.copy(), aVar.b, aVar.f1469c, aVar.d, aVar.e); + this(aVar.a.copy(), aVar.b, aVar.f1470c, aVar.d, aVar.e); m.checkNotNullParameter(aVar, "apngState"); } @@ -82,7 +82,7 @@ public final class a extends Drawable implements Animatable2Compat { m.checkNotNullParameter(function0, "currentTimeProvider"); this.a = apng; this.b = i; - this.f1469c = i2; + this.f1470c = i2; this.d = i3; this.e = function0; } @@ -114,7 +114,7 @@ public final class a extends Drawable implements Animatable2Compat { this.q = new int[frameCount]; C0156a aVar2 = this.w; this.r = aVar2.b; - this.f1468s = aVar2.f1469c; + this.f1469s = aVar2.f1470c; for (int i = 1; i < frameCount; i++) { int[] iArr = this.q; int i2 = i - 1; @@ -122,7 +122,7 @@ public final class a extends Drawable implements Animatable2Compat { } Rect bounds = getBounds(); C0156a aVar3 = this.w; - bounds.set(0, 0, aVar3.b, aVar3.f1469c); + bounds.set(0, 0, aVar3.b, aVar3.f1470c); } @WorkerThread @@ -230,7 +230,7 @@ public final class a extends Drawable implements Animatable2Compat { @Override // android.graphics.drawable.Drawable public int getIntrinsicHeight() { - return this.f1468s; + return this.f1469s; } @Override // android.graphics.drawable.Drawable diff --git a/app/src/main/java/c/m/a/a.java b/app/src/main/java/c/m/a/a.java index 94f46b5a1e..c6ca8800ef 100644 --- a/app/src/main/java/c/m/a/a.java +++ b/app/src/main/java/c/m/a/a.java @@ -33,7 +33,7 @@ public final class a { } if ((i & 16) != 0) { c cVar3 = c.e; - j5 = c.f1470c; + j5 = c.f1471c; } else { j5 = j2; } diff --git a/app/src/main/java/c/m/a/c.java b/app/src/main/java/c/m/a/c.java index da661ac303..a81a15efa1 100644 --- a/app/src/main/java/c/m/a/c.java +++ b/app/src/main/java/c/m/a/c.java @@ -9,13 +9,13 @@ public final class c { public static final long b; /* renamed from: c reason: collision with root package name */ - public static final long f1470c; + public static final long f1471c; public static final long d = TimeUnit.SECONDS.toMillis(6); public static final c e = new c(); static { TimeUnit timeUnit = TimeUnit.MINUTES; b = timeUnit.toMillis(1); - f1470c = timeUnit.toMillis(1); + f1471c = timeUnit.toMillis(1); } } diff --git a/app/src/main/java/c/m/a/d.java b/app/src/main/java/c/m/a/d.java index d4af11f653..826abfe0d1 100644 --- a/app/src/main/java/c/m/a/d.java +++ b/app/src/main/java/c/m/a/d.java @@ -32,9 +32,9 @@ public final class d { } public String toString() { - StringBuilder P = a.P("KronosTime(posixTimeMs="); - P.append(this.a); - P.append(", timeSinceLastNtpSyncMs="); - return a.F(P, this.b, ")"); + StringBuilder O = a.O("KronosTime(posixTimeMs="); + O.append(this.a); + O.append(", timeSinceLastNtpSyncMs="); + return a.E(O, this.b, ")"); } } diff --git a/app/src/main/java/c/m/a/g/d/e.java b/app/src/main/java/c/m/a/g/d/e.java index a35068c95e..1aa7808376 100644 --- a/app/src/main/java/c/m/a/g/d/e.java +++ b/app/src/main/java/c/m/a/g/d/e.java @@ -12,7 +12,7 @@ public class e { public final c b; /* renamed from: c reason: collision with root package name */ - public final a f1471c; + public final a f1472c; /* compiled from: SntpClient */ public static class a extends IOException { @@ -27,25 +27,25 @@ public class e { public final long b; /* renamed from: c reason: collision with root package name */ - public final long f1472c; + public final long f1473c; public final c.m.a.b d; public b(long j, long j2, long j3, c.m.a.b bVar) { this.a = j; this.b = j2; - this.f1472c = j3; + this.f1473c = j3; this.d = bVar; } public long a() { - return this.a + this.f1472c + (this.d.b() - this.b); + return this.a + this.f1473c + (this.d.b() - this.b); } } public e(c.m.a.b bVar, c cVar, a aVar) { this.a = bVar; this.b = cVar; - this.f1471c = aVar; + this.f1472c = aVar; } public static void a(byte b2, byte b3, int i, long j) throws a { @@ -97,10 +97,10 @@ public class e { DatagramSocket datagramSocket = null; try { InetAddress a2 = this.b.a(str); - datagramSocket = this.f1471c.c(); + datagramSocket = this.f1472c.c(); datagramSocket.setSoTimeout(l.intValue()); byte[] bArr = new byte[48]; - DatagramPacket b2 = this.f1471c.b(bArr, a2, 123); + DatagramPacket b2 = this.f1472c.b(bArr, a2, 123); bArr[0] = 27; long a3 = this.a.a(); long b3 = this.a.b(); @@ -119,7 +119,7 @@ public class e { bArr[47] = (byte) ((int) (Math.random() * 255.0d)); datagramSocket.send(b2); byte[] copyOf = Arrays.copyOf(bArr, 48); - datagramSocket.receive(this.f1471c.a(copyOf)); + datagramSocket.receive(this.f1472c.a(copyOf)); long b4 = this.a.b(); long j5 = (b4 - b3) + a3; long c2 = c(copyOf, 24); diff --git a/app/src/main/java/c/m/a/g/d/g.java b/app/src/main/java/c/m/a/g/d/g.java index 1bd5011996..c50d45c5b8 100644 --- a/app/src/main/java/c/m/a/g/d/g.java +++ b/app/src/main/java/c/m/a/g/d/g.java @@ -21,7 +21,7 @@ public final class g implements f { m.checkParameterIsNotNull(bVar, "response"); this.a.f(bVar.a); this.a.a(bVar.b); - this.a.b(bVar.f1472c); + this.a.b(bVar.f1473c); } @Override // c.m.a.g.d.f diff --git a/app/src/main/java/c/m/a/g/d/i.java b/app/src/main/java/c/m/a/g/d/i.java index 123bcb8d73..0eff317044 100644 --- a/app/src/main/java/c/m/a/g/d/i.java +++ b/app/src/main/java/c/m/a/g/d/i.java @@ -18,7 +18,7 @@ public final class i implements h { public final AtomicLong b = new AtomicLong(0); /* renamed from: c reason: collision with root package name */ - public final ExecutorService f1473c = Executors.newSingleThreadExecutor(b.i); + public final ExecutorService f1474c = Executors.newSingleThreadExecutor(b.i); public final e d; public final c.m.a.b e; public final f f; @@ -78,7 +78,7 @@ public final class i implements h { m.checkExpressionValueIsNotNull(d, "response"); if (d.a() >= 0) { iVar.f.a(d); - long j = d.f1472c; + long j = d.f1473c; long b2 = iVar.e.b() - b; c.m.a.e eVar2 = iVar.g; if (eVar2 != null) { @@ -151,7 +151,7 @@ public final class i implements h { public void b() { c(); if (this.a.get() != a.SYNCING) { - this.f1473c.submit(new c(this)); + this.f1474c.submit(new c(this)); } } diff --git a/app/src/main/java/c/n/a/a/a.java b/app/src/main/java/c/n/a/a/a.java index 2220ed23a7..83009af2d2 100644 --- a/app/src/main/java/c/n/a/a/a.java +++ b/app/src/main/java/c/n/a/a/a.java @@ -78,7 +78,7 @@ public interface a extends IInterface { } String string3 = bundle4 != null ? bundle4.getString("error_code") : null; String string4 = bundle4 != null ? bundle4.getString("error_message") : null; - StringBuilder P = c.d.b.a.a.P("Samsung Account link failure "); + StringBuilder O = c.d.b.a.a.O("Samsung Account link failure "); StringBuilder sb = new StringBuilder(); sb.append('['); sb.append(string3); @@ -89,8 +89,8 @@ public interface a extends IInterface { sb.append(str); sb.append("]: "); sb.append(string4); - P.append(sb.toString()); - String sb2 = P.toString(); + O.append(sb.toString()); + String sb2 = O.toString(); m.checkNotNullExpressionValue(sb2, "StringBuilder()\n … .toString()"); Log.w("Discord", sb2); SamsungConnectActivity.a(dVar.a, string, string2); diff --git a/app/src/main/java/c/o/a/b.java b/app/src/main/java/c/o/a/b.java index e5d478637d..69bbfdb522 100644 --- a/app/src/main/java/c/o/a/b.java +++ b/app/src/main/java/c/o/a/b.java @@ -13,7 +13,7 @@ public final class b { @VisibleForTesting /* renamed from: c reason: collision with root package name */ - public static AbstractC0160b f1474c; + public static AbstractC0160b f1475c; @NonNull public String d; @@ -43,7 +43,7 @@ public final class b { CopyOnWriteArraySet copyOnWriteArraySet = new CopyOnWriteArraySet(); b = copyOnWriteArraySet; a aVar = new a(); - f1474c = aVar; + f1475c = aVar; copyOnWriteArraySet.add(aVar); } diff --git a/app/src/main/java/c/o/a/c.java b/app/src/main/java/c/o/a/c.java index ad6386c144..98f96f0964 100644 --- a/app/src/main/java/c/o/a/c.java +++ b/app/src/main/java/c/o/a/c.java @@ -24,7 +24,7 @@ public abstract class c { public Set b = new HashSet(2); /* renamed from: c reason: collision with root package name */ - public Set f1475c = new HashSet(4); + public Set f1476c = new HashSet(4); public Set d = new HashSet(2); public Set e = new HashSet(15); public Set f = new HashSet(5); @@ -47,7 +47,7 @@ public abstract class c { @NonNull public final Collection b() { - return Collections.unmodifiableSet(this.f1475c); + return Collections.unmodifiableSet(this.f1476c); } public final boolean c(@NonNull c.o.a.m.c cVar) { diff --git a/app/src/main/java/c/o/a/l.java b/app/src/main/java/c/o/a/l.java index 78c829c4da..6aefbcad7d 100644 --- a/app/src/main/java/c/o/a/l.java +++ b/app/src/main/java/c/o/a/l.java @@ -15,7 +15,7 @@ public class l { public Location b; /* renamed from: c reason: collision with root package name */ - public int f1476c; + public int f1477c; public b d; public e e; public byte[] f; diff --git a/app/src/main/java/c/o/a/n/b.java b/app/src/main/java/c/o/a/n/b.java index 22af1f38be..8c6ec3a7e0 100644 --- a/app/src/main/java/c/o/a/n/b.java +++ b/app/src/main/java/c/o/a/n/b.java @@ -14,6 +14,7 @@ import c.o.a.m.j; import c.o.a.m.m; import c.o.a.n.i; import c.o.a.p.a; +import com.discord.models.domain.ModelAuditLogEntry; import com.google.android.gms.tasks.Task; import com.otaliastudios.cameraview.CameraException; import com.otaliastudios.cameraview.CameraView; @@ -26,14 +27,14 @@ import java.util.Objects; public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback, a.AbstractC0169a { /* renamed from: c0 reason: collision with root package name */ - public final c.o.a.n.q.a f1477c0 = c.o.a.n.q.a.a(); + public final c.o.a.n.q.a f1478c0 = c.o.a.n.q.a.a(); /* renamed from: d0 reason: collision with root package name */ - public Camera f1478d0; + public Camera f1479d0; @VisibleForTesting /* renamed from: e0 reason: collision with root package name */ - public int f1479e0; + public int f1480e0; /* compiled from: Camera1Engine */ public class a implements Runnable { @@ -66,8 +67,8 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - b.this.f1478d0.cancelAutoFocus(); - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + b.this.f1479d0.cancelAutoFocus(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); int maxNumFocusAreas = parameters.getMaxNumFocusAreas(); int maxNumMeteringAreas = parameters.getMaxNumMeteringAreas(); if (maxNumFocusAreas > 0) { @@ -77,7 +78,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback parameters.setMeteringAreas(null); } b.this.c1(parameters); - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); } } @@ -110,7 +111,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback b bVar = b.this; c.o.a.n.s.a aVar = new c.o.a.n.s.a(bVar.K, bVar.n.l()); c.o.a.t.b c2 = this.i.c(aVar); - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); int maxNumFocusAreas = parameters.getMaxNumFocusAreas(); int maxNumMeteringAreas = parameters.getMaxNumMeteringAreas(); if (maxNumFocusAreas > 0) { @@ -120,12 +121,12 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback parameters.setMeteringAreas(c2.b(maxNumMeteringAreas, aVar)); } parameters.setFocusMode("auto"); - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); ((CameraView.b) b.this.l).e(this.j, this.k); b.this.m.e("focus end", 0); b.this.m.c("focus end", true, 2500, new RunnableC0161a()); try { - b.this.f1478d0.autoFocus(new C0162b()); + b.this.f1479d0.autoFocus(new C0162b()); } catch (RuntimeException e) { i.i.a(3, "startAutoFocus:", "Error calling autoFocus", e); } @@ -144,9 +145,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); if (b.this.e1(parameters, this.i)) { - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); } } } @@ -161,9 +162,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); b.this.g1(parameters); - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); } } @@ -177,9 +178,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); if (b.this.j1(parameters, this.i)) { - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); } } } @@ -194,9 +195,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); if (b.this.f1(parameters, this.i)) { - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); } } } @@ -215,9 +216,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); if (b.this.k1(parameters, this.i)) { - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); if (this.j) { b bVar = b.this; ((CameraView.b) bVar.l).f(bVar.C, this.k); @@ -242,9 +243,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); if (b.this.d1(parameters, this.i)) { - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); if (this.j) { b bVar = b.this; ((CameraView.b) bVar.l).c(bVar.D, this.k, this.l); @@ -277,9 +278,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // java.lang.Runnable public void run() { - Camera.Parameters parameters = b.this.f1478d0.getParameters(); + Camera.Parameters parameters = b.this.f1479d0.getParameters(); if (b.this.i1(parameters, this.i)) { - b.this.f1478d0.setParameters(parameters); + b.this.f1479d0.setParameters(parameters); } } } @@ -318,9 +319,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback bVar.a(1, "onStartBind:", "Started"); try { if (this.n.j() == SurfaceHolder.class) { - this.f1478d0.setPreviewDisplay((SurfaceHolder) this.n.i()); + this.f1479d0.setPreviewDisplay((SurfaceHolder) this.n.i()); } else if (this.n.j() == SurfaceTexture.class) { - this.f1478d0.setPreviewTexture((SurfaceTexture) this.n.i()); + this.f1479d0.setPreviewTexture((SurfaceTexture) this.n.i()); } else { throw new RuntimeException("Unknown CameraPreview output class."); } @@ -338,23 +339,23 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @NonNull public Task Q() { try { - Camera open = Camera.open(this.f1479e0); - this.f1478d0 = open; + Camera open = Camera.open(this.f1480e0); + this.f1479d0 = open; if (open != null) { open.setErrorCallback(this); c.o.a.b bVar = i.i; bVar.a(1, "onStartEngine:", "Applying default parameters."); try { - Camera.Parameters parameters = this.f1478d0.getParameters(); - int i2 = this.f1479e0; + Camera.Parameters parameters = this.f1479d0.getParameters(); + int i2 = this.f1480e0; c.o.a.n.t.a aVar = this.K; c.o.a.n.t.b bVar2 = c.o.a.n.t.b.SENSOR; c.o.a.n.t.b bVar3 = c.o.a.n.t.b.VIEW; this.o = new c.o.a.n.u.a(parameters, i2, aVar.b(bVar2, bVar3)); b1(parameters); - this.f1478d0.setParameters(parameters); + this.f1479d0.setParameters(parameters); try { - this.f1478d0.setDisplayOrientation(this.K.c(bVar2, bVar3, 1)); + this.f1479d0.setDisplayOrientation(this.K.c(bVar2, bVar3, 1)); bVar.a(1, "onStartEngine:", "Ended"); return c.i.a.f.e.o.c.F(this.o); } catch (Exception unused) { @@ -386,7 +387,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback this.n.s(C.i, C.j); this.n.r(0); try { - Camera.Parameters parameters = this.f1478d0.getParameters(); + Camera.Parameters parameters = this.f1479d0.getParameters(); parameters.setPreviewFormat(17); c.o.a.x.b bVar2 = this.r; parameters.setPreviewSize(bVar2.i, bVar2.j); @@ -400,13 +401,13 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback parameters.setPictureSize(Q0.i, Q0.j); } try { - this.f1478d0.setParameters(parameters); - this.f1478d0.setPreviewCallbackWithBuffer(null); - this.f1478d0.setPreviewCallbackWithBuffer(this); + this.f1479d0.setParameters(parameters); + this.f1479d0.setPreviewCallbackWithBuffer(null); + this.f1479d0.setPreviewCallbackWithBuffer(this); l1().e(17, this.r, this.K); bVar.a(1, "onStartPreview", "Starting preview with startPreview()."); try { - this.f1478d0.startPreview(); + this.f1479d0.startPreview(); bVar.a(1, "onStartPreview", "Started preview."); return c.i.a.f.e.o.c.F(null); } catch (Exception e2) { @@ -433,9 +434,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback this.q = null; try { if (this.n.j() == SurfaceHolder.class) { - this.f1478d0.setPreviewDisplay(null); + this.f1479d0.setPreviewDisplay(null); } else if (this.n.j() == SurfaceTexture.class) { - this.f1478d0.setPreviewTexture(null); + this.f1479d0.setPreviewTexture(null); } else { throw new RuntimeException("Unknown CameraPreview output class."); } @@ -452,19 +453,19 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback bVar.a(1, "onStopEngine:", "About to clean up."); this.m.e("focus reset", 0); this.m.e("focus end", 0); - if (this.f1478d0 != null) { + if (this.f1479d0 != null) { try { bVar.a(1, "onStopEngine:", "Clean up.", "Releasing camera."); - this.f1478d0.release(); + this.f1479d0.release(); bVar.a(1, "onStopEngine:", "Clean up.", "Released camera."); } catch (Exception e2) { i.i.a(2, "onStopEngine:", "Clean up.", "Exception while releasing camera.", e2); } - this.f1478d0 = null; + this.f1479d0 = null; this.o = null; } this.o = null; - this.f1478d0 = null; + this.f1479d0 = null; i.i.a(2, "onStopEngine:", "Clean up.", "Returning."); return c.i.a.f.e.o.c.F(null); } @@ -473,7 +474,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @NonNull public List T0() { try { - List supportedPreviewSizes = this.f1478d0.getParameters().getSupportedPreviewSizes(); + List supportedPreviewSizes = this.f1479d0.getParameters().getSupportedPreviewSizes(); ArrayList arrayList = new ArrayList(supportedPreviewSizes.size()); for (Camera.Size size : supportedPreviewSizes) { c.o.a.x.b bVar = new c.o.a.x.b(size.width, size.height); @@ -497,10 +498,10 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback this.p = null; l1().d(); bVar.a(1, "onStopPreview:", "Releasing preview buffers."); - this.f1478d0.setPreviewCallbackWithBuffer(null); + this.f1479d0.setPreviewCallbackWithBuffer(null); try { bVar.a(1, "onStopPreview:", "Stopping preview."); - this.f1478d0.stopPreview(); + this.f1479d0.stopPreview(); bVar.a(1, "onStopPreview:", "Stopped preview."); } catch (Exception e2) { i.i.a(3, "stopPreview", "Could not stop preview", e2); @@ -528,9 +529,9 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback c.o.a.n.t.a aVar2 = this.K; c.o.a.n.t.b bVar2 = c.o.a.n.t.b.SENSOR; c.o.a.n.t.b bVar3 = c.o.a.n.t.b.OUTPUT; - aVar.f1476c = aVar2.c(bVar2, bVar3, 2); + aVar.f1477c = aVar2.c(bVar2, bVar3, 2); aVar.d = w(bVar3); - c.o.a.v.a aVar3 = new c.o.a.v.a(aVar, this, this.f1478d0); + c.o.a.v.a aVar3 = new c.o.a.v.a(aVar, this, this.f1479d0); this.p = aVar3; aVar3.c(); bVar.a(1, "onTakePicture:", "executed."); @@ -543,11 +544,11 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback c.o.a.n.t.b bVar2 = c.o.a.n.t.b.OUTPUT; aVar.d = F(bVar2); if (this.n instanceof c.o.a.w.e) { - aVar.f1476c = this.K.c(c.o.a.n.t.b.VIEW, bVar2, 1); - this.p = new c.o.a.v.g(aVar, this, (c.o.a.w.e) this.n, aVar2, this.f1489b0); + aVar.f1477c = this.K.c(c.o.a.n.t.b.VIEW, bVar2, 1); + this.p = new c.o.a.v.g(aVar, this, (c.o.a.w.e) this.n, aVar2, this.f1490b0); } else { - aVar.f1476c = this.K.c(c.o.a.n.t.b.SENSOR, bVar2, 2); - this.p = new c.o.a.v.e(aVar, this, this.f1478d0, aVar2); + aVar.f1477c = this.K.c(c.o.a.n.t.b.SENSOR, bVar2, 2); + this.p = new c.o.a.v.e(aVar, this, this.f1479d0, aVar2); } this.p.c(); bVar.a(1, "onTakePictureSnapshot:", "executed."); @@ -568,7 +569,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // c.o.a.n.i public boolean c(@NonNull c.o.a.m.e eVar) { - Objects.requireNonNull(this.f1477c0); + Objects.requireNonNull(this.f1478c0); int intValue = c.o.a.n.q.a.d.get(eVar).intValue(); i.i.a(1, "collectCameraInfo", "Facing:", eVar, "Internal:", Integer.valueOf(intValue), "Cameras:", Integer.valueOf(Camera.getNumberOfCameras())); Camera.CameraInfo cameraInfo = new Camera.CameraInfo(); @@ -577,7 +578,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback Camera.getCameraInfo(i2, cameraInfo); if (cameraInfo.facing == intValue) { this.K.f(eVar, cameraInfo.orientation); - this.f1479e0 = i2; + this.f1480e0 = i2; return true; } } @@ -627,7 +628,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback public final boolean e1(@NonNull Camera.Parameters parameters, @NonNull c.o.a.m.f fVar) { if (this.o.c(this.v)) { - c.o.a.n.q.a aVar = this.f1477c0; + c.o.a.n.q.a aVar = this.f1478c0; c.o.a.m.f fVar2 = this.v; Objects.requireNonNull(aVar); parameters.setFlashMode(c.o.a.n.q.a.b.get(fVar2)); @@ -646,14 +647,14 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback } public final boolean f1(@NonNull Camera.Parameters parameters, @NonNull c.o.a.m.h hVar) { - if (this.o.c(this.f1493z)) { - c.o.a.n.q.a aVar = this.f1477c0; - c.o.a.m.h hVar2 = this.f1493z; + if (this.o.c(this.f1494z)) { + c.o.a.n.q.a aVar = this.f1478c0; + c.o.a.m.h hVar2 = this.f1494z; Objects.requireNonNull(aVar); parameters.setSceneMode(c.o.a.n.q.a.e.get(hVar2)); return true; } - this.f1493z = hVar; + this.f1494z = hVar; return false; } @@ -678,10 +679,10 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @TargetApi(17) public final boolean h1(boolean z2) { Camera.CameraInfo cameraInfo = new Camera.CameraInfo(); - Camera.getCameraInfo(this.f1479e0, cameraInfo); + Camera.getCameraInfo(this.f1480e0, cameraInfo); if (cameraInfo.canDisableShutterSound) { try { - return this.f1478d0.enableShutterSound(this.E); + return this.f1479d0.enableShutterSound(this.E); } catch (RuntimeException unused) { return false; } @@ -729,10 +730,10 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback public final boolean j1(@NonNull Camera.Parameters parameters, @NonNull m mVar) { if (this.o.c(this.w)) { - c.o.a.n.q.a aVar = this.f1477c0; + c.o.a.n.q.a aVar = this.f1478c0; m mVar2 = this.w; Objects.requireNonNull(aVar); - parameters.setWhiteBalance(c.o.a.n.q.a.f1495c.get(mVar2)); + parameters.setWhiteBalance(c.o.a.n.q.a.f1496c.get(mVar2)); parameters.remove("auto-whitebalance-lock"); return true; } @@ -748,7 +749,7 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback public final boolean k1(@NonNull Camera.Parameters parameters, float f2) { if (this.o.k) { parameters.setZoom((int) (this.C * ((float) parameters.getMaxZoom()))); - this.f1478d0.setParameters(parameters); + this.f1479d0.setParameters(parameters); return true; } this.C = f2; @@ -757,8 +758,8 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback @Override // c.o.a.n.i public void l0(@NonNull c.o.a.m.h hVar) { - c.o.a.m.h hVar2 = this.f1493z; - this.f1493z = hVar; + c.o.a.m.h hVar2 = this.f1494z; + this.f1494z = hVar; c.o.a.n.v.f fVar = this.m; fVar.b("hdr (" + hVar + ")", true, new c.o.a.n.v.h(fVar, c.o.a.n.v.e.ENGINE, new e(hVar2))); } @@ -773,14 +774,14 @@ public class b extends g implements Camera.PreviewCallback, Camera.ErrorCallback Location location2 = this.B; this.B = location; c.o.a.n.v.f fVar = this.m; - fVar.b("location", true, new c.o.a.n.v.h(fVar, c.o.a.n.v.e.ENGINE, new c(location2))); + fVar.b(ModelAuditLogEntry.CHANGE_KEY_LOCATION, true, new c.o.a.n.v.h(fVar, c.o.a.n.v.e.ENGINE, new c(location2))); } public void m1(@NonNull byte[] bArr) { c.o.a.n.v.e eVar = this.m.f; c.o.a.n.v.e eVar2 = c.o.a.n.v.e.ENGINE; if (eVar.f(eVar2) && this.m.g.f(eVar2)) { - this.f1478d0.addCallbackBuffer(bArr); + this.f1479d0.addCallbackBuffer(bArr); } } diff --git a/app/src/main/java/c/o/a/n/d.java b/app/src/main/java/c/o/a/n/d.java index 5a29711e14..c7e075cfdb 100644 --- a/app/src/main/java/c/o/a/n/d.java +++ b/app/src/main/java/c/o/a/n/d.java @@ -30,6 +30,7 @@ import androidx.annotation.RequiresApi; import androidx.annotation.VisibleForTesting; import c.o.a.l; import c.o.a.n.i; +import com.discord.models.domain.ModelAuditLogEntry; import com.discord.utilities.analytics.ChatInputComponentTypes; import com.google.android.gms.tasks.Task; import com.google.android.gms.tasks.TaskCompletionSource; @@ -48,28 +49,28 @@ import java.util.concurrent.ExecutionException; public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a.n.o.c { /* renamed from: c0 reason: collision with root package name */ - public final CameraManager f1480c0; + public final CameraManager f1481c0; /* renamed from: d0 reason: collision with root package name */ - public String f1481d0; + public String f1482d0; /* renamed from: e0 reason: collision with root package name */ - public CameraDevice f1482e0; + public CameraDevice f1483e0; /* renamed from: f0 reason: collision with root package name */ - public CameraCharacteristics f1483f0; + public CameraCharacteristics f1484f0; /* renamed from: g0 reason: collision with root package name */ - public CameraCaptureSession f1484g0; + public CameraCaptureSession f1485g0; /* renamed from: h0 reason: collision with root package name */ - public CaptureRequest.Builder f1485h0; + public CaptureRequest.Builder f1486h0; /* renamed from: i0 reason: collision with root package name */ - public TotalCaptureResult f1486i0; + public TotalCaptureResult f1487i0; /* renamed from: j0 reason: collision with root package name */ - public final c.o.a.n.q.b f1487j0; + public final c.o.a.n.q.b f1488j0; public ImageReader k0; public Surface l0; public Surface m0; @@ -91,17 +92,17 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // java.lang.Runnable public void run() { d dVar = d.this; - boolean h1 = dVar.h1(dVar.f1485h0, this.i); + boolean h1 = dVar.h1(dVar.f1486h0, this.i); d dVar2 = d.this; if (dVar2.m.f == c.o.a.n.v.e.PREVIEW) { dVar2.v = c.o.a.m.f.OFF; - dVar2.h1(dVar2.f1485h0, this.i); + dVar2.h1(dVar2.f1486h0, this.i); try { d dVar3 = d.this; - dVar3.f1484g0.capture(dVar3.f1485h0.build(), null, null); + dVar3.f1485g0.capture(dVar3.f1486h0.build(), null, null); d dVar4 = d.this; dVar4.v = this.j; - dVar4.h1(dVar4.f1485h0, this.i); + dVar4.h1(dVar4.f1486h0, this.i); d.this.k1(); } catch (CameraAccessException e) { throw d.this.o1(e); @@ -123,7 +124,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // java.lang.Runnable public void run() { d dVar = d.this; - CaptureRequest.Builder builder = dVar.f1485h0; + CaptureRequest.Builder builder = dVar.f1486h0; Location location = dVar.B; if (location != null) { builder.set(CaptureRequest.JPEG_GPS_LOCATION, location); @@ -143,7 +144,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // java.lang.Runnable public void run() { d dVar = d.this; - if (dVar.m1(dVar.f1485h0, this.i)) { + if (dVar.m1(dVar.f1486h0, this.i)) { d.this.k1(); } } @@ -161,7 +162,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // java.lang.Runnable public void run() { d dVar = d.this; - if (dVar.i1(dVar.f1485h0, this.i)) { + if (dVar.i1(dVar.f1486h0, this.i)) { d.this.k1(); } } @@ -184,7 +185,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // java.lang.Runnable public void run() { d dVar = d.this; - if (dVar.n1(dVar.f1485h0, this.i)) { + if (dVar.n1(dVar.f1486h0, this.i)) { d.this.k1(); if (this.j) { ((CameraView.b) d.this.l).f(this.k, this.l); @@ -212,7 +213,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // java.lang.Runnable public void run() { d dVar = d.this; - if (dVar.g1(dVar.f1485h0, this.i)) { + if (dVar.g1(dVar.f1486h0, this.i)) { d.this.k1(); if (this.j) { ((CameraView.b) d.this.l).c(this.k, this.l, this.m); @@ -232,7 +233,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // java.lang.Runnable public void run() { d dVar = d.this; - if (dVar.j1(dVar.f1485h0, this.i)) { + if (dVar.j1(dVar.f1486h0, this.i)) { d.this.k1(); } } @@ -257,7 +258,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // android.hardware.camera2.CameraCaptureSession.CaptureCallback public void onCaptureCompleted(@NonNull CameraCaptureSession cameraCaptureSession, @NonNull CaptureRequest captureRequest, @NonNull TotalCaptureResult totalCaptureResult) { d dVar = d.this; - dVar.f1486i0 = totalCaptureResult; + dVar.f1487i0 = totalCaptureResult; for (c.o.a.n.o.a aVar : dVar.o0) { aVar.b(d.this, captureRequest, totalCaptureResult); } @@ -445,11 +446,11 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // android.hardware.camera2.CameraDevice.StateCallback public void onOpened(@NonNull CameraDevice cameraDevice) { int i; - d.this.f1482e0 = cameraDevice; + d.this.f1483e0 = cameraDevice; try { i.i.a(1, "onStartEngine:", "Opened camera device."); d dVar = d.this; - dVar.f1483f0 = dVar.f1480c0.getCameraCharacteristics(dVar.f1481d0); + dVar.f1484f0 = dVar.f1481c0.getCameraCharacteristics(dVar.f1482d0); boolean b = d.this.K.b(c.o.a.n.t.b.SENSOR, c.o.a.n.t.b.VIEW); int ordinal = d.this.A.ordinal(); if (ordinal == 0) { @@ -460,7 +461,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. throw new IllegalArgumentException("Unknown format:" + d.this.A); } d dVar2 = d.this; - dVar2.o = new c.o.a.n.u.b(dVar2.f1480c0, dVar2.f1481d0, b, i); + dVar2.o = new c.o.a.n.u.b(dVar2.f1481c0, dVar2.f1482d0, b, i); d dVar3 = d.this; Objects.requireNonNull(dVar3); dVar3.q1(1); @@ -503,7 +504,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // android.hardware.camera2.CameraCaptureSession.StateCallback public void onConfigured(@NonNull CameraCaptureSession cameraCaptureSession) { - d.this.f1484g0 = cameraCaptureSession; + d.this.f1485g0 = cameraCaptureSession; i.i.a(1, "onStartBind:", "Completed"); this.a.b(null); } @@ -580,10 +581,10 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. if (c.o.a.n.q.b.a == null) { c.o.a.n.q.b.a = new c.o.a.n.q.b(); } - this.f1487j0 = c.o.a.n.q.b.a; + this.f1488j0 = c.o.a.n.q.b.a; this.o0 = new CopyOnWriteArrayList(); this.q0 = new i(); - this.f1480c0 = (CameraManager) ((CameraView.b) this.l).g().getSystemService(ChatInputComponentTypes.CAMERA); + this.f1481c0 = (CameraManager) ((CameraView.b) this.l).g().getSystemService(ChatInputComponentTypes.CAMERA); new c.o.a.n.o.g().e(this); } @@ -652,9 +653,9 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. } else if (ordinal == 1) { i2 = 32; } else { - StringBuilder P = c.d.b.a.a.P("Unknown format:"); - P.append(this.A); - throw new IllegalArgumentException(P.toString()); + StringBuilder O = c.d.b.a.a.O("Unknown format:"); + O.append(this.A); + throw new IllegalArgumentException(O.toString()); } c.o.a.x.b bVar3 = this.q; ImageReader newInstance = ImageReader.newInstance(bVar3.i, bVar3.j, i2, 2); @@ -698,8 +699,8 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. bVar8 = bVar8.f(); } bVar7.a(1, "computeFrameProcessingSize:", "result:", bVar8, "flip:", Boolean.valueOf(b2)); - this.f1490s = bVar8; - ImageReader newInstance2 = ImageReader.newInstance(bVar8.i, bVar8.j, this.t, this.f1488a0 + 1); + this.f1491s = bVar8; + ImageReader newInstance2 = ImageReader.newInstance(bVar8.i, bVar8.j, this.t, this.f1489a0 + 1); this.k0 = newInstance2; handler = null; newInstance2.setOnImageAvailableListener(this, null); @@ -712,11 +713,11 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. } else { handler = null; this.k0 = null; - this.f1490s = null; + this.f1491s = null; this.l0 = null; } try { - this.f1482e0.createCaptureSession(arrayList, new o(taskCompletionSource), handler); + this.f1483e0.createCaptureSession(arrayList, new o(taskCompletionSource), handler); return taskCompletionSource.a; } catch (CameraAccessException e3) { throw o1(e3); @@ -729,7 +730,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. public Task Q() { TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); try { - this.f1480c0.openCamera(this.f1481d0, new m(taskCompletionSource), (Handler) null); + this.f1481c0.openCamera(this.f1482d0, new m(taskCompletionSource), (Handler) null); return taskCompletionSource.a; } catch (CameraAccessException e2) { throw o1(e2); @@ -748,7 +749,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. this.n.s(C.i, C.j); this.n.r(this.K.c(c.o.a.n.t.b.BASE, bVar2, 1)); if (this.u) { - S0().e(this.t, this.f1490s, this.K); + S0().e(this.t, this.f1491s, this.K); } bVar.a(1, "onStartPreview:", "Starting preview."); c1(new Surface[0]); @@ -770,7 +771,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. this.m0 = null; this.r = null; this.q = null; - this.f1490s = null; + this.f1491s = null; ImageReader imageReader = this.k0; if (imageReader != null) { imageReader.close(); @@ -781,8 +782,8 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. imageReader2.close(); this.n0 = null; } - this.f1484g0.close(); - this.f1484g0 = null; + this.f1485g0.close(); + this.f1485g0 = null; bVar.a(1, "onStopBind:", "Returning."); return c.i.a.f.e.o.c.F(null); } @@ -793,19 +794,19 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. try { c.o.a.b bVar = i.i; bVar.a(1, "onStopEngine:", "Clean up.", "Releasing camera."); - this.f1482e0.close(); + this.f1483e0.close(); bVar.a(1, "onStopEngine:", "Clean up.", "Released camera."); } catch (Exception e2) { i.i.a(2, "onStopEngine:", "Clean up.", "Exception while releasing camera.", e2); } - this.f1482e0 = null; + this.f1483e0 = null; i.i.a(1, "onStopEngine:", "Aborting actions."); for (c.o.a.n.o.a aVar : this.o0) { aVar.a(this); } - this.f1483f0 = null; + this.f1484f0 = null; this.o = null; - this.f1485h0 = null; + this.f1486h0 = null; i.i.a(2, "onStopEngine:", "Returning."); return c.i.a.f.e.o.c.F(null); } @@ -814,7 +815,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @NonNull public List T0() { try { - StreamConfigurationMap streamConfigurationMap = (StreamConfigurationMap) this.f1480c0.getCameraCharacteristics(this.f1481d0).get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); + StreamConfigurationMap streamConfigurationMap = (StreamConfigurationMap) this.f1481c0.getCameraCharacteristics(this.f1482d0).get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); if (streamConfigurationMap != null) { Size[] outputSizes = streamConfigurationMap.getOutputSizes(this.n.j()); ArrayList arrayList = new ArrayList(outputSizes.length); @@ -841,12 +842,12 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. if (this.u) { S0().d(); } - this.f1485h0.removeTarget(this.m0); + this.f1486h0.removeTarget(this.m0); Surface surface = this.l0; if (surface != null) { - this.f1485h0.removeTarget(surface); + this.f1486h0.removeTarget(surface); } - this.f1486i0 = null; + this.f1487i0 = null; bVar.a(1, "onStopPreview:", "Returning."); return c.i.a.f.e.o.c.F(null); } @@ -876,11 +877,11 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. c.o.a.n.t.a aVar2 = this.K; c.o.a.n.t.b bVar = c.o.a.n.t.b.SENSOR; c.o.a.n.t.b bVar2 = c.o.a.n.t.b.OUTPUT; - aVar.f1476c = aVar2.c(bVar, bVar2, 2); + aVar.f1477c = aVar2.c(bVar, bVar2, 2); aVar.d = w(bVar2); try { - CaptureRequest.Builder createCaptureRequest = this.f1482e0.createCaptureRequest(2); - d1(createCaptureRequest, this.f1485h0); + CaptureRequest.Builder createCaptureRequest = this.f1483e0.createCaptureRequest(2); + d1(createCaptureRequest, this.f1486h0); c.o.a.v.b bVar3 = new c.o.a.v.b(aVar, this, createCaptureRequest, this.n0); this.p = bVar3; bVar3.c(); @@ -902,7 +903,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. if (this.n instanceof c.o.a.w.e) { c.o.a.n.t.b bVar = c.o.a.n.t.b.OUTPUT; aVar.d = F(bVar); - aVar.f1476c = this.K.c(c.o.a.n.t.b.VIEW, bVar, 1); + aVar.f1477c = this.K.c(c.o.a.n.t.b.VIEW, bVar, 1); c.o.a.v.f fVar = new c.o.a.v.f(aVar, this, (c.o.a.w.e) this.n, aVar2); this.p = fVar; fVar.c(); @@ -923,16 +924,16 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // c.o.a.n.i public final boolean c(@NonNull c.o.a.m.e eVar) { - Objects.requireNonNull(this.f1487j0); + Objects.requireNonNull(this.f1488j0); int intValue = c.o.a.n.q.b.b.get(eVar).intValue(); try { - String[] cameraIdList = this.f1480c0.getCameraIdList(); + String[] cameraIdList = this.f1481c0.getCameraIdList(); i.i.a(1, "collectCameraInfo", "Facing:", eVar, "Internal:", Integer.valueOf(intValue), "Cameras:", Integer.valueOf(cameraIdList.length)); for (String str : cameraIdList) { try { - CameraCharacteristics cameraCharacteristics = this.f1480c0.getCameraCharacteristics(str); + CameraCharacteristics cameraCharacteristics = this.f1481c0.getCameraCharacteristics(str); if (intValue == ((Integer) u1(cameraCharacteristics, CameraCharacteristics.LENS_FACING, -99)).intValue()) { - this.f1481d0 = str; + this.f1482d0 = str; this.K.f(eVar, ((Integer) u1(cameraCharacteristics, CameraCharacteristics.SENSOR_ORIENTATION, 0)).intValue()); return true; } @@ -946,14 +947,14 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. } public final void c1(@NonNull Surface... surfaceArr) { - this.f1485h0.addTarget(this.m0); + this.f1486h0.addTarget(this.m0); Surface surface = this.l0; if (surface != null) { - this.f1485h0.addTarget(surface); + this.f1486h0.addTarget(surface); } for (Surface surface2 : surfaceArr) { if (surface2 != null) { - this.f1485h0.addTarget(surface2); + this.f1486h0.addTarget(surface2); } else { throw new IllegalArgumentException("Should not add a null surface."); } @@ -997,7 +998,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. public void e1(@NonNull c.o.a.n.o.a aVar, @NonNull CaptureRequest.Builder builder) throws CameraAccessException { if (this.m.f == c.o.a.n.v.e.PREVIEW && !O()) { - this.f1484g0.capture(builder.build(), this.q0, null); + this.f1485g0.capture(builder.build(), this.q0, null); } } @@ -1051,7 +1052,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. for (int i2 : iArr) { arrayList.add(Integer.valueOf(i2)); } - c.o.a.n.q.b bVar = this.f1487j0; + c.o.a.n.q.b bVar = this.f1488j0; c.o.a.m.f fVar2 = this.v; Objects.requireNonNull(bVar); ArrayList arrayList2 = new ArrayList(); @@ -1086,14 +1087,14 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. } public boolean i1(@NonNull CaptureRequest.Builder builder, @NonNull c.o.a.m.h hVar) { - if (this.o.c(this.f1493z)) { - c.o.a.n.q.b bVar = this.f1487j0; - c.o.a.m.h hVar2 = this.f1493z; + if (this.o.c(this.f1494z)) { + c.o.a.n.q.b bVar = this.f1488j0; + c.o.a.m.h hVar2 = this.f1494z; Objects.requireNonNull(bVar); builder.set(CaptureRequest.CONTROL_SCENE_MODE, Integer.valueOf(c.o.a.n.q.b.d.get(hVar2).intValue())); return true; } - this.f1493z = hVar; + this.f1494z = hVar; return false; } @@ -1142,8 +1143,8 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @Override // c.o.a.n.i public void l0(@NonNull c.o.a.m.h hVar) { - c.o.a.m.h hVar2 = this.f1493z; - this.f1493z = hVar; + c.o.a.m.h hVar2 = this.f1494z; + this.f1494z = hVar; c.o.a.n.v.f fVar = this.m; fVar.b("hdr (" + hVar + ")", true, new c.o.a.n.v.h(fVar, c.o.a.n.v.e.ENGINE, new RunnableC0165d(hVar2))); } @@ -1151,7 +1152,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. public final void l1(boolean z2, int i2) { if ((this.m.f == c.o.a.n.v.e.PREVIEW && !O()) || !z2) { try { - this.f1484g0.setRepeatingRequest(this.f1485h0.build(), this.q0, null); + this.f1485g0.setRepeatingRequest(this.f1486h0.build(), this.q0, null); } catch (CameraAccessException e2) { throw new CameraException(e2, i2); } catch (IllegalStateException e3) { @@ -1168,15 +1169,15 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. Location location2 = this.B; this.B = location; c.o.a.n.v.f fVar = this.m; - fVar.b("location", true, new c.o.a.n.v.h(fVar, c.o.a.n.v.e.ENGINE, new b(location2))); + fVar.b(ModelAuditLogEntry.CHANGE_KEY_LOCATION, true, new c.o.a.n.v.h(fVar, c.o.a.n.v.e.ENGINE, new b(location2))); } public boolean m1(@NonNull CaptureRequest.Builder builder, @NonNull c.o.a.m.m mVar) { if (this.o.c(this.w)) { - c.o.a.n.q.b bVar = this.f1487j0; + c.o.a.n.q.b bVar = this.f1488j0; c.o.a.m.m mVar2 = this.w; Objects.requireNonNull(bVar); - builder.set(CaptureRequest.CONTROL_AWB_MODE, Integer.valueOf(c.o.a.n.q.b.f1496c.get(mVar2).intValue())); + builder.set(CaptureRequest.CONTROL_AWB_MODE, Integer.valueOf(c.o.a.n.q.b.f1497c.get(mVar2).intValue())); return true; } this.w = mVar; @@ -1256,7 +1257,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. if (gVar != null) { gVar.a(this); } - CaptureRequest.Builder builder = this.f1485h0; + CaptureRequest.Builder builder = this.f1486h0; boolean z2 = false; int[] iArr = (int[]) t1(CameraCharacteristics.CONTROL_AF_AVAILABLE_MODES, new int[0]); ArrayList arrayList = new ArrayList(); @@ -1280,12 +1281,12 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @NonNull public final CaptureRequest.Builder q1(int i2) throws CameraAccessException { - CaptureRequest.Builder builder = this.f1485h0; - CaptureRequest.Builder createCaptureRequest = this.f1482e0.createCaptureRequest(i2); - this.f1485h0 = createCaptureRequest; + CaptureRequest.Builder builder = this.f1486h0; + CaptureRequest.Builder createCaptureRequest = this.f1483e0.createCaptureRequest(i2); + this.f1486h0 = createCaptureRequest; createCaptureRequest.setTag(Integer.valueOf(i2)); - d1(this.f1485h0, builder); - return this.f1485h0; + d1(this.f1486h0, builder); + return this.f1486h0; } @NonNull @@ -1316,7 +1317,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @NonNull public List s1() { try { - StreamConfigurationMap streamConfigurationMap = (StreamConfigurationMap) this.f1480c0.getCameraCharacteristics(this.f1481d0).get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); + StreamConfigurationMap streamConfigurationMap = (StreamConfigurationMap) this.f1481c0.getCameraCharacteristics(this.f1482d0).get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); if (streamConfigurationMap != null) { Size[] outputSizes = streamConfigurationMap.getOutputSizes(this.t); ArrayList arrayList = new ArrayList(outputSizes.length); @@ -1343,7 +1344,7 @@ public class d extends g implements ImageReader.OnImageAvailableListener, c.o.a. @NonNull @VisibleForTesting public T t1(@NonNull CameraCharacteristics.Key key, @NonNull T t) { - T t2 = (T) this.f1483f0.get(key); + T t2 = (T) this.f1484f0.get(key); return t2 == null ? t : t2; } diff --git a/app/src/main/java/c/o/a/n/f.java b/app/src/main/java/c/o/a/n/f.java index c456e2e003..1d5934c21d 100644 --- a/app/src/main/java/c/o/a/n/f.java +++ b/app/src/main/java/c/o/a/n/f.java @@ -14,14 +14,14 @@ public class f extends e { @Override // c.o.a.n.o.e public void j(@NonNull c cVar) { - this.f1494c = cVar; - this.e.f1(((d) cVar).f1485h0); + this.f1495c = cVar; + this.e.f1(((d) cVar).f1486h0); d dVar = (d) cVar; - CaptureRequest.Builder builder = dVar.f1485h0; + CaptureRequest.Builder builder = dVar.f1486h0; CaptureRequest.Key key = CaptureRequest.CONTROL_AE_LOCK; Boolean bool = Boolean.FALSE; builder.set(key, bool); - dVar.f1485h0.set(CaptureRequest.CONTROL_AWB_LOCK, bool); + dVar.f1486h0.set(CaptureRequest.CONTROL_AWB_LOCK, bool); dVar.k1(); l(Integer.MAX_VALUE); } diff --git a/app/src/main/java/c/o/a/n/g.java b/app/src/main/java/c/o/a/n/g.java index 6defe17183..b6f234a347 100644 --- a/app/src/main/java/c/o/a/n/g.java +++ b/app/src/main/java/c/o/a/n/g.java @@ -51,10 +51,10 @@ public abstract class g extends i { public int Z; /* renamed from: a0 reason: collision with root package name */ - public int f1488a0; + public int f1489a0; /* renamed from: b0 reason: collision with root package name */ - public c.o.a.u.a f1489b0; + public c.o.a.u.a f1490b0; public c.o.a.w.a n; public c.o.a.c o; public c.o.a.v.d p; @@ -62,20 +62,20 @@ public abstract class g extends i { public c.o.a.x.b r; /* renamed from: s reason: collision with root package name */ - public c.o.a.x.b f1490s; + public c.o.a.x.b f1491s; public int t; public boolean u; public f v; public m w; /* renamed from: x reason: collision with root package name */ - public l f1491x; + public l f1492x; /* renamed from: y reason: collision with root package name */ - public c.o.a.m.b f1492y; + public c.o.a.m.b f1493y; /* renamed from: z reason: collision with root package name */ - public h f1493z; + public h f1494z; /* compiled from: CameraBaseEngine */ public class a implements Runnable { @@ -191,7 +191,7 @@ public abstract class g extends i { @Override // c.o.a.n.i public final void B0(@NonNull c.o.a.m.l lVar) { - this.f1491x = lVar; + this.f1492x = lVar; } @Override // c.o.a.n.i @@ -263,7 +263,7 @@ public abstract class g extends i { @Override // c.o.a.n.i @NonNull public final c.o.a.m.l H() { - return this.f1491x; + return this.f1492x; } @Override // c.o.a.n.i @@ -383,7 +383,7 @@ public abstract class g extends i { @NonNull public c.o.a.p.c S0() { if (this.J == null) { - this.J = V0(this.f1488a0); + this.J = V0(this.f1489a0); } return this.J; } @@ -426,7 +426,7 @@ public abstract class g extends i { if (aVar != null) { CameraView.b bVar = (CameraView.b) this.l; bVar.b.a(1, "dispatchOnPictureTaken", aVar); - CameraView.this.f2481s.post(new c.o.a.i(bVar, aVar)); + CameraView.this.f2484s.post(new c.o.a.i(bVar, aVar)); return; } i.i.a(3, "onPictureResult", "result is null: something went wrong.", exc); @@ -445,7 +445,7 @@ public abstract class g extends i { @Override // c.o.a.n.i public final void b0(@NonNull c.o.a.m.b bVar) { - this.f1492y = bVar; + this.f1493y = bVar; } @Override // c.o.a.n.i @@ -483,7 +483,7 @@ public abstract class g extends i { @Override // c.o.a.n.i @NonNull public final c.o.a.m.b h() { - return this.f1492y; + return this.f1493y; } @Override // c.o.a.n.i @@ -509,7 +509,7 @@ public abstract class g extends i { @Override // c.o.a.n.i public final void j0(int i) { - this.f1488a0 = i; + this.f1489a0 = i; } @Override // c.o.a.n.i @@ -550,7 +550,7 @@ public abstract class g extends i { @Override // c.o.a.n.i public final void o0(@Nullable c.o.a.u.a aVar) { - this.f1489b0 = aVar; + this.f1490b0 = aVar; } @Override // c.o.a.n.i @@ -560,7 +560,7 @@ public abstract class g extends i { @Override // c.o.a.n.i public final int q() { - return this.f1488a0; + return this.f1489a0; } @Override // c.o.a.n.i @@ -571,7 +571,7 @@ public abstract class g extends i { @Override // c.o.a.n.i @NonNull public final h r() { - return this.f1493z; + return this.f1494z; } @Override // c.o.a.n.i diff --git a/app/src/main/java/c/o/a/n/i.java b/app/src/main/java/c/o/a/n/i.java index 548a468f3f..5ac33377df 100644 --- a/app/src/main/java/c/o/a/n/i.java +++ b/app/src/main/java/c/o/a/n/i.java @@ -242,7 +242,7 @@ public abstract class i implements a.c, d.a { boolean z2; c.o.a.n.v.f fVar = this.m; synchronized (fVar.e) { - Iterator> it = fVar.f1500c.iterator(); + Iterator> it = fVar.f1501c.iterator(); while (true) { if (!it.hasNext()) { z2 = false; @@ -305,7 +305,7 @@ public abstract class i implements a.c, d.a { c.o.a.n.v.f fVar = this.m; synchronized (fVar.e) { HashSet hashSet = new HashSet(); - Iterator> it = fVar.f1500c.iterator(); + Iterator> it = fVar.f1501c.iterator(); while (it.hasNext()) { hashSet.add(it.next().a); } diff --git a/app/src/main/java/c/o/a/n/k.java b/app/src/main/java/c/o/a/n/k.java index b10021d468..cbf7c33e5a 100644 --- a/app/src/main/java/c/o/a/n/k.java +++ b/app/src/main/java/c/o/a/n/k.java @@ -23,7 +23,7 @@ public class k implements f { if (cVar2 != null) { CameraView.b bVar = (CameraView.b) this.a.l; bVar.b.a(1, "dispatchOnCameraOpened", cVar2); - CameraView.this.f2481s.post(new c.o.a.f(bVar, cVar2)); + CameraView.this.f2484s.post(new c.o.a.f(bVar, cVar2)); return c.i.a.f.e.o.c.F(null); } throw new RuntimeException("Null options!"); diff --git a/app/src/main/java/c/o/a/n/m.java b/app/src/main/java/c/o/a/n/m.java index 97084c3d40..4decda2be7 100644 --- a/app/src/main/java/c/o/a/n/m.java +++ b/app/src/main/java/c/o/a/n/m.java @@ -16,6 +16,6 @@ public class m implements e { public void onSuccess(Void r6) { CameraView.b bVar = (CameraView.b) this.a.l; bVar.b.a(1, "dispatchOnCameraClosed"); - CameraView.this.f2481s.post(new g(bVar)); + CameraView.this.f2484s.post(new g(bVar)); } } diff --git a/app/src/main/java/c/o/a/n/o/d.java b/app/src/main/java/c/o/a/n/o/d.java index 2691777134..47c83e5458 100644 --- a/app/src/main/java/c/o/a/n/o/d.java +++ b/app/src/main/java/c/o/a/n/o/d.java @@ -49,7 +49,7 @@ public abstract class d extends e { @Override // c.o.a.n.o.e public void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; m().f(new a()); m().j(cVar); } diff --git a/app/src/main/java/c/o/a/n/o/e.java b/app/src/main/java/c/o/a/n/o/e.java index 13f0ecb434..63bd38e472 100644 --- a/app/src/main/java/c/o/a/n/o/e.java +++ b/app/src/main/java/c/o/a/n/o/e.java @@ -17,7 +17,7 @@ public abstract class e implements a { public int b; /* renamed from: c reason: collision with root package name */ - public c f1494c; + public c f1495c; public boolean d; @Override // c.o.a.n.o.a @@ -49,12 +49,12 @@ public abstract class e implements a { @Override // c.o.a.n.o.a public final void e(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; d dVar = (d) cVar; if (!dVar.o0.contains(this)) { dVar.o0.add(this); } - if (((d) cVar).f1486i0 != null) { + if (((d) cVar).f1487i0 != null) { j(cVar); } else { this.d = true; @@ -80,12 +80,12 @@ public abstract class e implements a { @CallSuper public void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; } @NonNull public T k(@NonNull CameraCharacteristics.Key key, @NonNull T t) { - T t2 = (T) ((d) this.f1494c).f1483f0.get(key); + T t2 = (T) ((d) this.f1495c).f1484f0.get(key); return t2 == null ? t : t2; } @@ -96,8 +96,8 @@ public abstract class e implements a { bVar.a(this, this.b); } if (this.b == Integer.MAX_VALUE) { - ((d) this.f1494c).o0.remove(this); - i(this.f1494c); + ((d) this.f1495c).o0.remove(this); + i(this.f1495c); } } } diff --git a/app/src/main/java/c/o/a/n/o/h.java b/app/src/main/java/c/o/a/n/o/h.java index ed75fa2d18..2c9987c00c 100644 --- a/app/src/main/java/c/o/a/n/o/h.java +++ b/app/src/main/java/c/o/a/n/o/h.java @@ -69,7 +69,7 @@ public class h extends e { @Override // c.o.a.n.o.e public void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; int i = this.f; if (i >= 0) { this.e.get(i).j(cVar); @@ -91,7 +91,7 @@ public class h extends e { this.f = i2; this.e.get(i2).f(new a()); if (!z3) { - this.e.get(this.f).j(this.f1494c); + this.e.get(this.f).j(this.f1495c); } } } diff --git a/app/src/main/java/c/o/a/n/o/j.java b/app/src/main/java/c/o/a/n/o/j.java index 2716b807c1..f65cce5842 100644 --- a/app/src/main/java/c/o/a/n/o/j.java +++ b/app/src/main/java/c/o/a/n/o/j.java @@ -79,7 +79,7 @@ public class j extends e { @Override // c.o.a.n.o.e public void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; for (e eVar : this.e) { if (!eVar.g()) { eVar.j(cVar); diff --git a/app/src/main/java/c/o/a/n/p/a.java b/app/src/main/java/c/o/a/n/p/a.java index b05af47ce3..f864433230 100644 --- a/app/src/main/java/c/o/a/n/p/a.java +++ b/app/src/main/java/c/o/a/n/p/a.java @@ -9,7 +9,7 @@ import c.o.a.n.o.e; public abstract class a extends e { @Override // c.o.a.n.o.e public final void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; boolean n = n(cVar); if (!m(cVar) || n) { l(Integer.MAX_VALUE); diff --git a/app/src/main/java/c/o/a/n/p/b.java b/app/src/main/java/c/o/a/n/p/b.java index e442e99589..75f9208f61 100644 --- a/app/src/main/java/c/o/a/n/p/b.java +++ b/app/src/main/java/c/o/a/n/p/b.java @@ -26,7 +26,7 @@ public class b extends a { @Override // c.o.a.n.p.a public boolean m(@NonNull c cVar) { boolean z2 = ((Integer) k(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL, -1)).intValue() != 2; - Integer num = (Integer) ((d) cVar).f1485h0.get(CaptureRequest.CONTROL_AE_MODE); + Integer num = (Integer) ((d) cVar).f1486h0.get(CaptureRequest.CONTROL_AE_MODE); boolean z3 = z2 && (num != null && (num.intValue() == 1 || num.intValue() == 3 || num.intValue() == 2 || num.intValue() == 4 || num.intValue() == 5)); e.a(1, "checkIsSupported:", Boolean.valueOf(z3)); return z3; @@ -34,7 +34,7 @@ public class b extends a { @Override // c.o.a.n.p.a public boolean n(@NonNull c cVar) { - TotalCaptureResult totalCaptureResult = ((d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((d) cVar).f1487i0; if (totalCaptureResult != null) { Integer num = (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AE_STATE); boolean z2 = num != null && num.intValue() == 3; @@ -47,9 +47,9 @@ public class b extends a { @Override // c.o.a.n.p.a public void o(@NonNull c cVar) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, Integer.valueOf(Build.VERSION.SDK_INT >= 23 ? 2 : 0)); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, Integer.valueOf(Build.VERSION.SDK_INT >= 23 ? 2 : 0)); d dVar = (d) cVar; - dVar.f1485h0.set(CaptureRequest.CONTROL_AE_LOCK, Boolean.TRUE); + dVar.f1486h0.set(CaptureRequest.CONTROL_AE_LOCK, Boolean.TRUE); dVar.k1(); } } diff --git a/app/src/main/java/c/o/a/n/p/c.java b/app/src/main/java/c/o/a/n/p/c.java index e336f3ad1a..05ba4e2f67 100644 --- a/app/src/main/java/c/o/a/n/p/c.java +++ b/app/src/main/java/c/o/a/n/p/c.java @@ -38,7 +38,7 @@ public class c extends a { @Override // c.o.a.n.p.a public boolean n(@NonNull c.o.a.n.o.c cVar) { - TotalCaptureResult totalCaptureResult = ((d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((d) cVar).f1487i0; if (totalCaptureResult != null) { Integer num = (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AF_STATE); boolean z2 = num != null && (num.intValue() == 4 || num.intValue() == 5 || num.intValue() == 0 || num.intValue() == 2 || num.intValue() == 6); @@ -53,9 +53,9 @@ public class c extends a { @Override // c.o.a.n.p.a public void o(@NonNull c.o.a.n.o.c cVar) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AF_MODE, 1); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AF_MODE, 1); d dVar = (d) cVar; - dVar.f1485h0.set(CaptureRequest.CONTROL_AF_TRIGGER, 2); + dVar.f1486h0.set(CaptureRequest.CONTROL_AF_TRIGGER, 2); dVar.k1(); } } diff --git a/app/src/main/java/c/o/a/n/p/e.java b/app/src/main/java/c/o/a/n/p/e.java index 17b4eb21de..0c944d5ceb 100644 --- a/app/src/main/java/c/o/a/n/p/e.java +++ b/app/src/main/java/c/o/a/n/p/e.java @@ -26,7 +26,7 @@ public class e extends a { @Override // c.o.a.n.p.a public boolean m(@NonNull c cVar) { boolean z2 = ((Integer) k(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL, -1)).intValue() != 2; - Integer num = (Integer) ((d) cVar).f1485h0.get(CaptureRequest.CONTROL_AWB_MODE); + Integer num = (Integer) ((d) cVar).f1486h0.get(CaptureRequest.CONTROL_AWB_MODE); boolean z3 = z2 && num != null && num.intValue() == 1; e.a(1, "checkIsSupported:", Boolean.valueOf(z3)); return z3; @@ -34,7 +34,7 @@ public class e extends a { @Override // c.o.a.n.p.a public boolean n(@NonNull c cVar) { - TotalCaptureResult totalCaptureResult = ((d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((d) cVar).f1487i0; if (totalCaptureResult != null) { Integer num = (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AWB_STATE); boolean z2 = num != null && num.intValue() == 3; @@ -47,7 +47,7 @@ public class e extends a { @Override // c.o.a.n.p.a public void o(@NonNull c cVar) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AWB_LOCK, Boolean.TRUE); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AWB_LOCK, Boolean.TRUE); ((d) cVar).k1(); } } diff --git a/app/src/main/java/c/o/a/n/q/a.java b/app/src/main/java/c/o/a/n/q/a.java index 53a738b894..e9b693ef5e 100644 --- a/app/src/main/java/c/o/a/n/q/a.java +++ b/app/src/main/java/c/o/a/n/q/a.java @@ -15,7 +15,7 @@ public class a { public static final Map b; /* renamed from: c reason: collision with root package name */ - public static final Map f1495c; + public static final Map f1496c; public static final Map d; public static final Map e; @@ -23,7 +23,7 @@ public class a { HashMap hashMap = new HashMap(); b = hashMap; HashMap hashMap2 = new HashMap(); - f1495c = hashMap2; + f1496c = hashMap2; HashMap hashMap3 = new HashMap(); d = hashMap3; HashMap hashMap4 = new HashMap(); diff --git a/app/src/main/java/c/o/a/n/q/b.java b/app/src/main/java/c/o/a/n/q/b.java index 8726252e2e..0550bd1924 100644 --- a/app/src/main/java/c/o/a/n/q/b.java +++ b/app/src/main/java/c/o/a/n/q/b.java @@ -16,14 +16,14 @@ public class b { public static final Map b; /* renamed from: c reason: collision with root package name */ - public static final Map f1496c; + public static final Map f1497c; public static final Map d; static { HashMap hashMap = new HashMap(); b = hashMap; HashMap hashMap2 = new HashMap(); - f1496c = hashMap2; + f1497c = hashMap2; HashMap hashMap3 = new HashMap(); d = hashMap3; hashMap.put(e.BACK, 1); diff --git a/app/src/main/java/c/o/a/n/r/a.java b/app/src/main/java/c/o/a/n/r/a.java index 1dfe4eeea4..de6adb843f 100644 --- a/app/src/main/java/c/o/a/n/r/a.java +++ b/app/src/main/java/c/o/a/n/r/a.java @@ -22,7 +22,7 @@ public abstract class a extends e { @Override // c.o.a.n.o.e public final void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; boolean z2 = this.h && n(cVar); if (!m(cVar) || z2) { e.a(1, "onStart:", "not supported or skipped. Dispatching COMPLETED state."); diff --git a/app/src/main/java/c/o/a/n/r/b.java b/app/src/main/java/c/o/a/n/r/b.java index 2c56dbf868..731845501e 100644 --- a/app/src/main/java/c/o/a/n/r/b.java +++ b/app/src/main/java/c/o/a/n/r/b.java @@ -19,7 +19,7 @@ public abstract class b extends e { @Override // c.o.a.n.o.e public final void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; MeteringRectangle meteringRectangle = null; if (this.e) { meteringRectangle = new MeteringRectangle((Rect) k(CameraCharacteristics.SENSOR_INFO_ACTIVE_ARRAY_SIZE, new Rect()), 0); diff --git a/app/src/main/java/c/o/a/n/r/c.java b/app/src/main/java/c/o/a/n/r/c.java index 06a8a344a9..9e12a8afac 100644 --- a/app/src/main/java/c/o/a/n/r/c.java +++ b/app/src/main/java/c/o/a/n/r/c.java @@ -63,13 +63,13 @@ public class c extends a { @Override // c.o.a.n.o.e public void i(@NonNull c.o.a.n.o.c cVar) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, null); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, null); } @Override // c.o.a.n.r.a public boolean m(@NonNull c.o.a.n.o.c cVar) { boolean z2 = ((Integer) k(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL, -1)).intValue() == 2; - Integer num = (Integer) ((d) cVar).f1485h0.get(CaptureRequest.CONTROL_AE_MODE); + Integer num = (Integer) ((d) cVar).f1486h0.get(CaptureRequest.CONTROL_AE_MODE); boolean z3 = num != null && (num.intValue() == 1 || num.intValue() == 3 || num.intValue() == 2 || num.intValue() == 4 || num.intValue() == 5); this.k = !z2; boolean z4 = ((Integer) k(CameraCharacteristics.CONTROL_MAX_REGIONS_AE, 0)).intValue() > 0; @@ -81,7 +81,7 @@ public class c extends a { @Override // c.o.a.n.r.a public boolean n(@NonNull c.o.a.n.o.c cVar) { - TotalCaptureResult totalCaptureResult = ((d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((d) cVar).f1487i0; if (totalCaptureResult != null) { Integer num = (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AE_STATE); boolean z2 = num != null && num.intValue() == 2; @@ -96,10 +96,10 @@ public class c extends a { public void o(@NonNull c.o.a.n.o.c cVar, @NonNull List list) { i.a(1, "onStarted:", "with areas:", list); if (this.j && !list.isEmpty()) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AE_REGIONS, list.subList(0, Math.min(((Integer) k(CameraCharacteristics.CONTROL_MAX_REGIONS_AE, 0)).intValue(), list.size())).toArray(new MeteringRectangle[0])); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AE_REGIONS, list.subList(0, Math.min(((Integer) k(CameraCharacteristics.CONTROL_MAX_REGIONS_AE, 0)).intValue(), list.size())).toArray(new MeteringRectangle[0])); } if (this.k) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, 1); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, 1); } ((d) cVar).k1(); if (this.k) { diff --git a/app/src/main/java/c/o/a/n/r/d.java b/app/src/main/java/c/o/a/n/r/d.java index 39cf0565bc..a4aa6f8b78 100644 --- a/app/src/main/java/c/o/a/n/r/d.java +++ b/app/src/main/java/c/o/a/n/r/d.java @@ -23,7 +23,7 @@ public class d extends b { @Override // c.o.a.n.o.e, c.o.a.n.o.a public void b(@NonNull c cVar, @NonNull CaptureRequest captureRequest, @NonNull TotalCaptureResult totalCaptureResult) { if (this.b == 0) { - ((c.o.a.n.d) cVar).f1485h0.set(CaptureRequest.CONTROL_AE_LOCK, Boolean.FALSE); + ((c.o.a.n.d) cVar).f1486h0.set(CaptureRequest.CONTROL_AE_LOCK, Boolean.FALSE); ((c.o.a.n.d) cVar).k1(); l(Integer.MAX_VALUE); } @@ -33,9 +33,9 @@ public class d extends b { public void m(@NonNull c cVar, @Nullable MeteringRectangle meteringRectangle) { int intValue = ((Integer) k(CameraCharacteristics.CONTROL_MAX_REGIONS_AE, 0)).intValue(); if (meteringRectangle != null && intValue > 0) { - ((c.o.a.n.d) cVar).f1485h0.set(CaptureRequest.CONTROL_AE_REGIONS, new MeteringRectangle[]{meteringRectangle}); + ((c.o.a.n.d) cVar).f1486h0.set(CaptureRequest.CONTROL_AE_REGIONS, new MeteringRectangle[]{meteringRectangle}); } - TotalCaptureResult totalCaptureResult = ((c.o.a.n.d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((c.o.a.n.d) cVar).f1487i0; Integer num = totalCaptureResult == null ? null : (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AE_PRECAPTURE_TRIGGER); b bVar = f; int i = 2; @@ -45,10 +45,10 @@ public class d extends b { if (Build.VERSION.SDK_INT < 23) { i = 0; } - ((c.o.a.n.d) cVar).f1485h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, Integer.valueOf(i)); + ((c.o.a.n.d) cVar).f1486h0.set(CaptureRequest.CONTROL_AE_PRECAPTURE_TRIGGER, Integer.valueOf(i)); } c.o.a.n.d dVar = (c.o.a.n.d) cVar; - dVar.f1485h0.set(CaptureRequest.CONTROL_AE_LOCK, Boolean.TRUE); + dVar.f1486h0.set(CaptureRequest.CONTROL_AE_LOCK, Boolean.TRUE); dVar.k1(); l(0); } diff --git a/app/src/main/java/c/o/a/n/r/e.java b/app/src/main/java/c/o/a/n/r/e.java index 482d35e80f..e9a28358f9 100644 --- a/app/src/main/java/c/o/a/n/r/e.java +++ b/app/src/main/java/c/o/a/n/r/e.java @@ -38,12 +38,12 @@ public class e extends a { @Override // c.o.a.n.o.e public void i(@NonNull c cVar) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AF_TRIGGER, null); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AF_TRIGGER, null); } @Override // c.o.a.n.r.a public boolean m(@NonNull c cVar) { - Integer num = (Integer) ((d) cVar).f1485h0.get(CaptureRequest.CONTROL_AF_MODE); + Integer num = (Integer) ((d) cVar).f1486h0.get(CaptureRequest.CONTROL_AF_MODE); boolean z2 = num != null && (num.intValue() == 1 || num.intValue() == 4 || num.intValue() == 3 || num.intValue() == 2); i.a(1, "checkIsSupported:", Boolean.valueOf(z2)); return z2; @@ -51,7 +51,7 @@ public class e extends a { @Override // c.o.a.n.r.a public boolean n(@NonNull c cVar) { - TotalCaptureResult totalCaptureResult = ((d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((d) cVar).f1487i0; if (totalCaptureResult != null) { Integer num = (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AF_STATE); boolean z2 = num != null && (num.intValue() == 4 || num.intValue() == 2); @@ -65,10 +65,10 @@ public class e extends a { @Override // c.o.a.n.r.a public void o(@NonNull c cVar, @NonNull List list) { i.a(1, "onStarted:", "with areas:", list); - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AF_TRIGGER, 1); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AF_TRIGGER, 1); int intValue = ((Integer) k(CameraCharacteristics.CONTROL_MAX_REGIONS_AF, 0)).intValue(); if (!list.isEmpty() && intValue > 0) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AF_REGIONS, list.subList(0, Math.min(intValue, list.size())).toArray(new MeteringRectangle[0])); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AF_REGIONS, list.subList(0, Math.min(intValue, list.size())).toArray(new MeteringRectangle[0])); } ((d) cVar).k1(); } diff --git a/app/src/main/java/c/o/a/n/r/f.java b/app/src/main/java/c/o/a/n/r/f.java index 3900f7375b..2bf3878a5d 100644 --- a/app/src/main/java/c/o/a/n/r/f.java +++ b/app/src/main/java/c/o/a/n/r/f.java @@ -28,16 +28,16 @@ public class f extends b { if (meteringRectangle == null || intValue <= 0) { z2 = false; } else { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AF_REGIONS, new MeteringRectangle[]{meteringRectangle}); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AF_REGIONS, new MeteringRectangle[]{meteringRectangle}); z2 = true; } - TotalCaptureResult totalCaptureResult = ((d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((d) cVar).f1487i0; Integer num = totalCaptureResult == null ? null : (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AF_TRIGGER); f.a(2, "onStarted:", "last focus trigger is", num); if (num == null || num.intValue() != 1) { z3 = z2; } else { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AF_TRIGGER, 2); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AF_TRIGGER, 2); } if (z3) { ((d) cVar).k1(); diff --git a/app/src/main/java/c/o/a/n/r/g.java b/app/src/main/java/c/o/a/n/r/g.java index 545282f801..4f9717f356 100644 --- a/app/src/main/java/c/o/a/n/r/g.java +++ b/app/src/main/java/c/o/a/n/r/g.java @@ -46,7 +46,7 @@ public class g extends d { List arrayList = new ArrayList(); if (this.h != null) { c.o.a.n.d dVar = (c.o.a.n.d) cVar; - c.o.a.n.s.b bVar = new c.o.a.n.s.b(this.i.e(), this.i.z().l(), this.i.C(c.o.a.n.t.b.VIEW), this.i.z().d, dVar.f1483f0, dVar.f1485h0); + c.o.a.n.s.b bVar = new c.o.a.n.s.b(this.i.e(), this.i.z().l(), this.i.C(c.o.a.n.t.b.VIEW), this.i.z().d, dVar.f1484f0, dVar.f1486h0); arrayList = this.h.c(bVar).b(Integer.MAX_VALUE, bVar); } c cVar2 = new c(arrayList, this.j); diff --git a/app/src/main/java/c/o/a/n/r/i.java b/app/src/main/java/c/o/a/n/r/i.java index ade7ed2992..1c156c2c26 100644 --- a/app/src/main/java/c/o/a/n/r/i.java +++ b/app/src/main/java/c/o/a/n/r/i.java @@ -39,7 +39,7 @@ public class i extends a { @Override // c.o.a.n.r.a public boolean m(@NonNull c cVar) { boolean z2 = ((Integer) k(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL, -1)).intValue() != 2; - Integer num = (Integer) ((d) cVar).f1485h0.get(CaptureRequest.CONTROL_AWB_MODE); + Integer num = (Integer) ((d) cVar).f1486h0.get(CaptureRequest.CONTROL_AWB_MODE); boolean z3 = z2 && num != null && num.intValue() == 1; i.a(1, "checkIsSupported:", Boolean.valueOf(z3)); return z3; @@ -47,7 +47,7 @@ public class i extends a { @Override // c.o.a.n.r.a public boolean n(@NonNull c cVar) { - TotalCaptureResult totalCaptureResult = ((d) cVar).f1486i0; + TotalCaptureResult totalCaptureResult = ((d) cVar).f1487i0; if (totalCaptureResult != null) { Integer num = (Integer) totalCaptureResult.get(CaptureResult.CONTROL_AWB_STATE); boolean z2 = num != null && num.intValue() == 2; @@ -63,7 +63,7 @@ public class i extends a { i.a(1, "onStarted:", "with areas:", list); int intValue = ((Integer) k(CameraCharacteristics.CONTROL_MAX_REGIONS_AWB, 0)).intValue(); if (!list.isEmpty() && intValue > 0) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AWB_REGIONS, list.subList(0, Math.min(intValue, list.size())).toArray(new MeteringRectangle[0])); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AWB_REGIONS, list.subList(0, Math.min(intValue, list.size())).toArray(new MeteringRectangle[0])); ((d) cVar).k1(); } } diff --git a/app/src/main/java/c/o/a/n/r/j.java b/app/src/main/java/c/o/a/n/r/j.java index 1d99a5c144..f1f4acea91 100644 --- a/app/src/main/java/c/o/a/n/r/j.java +++ b/app/src/main/java/c/o/a/n/r/j.java @@ -23,7 +23,7 @@ public class j extends b { f.a(2, "onStarted:", "with area:", meteringRectangle); int intValue = ((Integer) k(CameraCharacteristics.CONTROL_MAX_REGIONS_AWB, 0)).intValue(); if (meteringRectangle != null && intValue > 0) { - ((d) cVar).f1485h0.set(CaptureRequest.CONTROL_AWB_REGIONS, new MeteringRectangle[]{meteringRectangle}); + ((d) cVar).f1486h0.set(CaptureRequest.CONTROL_AWB_REGIONS, new MeteringRectangle[]{meteringRectangle}); ((d) cVar).k1(); } l(Integer.MAX_VALUE); diff --git a/app/src/main/java/c/o/a/n/s/a.java b/app/src/main/java/c/o/a/n/s/a.java index d2701d2513..35111040c0 100644 --- a/app/src/main/java/c/o/a/n/s/a.java +++ b/app/src/main/java/c/o/a/n/s/a.java @@ -13,11 +13,11 @@ public class a implements c { public final int b; /* renamed from: c reason: collision with root package name */ - public final c.o.a.x.b f1497c; + public final c.o.a.x.b f1498c; public a(@NonNull c.o.a.n.t.a aVar, @NonNull c.o.a.x.b bVar) { this.b = -aVar.c(c.o.a.n.t.b.SENSOR, c.o.a.n.t.b.VIEW, 1); - this.f1497c = bVar; + this.f1498c = bVar; } /* Return type fixed from 'java.lang.Object' to match base method */ @@ -34,7 +34,7 @@ public class a implements c { public PointF b(@NonNull PointF pointF) { PointF pointF2 = new PointF(); float f = pointF.x; - c.o.a.x.b bVar = this.f1497c; + c.o.a.x.b bVar = this.f1498c; pointF2.x = ((f / ((float) bVar.i)) * 2000.0f) - 0.0040893555f; pointF2.y = ((pointF.y / ((float) bVar.j)) * 2000.0f) - 0.0040893555f; PointF pointF3 = new PointF(); diff --git a/app/src/main/java/c/o/a/n/s/b.java b/app/src/main/java/c/o/a/n/s/b.java index c4e2259306..b2ddd41641 100644 --- a/app/src/main/java/c/o/a/n/s/b.java +++ b/app/src/main/java/c/o/a/n/s/b.java @@ -18,7 +18,7 @@ public class b implements c { public final a b; /* renamed from: c reason: collision with root package name */ - public final c.o.a.x.b f1498c; + public final c.o.a.x.b f1499c; public final c.o.a.x.b d; public final boolean e; public final CameraCharacteristics f; @@ -26,7 +26,7 @@ public class b implements c { public b(@NonNull a aVar, @NonNull c.o.a.x.b bVar, @NonNull c.o.a.x.b bVar2, boolean z2, @NonNull CameraCharacteristics cameraCharacteristics, @NonNull CaptureRequest.Builder builder) { this.b = aVar; - this.f1498c = bVar; + this.f1499c = bVar; this.d = bVar2; this.e = z2; this.f = cameraCharacteristics; @@ -46,7 +46,7 @@ public class b implements c { @NonNull public PointF b(@NonNull PointF pointF) { PointF pointF2 = new PointF(pointF.x, pointF.y); - c.o.a.x.b bVar = this.f1498c; + c.o.a.x.b bVar = this.f1499c; c.o.a.x.b bVar2 = this.d; int i = bVar.i; int i2 = bVar.j; diff --git a/app/src/main/java/c/o/a/n/t/a.java b/app/src/main/java/c/o/a/n/t/a.java index fafa3ee922..2c9baa7140 100644 --- a/app/src/main/java/c/o/a/n/t/a.java +++ b/app/src/main/java/c/o/a/n/t/a.java @@ -12,7 +12,7 @@ public class a { @VisibleForTesting /* renamed from: c reason: collision with root package name */ - public int f1499c = 0; + public int f1500c = 0; @VisibleForTesting public int d = 0; @VisibleForTesting @@ -31,7 +31,7 @@ public class a { } int ordinal = bVar2.ordinal(); if (ordinal == 1) { - return ((360 - this.f1499c) + 360) % 360; + return ((360 - this.f1500c) + 360) % 360; } if (ordinal == 2) { return ((360 - this.d) + 360) % 360; @@ -52,7 +52,7 @@ public class a { } public final void d() { - a.a(1, "Angles changed:", "sensorOffset:", Integer.valueOf(this.f1499c), "displayOffset:", Integer.valueOf(this.d), "deviceOrientation:", Integer.valueOf(this.e)); + a.a(1, "Angles changed:", "sensorOffset:", Integer.valueOf(this.f1500c), "displayOffset:", Integer.valueOf(this.d), "deviceOrientation:", Integer.valueOf(this.e)); } public final void e(int i) { @@ -64,9 +64,9 @@ public class a { public void f(@NonNull e eVar, int i) { e(i); this.b = eVar; - this.f1499c = i; + this.f1500c = i; if (eVar == e.FRONT) { - this.f1499c = ((360 - i) + 360) % 360; + this.f1500c = ((360 - i) + 360) % 360; } d(); } diff --git a/app/src/main/java/c/o/a/n/u/a.java b/app/src/main/java/c/o/a/n/u/a.java index c7388d8996..3a576f601b 100644 --- a/app/src/main/java/c/o/a/n/u/a.java +++ b/app/src/main/java/c/o/a/n/u/a.java @@ -33,19 +33,19 @@ public class a extends c { List supportedWhiteBalance = parameters.getSupportedWhiteBalance(); if (supportedWhiteBalance != null) { for (String str : supportedWhiteBalance) { - m mVar = (m) a.b(c.o.a.n.q.a.f1495c, str); + m mVar = (m) a.b(c.o.a.n.q.a.f1496c, str); if (mVar != null) { this.a.add(mVar); } } } - this.f1475c.add(f.OFF); + this.f1476c.add(f.OFF); List supportedFlashModes = parameters.getSupportedFlashModes(); if (supportedFlashModes != null) { for (String str2 : supportedFlashModes) { f fVar = (f) a.b(c.o.a.n.q.a.b, str2); if (fVar != null) { - this.f1475c.add(fVar); + this.f1476c.add(fVar); } } } diff --git a/app/src/main/java/c/o/a/n/u/b.java b/app/src/main/java/c/o/a/n/u/b.java index 58182f1546..7e2b153b83 100644 --- a/app/src/main/java/c/o/a/n/u/b.java +++ b/app/src/main/java/c/o/a/n/u/b.java @@ -41,12 +41,12 @@ public class b extends c { } } for (int i2 : (int[]) cameraCharacteristics.get(CameraCharacteristics.CONTROL_AWB_AVAILABLE_MODES)) { - m mVar = (m) bVar.a(c.o.a.n.q.b.f1496c, Integer.valueOf(i2)); + m mVar = (m) bVar.a(c.o.a.n.q.b.f1497c, Integer.valueOf(i2)); if (mVar != null) { this.a.add(mVar); } } - this.f1475c.add(fVar); + this.f1476c.add(fVar); Boolean bool = (Boolean) cameraCharacteristics.get(CameraCharacteristics.FLASH_INFO_AVAILABLE); boolean z3 = true; if (bool != null && bool.booleanValue()) { @@ -66,7 +66,7 @@ public class b extends c { } hashSet.add(f.AUTO); } - this.f1475c.addAll(hashSet); + this.f1476c.addAll(hashSet); } } this.d.add(h.OFF); diff --git a/app/src/main/java/c/o/a/n/v/a.java b/app/src/main/java/c/o/a/n/v/a.java index fada87d510..80bb8a23d9 100644 --- a/app/src/main/java/c/o/a/n/v/a.java +++ b/app/src/main/java/c/o/a/n/v/a.java @@ -16,7 +16,7 @@ public class a { public final b b; /* renamed from: c reason: collision with root package name */ - public final ArrayDeque> f1500c = new ArrayDeque<>(); + public final ArrayDeque> f1501c = new ArrayDeque<>(); public boolean d = false; public final Object e = new Object(); @@ -47,13 +47,13 @@ public class a { public final TaskCompletionSource b = new TaskCompletionSource<>(); /* renamed from: c reason: collision with root package name */ - public final Callable> f1501c; + public final Callable> f1502c; public final boolean d; public final long e; public c(String str, Callable callable, boolean z2, long j, CallableC0168a aVar) { this.a = str; - this.f1501c = callable; + this.f1502c = callable; this.d = z2; this.e = j; } @@ -66,14 +66,14 @@ public class a { public static void a(a aVar, c cVar) { if (aVar.d) { aVar.d = false; - aVar.f1500c.remove(cVar); + aVar.f1501c.remove(cVar); g gVar = i.this.j; gVar.f.postDelayed(new b(aVar), 0); return; } - StringBuilder P = c.d.b.a.a.P("mJobRunning was not true after completing job="); - P.append(cVar.a); - throw new IllegalStateException(P.toString()); + StringBuilder O = c.d.b.a.a.O("mJobRunning was not true after completing job="); + O.append(cVar.a); + throw new IllegalStateException(O.toString()); } @NonNull @@ -91,7 +91,7 @@ public class a { a.a(1, str.toUpperCase(), "- Scheduling."); c cVar = new c<>(str, callable, z2, System.currentTimeMillis() + j, null); synchronized (this.e) { - this.f1500c.addLast(cVar); + this.f1501c.addLast(cVar); i.this.j.f.postDelayed(new b(this), j); } return cVar.b.a; @@ -100,7 +100,7 @@ public class a { public void e(@NonNull String str, int i) { synchronized (this.e) { ArrayList arrayList = new ArrayList(); - Iterator> it = this.f1500c.iterator(); + Iterator> it = this.f1501c.iterator(); while (it.hasNext()) { c next = it.next(); if (next.a.equals(str)) { @@ -112,7 +112,7 @@ public class a { if (max > 0) { Collections.reverse(arrayList); for (c cVar : arrayList.subList(0, max)) { - this.f1500c.remove(cVar); + this.f1501c.remove(cVar); } } } diff --git a/app/src/main/java/c/o/a/n/v/b.java b/app/src/main/java/c/o/a/n/v/b.java index e5d362fece..f2c7a7cbcb 100644 --- a/app/src/main/java/c/o/a/n/v/b.java +++ b/app/src/main/java/c/o/a/n/v/b.java @@ -19,7 +19,7 @@ public class b implements Runnable { cVar = null; if (!this.i.d) { long currentTimeMillis = System.currentTimeMillis(); - Iterator> it = this.i.f1500c.iterator(); + Iterator> it = this.i.f1501c.iterator(); while (true) { if (!it.hasNext()) { break; diff --git a/app/src/main/java/c/o/a/n/v/c.java b/app/src/main/java/c/o/a/n/v/c.java index 2fb6566b4f..3300465dd9 100644 --- a/app/src/main/java/c/o/a/n/v/c.java +++ b/app/src/main/java/c/o/a/n/v/c.java @@ -51,7 +51,7 @@ public class c implements Runnable { public void run() { try { a.a.a(1, this.i.a.toUpperCase(), "- Executing."); - Task task = (Task) this.i.f1501c.call(); + Task task = (Task) this.i.f1502c.call(); g gVar = this.j; a aVar = new a(); if (task.o()) { diff --git a/app/src/main/java/c/o/a/o/a.java b/app/src/main/java/c/o/a/o/a.java index b132240ac5..1329c83a3a 100644 --- a/app/src/main/java/c/o/a/o/a.java +++ b/app/src/main/java/c/o/a/o/a.java @@ -20,7 +20,7 @@ public abstract class a implements b { public d b = null; /* renamed from: c reason: collision with root package name */ - public c.o.b.b.b f1502c = null; + public c.o.b.b.b f1503c = null; @VisibleForTesting public c.o.a.x.b d; @@ -56,9 +56,9 @@ public abstract class a implements b { sb.append(";\nuniform mat4 "); sb.append("uTexMatrix"); sb.append(";\nattribute vec4 "); - c.d.b.a.a.o0(sb, "aPosition", ";\nattribute vec4 ", "aTextureCoord", ";\nvarying vec2 "); - c.d.b.a.a.o0(sb, "vTextureCoord", ";\nvoid main() {\n gl_Position = ", "uMVPMatrix", " * "); - c.d.b.a.a.o0(sb, "aPosition", ";\n ", "vTextureCoord", " = ("); + c.d.b.a.a.n0(sb, "aPosition", ";\nattribute vec4 ", "aTextureCoord", ";\nvarying vec2 "); + c.d.b.a.a.n0(sb, "vTextureCoord", ";\nvoid main() {\n gl_Position = ", "uMVPMatrix", " * "); + c.d.b.a.a.n0(sb, "aPosition", ";\n ", "vTextureCoord", " = ("); sb.append("uTexMatrix"); sb.append(" * "); sb.append("aTextureCoord"); @@ -77,7 +77,7 @@ public abstract class a implements b { m.checkNotNullParameter(fArr, ""); dVar.e = fArr; d dVar2 = this.b; - c.o.b.b.b bVar = this.f1502c; + c.o.b.b.b bVar = this.f1503c; float[] fArr2 = bVar.a; Objects.requireNonNull(dVar2); m.checkNotNullParameter(bVar, "drawable"); @@ -152,12 +152,12 @@ public abstract class a implements b { c.o.b.a.d.b("glVertexAttribPointer"); } d dVar3 = this.b; - c.o.b.b.b bVar5 = this.f1502c; + c.o.b.b.b bVar5 = this.f1503c; Objects.requireNonNull(dVar3); m.checkNotNullParameter(bVar5, "drawable"); bVar5.a(); d dVar4 = this.b; - c.o.b.b.b bVar6 = this.f1502c; + c.o.b.b.b bVar6 = this.f1503c; Objects.requireNonNull(dVar4); m.checkNotNullParameter(bVar6, "drawable"); m.checkNotNullParameter(bVar6, "drawable"); @@ -176,7 +176,7 @@ public abstract class a implements b { public void f() { d dVar = this.b; if (!dVar.a) { - if (dVar.f1518c) { + if (dVar.f1519c) { GLES20.glDeleteProgram(p.m84constructorimpl(dVar.b)); } for (c.o.b.d.c cVar : dVar.d) { @@ -190,13 +190,13 @@ public abstract class a implements b { ((c.o.b.g.a) floatBuffer).dispose(); } this.b = null; - this.f1502c = null; + this.f1503c = null; } @Override // c.o.a.o.b public void j(int i) { this.b = new d(i, "aPosition", "uMVPMatrix", "aTextureCoord", "uTexMatrix"); - this.f1502c = new c.o.b.b.c(); + this.f1503c = new c.o.b.b.c(); } @Override // c.o.a.o.b diff --git a/app/src/main/java/c/o/a/p/a.java b/app/src/main/java/c/o/a/p/a.java index 915b5e3ff2..f1fa0d38e6 100644 --- a/app/src/main/java/c/o/a/p/a.java +++ b/app/src/main/java/c/o/a/p/a.java @@ -24,7 +24,7 @@ public class a extends c { @Override // c.o.a.p.c public void c(@NonNull byte[] bArr, boolean z2) { byte[] bArr2 = bArr; - if (z2 && bArr2.length == this.f1504c) { + if (z2 && bArr2.length == this.f1505c) { if (this.k == 0) { ((b) this.j).m1(bArr2); } else { @@ -44,7 +44,7 @@ public class a extends c { @Override // c.o.a.p.c public void e(int i, @NonNull c.o.a.x.b bVar, @NonNull c.o.a.n.t.a aVar) { super.e(i, bVar, aVar); - int i2 = this.f1504c; + int i2 = this.f1505c; for (int i3 = 0; i3 < this.b; i3++) { if (this.k == 0) { ((b) this.j).m1(new byte[i2]); diff --git a/app/src/main/java/c/o/a/p/b.java b/app/src/main/java/c/o/a/p/b.java index 668523407f..0bdd02f3d6 100644 --- a/app/src/main/java/c/o/a/p/b.java +++ b/app/src/main/java/c/o/a/p/b.java @@ -7,7 +7,7 @@ public class b { public final c b; /* renamed from: c reason: collision with root package name */ - public Object f1503c = null; + public Object f1504c = null; public long d = -1; public long e = -1; @@ -16,7 +16,7 @@ public class b { } public long a() { - if (this.f1503c != null) { + if (this.f1504c != null) { return this.d; } a.a(3, "Frame is dead! time:", Long.valueOf(this.d), "lastTime:", Long.valueOf(this.e)); @@ -24,10 +24,10 @@ public class b { } public void b() { - if (this.f1503c != null) { + if (this.f1504c != null) { a.a(0, "Frame with time", Long.valueOf(this.d), "is being released."); - Object obj = this.f1503c; - this.f1503c = null; + Object obj = this.f1504c; + this.f1504c = null; this.d = -1; c cVar = this.b; if (cVar.b()) { diff --git a/app/src/main/java/c/o/a/p/c.java b/app/src/main/java/c/o/a/p/c.java index f6e1db8f37..c72ae541c8 100644 --- a/app/src/main/java/c/o/a/p/c.java +++ b/app/src/main/java/c/o/a/p/c.java @@ -12,7 +12,7 @@ public abstract class c { public final int b; /* renamed from: c reason: collision with root package name */ - public int f1504c = -1; + public int f1505c = -1; public c.o.a.x.b d = null; public int e = -1; public final Class f; @@ -35,7 +35,7 @@ public abstract class c { c.o.a.n.t.b bVar = c.o.a.n.t.b.SENSOR; aVar.c(bVar, c.o.a.n.t.b.OUTPUT, 2); this.h.c(bVar, c.o.a.n.t.b.VIEW, 2); - poll.f1503c = t; + poll.f1504c = t; poll.d = j; poll.e = j; return poll; @@ -60,7 +60,7 @@ public abstract class c { } a.a(1, "release: Clearing the frame and buffer queue."); this.g.clear(); - this.f1504c = -1; + this.f1505c = -1; this.d = null; this.e = -1; this.h = null; @@ -69,7 +69,7 @@ public abstract class c { public void e(int i, @NonNull c.o.a.x.b bVar, @NonNull a aVar) { this.d = bVar; this.e = i; - this.f1504c = (int) Math.ceil(((double) ((long) ((bVar.j * bVar.i) * ImageFormat.getBitsPerPixel(i)))) / 8.0d); + this.f1505c = (int) Math.ceil(((double) ((long) ((bVar.j * bVar.i) * ImageFormat.getBitsPerPixel(i)))) / 8.0d); for (int i2 = 0; i2 < this.b; i2++) { this.g.offer(new b(this)); } diff --git a/app/src/main/java/c/o/a/q/c.java b/app/src/main/java/c/o/a/q/c.java index 8497c68cb3..214a00faad 100644 --- a/app/src/main/java/c/o/a/q/c.java +++ b/app/src/main/java/c/o/a/q/c.java @@ -10,16 +10,16 @@ public abstract class c { public a b; /* renamed from: c reason: collision with root package name */ - public PointF[] f1505c; + public PointF[] f1506c; /* compiled from: GestureFinder */ public interface a { } public c(@NonNull a aVar, int i) { - this.f1505c = new PointF[i]; + this.f1506c = new PointF[i]; for (int i2 = 0; i2 < i; i2++) { - this.f1505c[i2] = new PointF(0.0f, 0.0f); + this.f1506c[i2] = new PointF(0.0f, 0.0f); } } diff --git a/app/src/main/java/c/o/a/q/e.java b/app/src/main/java/c/o/a/q/e.java index d24f3671e8..2fe3b0ac2b 100644 --- a/app/src/main/java/c/o/a/q/e.java +++ b/app/src/main/java/c/o/a/q/e.java @@ -45,12 +45,12 @@ public class e extends c { } this.d.onTouchEvent(motionEvent); if (this.e) { - this.f1505c[0].x = motionEvent.getX(0); - this.f1505c[0].y = motionEvent.getY(0); + this.f1506c[0].x = motionEvent.getX(0); + this.f1506c[0].y = motionEvent.getY(0); z2 = true; if (motionEvent.getPointerCount() > 1) { - this.f1505c[1].x = motionEvent.getX(1); - this.f1505c[1].y = motionEvent.getY(1); + this.f1506c[1].x = motionEvent.getX(1); + this.f1506c[1].y = motionEvent.getY(1); } } return z2; diff --git a/app/src/main/java/c/o/a/q/f.java b/app/src/main/java/c/o/a/q/f.java index 056c7d6d37..6f66cfff40 100644 --- a/app/src/main/java/c/o/a/q/f.java +++ b/app/src/main/java/c/o/a/q/f.java @@ -34,14 +34,14 @@ public class f extends c { if (motionEvent == null || motionEvent2 == null) { return false; } - if (motionEvent.getX() == f.this.f1505c[0].x) { + if (motionEvent.getX() == f.this.f1506c[0].x) { float y2 = motionEvent.getY(); f fVar = f.this; - if (y2 == fVar.f1505c[0].y) { + if (y2 == fVar.f1506c[0].y) { if (fVar.b == aVar) { z2 = true; } - f.this.f1505c[1].set(motionEvent2.getX(), motionEvent2.getY()); + f.this.f1506c[1].set(motionEvent2.getX(), motionEvent2.getY()); f fVar2 = f.this; c.a aVar2 = this.i; fVar2.g = !z2 ? f / ((float) CameraView.this.getWidth()) : f2 / ((float) CameraView.this.getHeight()); @@ -57,9 +57,9 @@ public class f extends c { aVar = a.SCROLL_VERTICAL; } fVar4.b = aVar; - fVar4.f1505c[0].set(motionEvent.getX(), motionEvent.getY()); + fVar4.f1506c[0].set(motionEvent.getX(), motionEvent.getY()); z2 = z3; - f.this.f1505c[1].set(motionEvent2.getX(), motionEvent2.getY()); + f.this.f1506c[1].set(motionEvent2.getX(), motionEvent2.getY()); f fVar2 = f.this; c.a aVar2 = this.i; fVar2.g = !z2 ? f / ((float) CameraView.this.getWidth()) : f2 / ((float) CameraView.this.getHeight()); diff --git a/app/src/main/java/c/o/a/q/g.java b/app/src/main/java/c/o/a/q/g.java index e794ac69c3..3fc93ff33f 100644 --- a/app/src/main/java/c/o/a/q/g.java +++ b/app/src/main/java/c/o/a/q/g.java @@ -51,8 +51,8 @@ public class g extends c { if (!this.e) { return false; } - this.f1505c[0].x = motionEvent.getX(); - this.f1505c[0].y = motionEvent.getY(); + this.f1506c[0].x = motionEvent.getX(); + this.f1506c[0].y = motionEvent.getY(); return true; } } diff --git a/app/src/main/java/c/o/a/r/c.java b/app/src/main/java/c/o/a/r/c.java index bdc79e0cc0..dd14d1ec82 100644 --- a/app/src/main/java/c/o/a/r/c.java +++ b/app/src/main/java/c/o/a/r/c.java @@ -15,7 +15,7 @@ public class c { @NonNull /* renamed from: c reason: collision with root package name */ - public c.o.a.o.b f1506c = new c.o.a.o.c(); + public c.o.a.o.b f1507c = new c.o.a.o.c(); public c.o.a.o.b d = null; public int e = -1; @@ -26,12 +26,12 @@ public class c { public void a(long j) { if (this.d != null) { b(); - this.f1506c = this.d; + this.f1507c = this.d; this.d = null; } if (this.e == -1) { - String c2 = this.f1506c.c(); - String h = this.f1506c.h(); + String c2 = this.f1507c.c(); + String h = this.f1507c.h(); m.checkNotNullParameter(c2, "vertexShaderSource"); m.checkNotNullParameter(h, "fragmentShaderSource"); c.o.b.d.c[] cVarArr = {new c.o.b.d.c(f.n, c2), new c.o.b.d.c(f.o, h)}; @@ -50,12 +50,12 @@ public class c { int i3 = f.a; if (i2 == 1) { this.e = r0; - this.f1506c.j(r0); + this.f1507c.j(r0); d.b("program creation"); } else { - StringBuilder P = a.P("Could not link program: "); - P.append(GLES20.glGetProgramInfoLog(r0)); - String sb = P.toString(); + StringBuilder O = a.O("Could not link program: "); + O.append(GLES20.glGetProgramInfoLog(r0)); + String sb = O.toString(); GLES20.glDeleteProgram(r0); throw new RuntimeException(sb); } @@ -66,7 +66,7 @@ public class c { GLES20.glUseProgram(this.e); d.b("glUseProgram(handle)"); this.a.a(); - this.f1506c.e(j, this.b); + this.f1507c.e(j, this.b); this.a.b(); GLES20.glUseProgram(0); d.b("glUseProgram(0)"); @@ -74,7 +74,7 @@ public class c { public void b() { if (this.e != -1) { - this.f1506c.f(); + this.f1507c.f(); GLES20.glDeleteProgram(this.e); this.e = -1; } diff --git a/app/src/main/java/c/o/a/r/f.java b/app/src/main/java/c/o/a/r/f.java index d60bb4d0de..1a1a32a4ab 100644 --- a/app/src/main/java/c/o/a/r/f.java +++ b/app/src/main/java/c/o/a/r/f.java @@ -17,7 +17,7 @@ public class f { public final Context b; /* renamed from: c reason: collision with root package name */ - public final c f1507c; + public final c f1508c; @VisibleForTesting public final OrientationEventListener d; public int e = -1; @@ -59,23 +59,23 @@ public class f { fVar = f.this; if (i2 == fVar.e) { fVar.e = i2; - CameraView.b bVar = (CameraView.b) fVar.f1507c; + CameraView.b bVar = (CameraView.b) fVar.f1508c; bVar.b.a(1, "onDeviceOrientationChanged", Integer.valueOf(i2)); CameraView cameraView = CameraView.this; int i3 = cameraView.w.g; if (!cameraView.l) { int i4 = (360 - i3) % 360; - c.o.a.n.t.a e = cameraView.f2482x.e(); + c.o.a.n.t.a e = cameraView.f2485x.e(); e.e(i4); e.e = i4; e.d(); } else { - c.o.a.n.t.a e2 = cameraView.f2482x.e(); + c.o.a.n.t.a e2 = cameraView.f2485x.e(); e2.e(i2); e2.e = i2; e2.d(); } - CameraView.this.f2481s.post(new j(bVar, (i2 + i3) % 360)); + CameraView.this.f2484s.post(new j(bVar, (i2 + i3) % 360)); return; } return; @@ -105,7 +105,7 @@ public class f { if (a != i2) { f.this.g = a; boolean z2 = Math.abs(a - i2) != 180; - CameraView.b bVar = (CameraView.b) f.this.f1507c; + CameraView.b bVar = (CameraView.b) f.this.f1508c; bVar.b.a(1, "onDisplayOffsetChanged", Integer.valueOf(a), "recreate:", Boolean.valueOf(z2)); if (CameraView.this.d() && !z2) { bVar.b.a(2, "onDisplayOffsetChanged", "restarting the camera."); @@ -126,7 +126,7 @@ public class f { public f(@NonNull Context context, @NonNull c cVar) { this.b = context; - this.f1507c = cVar; + this.f1508c = cVar; this.d = new a(context.getApplicationContext(), 3); this.f = new b(); } diff --git a/app/src/main/java/c/o/a/r/g.java b/app/src/main/java/c/o/a/r/g.java index 31000e157b..5a240937cb 100644 --- a/app/src/main/java/c/o/a/r/g.java +++ b/app/src/main/java/c/o/a/r/g.java @@ -13,7 +13,7 @@ public class g { public static final ConcurrentHashMap> b = new ConcurrentHashMap<>(4); /* renamed from: c reason: collision with root package name */ - public static g f1508c; + public static g f1509c; public String d; public HandlerThread e; public Handler f = new Handler(this.e.getLooper()); @@ -73,7 +73,7 @@ public class g { public static void a(@NonNull Runnable runnable) { g b2 = b("FallbackCameraThread"); - f1508c = b2; + f1509c = b2; b2.f.post(runnable); } diff --git a/app/src/main/java/c/o/a/u/b.java b/app/src/main/java/c/o/a/u/b.java index 95615b539f..2fdcc2fd19 100644 --- a/app/src/main/java/c/o/a/u/b.java +++ b/app/src/main/java/c/o/a/u/b.java @@ -12,7 +12,7 @@ public class b { public a b; /* renamed from: c reason: collision with root package name */ - public SurfaceTexture f1509c; + public SurfaceTexture f1510c; public Surface d; @VisibleForTesting public c e; @@ -23,9 +23,9 @@ public class b { this.b = aVar; this.e = new c(new c.o.b.f.b(33984, 36197, null, 4)); SurfaceTexture surfaceTexture = new SurfaceTexture(this.e.a.a); - this.f1509c = surfaceTexture; + this.f1510c = surfaceTexture; surfaceTexture.setDefaultBufferSize(bVar.i, bVar.j); - this.d = new Surface(this.f1509c); + this.d = new Surface(this.f1510c); this.f = new e(this.e.a.a); } } diff --git a/app/src/main/java/c/o/a/u/c.java b/app/src/main/java/c/o/a/u/c.java index ca5d28e763..bea8db53b7 100644 --- a/app/src/main/java/c/o/a/u/c.java +++ b/app/src/main/java/c/o/a/u/c.java @@ -26,7 +26,7 @@ public class c extends FrameLayout implements a { public boolean b = false; /* renamed from: c reason: collision with root package name */ - public boolean f1510c = false; + public boolean f1511c = false; public a(@NonNull Context context, @NonNull AttributeSet attributeSet) { super(context, attributeSet); @@ -34,7 +34,7 @@ public class c extends FrameLayout implements a { try { this.a = obtainStyledAttributes.getBoolean(R.c.CameraView_Layout_layout_drawOnPreview, false); this.b = obtainStyledAttributes.getBoolean(R.c.CameraView_Layout_layout_drawOnPictureSnapshot, false); - this.f1510c = obtainStyledAttributes.getBoolean(R.c.CameraView_Layout_layout_drawOnVideoSnapshot, false); + this.f1511c = obtainStyledAttributes.getBoolean(R.c.CameraView_Layout_layout_drawOnVideoSnapshot, false); } finally { obtainStyledAttributes.recycle(); } @@ -42,19 +42,19 @@ public class c extends FrameLayout implements a { @VisibleForTesting public boolean a(@NonNull a.EnumC0171a aVar) { - return (aVar == a.EnumC0171a.PREVIEW && this.a) || (aVar == a.EnumC0171a.VIDEO_SNAPSHOT && this.f1510c) || (aVar == a.EnumC0171a.PICTURE_SNAPSHOT && this.b); + return (aVar == a.EnumC0171a.PREVIEW && this.a) || (aVar == a.EnumC0171a.VIDEO_SNAPSHOT && this.f1511c) || (aVar == a.EnumC0171a.PICTURE_SNAPSHOT && this.b); } @Override // java.lang.Object @NonNull public String toString() { StringBuilder sb = new StringBuilder(); - c.d.b.a.a.g0(a.class, sb, "[drawOnPreview:"); + c.d.b.a.a.f0(a.class, sb, "[drawOnPreview:"); sb.append(this.a); sb.append(",drawOnPictureSnapshot:"); sb.append(this.b); sb.append(",drawOnVideoSnapshot:"); - return c.d.b.a.a.L(sb, this.f1510c, "]"); + return c.d.b.a.a.K(sb, this.f1511c, "]"); } } diff --git a/app/src/main/java/c/o/a/v/a.java b/app/src/main/java/c/o/a/v/a.java index 819b77233c..e14b241109 100644 --- a/app/src/main/java/c/o/a/v/a.java +++ b/app/src/main/java/c/o/a/v/a.java @@ -57,7 +57,7 @@ public class a extends c { } l.a aVar = a.this.i; aVar.f = bArr; - aVar.f1476c = i; + aVar.f1477c = i; c.l.a(1, "take(): starting preview again. ", Thread.currentThread()); if (a.this.n.m.f.f(e.PREVIEW)) { camera.setPreviewCallbackWithBuffer(a.this.n); @@ -80,7 +80,7 @@ public class a extends c { this.n = bVar; this.m = camera; Camera.Parameters parameters = camera.getParameters(); - parameters.setRotation(this.i.f1476c); + parameters.setRotation(this.i.f1477c); camera.setParameters(parameters); } diff --git a/app/src/main/java/c/o/a/v/b.java b/app/src/main/java/c/o/a/v/b.java index 85f679fe4d..09e43d2b95 100644 --- a/app/src/main/java/c/o/a/v/b.java +++ b/app/src/main/java/c/o/a/v/b.java @@ -41,10 +41,10 @@ public class b extends c implements ImageReader.OnImageAvailableListener { int i; b bVar = b.this; if (bVar.i.g == j.DNG) { - bVar.q = new DngCreator(((d) cVar).f1483f0, totalCaptureResult); + bVar.q = new DngCreator(((d) cVar).f1484f0, totalCaptureResult); b bVar2 = b.this; DngCreator dngCreator = bVar2.q; - int i2 = bVar2.i.f1476c; + int i2 = bVar2.i.f1477c; int i3 = (i2 + 360) % 360; if (i3 == 0) { i = 1; @@ -81,13 +81,13 @@ public class b extends c implements ImageReader.OnImageAvailableListener { @Override // c.o.a.n.o.e public void j(@NonNull c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; b bVar = b.this; bVar.p.addTarget(bVar.o.getSurface()); b bVar2 = b.this; l.a aVar = bVar2.i; if (aVar.g == j.JPEG) { - bVar2.p.set(CaptureRequest.JPEG_ORIENTATION, Integer.valueOf(aVar.f1476c)); + bVar2.p.set(CaptureRequest.JPEG_ORIENTATION, Integer.valueOf(aVar.f1477c)); } b.this.p.setTag(2); try { @@ -108,7 +108,7 @@ public class b extends c implements ImageReader.OnImageAvailableListener { this.p = builder; this.o = imageReader; g b = g.b("FallbackCameraThread"); - g.f1508c = b; + g.f1509c = b; imageReader.setOnImageAvailableListener(this, b.f); } @@ -124,7 +124,7 @@ public class b extends c implements ImageReader.OnImageAvailableListener { buffer.get(bArr); l.a aVar = this.i; aVar.f = bArr; - aVar.f1476c = 0; + aVar.f1477c = 0; try { int attributeInt = new ExifInterface(new ByteArrayInputStream(this.i.f)).getAttributeInt(ExifInterface.TAG_ORIENTATION, 1); l.a aVar2 = this.i; @@ -142,7 +142,7 @@ public class b extends c implements ImageReader.OnImageAvailableListener { i = 270; break; } - aVar2.f1476c = i; + aVar2.f1477c = i; } catch (IOException unused) { } } diff --git a/app/src/main/java/c/o/a/v/d.java b/app/src/main/java/c/o/a/v/d.java index c8dd32fa79..1e5ac714d2 100644 --- a/app/src/main/java/c/o/a/v/d.java +++ b/app/src/main/java/c/o/a/v/d.java @@ -34,12 +34,12 @@ public abstract class d { boolean z4 = !z2; CameraView.b bVar = (CameraView.b) ((g) aVar).l; if (z4 && (z3 = (cameraView = CameraView.this).k) && z3) { - if (cameraView.f2484z == null) { - cameraView.f2484z = new MediaActionSound(); + if (cameraView.f2487z == null) { + cameraView.f2487z = new MediaActionSound(); } - cameraView.f2484z.play(0); + cameraView.f2487z.play(0); } - CameraView.this.f2481s.post(new h(bVar)); + CameraView.this.f2484s.post(new h(bVar)); } } diff --git a/app/src/main/java/c/o/a/v/e.java b/app/src/main/java/c/o/a/v/e.java index 770e07745d..38e141821a 100644 --- a/app/src/main/java/c/o/a/v/e.java +++ b/app/src/main/java/c/o/a/v/e.java @@ -87,7 +87,7 @@ public class e extends i { aVar.f = byteArray; aVar.d = new c.o.a.x.b(v.width(), v.height()); e eVar = e.this; - eVar.i.f1476c = 0; + eVar.i.f1477c = 0; eVar.b(); } } @@ -100,7 +100,7 @@ public class e extends i { e.this.a(false); e eVar = e.this; l.a aVar = eVar.i; - int i = aVar.f1476c; + int i = aVar.f1477c; c.o.a.x.b bVar = aVar.d; c.o.a.x.b C = eVar.m.C(c.o.a.n.t.b.SENSOR); if (C != null) { diff --git a/app/src/main/java/c/o/a/v/f.java b/app/src/main/java/c/o/a/v/f.java index 257625474b..3568f07890 100644 --- a/app/src/main/java/c/o/a/v/f.java +++ b/app/src/main/java/c/o/a/v/f.java @@ -17,7 +17,7 @@ import java.util.Arrays; public class f extends g { /* renamed from: s reason: collision with root package name */ - public final c.o.a.n.o.a f1511s; + public final c.o.a.n.o.a f1512s; public final c.o.a.n.o.c t; public final boolean u; public Integer v; @@ -56,11 +56,11 @@ public class f extends g { @Override // c.o.a.n.o.e public void j(@NonNull c.o.a.n.o.c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; i.l.a(1, "FlashAction:", "Parameters locked, opening torch."); - ((d) cVar).f1485h0.set(CaptureRequest.FLASH_MODE, 2); + ((d) cVar).f1486h0.set(CaptureRequest.FLASH_MODE, 2); d dVar = (d) cVar; - dVar.f1485h0.set(CaptureRequest.CONTROL_AE_MODE, 1); + dVar.f1486h0.set(CaptureRequest.CONTROL_AE_MODE, 1); dVar.k1(); } } @@ -72,10 +72,10 @@ public class f extends g { @Override // c.o.a.n.o.e public void j(@NonNull c.o.a.n.o.c cVar) { - this.f1494c = cVar; + this.f1495c = cVar; try { i.l.a(1, "ResetFlashAction:", "Reverting the flash changes."); - CaptureRequest.Builder builder = ((d) cVar).f1485h0; + CaptureRequest.Builder builder = ((d) cVar).f1486h0; builder.set(CaptureRequest.CONTROL_AE_MODE, 1); builder.set(CaptureRequest.FLASH_MODE, 0); ((d) cVar).e1(this, builder); @@ -88,14 +88,14 @@ public class f extends g { } public f(@NonNull l.a aVar, @NonNull d dVar, @NonNull c.o.a.w.e eVar, @NonNull c.o.a.x.a aVar2) { - super(aVar, dVar, eVar, aVar2, dVar.f1489b0); + super(aVar, dVar, eVar, aVar2, dVar.f1490b0); this.t = dVar; boolean z2 = false; Integer num = null; h hVar = new h(Arrays.asList(new i(2500, new c.o.a.n.p.d()), new b(this, null))); - this.f1511s = hVar; + this.f1512s = hVar; hVar.f(new a()); - TotalCaptureResult totalCaptureResult = dVar.f1486i0; + TotalCaptureResult totalCaptureResult = dVar.f1487i0; if (totalCaptureResult == null) { i.l.a(2, "Picture snapshot requested very early, before the first preview frame.", "Metering might not work as intended."); } @@ -104,8 +104,8 @@ public class f extends g { z2 = true; } this.u = z2; - this.v = (Integer) dVar.f1485h0.get(CaptureRequest.CONTROL_AE_MODE); - this.w = (Integer) dVar.f1485h0.get(CaptureRequest.FLASH_MODE); + this.v = (Integer) dVar.f1486h0.get(CaptureRequest.CONTROL_AE_MODE); + this.w = (Integer) dVar.f1486h0.get(CaptureRequest.FLASH_MODE); } public static /* synthetic */ void d(f fVar) { @@ -126,6 +126,6 @@ public class f extends g { return; } i.l.a(1, "take:", "Engine needs flash. Starting action"); - this.f1511s.e(this.t); + this.f1512s.e(this.t); } } diff --git a/app/src/main/java/c/o/a/v/h.java b/app/src/main/java/c/o/a/v/h.java index 052c098970..3166567f2b 100644 --- a/app/src/main/java/c/o/a/v/h.java +++ b/app/src/main/java/c/o/a/v/h.java @@ -65,7 +65,7 @@ public class h implements Runnable { surfaceTexture2.setDefaultBufferSize(bVar.i, bVar.j); a aVar = new a(eGLContext, 1); c.o.b.e.b bVar2 = new c.o.b.e.b(aVar, surfaceTexture2); - a aVar2 = bVar2.f1520c; + a aVar2 = bVar2.f1521c; e eVar = bVar2.d; Objects.requireNonNull(aVar2); m.checkNotNullParameter(eVar, "eglSurface"); @@ -82,7 +82,7 @@ public class h implements Runnable { Matrix.translateM(fArr, 0, (1.0f - f) / 2.0f, (1.0f - f2) / 2.0f, 0.0f); Matrix.scaleM(fArr, 0, f, f2, 1.0f); Matrix.translateM(fArr, 0, 0.5f, 0.5f, 0.0f); - Matrix.rotateM(fArr, 0, (float) (i + gVar.i.f1476c), 0.0f, 0.0f, 1.0f); + Matrix.rotateM(fArr, 0, (float) (i + gVar.i.f1477c), 0.0f, 0.0f, 1.0f); Matrix.scaleM(fArr, 0, 1.0f, -1.0f, 1.0f); Matrix.translateM(fArr, 0, -0.5f, -0.5f, 0.0f); if (gVar.p) { @@ -99,15 +99,15 @@ public class h implements Runnable { } synchronized (bVar4.g) { GLES20.glBindTexture(36197, bVar4.f.a); - bVar4.f1509c.updateTexImage(); + bVar4.f1510c.updateTexImage(); } - bVar4.f1509c.getTransformMatrix(bVar4.e.b); + bVar4.f1510c.getTransformMatrix(bVar4.e.b); Matrix.translateM(gVar.q.e.b, 0, 0.5f, 0.5f, 0.0f); - Matrix.rotateM(gVar.q.e.b, 0, (float) gVar.i.f1476c, 0.0f, 0.0f, 1.0f); + Matrix.rotateM(gVar.q.e.b, 0, (float) gVar.i.f1477c, 0.0f, 0.0f, 1.0f); Matrix.scaleM(gVar.q.e.b, 0, 1.0f, -1.0f, 1.0f); Matrix.translateM(gVar.q.e.b, 0, -0.5f, -0.5f, 0.0f); } - gVar.i.f1476c = 0; + gVar.i.f1477c = 0; long timestamp = surfaceTexture.getTimestamp() / 1000; i.l.a(1, "takeFrame:", "timestampUs:", Long.valueOf(timestamp)); gVar.r.a(timestamp); @@ -131,12 +131,12 @@ public class h implements Runnable { m.checkNotNullExpressionValue(byteArray, "it.toByteArray()"); d0.y.b.closeFinally(byteArrayOutputStream, null); aVar4.f = byteArray; - c.o.b.a.a aVar5 = bVar2.f1520c; + c.o.b.a.a aVar5 = bVar2.f1521c; e eVar2 = bVar2.d; Objects.requireNonNull(aVar5); m.checkNotNullParameter(eVar2, "eglSurface"); EGL14.eglDestroySurface(aVar5.a.a, eVar2.a); - bVar2.d = d.f1515c; + bVar2.d = d.f1516c; bVar2.b = -1; bVar2.a = -1; gVar.r.b(); @@ -150,10 +150,10 @@ public class h implements Runnable { } else { r3 = 0; } - SurfaceTexture surfaceTexture3 = bVar6.f1509c; + SurfaceTexture surfaceTexture3 = bVar6.f1510c; if (surfaceTexture3 != null) { surfaceTexture3.release(); - bVar6.f1509c = r3; + bVar6.f1510c = r3; } Surface surface = bVar6.d; if (surface != null) { diff --git a/app/src/main/java/c/o/a/w/a.java b/app/src/main/java/c/o/a/w/a.java index 1584581479..d68783d2b3 100644 --- a/app/src/main/java/c/o/a/w/a.java +++ b/app/src/main/java/c/o/a/w/a.java @@ -22,7 +22,7 @@ public abstract class a { public c b; /* renamed from: c reason: collision with root package name */ - public T f1512c; + public T f1513c; public boolean d; public int e; public int f; @@ -60,7 +60,7 @@ public abstract class a { } public a(@NonNull Context context, @NonNull ViewGroup viewGroup) { - this.f1512c = n(context, viewGroup); + this.f1513c = n(context, viewGroup); } public void e(@Nullable b bVar) { diff --git a/app/src/main/java/c/o/a/w/d.java b/app/src/main/java/c/o/a/w/d.java index e7368a3963..cf35f8ba87 100644 --- a/app/src/main/java/c/o/a/w/d.java +++ b/app/src/main/java/c/o/a/w/d.java @@ -95,7 +95,7 @@ public class d extends a implements b, e { @Override // android.graphics.SurfaceTexture.OnFrameAvailableListener public void onFrameAvailable(SurfaceTexture surfaceTexture) { - ((GLSurfaceView) d.this.f1512c).requestRender(); + ((GLSurfaceView) d.this.f1513c).requestRender(); } } @@ -155,7 +155,7 @@ public class d extends a implements b, e { cVar.d = dVar2.q; int i = cVar.a.a; dVar2.k = new SurfaceTexture(i); - ((GLSurfaceView) d.this.f1512c).queueEvent(new a(i)); + ((GLSurfaceView) d.this.f1513c).queueEvent(new a(i)); d.this.k.setOnFrameAvailableListener(new b()); } } @@ -170,12 +170,12 @@ public class d extends a implements b, e { if (m()) { bVar.k(this.e, this.f); } - ((GLSurfaceView) this.f1512c).queueEvent(new b(bVar)); + ((GLSurfaceView) this.f1513c).queueEvent(new b(bVar)); } @Override // c.o.a.w.e public void b(@NonNull f fVar) { - ((GLSurfaceView) this.f1512c).queueEvent(new a(fVar)); + ((GLSurfaceView) this.f1513c).queueEvent(new a(fVar)); } @Override // c.o.a.w.b @@ -208,7 +208,7 @@ public class d extends a implements b, e { this.d = f2 > 1.02f || f > 1.02f; this.n = 1.0f / f2; this.o = 1.0f / f; - ((GLSurfaceView) this.f1512c).requestRender(); + ((GLSurfaceView) this.f1513c).requestRender(); } } @@ -255,11 +255,11 @@ public class d extends a implements b, e { @Override // c.o.a.w.a public void p() { - ((GLSurfaceView) this.f1512c).onPause(); + ((GLSurfaceView) this.f1513c).onPause(); } @Override // c.o.a.w.a public void q() { - ((GLSurfaceView) this.f1512c).onResume(); + ((GLSurfaceView) this.f1513c).onResume(); } } diff --git a/app/src/main/java/c/o/a/w/h.java b/app/src/main/java/c/o/a/w/h.java index a930b1a5c1..dffae33e6a 100644 --- a/app/src/main/java/c/o/a/w/h.java +++ b/app/src/main/java/c/o/a/w/h.java @@ -23,7 +23,7 @@ public class h extends a { @Override // c.o.a.w.a @NonNull public SurfaceHolder i() { - return ((SurfaceView) this.f1512c).getHolder(); + return ((SurfaceView) this.f1513c).getHolder(); } @Override // c.o.a.w.a diff --git a/app/src/main/java/c/o/a/w/j.java b/app/src/main/java/c/o/a/w/j.java index 2abf0be196..9c4aa29b3f 100644 --- a/app/src/main/java/c/o/a/w/j.java +++ b/app/src/main/java/c/o/a/w/j.java @@ -51,8 +51,8 @@ public class j extends a { f4 = f3.i() / f2.i(); f = 1.0f; } - ((TextureView) j.this.f1512c).setScaleX(f4); - ((TextureView) j.this.f1512c).setScaleY(f); + ((TextureView) j.this.f1513c).setScaleX(f4); + ((TextureView) j.this.f1513c).setScaleY(f); j.this.d = f4 > 1.02f || f > 1.02f; c.o.a.b bVar2 = a.a; bVar2.a(1, "crop:", "applied scaleX=", Float.valueOf(f4)); @@ -87,7 +87,7 @@ public class j extends a { matrix.postScale(f3, 1.0f / f3, f, f2); } matrix.postRotate((float) this.i, f, f2); - ((TextureView) j.this.f1512c).setTransform(matrix); + ((TextureView) j.this.f1513c).setTransform(matrix); this.j.a.t(null); } } @@ -98,14 +98,14 @@ public class j extends a { @Override // c.o.a.w.a public void e(@Nullable a.b bVar) { - ((TextureView) this.f1512c).post(new a(null)); + ((TextureView) this.f1513c).post(new a(null)); } /* Return type fixed from 'java.lang.Object' to match base method */ @Override // c.o.a.w.a @NonNull public SurfaceTexture i() { - return ((TextureView) this.f1512c).getSurfaceTexture(); + return ((TextureView) this.f1513c).getSurfaceTexture(); } @Override // c.o.a.w.a @@ -136,7 +136,7 @@ public class j extends a { public void r(int i) { this.i = i; TaskCompletionSource taskCompletionSource = new TaskCompletionSource(); - ((TextureView) this.f1512c).post(new b(i, taskCompletionSource)); + ((TextureView) this.f1513c).post(new b(i, taskCompletionSource)); try { c.c(taskCompletionSource.a); } catch (InterruptedException | ExecutionException unused) { diff --git a/app/src/main/java/c/o/b/a/a.java b/app/src/main/java/c/o/b/a/a.java index f71f9ea3b1..aff0a3260f 100644 --- a/app/src/main/java/c/o/b/a/a.java +++ b/app/src/main/java/c/o/b/a/a.java @@ -18,7 +18,7 @@ public final class a extends c { c cVar = this.a; c cVar2 = d.b; if (cVar != cVar2) { - e eVar = d.f1515c; + e eVar = d.f1516c; b bVar = d.a; EGLDisplay eGLDisplay = cVar.a; EGLSurface eGLSurface = eVar.a; @@ -29,7 +29,7 @@ public final class a extends c { } this.a = cVar2; this.b = d.a; - this.f1513c = null; + this.f1514c = null; } public final void finalize() { diff --git a/app/src/main/java/c/o/b/a/b.java b/app/src/main/java/c/o/b/a/b.java index b2f06a0dfa..058e709a33 100644 --- a/app/src/main/java/c/o/b/a/b.java +++ b/app/src/main/java/c/o/b/a/b.java @@ -28,7 +28,7 @@ public class b { iArr[7] = 8; iArr[8] = d.p; iArr[9] = d.q | d.r; - iArr[10] = d.f1516s; + iArr[10] = d.f1517s; iArr[11] = i2; iArr[12] = z2 ? EglBase.EGL_RECORDABLE_ANDROID : d.e; iArr[13] = z2 ? 1 : 0; diff --git a/app/src/main/java/c/o/b/a/c.java b/app/src/main/java/c/o/b/a/c.java index 7912fb9409..e4193b0e2c 100644 --- a/app/src/main/java/c/o/b/a/c.java +++ b/app/src/main/java/c/o/b/a/c.java @@ -13,7 +13,7 @@ public class c { public b b = d.a; /* renamed from: c reason: collision with root package name */ - public a f1513c; + public a f1514c; public c(b bVar, int i) { a a; @@ -32,7 +32,7 @@ public class c { b bVar3 = new b(EGL14.eglCreateContext(this.a.a, a.a, bVar.a, new int[]{d.i, 3, d.e}, 0)); try { d.a("eglCreateContext (3)"); - this.f1513c = a; + this.f1514c = a; this.b = bVar3; } catch (Exception unused) { } @@ -42,7 +42,7 @@ public class c { if (a2 != null) { b bVar4 = new b(EGL14.eglCreateContext(this.a.a, a2.a, bVar.a, new int[]{d.i, 2, d.e}, 0)); d.a("eglCreateContext (2)"); - this.f1513c = a2; + this.f1514c = a2; this.b = bVar4; return; } diff --git a/app/src/main/java/c/o/b/a/d.java b/app/src/main/java/c/o/b/a/d.java index 83c3b09bec..e472641fd4 100644 --- a/app/src/main/java/c/o/b/a/d.java +++ b/app/src/main/java/c/o/b/a/d.java @@ -25,11 +25,11 @@ public final class d { m.checkNotNullParameter(str, "opName"); int eglGetError = EGL14.eglGetError(); if (eglGetError != c.o.b.c.d.d) { - StringBuilder V = a.V("Error during ", str, ": EGL error 0x"); + StringBuilder U = a.U("Error during ", str, ": EGL error 0x"); String hexString = Integer.toHexString(eglGetError); m.checkNotNullExpressionValue(hexString, "Integer.toHexString(value)"); - V.append(hexString); - String sb = V.toString(); + U.append(hexString); + String sb = U.toString(); Log.e("Egloo", sb); throw new RuntimeException(sb); } @@ -40,15 +40,15 @@ public final class d { int r0 = p.m84constructorimpl(GLES20.glGetError()); int i = f.a; if (r0 != 0) { - StringBuilder V = a.V("Error during ", str, ": glError 0x"); + StringBuilder U = a.U("Error during ", str, ": glError 0x"); String hexString = Integer.toHexString(r0); m.checkNotNullExpressionValue(hexString, "Integer.toHexString(value)"); - V.append(hexString); - V.append(": "); + U.append(hexString); + U.append(": "); String gluErrorString = GLU.gluErrorString(r0); m.checkNotNullExpressionValue(gluErrorString, "GLU.gluErrorString(value)"); - V.append(gluErrorString); - String sb = V.toString(); + U.append(gluErrorString); + String sb = U.toString(); Log.e("Egloo", sb); throw new RuntimeException(sb); } diff --git a/app/src/main/java/c/o/b/b/c.java b/app/src/main/java/c/o/b/b/c.java index 785662c3aa..64f7c12ebf 100644 --- a/app/src/main/java/c/o/b/b/c.java +++ b/app/src/main/java/c/o/b/b/c.java @@ -8,11 +8,11 @@ import java.nio.FloatBuffer; public class c extends a { /* renamed from: c reason: collision with root package name */ - public static final float[] f1514c = {-1.0f, -1.0f, 1.0f, -1.0f, -1.0f, 1.0f, 1.0f, 1.0f}; + public static final float[] f1515c = {-1.0f, -1.0f, 1.0f, -1.0f, -1.0f, 1.0f, 1.0f, 1.0f}; public FloatBuffer d; public c() { - float[] fArr = f1514c; + float[] fArr = f1515c; FloatBuffer D = c.i.a.f.e.o.c.D(fArr.length); D.put(fArr); D.clear(); diff --git a/app/src/main/java/c/o/b/c/a.java b/app/src/main/java/c/o/b/c/a.java index cfa36483a2..5721f17584 100644 --- a/app/src/main/java/c/o/b/c/a.java +++ b/app/src/main/java/c/o/b/c/a.java @@ -27,9 +27,9 @@ public final class a { } public String toString() { - StringBuilder P = c.d.b.a.a.P("EglConfig(native="); - P.append(this.a); - P.append(")"); - return P.toString(); + StringBuilder O = c.d.b.a.a.O("EglConfig(native="); + O.append(this.a); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/o/b/c/b.java b/app/src/main/java/c/o/b/c/b.java index 27a0692449..b44c9159f1 100644 --- a/app/src/main/java/c/o/b/c/b.java +++ b/app/src/main/java/c/o/b/c/b.java @@ -27,9 +27,9 @@ public final class b { } public String toString() { - StringBuilder P = a.P("EglContext(native="); - P.append(this.a); - P.append(")"); - return P.toString(); + StringBuilder O = a.O("EglContext(native="); + O.append(this.a); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/o/b/c/c.java b/app/src/main/java/c/o/b/c/c.java index 237ab40bc8..03da6b309d 100644 --- a/app/src/main/java/c/o/b/c/c.java +++ b/app/src/main/java/c/o/b/c/c.java @@ -27,9 +27,9 @@ public final class c { } public String toString() { - StringBuilder P = a.P("EglDisplay(native="); - P.append(this.a); - P.append(")"); - return P.toString(); + StringBuilder O = a.O("EglDisplay(native="); + O.append(this.a); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/o/b/c/d.java b/app/src/main/java/c/o/b/c/d.java index 2d387e82e1..a7e23c5f24 100644 --- a/app/src/main/java/c/o/b/c/d.java +++ b/app/src/main/java/c/o/b/c/d.java @@ -7,7 +7,7 @@ public final class d { public static final c b = new c(EGL14.EGL_NO_DISPLAY); /* renamed from: c reason: collision with root package name */ - public static final e f1515c = new e(EGL14.EGL_NO_SURFACE); + public static final e f1516c = new e(EGL14.EGL_NO_SURFACE); public static final int d = 12288; public static final int e = 12344; public static final int f = 12375; @@ -25,5 +25,5 @@ public final class d { public static final int r = 1; /* renamed from: s reason: collision with root package name */ - public static final int f1516s = 12352; + public static final int f1517s = 12352; } diff --git a/app/src/main/java/c/o/b/c/e.java b/app/src/main/java/c/o/b/c/e.java index 5c6af7561a..6c212fc537 100644 --- a/app/src/main/java/c/o/b/c/e.java +++ b/app/src/main/java/c/o/b/c/e.java @@ -27,9 +27,9 @@ public final class e { } public String toString() { - StringBuilder P = a.P("EglSurface(native="); - P.append(this.a); - P.append(")"); - return P.toString(); + StringBuilder O = a.O("EglSurface(native="); + O.append(this.a); + O.append(")"); + return O.toString(); } } diff --git a/app/src/main/java/c/o/b/c/f.java b/app/src/main/java/c/o/b/c/f.java index 2e4dcbea08..f1f7b53524 100644 --- a/app/src/main/java/c/o/b/c/f.java +++ b/app/src/main/java/c/o/b/c/f.java @@ -8,7 +8,7 @@ public final class f { public static final int b = p.m84constructorimpl(5); /* renamed from: c reason: collision with root package name */ - public static final int f1517c = p.m84constructorimpl(33984); + public static final int f1518c = p.m84constructorimpl(33984); public static final int d = p.m84constructorimpl(36197); public static final int e = p.m84constructorimpl(10241); public static final int f = p.m84constructorimpl(Data.MAX_DATA_BYTES); diff --git a/app/src/main/java/c/o/b/d/a.java b/app/src/main/java/c/o/b/d/a.java index ff7a4dfd9d..fbee307605 100644 --- a/app/src/main/java/c/o/b/d/a.java +++ b/app/src/main/java/c/o/b/d/a.java @@ -7,13 +7,13 @@ public class a { public final int b; /* renamed from: c reason: collision with root package name */ - public final boolean f1518c; + public final boolean f1519c; public final c[] d; public a(int i, boolean z2, c... cVarArr) { m.checkNotNullParameter(cVarArr, "shaders"); this.b = i; - this.f1518c = z2; + this.f1519c = z2; this.d = cVarArr; } } diff --git a/app/src/main/java/c/o/b/d/b.java b/app/src/main/java/c/o/b/d/b.java index 710b66748d..5bce8bd6ae 100644 --- a/app/src/main/java/c/o/b/d/b.java +++ b/app/src/main/java/c/o/b/d/b.java @@ -13,11 +13,11 @@ public final class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final String f1519c; + public final String f1520c; public b(int i, int i2, String str, DefaultConstructorMarker defaultConstructorMarker) { int i3; - this.f1519c = str; + this.f1520c = str; int h = c.c.a.y.b.h(i2); if (h == 0) { i3 = GLES20.glGetAttribLocation(p.m84constructorimpl(i), str); diff --git a/app/src/main/java/c/o/b/d/c.java b/app/src/main/java/c/o/b/d/c.java index ecf45a5140..5a567036e0 100644 --- a/app/src/main/java/c/o/b/d/c.java +++ b/app/src/main/java/c/o/b/d/c.java @@ -29,11 +29,11 @@ public final class c { this.b = r0; return; } - StringBuilder Q = c.d.b.a.a.Q("Could not compile shader ", i, ": '"); - Q.append(GLES20.glGetShaderInfoLog(r0)); - Q.append("' source: "); - Q.append(str); - String sb = Q.toString(); + StringBuilder P = c.d.b.a.a.P("Could not compile shader ", i, ": '"); + P.append(GLES20.glGetShaderInfoLog(r0)); + P.append("' source: "); + P.append(str); + String sb = P.toString(); GLES20.glDeleteShader(r0); throw new RuntimeException(sb); } diff --git a/app/src/main/java/c/o/b/e/a.java b/app/src/main/java/c/o/b/e/a.java index a582283597..8be12a76af 100644 --- a/app/src/main/java/c/o/b/e/a.java +++ b/app/src/main/java/c/o/b/e/a.java @@ -17,7 +17,7 @@ public abstract class a { public int b = -1; /* renamed from: c reason: collision with root package name */ - public c.o.b.a.a f1520c; + public c.o.b.a.a f1521c; public e d; public a(c.o.b.a.a aVar, e eVar) { @@ -25,25 +25,25 @@ public abstract class a { m.checkNotNullParameter(eVar, "eglSurface"); m.checkNotNullParameter(aVar, "eglCore"); m.checkNotNullParameter(eVar, "eglSurface"); - this.f1520c = aVar; + this.f1521c = aVar; this.d = eVar; } public final void a(OutputStream outputStream, Bitmap.CompressFormat compressFormat) { m.checkNotNullParameter(outputStream, "stream"); m.checkNotNullParameter(compressFormat, "format"); - c.o.b.a.a aVar = this.f1520c; + c.o.b.a.a aVar = this.f1521c; e eVar = this.d; Objects.requireNonNull(aVar); m.checkNotNullParameter(eVar, "eglSurface"); if (m.areEqual(aVar.b, new b(EGL14.eglGetCurrentContext())) && m.areEqual(eVar, new e(EGL14.eglGetCurrentSurface(d.h)))) { int i = this.a; if (i < 0) { - i = this.f1520c.a(this.d, d.f); + i = this.f1521c.a(this.d, d.f); } int i2 = this.b; if (i2 < 0) { - i2 = this.f1520c.a(this.d, d.g); + i2 = this.f1521c.a(this.d, d.g); } ByteBuffer allocateDirect = ByteBuffer.allocateDirect(i * i2 * 4); allocateDirect.order(ByteOrder.LITTLE_ENDIAN); diff --git a/app/src/main/java/c/o/b/e/b.java b/app/src/main/java/c/o/b/e/b.java index 46848a6d1f..8d1b291c75 100644 --- a/app/src/main/java/c/o/b/e/b.java +++ b/app/src/main/java/c/o/b/e/b.java @@ -17,11 +17,11 @@ public class b extends a { m.checkNotNullParameter(surfaceTexture, "surface"); int[] iArr = {d.e}; c cVar = aVar.a; - c.o.b.c.a aVar2 = aVar.f1513c; + c.o.b.c.a aVar2 = aVar.f1514c; m.checkNotNull(aVar2); e eVar = new e(EGL14.eglCreateWindowSurface(cVar.a, aVar2.a, surfaceTexture, iArr, 0)); c.o.b.a.d.a("eglCreateWindowSurface"); - if (eVar != d.f1515c) { + if (eVar != d.f1516c) { m.checkNotNullParameter(aVar, "eglCore"); m.checkNotNullParameter(eVar, "eglSurface"); return; diff --git a/app/src/main/java/c/o/b/f/a.java b/app/src/main/java/c/o/b/f/a.java index e488ca2638..916d4d48f6 100644 --- a/app/src/main/java/c/o/b/f/a.java +++ b/app/src/main/java/c/o/b/f/a.java @@ -25,15 +25,15 @@ public final class a extends o implements Function0 { public Unit mo1invoke() { b bVar = this.this$0; if (!(bVar.d == null || bVar.e == null || bVar.f == null || this.$internalFormat == null || bVar.g == null)) { - GLES20.glTexImage2D(p.m84constructorimpl(bVar.f1521c), 0, this.$internalFormat.intValue(), this.this$0.d.intValue(), this.this$0.e.intValue(), 0, p.m84constructorimpl(this.this$0.f.intValue()), p.m84constructorimpl(this.this$0.g.intValue()), null); + GLES20.glTexImage2D(p.m84constructorimpl(bVar.f1522c), 0, this.$internalFormat.intValue(), this.this$0.d.intValue(), this.this$0.e.intValue(), 0, p.m84constructorimpl(this.this$0.f.intValue()), p.m84constructorimpl(this.this$0.g.intValue()), null); } - GLES20.glTexParameterf(p.m84constructorimpl(this.this$0.f1521c), f.e, f.j); - GLES20.glTexParameterf(p.m84constructorimpl(this.this$0.f1521c), f.f, f.k); - int r0 = p.m84constructorimpl(this.this$0.f1521c); + GLES20.glTexParameterf(p.m84constructorimpl(this.this$0.f1522c), f.e, f.j); + GLES20.glTexParameterf(p.m84constructorimpl(this.this$0.f1522c), f.f, f.k); + int r0 = p.m84constructorimpl(this.this$0.f1522c); int i = f.g; int i2 = f.i; GLES20.glTexParameteri(r0, i, i2); - GLES20.glTexParameteri(p.m84constructorimpl(this.this$0.f1521c), f.h, i2); + GLES20.glTexParameteri(p.m84constructorimpl(this.this$0.f1522c), f.h, i2); d.b("glTexParameter"); return Unit.a; } diff --git a/app/src/main/java/c/o/b/f/b.java b/app/src/main/java/c/o/b/f/b.java index c3e9d1af41..e2399327e0 100644 --- a/app/src/main/java/c/o/b/f/b.java +++ b/app/src/main/java/c/o/b/f/b.java @@ -12,7 +12,7 @@ public final class b { public final int b; /* renamed from: c reason: collision with root package name */ - public final int f1521c; + public final int f1522c; public final Integer d; public final Integer e; public final Integer f; @@ -21,7 +21,7 @@ public final class b { public b(int i, int i2, Integer num) { int i3; this.b = i; - this.f1521c = i2; + this.f1522c = i2; this.d = null; this.e = null; this.f = null; @@ -55,19 +55,19 @@ public final class b { /* JADX INFO: this call moved to the top of the method (can break code semantics) */ public b(int i, int i2, Integer num, int i3) { - this((i3 & 1) != 0 ? f.f1517c : i, (i3 & 2) != 0 ? f.d : i2, null); + this((i3 & 1) != 0 ? f.f1518c : i, (i3 & 2) != 0 ? f.d : i2, null); int i4 = i3 & 4; } public void a() { GLES20.glActiveTexture(p.m84constructorimpl(this.b)); - GLES20.glBindTexture(p.m84constructorimpl(this.f1521c), p.m84constructorimpl(this.a)); + GLES20.glBindTexture(p.m84constructorimpl(this.f1522c), p.m84constructorimpl(this.a)); d.b("bind"); } public void b() { - GLES20.glBindTexture(p.m84constructorimpl(this.f1521c), p.m84constructorimpl(0)); - GLES20.glActiveTexture(f.f1517c); + GLES20.glBindTexture(p.m84constructorimpl(this.f1522c), p.m84constructorimpl(0)); + GLES20.glActiveTexture(f.f1518c); d.b("unbind"); } } diff --git a/app/src/main/java/c/p/a/b.java b/app/src/main/java/c/p/a/b.java index 203c7cdd83..1d402500ae 100644 --- a/app/src/main/java/c/p/a/b.java +++ b/app/src/main/java/c/p/a/b.java @@ -71,20 +71,20 @@ public final class b extends FrameLayout implements View.OnClickListener, Animat public boolean r; /* renamed from: s reason: collision with root package name */ - public boolean f1522s; + public boolean f1523s; public Runnable t; public boolean u; public ArrayList