commit e62384a9c5459c441155bf5bbe5b3996f7d6ba19 Author: Wiwi Kuan Date: Sun May 10 10:45:02 2026 +0800 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1acdad3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.iml +.gradle +/local.properties +/.idea +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties +*.apk +*.aab +*.keystore +keystore.properties diff --git a/README.md b/README.md new file mode 100644 index 0000000..530f7cf --- /dev/null +++ b/README.md @@ -0,0 +1,150 @@ +# Hoops — Android + +一個籃球小遊戲的 Android 包裝。遊戲本體是純 HTML5 Canvas,這個 app 就是一層全螢幕 WebView 殼。 + +## 為什麼這樣做 + +- **沒有網路權限** — 遊戲完全離線,所有資源都打包在 `assets/` 裡。 +- **沒有第三方追蹤** — 沒有 Google Play Services、沒有 Analytics、沒有任何網路請求。 +- **沒有自定義 Activity 之外的東西** — 整個 app 就一個 `MainActivity.kt`,七十幾行。 +- **F-Droid 友好** — 純開源、無 proprietary 依賴、無外部資源。 + +## 專案結構 + +``` +hoops-android/ +├── app/ +│ ├── build.gradle.kts +│ └── src/main/ +│ ├── AndroidManifest.xml +│ ├── java/blog/wiwi/hoops/MainActivity.kt +│ ├── assets/index.html ← 整個遊戲在這裡 +│ └── res/ ← icon、主題、字串 +├── build.gradle.kts +├── settings.gradle.kts +└── gradle.properties +``` + +**最重要的是 `app/src/main/assets/index.html`**——這是整個遊戲。要改遊戲邏輯,改這個檔案就好,其他 Android 殼層的東西完全不用碰。 + +## 怎麼建置 + +### 第一次 + +1. 安裝 [Android Studio](https://developer.android.com/studio)(或裝 command-line 的 Android SDK) +2. 用 Android Studio 開啟 `hoops-android` 資料夾 +3. 等 Gradle sync 完(第一次會下載一些東西) +4. **產生 Gradle wrapper**——在專案根目錄跑: + ```bash + gradle wrapper --gradle-version 8.7 + ``` + 或在 Android Studio 裡點 `File → Sync Project with Gradle Files`,它會自己生成 `gradlew`、`gradlew.bat`、`gradle/wrapper/gradle-wrapper.jar`。 + +### 建置 debug APK(測試用) + +```bash +./gradlew assembleDebug +``` + +APK 會在 `app/build/outputs/apk/debug/app-debug.apk`,可以直接 adb install 到手機。 + +### 建置 release APK(要簽章) + +先產生 keystore: +```bash +keytool -genkey -v -keystore hoops-release.keystore \ + -alias hoops -keyalg RSA -keysize 2048 -validity 10000 +``` + +建一個 `keystore.properties`(**不要 commit 到 git**): +```properties +storeFile=../hoops-release.keystore +storePassword=你的密碼 +keyAlias=hoops +keyPassword=你的密碼 +``` + +修改 `app/build.gradle.kts`,加上 signing config(看註解的位置)。然後: +```bash +./gradlew assembleRelease +``` + +## 怎麼測 + +### 在電腦上先測網頁版 + +直接在瀏覽器打開 `app/src/main/assets/index.html`——它就是個獨立的 HTML 檔,可以直接跑。 +這是改遊戲邏輯時最快的迭代方式。 + +### 用 Android emulator 測 + +1. Android Studio → Device Manager → 建一個 Pixel 5 之類的 emulator +2. 點綠色 ▶ 跑 + +### 用實機測 + +1. 手機開「開發人員選項」→「USB 偵錯」 +2. USB 接電腦 +3. Android Studio 應該會看到裝置 +4. 點 ▶ 跑 + +## 上 F-Droid 的注意事項 + +F-Droid 會自己從你的 git repo 建置 APK,所以: + +1. **把整個專案推到公開 git repo**(GitHub、Codeberg 都行) +2. **打 git tag** 標版本,例如 `v1.0.0` +3. **送 metadata PR** 到 [fdroiddata](https://gitlab.com/fdroid/fdroiddata),告訴 F-Droid 怎麼建置你的 app + +metadata yml 大致長這樣: +```yaml +Categories: + - Games +License: MIT # 或你選的授權 +SourceCode: https://github.com/你/hoops-android +IssueTracker: https://github.com/你/hoops-android/issues + +AutoName: Hoops + +RepoType: git +Repo: https://github.com/你/hoops-android.git + +Builds: + - versionName: 1.0.0 + versionCode: 1 + commit: v1.0.0 + subdir: app + gradle: + - yes + +AutoUpdateMode: Version +UpdateCheckMode: Tags +CurrentVersion: 1.0.0 +CurrentVersionCode: 1 +``` + +完整文件: + +### F-Droid 會檢查的東西 + +- ❌ 不能依賴 Google Play Services / Firebase +- ❌ 不能有 proprietary 二進位依賴 +- ❌ 不能呼叫追蹤服務(Analytics、Crashlytics 等) +- ✅ 純 OSS 依賴 +- ✅ 從原始碼可重現建置 + +這個專案天生就符合所有條件——只用 androidx,沒有任何 proprietary 東西。 + +## 常見問題 + +**Q: 為什麼不直接做成 PWA?** +A: PWA 也是個好方案,但要上 F-Droid 必須是真正的 Android app。 + +**Q: 改了 `index.html` 怎麼快速看效果?** +A: 雙擊用瀏覽器開那個檔案,直接玩。要看 Android 上的效果再 build。 + +**Q: APK 大概多大?** +A: 約 2–4 MB。幾乎全部是 androidx 的 Kotlin 標準庫。`assets/index.html` 本身不到 30 KB。 + +**Q: 想加新遊戲模式怎麼辦?** +A: 改 `index.html`,重 build。Kotlin 那邊永遠不需要改。 diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..65b063e --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,53 @@ +plugins { + id("com.android.application") + id("org.jetbrains.kotlin.android") +} + +android { + namespace = "blog.wiwi.hoops" + compileSdk = 34 + + defaultConfig { + applicationId = "blog.wiwi.hoops" + minSdk = 24 // Android 7.0+ 才有體面的 WebView 跟 Pointer Events + targetSdk = 34 + versionCode = 1 + versionName = "1.0.0" + } + + buildTypes { + release { + isMinifyEnabled = false + // 不用 proguard,這個 app 程式碼太少,混淆只會徒增 F-Droid 審核難度 + signingConfig = signingConfigs.getByName("debug") // 自己 sign 時請改 + } + } + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = "17" + } + + // 排除一些不必要的東西,把 APK 壓到最小 + packaging { + resources { + excludes += setOf( + "META-INF/*.kotlin_module", + "META-INF/AL2.0", + "META-INF/LGPL2.1", + "kotlin-tooling-metadata.json" + ) + } + } +} + +dependencies { + implementation("androidx.core:core-ktx:1.13.1") + implementation("androidx.activity:activity:1.9.0") + // Splash Screen API:Android 12+ 是系統 splash,舊版會被 backport + implementation("androidx.core:core-splashscreen:1.0.1") +} diff --git a/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/app/build/intermediates/annotation_processor_list/debugAndroidTest/javaPreCompileDebugAndroidTest/annotationProcessors.json b/app/build/intermediates/annotation_processor_list/debugAndroidTest/javaPreCompileDebugAndroidTest/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/app/build/intermediates/annotation_processor_list/debugAndroidTest/javaPreCompileDebugAndroidTest/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/app/build/intermediates/annotation_processor_list/debugUnitTest/javaPreCompileDebugUnitTest/annotationProcessors.json b/app/build/intermediates/annotation_processor_list/debugUnitTest/javaPreCompileDebugUnitTest/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/app/build/intermediates/annotation_processor_list/debugUnitTest/javaPreCompileDebugUnitTest/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/app/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json b/app/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/app/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/app/build/intermediates/apk/debug/output-metadata.json b/app/build/intermediates/apk/debug/output-metadata.json new file mode 100644 index 0000000..c3f7314 --- /dev/null +++ b/app/build/intermediates/apk/debug/output-metadata.json @@ -0,0 +1,21 @@ +{ + "version": 3, + "artifactType": { + "type": "APK", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "app-debug.apk" + } + ], + "elementType": "File", + "minSdkVersionForDexing": 24 +} \ No newline at end of file diff --git a/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt b/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt new file mode 100644 index 0000000..8ed2aa0 --- /dev/null +++ b/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt @@ -0,0 +1,2 @@ +#- File Locator - +listingFile=../../../../outputs/apk/debug/output-metadata.json diff --git a/app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/createDebugAndroidTestApkListingFileRedirect/redirect.txt b/app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/createDebugAndroidTestApkListingFileRedirect/redirect.txt new file mode 100644 index 0000000..84e7ae0 --- /dev/null +++ b/app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/createDebugAndroidTestApkListingFileRedirect/redirect.txt @@ -0,0 +1,2 @@ +#- File Locator - +listingFile=../../../../outputs/apk/androidTest/debug/output-metadata.json diff --git a/app/build/intermediates/apk_ide_redirect_file/release/createReleaseApkListingFileRedirect/redirect.txt b/app/build/intermediates/apk_ide_redirect_file/release/createReleaseApkListingFileRedirect/redirect.txt new file mode 100644 index 0000000..ae71b9d --- /dev/null +++ b/app/build/intermediates/apk_ide_redirect_file/release/createReleaseApkListingFileRedirect/redirect.txt @@ -0,0 +1,2 @@ +#- File Locator - +listingFile=../../../../../release/output-metadata.json diff --git a/app/build/intermediates/app_metadata/debug/writeDebugAppMetadata/app-metadata.properties b/app/build/intermediates/app_metadata/debug/writeDebugAppMetadata/app-metadata.properties new file mode 100644 index 0000000..4560dfa --- /dev/null +++ b/app/build/intermediates/app_metadata/debug/writeDebugAppMetadata/app-metadata.properties @@ -0,0 +1,2 @@ +appMetadataVersion=1.1 +androidGradlePluginVersion=8.13.2 diff --git a/app/build/intermediates/app_metadata/release/writeReleaseAppMetadata/app-metadata.properties b/app/build/intermediates/app_metadata/release/writeReleaseAppMetadata/app-metadata.properties new file mode 100644 index 0000000..4560dfa --- /dev/null +++ b/app/build/intermediates/app_metadata/release/writeReleaseAppMetadata/app-metadata.properties @@ -0,0 +1,2 @@ +appMetadataVersion=1.1 +androidGradlePluginVersion=8.13.2 diff --git a/app/build/intermediates/assets/debug/mergeDebugAssets/index.html b/app/build/intermediates/assets/debug/mergeDebugAssets/index.html new file mode 100644 index 0000000..0d6783a --- /dev/null +++ b/app/build/intermediates/assets/debug/mergeDebugAssets/index.html @@ -0,0 +1,881 @@ + + + + + +Hoops + + + +
+
+ +
by Wiwi Kuan, https://wiwi.blog
+
+
+ + + + diff --git a/app/build/intermediates/assets/release/mergeReleaseAssets/index.html b/app/build/intermediates/assets/release/mergeReleaseAssets/index.html new file mode 100644 index 0000000..0d6783a --- /dev/null +++ b/app/build/intermediates/assets/release/mergeReleaseAssets/index.html @@ -0,0 +1,881 @@ + + + + + +Hoops + + + +
+
+ +
by Wiwi Kuan, https://wiwi.blog
+
+
+ + + + diff --git a/app/build/intermediates/binary_art_profile/release/compileReleaseArtProfile/baseline.prof b/app/build/intermediates/binary_art_profile/release/compileReleaseArtProfile/baseline.prof new file mode 100644 index 0000000..30abe72 Binary files /dev/null and b/app/build/intermediates/binary_art_profile/release/compileReleaseArtProfile/baseline.prof differ diff --git a/app/build/intermediates/binary_art_profile_metadata/release/compileReleaseArtProfile/baseline.profm b/app/build/intermediates/binary_art_profile_metadata/release/compileReleaseArtProfile/baseline.profm new file mode 100644 index 0000000..d81f09d Binary files /dev/null and b/app/build/intermediates/binary_art_profile_metadata/release/compileReleaseArtProfile/baseline.profm differ diff --git a/app/build/intermediates/combined_art_profile/release/compileReleaseArtProfile/baseline-prof.txt b/app/build/intermediates/combined_art_profile/release/compileReleaseArtProfile/baseline-prof.txt new file mode 100644 index 0000000..501e390 --- /dev/null +++ b/app/build/intermediates/combined_art_profile/release/compileReleaseArtProfile/baseline-prof.txt @@ -0,0 +1,342 @@ +# Baseline profiles for androidx.activity + +HSPLandroidx/activity/ComponentActivity$1;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$2;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$5;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$6;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$7;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$7;->onContextAvailable(Landroid/content/Context;)V +HSPLandroidx/activity/ComponentActivity;->()V +HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V +HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/activity/OnBackPressedCallback;->(Z)V +HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V +HSPLandroidx/activity/OnBackPressedCallback;->remove()V +HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable; +HSPLandroidx/activity/contextaware/ContextAwareHelper;->()V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V +HSPLandroidx/activity/result/ActivityResultLauncher;->()V +HSPLandroidx/activity/result/ActivityResultRegistry$3;->(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;ILandroidx/activity/result/contract/ActivityResultContract;)V +HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;->(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V +HSPLandroidx/activity/result/ActivityResultRegistry;->()V +HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V +HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I +HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher; +HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)I +HSPLandroidx/activity/result/contract/ActivityResultContract;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V +Landroidx/activity/Cancellable; +Landroidx/activity/ComponentActivity$1; +Landroidx/activity/ComponentActivity$2; +Landroidx/activity/ComponentActivity$3; +Landroidx/activity/ComponentActivity$4; +Landroidx/activity/ComponentActivity$5; +Landroidx/activity/ComponentActivity$6; +Landroidx/activity/ComponentActivity$7; +Landroidx/activity/ComponentActivity$NonConfigurationInstances; +Landroidx/activity/ComponentActivity; +Landroidx/activity/OnBackPressedCallback; +Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable; +Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable; +Landroidx/activity/OnBackPressedDispatcher; +Landroidx/activity/OnBackPressedDispatcherOwner; +Landroidx/activity/contextaware/ContextAware; +Landroidx/activity/contextaware/ContextAwareHelper; +Landroidx/activity/contextaware/OnContextAvailableListener; +Landroidx/activity/result/ActivityResult; +Landroidx/activity/result/ActivityResultCallback; +Landroidx/activity/result/ActivityResultCaller; +Landroidx/activity/result/ActivityResultLauncher; +Landroidx/activity/result/ActivityResultRegistry$3; +Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract; +Landroidx/activity/result/ActivityResultRegistry; +Landroidx/activity/result/ActivityResultRegistryOwner; +Landroidx/activity/result/contract/ActivityResultContract; +Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions; +Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult; +PLandroidx/activity/ComponentActivity$1;->run()V +PLandroidx/activity/ComponentActivity;->access$001(Landroidx/activity/ComponentActivity;)V +PLandroidx/activity/ComponentActivity;->onBackPressed()V +PLandroidx/activity/OnBackPressedCallback;->isEnabled()Z +PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V +PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V +PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V +PLandroidx/activity/OnBackPressedDispatcher;->onBackPressed()V +PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V +PLandroidx/activity/result/ActivityResultRegistry$3;->unregister()V +PLandroidx/activity/result/ActivityResultRegistry;->unregister(Ljava/lang/String;)V + +Landroidx/activity/Cancellable; +Landroidx/activity/ComponentActivity; +HSPLandroidx/activity/ComponentActivity;->()V +HSPLandroidx/activity/ComponentActivity;->(I)V +HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/ComponentActivity;->createFullyDrawnExecutor()Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor; +HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V +HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras; +HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/activity/ComponentActivity;->lambda$new$2$androidx-activity-ComponentActivity(Landroid/content/Context;)V +HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/activity/ComponentActivity;->onTrimMemory(I)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda1; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda2; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda3; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->onContextAvailable(Landroid/content/Context;)V +Landroidx/activity/ComponentActivity$1; +HSPLandroidx/activity/ComponentActivity$1;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$2; +HSPLandroidx/activity/ComponentActivity$2;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$3; +HSPLandroidx/activity/ComponentActivity$3;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/ComponentActivity$4; +HSPLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/ComponentActivity$5; +HSPLandroidx/activity/ComponentActivity$5;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/ComponentActivity$Api33Impl; +HSPLandroidx/activity/ComponentActivity$Api33Impl;->getOnBackInvokedDispatcher(Landroid/app/Activity;)Landroid/window/OnBackInvokedDispatcher; +Landroidx/activity/ComponentActivity$NonConfigurationInstances; +Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor; +Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl; +HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0; +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/view/Window;I)V +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/view/Window;Z)V +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/Window;I)V +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/Window;Z)V +Landroidx/activity/EdgeToEdge; +HSPLandroidx/activity/EdgeToEdge;->()V +HSPLandroidx/activity/EdgeToEdge;->enable$default(Landroidx/activity/ComponentActivity;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;ILjava/lang/Object;)V +HSPLandroidx/activity/EdgeToEdge;->enable(Landroidx/activity/ComponentActivity;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;)V +Landroidx/activity/EdgeToEdgeApi29; +HSPLandroidx/activity/EdgeToEdgeApi29;->()V +HSPLandroidx/activity/EdgeToEdgeApi29;->setUp(Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;Landroid/view/Window;Landroid/view/View;ZZ)V +Landroidx/activity/EdgeToEdgeImpl; +Landroidx/activity/FullyDrawnReporter; +HSPLandroidx/activity/FullyDrawnReporter;->(Ljava/util/concurrent/Executor;Lkotlin/jvm/functions/Function0;)V +Landroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0; +HSPLandroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;->(Landroidx/activity/FullyDrawnReporter;)V +Landroidx/activity/FullyDrawnReporterOwner; +Landroidx/activity/OnBackPressedCallback; +HSPLandroidx/activity/OnBackPressedCallback;->(Z)V +HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V +HSPLandroidx/activity/OnBackPressedCallback;->isEnabled()Z +HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V +HSPLandroidx/activity/OnBackPressedCallback;->setEnabledChangedCallback$activity_release(Lkotlin/jvm/functions/Function0;)V +Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable; +HSPLandroidx/activity/OnBackPressedDispatcher;->hasEnabledCallbacks()Z +HSPLandroidx/activity/OnBackPressedDispatcher;->setOnBackInvokedDispatcher(Landroid/window/OnBackInvokedDispatcher;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->updateBackInvokedCallbackState$activity_release()V +Landroidx/activity/OnBackPressedDispatcher$1; +HSPLandroidx/activity/OnBackPressedDispatcher$1;->(Landroidx/activity/OnBackPressedDispatcher;)V +HSPLandroidx/activity/OnBackPressedDispatcher$1;->invoke()Ljava/lang/Object; +HSPLandroidx/activity/OnBackPressedDispatcher$1;->invoke()V +Landroidx/activity/OnBackPressedDispatcher$2; +HSPLandroidx/activity/OnBackPressedDispatcher$2;->(Landroidx/activity/OnBackPressedDispatcher;)V +Landroidx/activity/OnBackPressedDispatcher$Api33Impl; +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl;->()V +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl;->()V +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl;->createOnBackInvokedCallback(Lkotlin/jvm/functions/Function0;)Landroid/window/OnBackInvokedCallback; +Landroidx/activity/OnBackPressedDispatcher$Api33Impl$$ExternalSyntheticLambda0; +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl$$ExternalSyntheticLambda0;->(Lkotlin/jvm/functions/Function0;)V +Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable; +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable; +HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V +Landroidx/activity/OnBackPressedDispatcherOwner; +Landroidx/activity/R$id; +Landroidx/activity/SystemBarStyle; +HSPLandroidx/activity/SystemBarStyle;->()V +HSPLandroidx/activity/SystemBarStyle;->(III)V +HSPLandroidx/activity/SystemBarStyle;->(IIILkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/activity/SystemBarStyle;->getNightMode$activity_release()I +HSPLandroidx/activity/SystemBarStyle;->getScrimWithEnforcedContrast$activity_release(Z)I +HSPLandroidx/activity/SystemBarStyle;->isDark$activity_release(Landroid/content/res/Resources;)Z +Landroidx/activity/SystemBarStyle$Companion; +HSPLandroidx/activity/SystemBarStyle$Companion;->()V +HSPLandroidx/activity/SystemBarStyle$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/activity/SystemBarStyle$Companion;->auto(II)Landroidx/activity/SystemBarStyle; +Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner; +HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->set(Landroid/view/View;Landroidx/activity/OnBackPressedDispatcherOwner;)V +Landroidx/activity/contextaware/ContextAware; +Landroidx/activity/contextaware/ContextAwareHelper; +HSPLandroidx/activity/contextaware/ContextAwareHelper;->()V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V +Landroidx/activity/contextaware/OnContextAvailableListener; +Landroidx/activity/result/ActivityResult; +Landroidx/activity/result/ActivityResultCallback; +Landroidx/activity/result/ActivityResultCaller; +Landroidx/activity/result/ActivityResultLauncher; +HSPLandroidx/activity/result/ActivityResultLauncher;->()V +Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/activity/result/ActivityResultRegistry;->()V +HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V +HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I +HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher; +HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)V +Landroidx/activity/result/ActivityResultRegistry$3; +HSPLandroidx/activity/result/ActivityResultRegistry$3;->(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;)V +Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract; +HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;->(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V +Landroidx/activity/result/ActivityResultRegistryOwner; +Landroidx/activity/result/contract/ActivityResultContract; +HSPLandroidx/activity/result/contract/ActivityResultContract;->()V +Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions; +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V +Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion; +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult; +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V +Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion; +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +# Baseline profiles for lifecycle-livedata-core + +HSPLandroidx/lifecycle/LiveData$1;->(Landroidx/lifecycle/LiveData;)V +HSPLandroidx/lifecycle/LiveData$1;->run()V +HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->shouldBeActive()Z +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->shouldBeActive()Z +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->activeStateChanged(Z)V +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->detachObserver()V +HSPLandroidx/lifecycle/LiveData;->()V +HSPLandroidx/lifecycle/LiveData;->()V +HSPLandroidx/lifecycle/LiveData;->assertMainThread(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LiveData;->changeActiveCounter(I)V +HSPLandroidx/lifecycle/LiveData;->considerNotify(Landroidx/lifecycle/LiveData$ObserverWrapper;)V +HSPLandroidx/lifecycle/LiveData;->dispatchingValue(Landroidx/lifecycle/LiveData$ObserverWrapper;)V +HSPLandroidx/lifecycle/LiveData;->getValue()Ljava/lang/Object; +HSPLandroidx/lifecycle/LiveData;->getVersion()I +HSPLandroidx/lifecycle/LiveData;->hasActiveObservers()Z +HSPLandroidx/lifecycle/LiveData;->observe(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->observeForever(Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->onActive()V +HSPLandroidx/lifecycle/LiveData;->onInactive()V +HSPLandroidx/lifecycle/LiveData;->postValue(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/LiveData;->removeObserver(Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->setValue(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->onChanged(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->plug()V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->unplug()V +HSPLandroidx/lifecycle/MediatorLiveData;->()V +HSPLandroidx/lifecycle/MediatorLiveData;->addSource(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData;->onActive()V +HSPLandroidx/lifecycle/MediatorLiveData;->onInactive()V +HSPLandroidx/lifecycle/MediatorLiveData;->removeSource(Landroidx/lifecycle/LiveData;)V +HSPLandroidx/lifecycle/MutableLiveData;->()V +HSPLandroidx/lifecycle/MutableLiveData;->setValue(Ljava/lang/Object;)V +PLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->detachObserver()V + +# Baseline profiles for Lifecycle ViewModel + +HSPLandroidx/lifecycle/ViewModel;->()V +HSPLandroidx/lifecycle/ViewModelLazy;->(Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V +HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Ljava/lang/Object; +HSPLandroidx/lifecycle/ViewModelProvider;->(Landroidx/lifecycle/ViewModelStore;Landroidx/lifecycle/ViewModelProvider$Factory;)V +HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/String;Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelStore;->()V +HSPLandroidx/lifecycle/ViewModelStore;->get(Ljava/lang/String;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelStore;->put(Ljava/lang/String;Landroidx/lifecycle/ViewModel;)V +PLandroidx/lifecycle/ViewModel;->clear()V +PLandroidx/lifecycle/ViewModel;->onCleared()V +PLandroidx/lifecycle/ViewModelStore;->clear()V + +# Baseline Profile rules for lifecycle-runtime + +HPLandroidx/lifecycle/LifecycleRegistry;->backwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->(Landroidx/lifecycle/LifecycleObserver;Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->dispatchEvent(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;Z)V +HSPLandroidx/lifecycle/LifecycleRegistry;->addObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->calculateTargetState(Landroidx/lifecycle/LifecycleObserver;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->enforceMainThreadIfNeeded(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->forwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->getCurrentState()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->isSynced()Z +HSPLandroidx/lifecycle/LifecycleRegistry;->min(Landroidx/lifecycle/Lifecycle$State;Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->moveToState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->popParentState()V +HSPLandroidx/lifecycle/LifecycleRegistry;->pushParentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->removeObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->sync()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->registerIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->()V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroid/app/Activity;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchCreate(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchResume(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchStart(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->injectIfNeededIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->onActivityCreated(Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment;->onResume()V +HSPLandroidx/lifecycle/ReportFragment;->onStart()V +HSPLandroidx/lifecycle/ViewTreeLifecycleOwner;->set(Landroid/view/View;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/ViewTreeViewModelStoreOwner;->set(Landroid/view/View;Landroidx/lifecycle/ViewModelStoreOwner;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPrePaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment;->onDestroy()V +PLandroidx/lifecycle/ReportFragment;->onPause()V +PLandroidx/lifecycle/ReportFragment;->onStop()V + +# Baseline Profile Rules for androidx.startup + +Landroidx/startup/AppInitializer; +HSPLandroidx/startup/AppInitializer;->**(**)** diff --git a/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/output-metadata.json b/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/output-metadata.json new file mode 100644 index 0000000..68f9295 --- /dev/null +++ b/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/output-metadata.json @@ -0,0 +1,10 @@ +{ + "version": 3, + "artifactType": { + "type": "COMPATIBLE_SCREEN_MANIFEST", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "debug", + "elements": [] +} \ No newline at end of file diff --git a/app/build/intermediates/compatible_screen_manifest/release/createReleaseCompatibleScreenManifests/output-metadata.json b/app/build/intermediates/compatible_screen_manifest/release/createReleaseCompatibleScreenManifests/output-metadata.json new file mode 100644 index 0000000..802e08b --- /dev/null +++ b/app/build/intermediates/compatible_screen_manifest/release/createReleaseCompatibleScreenManifests/output-metadata.json @@ -0,0 +1,10 @@ +{ + "version": 3, + "artifactType": { + "type": "COMPATIBLE_SCREEN_MANIFEST", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "release", + "elements": [] +} \ No newline at end of file diff --git a/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar new file mode 100644 index 0000000..573c5b2 Binary files /dev/null and b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar differ diff --git a/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/processDebugAndroidTestResources/R.jar b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/processDebugAndroidTestResources/R.jar new file mode 100644 index 0000000..e2488ad Binary files /dev/null and b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/processDebugAndroidTestResources/R.jar differ diff --git a/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/processReleaseResources/R.jar b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/processReleaseResources/R.jar new file mode 100644 index 0000000..573c5b2 Binary files /dev/null and b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/processReleaseResources/R.jar differ diff --git a/app/build/intermediates/compile_app_classes_jar/debug/bundleDebugClassesToCompileJar/classes.jar b/app/build/intermediates/compile_app_classes_jar/debug/bundleDebugClassesToCompileJar/classes.jar new file mode 100644 index 0000000..4c1389f Binary files /dev/null and b/app/build/intermediates/compile_app_classes_jar/debug/bundleDebugClassesToCompileJar/classes.jar differ diff --git a/app/build/intermediates/compressed_assets/debug/compressDebugAssets/out/assets/index.html.jar b/app/build/intermediates/compressed_assets/debug/compressDebugAssets/out/assets/index.html.jar new file mode 100644 index 0000000..8a3eae1 Binary files /dev/null and b/app/build/intermediates/compressed_assets/debug/compressDebugAssets/out/assets/index.html.jar differ diff --git a/app/build/intermediates/compressed_assets/release/compressReleaseAssets/out/assets/index.html.jar b/app/build/intermediates/compressed_assets/release/compressReleaseAssets/out/assets/index.html.jar new file mode 100644 index 0000000..91faf72 Binary files /dev/null and b/app/build/intermediates/compressed_assets/release/compressReleaseAssets/out/assets/index.html.jar differ diff --git a/app/build/intermediates/d8_metadata/release/mergeDexRelease/d8-metadata.dat b/app/build/intermediates/d8_metadata/release/mergeDexRelease/d8-metadata.dat new file mode 100644 index 0000000..7b8739f --- /dev/null +++ b/app/build/intermediates/d8_metadata/release/mergeDexRelease/d8-metadata.dat @@ -0,0 +1 @@ +{"options":{"minApiLevel":"24","isDebugModeEnabled":false},"version":"8.13.19"} \ No newline at end of file diff --git a/app/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.13.2 b/app/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.13.2 new file mode 100644 index 0000000..5a3e3a5 --- /dev/null +++ b/app/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.13.2 @@ -0,0 +1,89 @@ +# This is a configuration file for ProGuard. +# http://proguard.sourceforge.net/index.html#manual/usage.html +# +# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with +# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and +# will be ignored by new version of the Android plugin for Gradle. + +# Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file +# instead of this one, which turns off the optimization flags. +-allowaccessmodification + +# Preserve some attributes that may be required for reflection. +-keepattributes AnnotationDefault, + EnclosingMethod, + InnerClasses, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations, + Signature + +-keep public class com.google.vending.licensing.ILicensingService +-keep public class com.android.vending.licensing.ILicensingService +-keep public class com.google.android.vending.licensing.ILicensingService +-dontnote com.android.vending.licensing.ILicensingService +-dontnote com.google.vending.licensing.ILicensingService +-dontnote com.google.android.vending.licensing.ILicensingService + +# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native +-keepclasseswithmembernames,includedescriptorclasses class * { + native ; +} + +# Keep setters in Views so that animations can still work. +-keepclassmembers public class * extends android.view.View { + void set*(***); + *** get*(); +} + +# We want to keep methods in Activity that could be used in the XML attribute onClick. +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keepclassmembers class * implements android.os.Parcelable { + public static final ** CREATOR; +} + +# Preserve annotated Javascript interface methods. +-keepclassmembers class * { + @android.webkit.JavascriptInterface ; +} + +# The support libraries contains references to newer platform versions. +# Don't warn about those in case this app is linking against an older +# platform version. We know about them, and they are safe. +-dontnote android.support.** +-dontnote androidx.** +-dontwarn android.support.** +-dontwarn androidx.** + +# Understand the @Keep support annotation. +-keep class android.support.annotation.Keep + +-keep @android.support.annotation.Keep class * {*;} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep (...); +} + +# These classes are duplicated between android.jar and org.apache.http.legacy.jar. +-dontnote org.apache.http.** +-dontnote android.net.http.** + +# These classes are duplicated between android.jar and core-lambda-stubs.jar. +-dontnote java.lang.invoke.** diff --git a/app/build/intermediates/default_proguard_files/global/proguard-android.txt-8.13.2 b/app/build/intermediates/default_proguard_files/global/proguard-android.txt-8.13.2 new file mode 100644 index 0000000..6f7e4ef --- /dev/null +++ b/app/build/intermediates/default_proguard_files/global/proguard-android.txt-8.13.2 @@ -0,0 +1,95 @@ +# This is a configuration file for ProGuard. +# http://proguard.sourceforge.net/index.html#manual/usage.html +# +# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with +# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and +# will be ignored by new version of the Android plugin for Gradle. + +# Optimization is turned off by default. Dex does not like code run +# through the ProGuard optimize steps (and performs some +# of these optimizations on its own). +# Note that if you want to enable optimization, you cannot just +# include optimization flags in your own project configuration file; +# instead you will need to point to the +# "proguard-android-optimize.txt" file instead of this one from your +# project.properties file. +-dontoptimize + +# Preserve some attributes that may be required for reflection. +-keepattributes AnnotationDefault, + EnclosingMethod, + InnerClasses, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations, + Signature + +-keep public class com.google.vending.licensing.ILicensingService +-keep public class com.android.vending.licensing.ILicensingService +-keep public class com.google.android.vending.licensing.ILicensingService +-dontnote com.android.vending.licensing.ILicensingService +-dontnote com.google.vending.licensing.ILicensingService +-dontnote com.google.android.vending.licensing.ILicensingService + +# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native +-keepclasseswithmembernames,includedescriptorclasses class * { + native ; +} + +# Keep setters in Views so that animations can still work. +-keepclassmembers public class * extends android.view.View { + void set*(***); + *** get*(); +} + +# We want to keep methods in Activity that could be used in the XML attribute onClick. +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keepclassmembers class * implements android.os.Parcelable { + public static final ** CREATOR; +} + +# Preserve annotated Javascript interface methods. +-keepclassmembers class * { + @android.webkit.JavascriptInterface ; +} + +# The support libraries contains references to newer platform versions. +# Don't warn about those in case this app is linking against an older +# platform version. We know about them, and they are safe. +-dontnote android.support.** +-dontnote androidx.** +-dontwarn android.support.** +-dontwarn androidx.** + +# Understand the @Keep support annotation. +-keep class android.support.annotation.Keep + +-keep @android.support.annotation.Keep class * {*;} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep (...); +} + +# These classes are duplicated between android.jar and org.apache.http.legacy.jar. +-dontnote org.apache.http.** +-dontnote android.net.http.** + +# These classes are duplicated between android.jar and core-lambda-stubs.jar. +-dontnote java.lang.invoke.** diff --git a/app/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.13.2 b/app/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.13.2 new file mode 100644 index 0000000..7bbb228 --- /dev/null +++ b/app/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.13.2 @@ -0,0 +1,89 @@ +# This is a configuration file for ProGuard. +# http://proguard.sourceforge.net/index.html#manual/usage.html +# +# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with +# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and +# will be ignored by new version of the Android plugin for Gradle. + +# Optimizations can be turned on and off in the 'postProcessing' DSL block. +# The configuration below is applied if optimizations are enabled. +-allowaccessmodification + +# Preserve some attributes that may be required for reflection. +-keepattributes AnnotationDefault, + EnclosingMethod, + InnerClasses, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations, + Signature + +-keep public class com.google.vending.licensing.ILicensingService +-keep public class com.android.vending.licensing.ILicensingService +-keep public class com.google.android.vending.licensing.ILicensingService +-dontnote com.android.vending.licensing.ILicensingService +-dontnote com.google.vending.licensing.ILicensingService +-dontnote com.google.android.vending.licensing.ILicensingService + +# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native +-keepclasseswithmembernames,includedescriptorclasses class * { + native ; +} + +# Keep setters in Views so that animations can still work. +-keepclassmembers public class * extends android.view.View { + void set*(***); + *** get*(); +} + +# We want to keep methods in Activity that could be used in the XML attribute onClick. +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keepclassmembers class * implements android.os.Parcelable { + public static final ** CREATOR; +} + +# Preserve annotated Javascript interface methods. +-keepclassmembers class * { + @android.webkit.JavascriptInterface ; +} + +# The support libraries contains references to newer platform versions. +# Don't warn about those in case this app is linking against an older +# platform version. We know about them, and they are safe. +-dontnote android.support.** +-dontnote androidx.** +-dontwarn android.support.** +-dontwarn androidx.** + +# Understand the @Keep support annotation. +-keep class android.support.annotation.Keep + +-keep @android.support.annotation.Keep class * {*;} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep (...); +} + +# These classes are duplicated between android.jar and org.apache.http.legacy.jar. +-dontnote org.apache.http.** +-dontnote android.net.http.** + +# These classes are duplicated between android.jar and core-lambda-stubs.jar. +-dontnote java.lang.invoke.** diff --git a/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_0/graph.bin b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_0/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_0/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_1/graph.bin b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_1/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_1/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_2/graph.bin b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_2/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_2/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_0/graph.bin b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_0/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_0/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_1/graph.bin b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_1/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_1/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_2/graph.bin b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_2/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_717726abbd5ee17cf48575958c4e6bf2492a4c0ab7ff49f9879e19bbd86bad59_bucket_2/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_0/graph.bin b/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_0/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_0/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_1/graph.bin b/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_1/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_1/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_2/graph.bin b/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_2/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_12884d23ed25d945c457ca09d2ff324e637afb52ab849eec8aaad49ea97da054_bucket_2/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_0/graph.bin b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_0/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_0/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_1/graph.bin b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_1/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_1/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_2/graph.bin b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_2/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/dirs_bucket_2/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_0/graph.bin b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_0/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_0/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_1/graph.bin b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_1/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_1/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_2/graph.bin b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_2/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/release/dexBuilderRelease/out/currentProject/jar_1793c0cfde0241e5f9d48eee7d7b84bff3b09f0eb9a4eeaaaa2df67a9582d747_bucket_2/graph.bin differ diff --git a/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex b/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex new file mode 100644 index 0000000..fb93af9 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex new file mode 100644 index 0000000..b4a17d8 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/7/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/7/classes.dex new file mode 100644 index 0000000..3e79e7c Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/7/classes.dex differ diff --git a/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex b/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex new file mode 100644 index 0000000..7bc5517 Binary files /dev/null and b/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex differ diff --git a/app/build/intermediates/dex/release/mergeDexRelease/classes.dex b/app/build/intermediates/dex/release/mergeDexRelease/classes.dex new file mode 100644 index 0000000..a7e2995 Binary files /dev/null and b/app/build/intermediates/dex/release/mergeDexRelease/classes.dex differ diff --git a/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out new file mode 100644 index 0000000..827e63c Binary files /dev/null and b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out differ diff --git a/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/dexBuilderDebugAndroidTest/out b/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/dexBuilderDebugAndroidTest/out new file mode 100644 index 0000000..d6e5f87 Binary files /dev/null and b/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/dexBuilderDebugAndroidTest/out differ diff --git a/app/build/intermediates/dex_archive_input_jar_hashes/release/dexBuilderRelease/out b/app/build/intermediates/dex_archive_input_jar_hashes/release/dexBuilderRelease/out new file mode 100644 index 0000000..7e12538 Binary files /dev/null and b/app/build/intermediates/dex_archive_input_jar_hashes/release/dexBuilderRelease/out differ diff --git a/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/0/.dm b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/0/.dm new file mode 100644 index 0000000..d35bdfa Binary files /dev/null and b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/0/.dm differ diff --git a/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/1/.dm b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/1/.dm new file mode 100644 index 0000000..dcc1a9f Binary files /dev/null and b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/1/.dm differ diff --git a/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/dex-metadata-map.properties b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/dex-metadata-map.properties new file mode 100644 index 0000000..e45d905 --- /dev/null +++ b/app/build/intermediates/dex_metadata_directory/release/compileReleaseArtProfile/dex-metadata-map.properties @@ -0,0 +1,5 @@ +31=0/.dm +2147483647=0/.dm +28=1/.dm +29=1/.dm +30=1/.dm \ No newline at end of file diff --git a/app/build/intermediates/dex_number_of_buckets_file/debug/dexBuilderDebug/out b/app/build/intermediates/dex_number_of_buckets_file/debug/dexBuilderDebug/out new file mode 100644 index 0000000..e440e5c --- /dev/null +++ b/app/build/intermediates/dex_number_of_buckets_file/debug/dexBuilderDebug/out @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/app/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/dexBuilderDebugAndroidTest/out b/app/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/dexBuilderDebugAndroidTest/out new file mode 100644 index 0000000..e440e5c --- /dev/null +++ b/app/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/dexBuilderDebugAndroidTest/out @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/app/build/intermediates/dex_number_of_buckets_file/release/dexBuilderRelease/out b/app/build/intermediates/dex_number_of_buckets_file/release/dexBuilderRelease/out new file mode 100644 index 0000000..e440e5c --- /dev/null +++ b/app/build/intermediates/dex_number_of_buckets_file/release/dexBuilderRelease/out @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/app/build/intermediates/external_libs_dex/release/mergeExtDexRelease/classes.dex b/app/build/intermediates/external_libs_dex/release/mergeExtDexRelease/classes.dex new file mode 100644 index 0000000..e8fb205 Binary files /dev/null and b/app/build/intermediates/external_libs_dex/release/mergeExtDexRelease/classes.dex differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000..5d7bfc2 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+Z1AHbvUq5rCVbdWeZ91xA== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+Z1AHbvUq5rCVbdWeZ91xA== new file mode 100644 index 0000000..bf919d5 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+Z1AHbvUq5rCVbdWeZ91xA== @@ -0,0 +1 @@ +[{"key":"androidx/startup/AppInitializer.class","name":"androidx/startup/AppInitializer.class","size":7553,"crc":870624420},{"key":"androidx/startup/InitializationProvider.class","name":"androidx/startup/InitializationProvider.class","size":2530,"crc":-159478496},{"key":"androidx/startup/Initializer.class","name":"androidx/startup/Initializer.class","size":555,"crc":-1348991370},{"key":"androidx/startup/StartupException.class","name":"androidx/startup/StartupException.class","size":1051,"crc":-464023827},{"key":"androidx/startup/StartupLogger.class","name":"androidx/startup/StartupLogger.class","size":1324,"crc":1793103804},{"key":"META-INF/androidx.startup_startup-runtime.version","name":"META-INF/androidx.startup_startup-runtime.version","size":6,"crc":1557790284}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5GHouVg53Ysl9Z88GRlewg== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5GHouVg53Ysl9Z88GRlewg== new file mode 100644 index 0000000..79b2efd --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5GHouVg53Ysl9Z88GRlewg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"META-INF/kotlinx-coroutines-android.kotlin_module","name":"META-INF/kotlinx-coroutines-android.kotlin_module","size":75,"crc":284142387},{"key":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$$inlined$Runnable$1.class","name":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$$inlined$Runnable$1.class","size":2078,"crc":-395684579},{"key":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$1.class","name":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$1.class","size":1831,"crc":804274569},{"key":"kotlinx/coroutines/android/HandlerDispatcherKt.class","name":"kotlinx/coroutines/android/HandlerDispatcherKt.class","size":9480,"crc":245039586},{"key":"kotlinx/coroutines/android/HandlerDispatcherKt$awaitFrame$lambda-3$$inlined$Runnable$1.class","name":"kotlinx/coroutines/android/HandlerDispatcherKt$awaitFrame$lambda-3$$inlined$Runnable$1.class","size":1526,"crc":1247786088},{"key":"kotlinx/coroutines/android/AndroidDispatcherFactory.class","name":"kotlinx/coroutines/android/AndroidDispatcherFactory.class","size":2203,"crc":-1412015008},{"key":"kotlinx/coroutines/android/HandlerDispatcher.class","name":"kotlinx/coroutines/android/HandlerDispatcher.class","size":2358,"crc":-1159760937},{"key":"kotlinx/coroutines/android/AndroidExceptionPreHandler.class","name":"kotlinx/coroutines/android/AndroidExceptionPreHandler.class","size":2871,"crc":-227947537},{"key":"kotlinx/coroutines/android/HandlerContext.class","name":"kotlinx/coroutines/android/HandlerContext.class","size":7940,"crc":800098068},{"key":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","name":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","size":54,"crc":-1889973424},{"key":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","name":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","size":52,"crc":1268078975},{"key":"META-INF/com.android.tools/r8-from-1.6.0/coroutines.pro","name":"META-INF/com.android.tools/r8-from-1.6.0/coroutines.pro","size":899,"crc":2032253094},{"key":"META-INF/com.android.tools/r8-upto-3.0.0/coroutines.pro","name":"META-INF/com.android.tools/r8-upto-3.0.0/coroutines.pro","size":558,"crc":1737114335},{"key":"META-INF/com.android.tools/proguard/coroutines.pro","name":"META-INF/com.android.tools/proguard/coroutines.pro","size":300,"crc":-477435061},{"key":"META-INF/proguard/coroutines.pro","name":"META-INF/proguard/coroutines.pro","size":419,"crc":77044690},{"key":"META-INF/kotlinx_coroutines_android.version","name":"META-INF/kotlinx_coroutines_android.version","size":5,"crc":282843805}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/77FS4VEaE6KRg3fr6XtHuQ== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/77FS4VEaE6KRg3fr6XtHuQ== new file mode 100644 index 0000000..0bc88e8 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/77FS4VEaE6KRg3fr6XtHuQ== @@ -0,0 +1 @@ +[{"key":"androidx/profileinstaller/BenchmarkOperation$Api21ContextHelper.class","name":"androidx/profileinstaller/BenchmarkOperation$Api21ContextHelper.class","size":784,"crc":910408423},{"key":"androidx/profileinstaller/BenchmarkOperation$Api24ContextHelper.class","name":"androidx/profileinstaller/BenchmarkOperation$Api24ContextHelper.class","size":898,"crc":-1846908175},{"key":"androidx/profileinstaller/BenchmarkOperation.class","name":"androidx/profileinstaller/BenchmarkOperation.class","size":2217,"crc":-235143906},{"key":"androidx/profileinstaller/DeviceProfileWriter.class","name":"androidx/profileinstaller/DeviceProfileWriter.class","size":9901,"crc":1761970309},{"key":"androidx/profileinstaller/DexProfileData.class","name":"androidx/profileinstaller/DexProfileData.class","size":1352,"crc":-447897183},{"key":"androidx/profileinstaller/Encoding.class","name":"androidx/profileinstaller/Encoding.class","size":6317,"crc":-122203374},{"key":"androidx/profileinstaller/FileSectionType.class","name":"androidx/profileinstaller/FileSectionType.class","size":2112,"crc":-2058888424},{"key":"androidx/profileinstaller/ProfileInstallReceiver$ResultDiagnostics.class","name":"androidx/profileinstaller/ProfileInstallReceiver$ResultDiagnostics.class","size":1333,"crc":1824621369},{"key":"androidx/profileinstaller/ProfileInstallReceiver.class","name":"androidx/profileinstaller/ProfileInstallReceiver.class","size":4379,"crc":882371370},{"key":"androidx/profileinstaller/ProfileInstaller$1.class","name":"androidx/profileinstaller/ProfileInstaller$1.class","size":898,"crc":2051655691},{"key":"androidx/profileinstaller/ProfileInstaller$2.class","name":"androidx/profileinstaller/ProfileInstaller$2.class","size":2193,"crc":-26531924},{"key":"androidx/profileinstaller/ProfileInstaller$DiagnosticCode.class","name":"androidx/profileinstaller/ProfileInstaller$DiagnosticCode.class","size":661,"crc":936946104},{"key":"androidx/profileinstaller/ProfileInstaller$DiagnosticsCallback.class","name":"androidx/profileinstaller/ProfileInstaller$DiagnosticsCallback.class","size":445,"crc":-1798863824},{"key":"androidx/profileinstaller/ProfileInstaller$ResultCode.class","name":"androidx/profileinstaller/ProfileInstaller$ResultCode.class","size":653,"crc":1328959836},{"key":"androidx/profileinstaller/ProfileInstaller.class","name":"androidx/profileinstaller/ProfileInstaller.class","size":11365,"crc":-1864137789},{"key":"androidx/profileinstaller/ProfileInstallerInitializer$Choreographer16Impl.class","name":"androidx/profileinstaller/ProfileInstallerInitializer$Choreographer16Impl.class","size":1730,"crc":893634560},{"key":"androidx/profileinstaller/ProfileInstallerInitializer$Handler28Impl.class","name":"androidx/profileinstaller/ProfileInstallerInitializer$Handler28Impl.class","size":824,"crc":-353792601},{"key":"androidx/profileinstaller/ProfileInstallerInitializer$Result.class","name":"androidx/profileinstaller/ProfileInstallerInitializer$Result.class","size":471,"crc":-146462361},{"key":"androidx/profileinstaller/ProfileInstallerInitializer.class","name":"androidx/profileinstaller/ProfileInstallerInitializer.class","size":4426,"crc":-941791835},{"key":"androidx/profileinstaller/ProfileTranscoder.class","name":"androidx/profileinstaller/ProfileTranscoder.class","size":21736,"crc":-141864366},{"key":"androidx/profileinstaller/ProfileVerifier$Api33Impl.class","name":"androidx/profileinstaller/ProfileVerifier$Api33Impl.class","size":1385,"crc":-36032257},{"key":"androidx/profileinstaller/ProfileVerifier$Cache.class","name":"androidx/profileinstaller/ProfileVerifier$Cache.class","size":2936,"crc":431451052},{"key":"androidx/profileinstaller/ProfileVerifier$CompilationStatus$ResultCode.class","name":"androidx/profileinstaller/ProfileVerifier$CompilationStatus$ResultCode.class","size":761,"crc":-438192104},{"key":"androidx/profileinstaller/ProfileVerifier$CompilationStatus.class","name":"androidx/profileinstaller/ProfileVerifier$CompilationStatus.class","size":1698,"crc":2010065732},{"key":"androidx/profileinstaller/ProfileVerifier.class","name":"androidx/profileinstaller/ProfileVerifier.class","size":5863,"crc":-1786324660},{"key":"androidx/profileinstaller/ProfileVersion.class","name":"androidx/profileinstaller/ProfileVersion.class","size":1474,"crc":-1261108376},{"key":"androidx/profileinstaller/WritableFileSection.class","name":"androidx/profileinstaller/WritableFileSection.class","size":815,"crc":984045749},{"key":"META-INF/androidx.profileinstaller_profileinstaller.version","name":"META-INF/androidx.profileinstaller_profileinstaller.version","size":6,"crc":-154126649}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AHCdN3DPgBdN6r6xiMKG9Q== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AHCdN3DPgBdN6r6xiMKG9Q== new file mode 100644 index 0000000..04542b7 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AHCdN3DPgBdN6r6xiMKG9Q== @@ -0,0 +1 @@ +[{"key":"androidx/core/splashscreen/MaskedDrawable.class","name":"androidx/core/splashscreen/MaskedDrawable.class","size":2773,"crc":-1354262820},{"key":"androidx/core/splashscreen/SplashScreen$Companion.class","name":"androidx/core/splashscreen/SplashScreen$Companion.class","size":1675,"crc":-2140462775},{"key":"androidx/core/splashscreen/SplashScreen$Impl$setKeepOnScreenCondition$1.class","name":"androidx/core/splashscreen/SplashScreen$Impl$setKeepOnScreenCondition$1.class","size":2545,"crc":-741237898},{"key":"androidx/core/splashscreen/SplashScreen$Impl$setOnExitAnimationListener$2.class","name":"androidx/core/splashscreen/SplashScreen$Impl$setOnExitAnimationListener$2.class","size":2567,"crc":-807334360},{"key":"androidx/core/splashscreen/SplashScreen$Impl.class","name":"androidx/core/splashscreen/SplashScreen$Impl.class","size":10669,"crc":-2114397847},{"key":"androidx/core/splashscreen/SplashScreen$Impl31$hierarchyListener$1.class","name":"androidx/core/splashscreen/SplashScreen$Impl31$hierarchyListener$1.class","size":2140,"crc":-1883408448},{"key":"androidx/core/splashscreen/SplashScreen$Impl31$setKeepOnScreenCondition$1.class","name":"androidx/core/splashscreen/SplashScreen$Impl31$setKeepOnScreenCondition$1.class","size":1815,"crc":71590791},{"key":"androidx/core/splashscreen/SplashScreen$Impl31.class","name":"androidx/core/splashscreen/SplashScreen$Impl31.class","size":8184,"crc":-201717473},{"key":"androidx/core/splashscreen/SplashScreen$KeepOnScreenCondition.class","name":"androidx/core/splashscreen/SplashScreen$KeepOnScreenCondition.class","size":669,"crc":-1257153274},{"key":"androidx/core/splashscreen/SplashScreen$OnExitAnimationListener.class","name":"androidx/core/splashscreen/SplashScreen$OnExitAnimationListener.class","size":922,"crc":-2077345969},{"key":"androidx/core/splashscreen/SplashScreen.class","name":"androidx/core/splashscreen/SplashScreen.class","size":3325,"crc":1433295160},{"key":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl$_splashScreenView$2.class","name":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl$_splashScreenView$2.class","size":2014,"crc":-66962808},{"key":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl.class","name":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl.class","size":3428,"crc":-1844359143},{"key":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl31.class","name":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl31.class","size":3701,"crc":-1166735816},{"key":"androidx/core/splashscreen/SplashScreenViewProvider.class","name":"androidx/core/splashscreen/SplashScreenViewProvider.class","size":2972,"crc":-18991217},{"key":"androidx/core/splashscreen/ThemeUtils$Api31.class","name":"androidx/core/splashscreen/ThemeUtils$Api31.class","size":2566,"crc":490424245},{"key":"androidx/core/splashscreen/ThemeUtils.class","name":"androidx/core/splashscreen/ThemeUtils.class","size":857,"crc":1948239097},{"key":"META-INF/androidx.core_core-splashscreen.version","name":"META-INF/androidx.core_core-splashscreen.version","size":6,"crc":-463103703},{"key":"META-INF/core-splashscreen_release.kotlin_module","name":"META-INF/core-splashscreen_release.kotlin_module","size":24,"crc":-1697843264}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CH8hJNYXQojq7ZKEZWh7yg== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CH8hJNYXQojq7ZKEZWh7yg== new file mode 100644 index 0000000..c10bcaa --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CH8hJNYXQojq7ZKEZWh7yg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":214,"crc":37686798},{"key":"META-INF/kotlin-stdlib.kotlin_module","name":"META-INF/kotlin-stdlib.kotlin_module","size":7167,"crc":-363369352},{"key":"kotlin/ArrayIntrinsicsKt.class","name":"kotlin/ArrayIntrinsicsKt.class","size":785,"crc":914748749},{"key":"kotlin/BuilderInference.class","name":"kotlin/BuilderInference.class","size":977,"crc":706377218},{"key":"kotlin/CharCodeJVMKt.class","name":"kotlin/CharCodeJVMKt.class","size":735,"crc":-834163445},{"key":"kotlin/CharCodeKt.class","name":"kotlin/CharCodeKt.class","size":1373,"crc":-362076706},{"key":"kotlin/CompareToKt.class","name":"kotlin/CompareToKt.class","size":1008,"crc":1014189559},{"key":"kotlin/ContextFunctionTypeParams.class","name":"kotlin/ContextFunctionTypeParams.class","size":887,"crc":1300046260},{"key":"kotlin/DeepRecursiveFunction.class","name":"kotlin/DeepRecursiveFunction.class","size":2000,"crc":183395445},{"key":"kotlin/DeepRecursiveKt.class","name":"kotlin/DeepRecursiveKt.class","size":2283,"crc":182419245},{"key":"kotlin/DeepRecursiveScope.class","name":"kotlin/DeepRecursiveScope.class","size":2810,"crc":-1490081228},{"key":"kotlin/DeepRecursiveScopeImpl$crossFunctionCompletion$$inlined$Continuation$1.class","name":"kotlin/DeepRecursiveScopeImpl$crossFunctionCompletion$$inlined$Continuation$1.class","size":3054,"crc":-1984899911},{"key":"kotlin/DeepRecursiveScopeImpl.class","name":"kotlin/DeepRecursiveScopeImpl.class","size":7716,"crc":788715753},{"key":"kotlin/Deprecated.class","name":"kotlin/Deprecated.class","size":1337,"crc":-1201605646},{"key":"kotlin/DeprecatedSinceKotlin.class","name":"kotlin/DeprecatedSinceKotlin.class","size":1287,"crc":-2071432846},{"key":"kotlin/DeprecationLevel.class","name":"kotlin/DeprecationLevel.class","size":1772,"crc":74896219},{"key":"kotlin/DslMarker.class","name":"kotlin/DslMarker.class","size":955,"crc":1223372526},{"key":"kotlin/ExceptionsKt.class","name":"kotlin/ExceptionsKt.class","size":424,"crc":-360740149},{"key":"kotlin/ExceptionsKt__ExceptionsKt.class","name":"kotlin/ExceptionsKt__ExceptionsKt.class","size":3598,"crc":1512281902},{"key":"kotlin/ExperimentalMultiplatform.class","name":"kotlin/ExperimentalMultiplatform.class","size":1205,"crc":-1258383849},{"key":"kotlin/ExperimentalStdlibApi.class","name":"kotlin/ExperimentalStdlibApi.class","size":1404,"crc":381744534},{"key":"kotlin/ExperimentalSubclassOptIn.class","name":"kotlin/ExperimentalSubclassOptIn.class","size":868,"crc":-496404057},{"key":"kotlin/ExperimentalUnsignedTypes.class","name":"kotlin/ExperimentalUnsignedTypes.class","size":1353,"crc":1802434339},{"key":"kotlin/ExtensionFunctionType.class","name":"kotlin/ExtensionFunctionType.class","size":729,"crc":483944746},{"key":"kotlin/Function.class","name":"kotlin/Function.class","size":404,"crc":1636709163},{"key":"kotlin/HashCodeKt.class","name":"kotlin/HashCodeKt.class","size":681,"crc":-1272145878},{"key":"kotlin/InitializedLazyImpl.class","name":"kotlin/InitializedLazyImpl.class","size":1429,"crc":242515045},{"key":"kotlin/KotlinNothingValueException.class","name":"kotlin/KotlinNothingValueException.class","size":1355,"crc":1814023035},{"key":"kotlin/KotlinNullPointerException.class","name":"kotlin/KotlinNullPointerException.class","size":885,"crc":386831069},{"key":"kotlin/KotlinVersion$Companion.class","name":"kotlin/KotlinVersion$Companion.class","size":891,"crc":-24097414},{"key":"kotlin/KotlinVersion.class","name":"kotlin/KotlinVersion.class","size":4034,"crc":-956949712},{"key":"kotlin/KotlinVersionCurrentValue.class","name":"kotlin/KotlinVersionCurrentValue.class","size":904,"crc":-978496797},{"key":"kotlin/LateinitKt.class","name":"kotlin/LateinitKt.class","size":1276,"crc":487649905},{"key":"kotlin/Lazy.class","name":"kotlin/Lazy.class","size":544,"crc":662721225},{"key":"kotlin/LazyKt.class","name":"kotlin/LazyKt.class","size":393,"crc":1649881116},{"key":"kotlin/LazyKt__LazyJVMKt$WhenMappings.class","name":"kotlin/LazyKt__LazyJVMKt$WhenMappings.class","size":790,"crc":1245994275},{"key":"kotlin/LazyKt__LazyJVMKt.class","name":"kotlin/LazyKt__LazyJVMKt.class","size":2655,"crc":346227144},{"key":"kotlin/LazyKt__LazyKt.class","name":"kotlin/LazyKt__LazyKt.class","size":1575,"crc":-139274343},{"key":"kotlin/LazyThreadSafetyMode.class","name":"kotlin/LazyThreadSafetyMode.class","size":1802,"crc":1883090374},{"key":"kotlin/Metadata$DefaultImpls.class","name":"kotlin/Metadata$DefaultImpls.class","size":797,"crc":390750371},{"key":"kotlin/Metadata.class","name":"kotlin/Metadata.class","size":1881,"crc":343290002},{"key":"kotlin/NoWhenBranchMatchedException.class","name":"kotlin/NoWhenBranchMatchedException.class","size":1260,"crc":-1891244361},{"key":"kotlin/NotImplementedError.class","name":"kotlin/NotImplementedError.class","size":1093,"crc":-982128132},{"key":"kotlin/NumbersKt.class","name":"kotlin/NumbersKt.class","size":522,"crc":-2128736509},{"key":"kotlin/NumbersKt__BigDecimalsKt.class","name":"kotlin/NumbersKt__BigDecimalsKt.class","size":4215,"crc":669371495},{"key":"kotlin/NumbersKt__BigIntegersKt.class","name":"kotlin/NumbersKt__BigIntegersKt.class","size":4920,"crc":-1546874729},{"key":"kotlin/NumbersKt__FloorDivModKt.class","name":"kotlin/NumbersKt__FloorDivModKt.class","size":6955,"crc":-69125695},{"key":"kotlin/NumbersKt__NumbersJVMKt.class","name":"kotlin/NumbersKt__NumbersJVMKt.class","size":5134,"crc":-1948028998},{"key":"kotlin/NumbersKt__NumbersKt.class","name":"kotlin/NumbersKt__NumbersKt.class","size":2992,"crc":-567553779},{"key":"kotlin/OptIn.class","name":"kotlin/OptIn.class","size":1301,"crc":448776656},{"key":"kotlin/OptionalExpectation.class","name":"kotlin/OptionalExpectation.class","size":887,"crc":1603884937},{"key":"kotlin/OverloadResolutionByLambdaReturnType.class","name":"kotlin/OverloadResolutionByLambdaReturnType.class","size":961,"crc":366046341},{"key":"kotlin/Pair.class","name":"kotlin/Pair.class","size":2869,"crc":-481155759},{"key":"kotlin/ParameterName.class","name":"kotlin/ParameterName.class","size":879,"crc":2129995980},{"key":"kotlin/PreconditionsKt.class","name":"kotlin/PreconditionsKt.class","size":444,"crc":-1710428196},{"key":"kotlin/PreconditionsKt__AssertionsJVMKt.class","name":"kotlin/PreconditionsKt__AssertionsJVMKt.class","size":2046,"crc":-1408320684},{"key":"kotlin/PreconditionsKt__PreconditionsKt.class","name":"kotlin/PreconditionsKt__PreconditionsKt.class","size":4107,"crc":487195474},{"key":"kotlin/PropertyReferenceDelegatesKt.class","name":"kotlin/PropertyReferenceDelegatesKt.class","size":2965,"crc":-2089053008},{"key":"kotlin/PublishedApi.class","name":"kotlin/PublishedApi.class","size":1001,"crc":928675357},{"key":"kotlin/ReplaceWith.class","name":"kotlin/ReplaceWith.class","size":940,"crc":-637321760},{"key":"kotlin/RequiresOptIn$Level.class","name":"kotlin/RequiresOptIn$Level.class","size":1792,"crc":-1440925158},{"key":"kotlin/RequiresOptIn.class","name":"kotlin/RequiresOptIn.class","size":1208,"crc":1130552518},{"key":"kotlin/Result$Companion.class","name":"kotlin/Result$Companion.class","size":1668,"crc":877218917},{"key":"kotlin/Result$Failure.class","name":"kotlin/Result$Failure.class","size":1926,"crc":2131698496},{"key":"kotlin/Result.class","name":"kotlin/Result.class","size":4029,"crc":-1276351598},{"key":"kotlin/ResultKt.class","name":"kotlin/ResultKt.class","size":7633,"crc":596261931},{"key":"kotlin/SafePublicationLazyImpl$Companion.class","name":"kotlin/SafePublicationLazyImpl$Companion.class","size":1051,"crc":-1171578767},{"key":"kotlin/SafePublicationLazyImpl.class","name":"kotlin/SafePublicationLazyImpl.class","size":3424,"crc":344087991},{"key":"kotlin/SinceKotlin.class","name":"kotlin/SinceKotlin.class","size":1077,"crc":-1444250120},{"key":"kotlin/StandardKt.class","name":"kotlin/StandardKt.class","size":418,"crc":-375652852},{"key":"kotlin/StandardKt__StandardKt.class","name":"kotlin/StandardKt__StandardKt.class","size":4615,"crc":-624785843},{"key":"kotlin/StandardKt__SynchronizedKt.class","name":"kotlin/StandardKt__SynchronizedKt.class","size":1554,"crc":-1873556033},{"key":"kotlin/SubclassOptInRequired.class","name":"kotlin/SubclassOptInRequired.class","size":1107,"crc":488960892},{"key":"kotlin/Suppress.class","name":"kotlin/Suppress.class","size":1185,"crc":-1544838911},{"key":"kotlin/SuspendKt.class","name":"kotlin/SuspendKt.class","size":1161,"crc":-1154143876},{"key":"kotlin/SynchronizedLazyImpl.class","name":"kotlin/SynchronizedLazyImpl.class","size":3123,"crc":769531998},{"key":"kotlin/ThrowsKt.class","name":"kotlin/ThrowsKt.class","size":531,"crc":-885728156},{"key":"kotlin/Triple.class","name":"kotlin/Triple.class","size":3364,"crc":261809510},{"key":"kotlin/TuplesKt.class","name":"kotlin/TuplesKt.class","size":1908,"crc":519406435},{"key":"kotlin/TypeAliasesKt.class","name":"kotlin/TypeAliasesKt.class","size":3147,"crc":774154999},{"key":"kotlin/TypeCastException.class","name":"kotlin/TypeCastException.class","size":852,"crc":166380516},{"key":"kotlin/UByte$Companion.class","name":"kotlin/UByte$Companion.class","size":939,"crc":1378003750},{"key":"kotlin/UByte.class","name":"kotlin/UByte.class","size":11391,"crc":-2119902337},{"key":"kotlin/UByteArray$Iterator.class","name":"kotlin/UByteArray$Iterator.class","size":2041,"crc":-780843091},{"key":"kotlin/UByteArray.class","name":"kotlin/UByteArray.class","size":7347,"crc":1671752935},{"key":"kotlin/UByteArrayKt.class","name":"kotlin/UByteArrayKt.class","size":1607,"crc":1134093883},{"key":"kotlin/UByteKt.class","name":"kotlin/UByteKt.class","size":1172,"crc":896005121},{"key":"kotlin/UInt$Companion.class","name":"kotlin/UInt$Companion.class","size":934,"crc":2139174565},{"key":"kotlin/UInt.class","name":"kotlin/UInt.class","size":11337,"crc":787110182},{"key":"kotlin/UIntArray$Iterator.class","name":"kotlin/UIntArray$Iterator.class","size":2033,"crc":-1591050015},{"key":"kotlin/UIntArray.class","name":"kotlin/UIntArray.class","size":7313,"crc":1415075496},{"key":"kotlin/UIntArrayKt.class","name":"kotlin/UIntArrayKt.class","size":1597,"crc":1019670834},{"key":"kotlin/UIntKt.class","name":"kotlin/UIntKt.class","size":1494,"crc":-1855076938},{"key":"kotlin/ULong$Companion.class","name":"kotlin/ULong$Companion.class","size":939,"crc":-256607455},{"key":"kotlin/ULong.class","name":"kotlin/ULong.class","size":11333,"crc":-1404786034},{"key":"kotlin/ULongArray$Iterator.class","name":"kotlin/ULongArray$Iterator.class","size":2041,"crc":-1183911022},{"key":"kotlin/ULongArray.class","name":"kotlin/ULongArray.class","size":7347,"crc":-1931373646},{"key":"kotlin/ULongArrayKt.class","name":"kotlin/ULongArrayKt.class","size":1607,"crc":-1343995727},{"key":"kotlin/ULongKt.class","name":"kotlin/ULongKt.class","size":1503,"crc":423811029},{"key":"kotlin/UNINITIALIZED_VALUE.class","name":"kotlin/UNINITIALIZED_VALUE.class","size":657,"crc":924648883},{"key":"kotlin/UNumbersKt.class","name":"kotlin/UNumbersKt.class","size":7237,"crc":256139198},{"key":"kotlin/UShort$Companion.class","name":"kotlin/UShort$Companion.class","size":944,"crc":-1927299755},{"key":"kotlin/UShort.class","name":"kotlin/UShort.class","size":11347,"crc":-1434215815},{"key":"kotlin/UShortArray$Iterator.class","name":"kotlin/UShortArray$Iterator.class","size":2049,"crc":387103634},{"key":"kotlin/UShortArray.class","name":"kotlin/UShortArray.class","size":7371,"crc":-185891184},{"key":"kotlin/UShortArrayKt.class","name":"kotlin/UShortArrayKt.class","size":1617,"crc":1407060527},{"key":"kotlin/UShortKt.class","name":"kotlin/UShortKt.class","size":1178,"crc":1933015597},{"key":"kotlin/UninitializedPropertyAccessException.class","name":"kotlin/UninitializedPropertyAccessException.class","size":1282,"crc":1752551459},{"key":"kotlin/Unit.class","name":"kotlin/Unit.class","size":762,"crc":2051516890},{"key":"kotlin/UnsafeLazyImpl.class","name":"kotlin/UnsafeLazyImpl.class","size":2426,"crc":1936700530},{"key":"kotlin/UnsafeVariance.class","name":"kotlin/UnsafeVariance.class","size":799,"crc":-1782364917},{"key":"kotlin/UnsignedKt.class","name":"kotlin/UnsignedKt.class","size":3998,"crc":2096622554},{"key":"kotlin/WasExperimental.class","name":"kotlin/WasExperimental.class","size":1102,"crc":1347694942},{"key":"kotlin/_Assertions.class","name":"kotlin/_Assertions.class","size":1011,"crc":-1052087833},{"key":"kotlin/annotation/AnnotationRetention.class","name":"kotlin/annotation/AnnotationRetention.class","size":1871,"crc":933944101},{"key":"kotlin/annotation/AnnotationTarget.class","name":"kotlin/annotation/AnnotationTarget.class","size":2707,"crc":494561129},{"key":"kotlin/annotation/MustBeDocumented.class","name":"kotlin/annotation/MustBeDocumented.class","size":730,"crc":1727257736},{"key":"kotlin/annotation/Repeatable.class","name":"kotlin/annotation/Repeatable.class","size":718,"crc":1835623651},{"key":"kotlin/annotation/Retention.class","name":"kotlin/annotation/Retention.class","size":885,"crc":1885255077},{"key":"kotlin/annotation/Target.class","name":"kotlin/annotation/Target.class","size":883,"crc":258039429},{"key":"kotlin/collections/AbstractCollection$toString$1.class","name":"kotlin/collections/AbstractCollection$toString$1.class","size":1702,"crc":-1428066360},{"key":"kotlin/collections/AbstractCollection.class","name":"kotlin/collections/AbstractCollection.class","size":5315,"crc":412829516},{"key":"kotlin/collections/AbstractIterator$WhenMappings.class","name":"kotlin/collections/AbstractIterator$WhenMappings.class","size":754,"crc":1583326656},{"key":"kotlin/collections/AbstractIterator.class","name":"kotlin/collections/AbstractIterator.class","size":2585,"crc":1583013796},{"key":"kotlin/collections/AbstractList$Companion.class","name":"kotlin/collections/AbstractList$Companion.class","size":4256,"crc":1826133861},{"key":"kotlin/collections/AbstractList$IteratorImpl.class","name":"kotlin/collections/AbstractList$IteratorImpl.class","size":1879,"crc":1909400214},{"key":"kotlin/collections/AbstractList$ListIteratorImpl.class","name":"kotlin/collections/AbstractList$ListIteratorImpl.class","size":2490,"crc":-256326536},{"key":"kotlin/collections/AbstractList$SubList.class","name":"kotlin/collections/AbstractList$SubList.class","size":2115,"crc":1752271979},{"key":"kotlin/collections/AbstractList.class","name":"kotlin/collections/AbstractList.class","size":5888,"crc":-453398702},{"key":"kotlin/collections/AbstractMap$Companion.class","name":"kotlin/collections/AbstractMap$Companion.class","size":3310,"crc":148575770},{"key":"kotlin/collections/AbstractMap$keys$1$iterator$1.class","name":"kotlin/collections/AbstractMap$keys$1$iterator$1.class","size":1654,"crc":36863119},{"key":"kotlin/collections/AbstractMap$keys$1.class","name":"kotlin/collections/AbstractMap$keys$1.class","size":1834,"crc":1569237681},{"key":"kotlin/collections/AbstractMap$toString$1.class","name":"kotlin/collections/AbstractMap$toString$1.class","size":1958,"crc":1631770727},{"key":"kotlin/collections/AbstractMap$values$1$iterator$1.class","name":"kotlin/collections/AbstractMap$values$1$iterator$1.class","size":1662,"crc":2061876154},{"key":"kotlin/collections/AbstractMap$values$1.class","name":"kotlin/collections/AbstractMap$values$1.class","size":1892,"crc":700120353},{"key":"kotlin/collections/AbstractMap.class","name":"kotlin/collections/AbstractMap.class","size":8706,"crc":19329880},{"key":"kotlin/collections/AbstractMutableCollection.class","name":"kotlin/collections/AbstractMutableCollection.class","size":1169,"crc":447994912},{"key":"kotlin/collections/AbstractMutableList.class","name":"kotlin/collections/AbstractMutableList.class","size":1452,"crc":40709550},{"key":"kotlin/collections/AbstractMutableMap.class","name":"kotlin/collections/AbstractMutableMap.class","size":2084,"crc":193765958},{"key":"kotlin/collections/AbstractMutableSet.class","name":"kotlin/collections/AbstractMutableSet.class","size":1099,"crc":43982856},{"key":"kotlin/collections/AbstractSet$Companion.class","name":"kotlin/collections/AbstractSet$Companion.class","size":2142,"crc":383581200},{"key":"kotlin/collections/AbstractSet.class","name":"kotlin/collections/AbstractSet.class","size":2116,"crc":828120771},{"key":"kotlin/collections/ArrayAsCollection.class","name":"kotlin/collections/ArrayAsCollection.class","size":4876,"crc":445846277},{"key":"kotlin/collections/ArrayDeque$Companion.class","name":"kotlin/collections/ArrayDeque$Companion.class","size":931,"crc":339487782},{"key":"kotlin/collections/ArrayDeque.class","name":"kotlin/collections/ArrayDeque.class","size":18542,"crc":-225223282},{"key":"kotlin/collections/ArraysKt.class","name":"kotlin/collections/ArraysKt.class","size":544,"crc":-226832428},{"key":"kotlin/collections/ArraysKt__ArraysJVMKt.class","name":"kotlin/collections/ArraysKt__ArraysJVMKt.class","size":4303,"crc":-1457268929},{"key":"kotlin/collections/ArraysKt__ArraysKt.class","name":"kotlin/collections/ArraysKt__ArraysKt.class","size":8751,"crc":-1163159009},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$1.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$1.class","size":2571,"crc":51809286},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$2.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$2.class","size":2576,"crc":-1295774147},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$3.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$3.class","size":2537,"crc":1562853834},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$4.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$4.class","size":2571,"crc":-2086233170},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$5.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$5.class","size":4195,"crc":1159948618},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$6.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$6.class","size":4215,"crc":-397178826},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$7.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$7.class","size":2547,"crc":-724994554},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$8.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$8.class","size":2569,"crc":885129269},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt.class","size":79744,"crc":-349645253},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$1.class","size":2121,"crc":1959006123},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$2.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$2.class","size":2120,"crc":317606727},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$3.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$3.class","size":2123,"crc":-1640575222},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$4.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$4.class","size":2125,"crc":116097491},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$5.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$5.class","size":2120,"crc":170222800},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$6.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$6.class","size":2123,"crc":-1381485661},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$7.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$7.class","size":2126,"crc":1952337550},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$8.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$8.class","size":2129,"crc":828705706},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$9.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$9.class","size":2130,"crc":-748252136},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$1.class","size":2075,"crc":1078615245},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$2.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$2.class","size":2074,"crc":726896821},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$3.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$3.class","size":2077,"crc":43508242},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$4.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$4.class","size":2079,"crc":1753668720},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$5.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$5.class","size":2074,"crc":-1069548140},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$6.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$6.class","size":2077,"crc":-1391841492},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$7.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$7.class","size":2080,"crc":-941022576},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$8.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$8.class","size":2083,"crc":931889295},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$9.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$9.class","size":2084,"crc":-944313988},{"key":"kotlin/collections/ArraysKt___ArraysKt$groupingBy$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$groupingBy$1.class","size":2223,"crc":-1311375014},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$1.class","size":1426,"crc":-1800550072},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$2.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$2.class","size":1384,"crc":2101694897},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$3.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$3.class","size":1387,"crc":-911986},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$4.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$4.class","size":1389,"crc":-304311061},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$5.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$5.class","size":1384,"crc":-745529752},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$6.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$6.class","size":1387,"crc":-718287488},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$7.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$7.class","size":1390,"crc":1051355167},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$8.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$8.class","size":1393,"crc":588397494},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$9.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$9.class","size":1394,"crc":1381962539},{"key":"kotlin/collections/ArraysKt___ArraysKt.class","name":"kotlin/collections/ArraysKt___ArraysKt.class","size":673669,"crc":1992121713},{"key":"kotlin/collections/BooleanIterator.class","name":"kotlin/collections/BooleanIterator.class","size":1337,"crc":-2136362495},{"key":"kotlin/collections/ByteIterator.class","name":"kotlin/collections/ByteIterator.class","size":1316,"crc":-1734721638},{"key":"kotlin/collections/CharIterator.class","name":"kotlin/collections/CharIterator.class","size":1336,"crc":-1284759072},{"key":"kotlin/collections/CollectionsKt.class","name":"kotlin/collections/CollectionsKt.class","size":928,"crc":-399351980},{"key":"kotlin/collections/CollectionsKt__CollectionsJVMKt.class","name":"kotlin/collections/CollectionsKt__CollectionsJVMKt.class","size":7460,"crc":577539800},{"key":"kotlin/collections/CollectionsKt__CollectionsKt$binarySearchBy$1.class","name":"kotlin/collections/CollectionsKt__CollectionsKt$binarySearchBy$1.class","size":2329,"crc":-1413388820},{"key":"kotlin/collections/CollectionsKt__CollectionsKt.class","name":"kotlin/collections/CollectionsKt__CollectionsKt.class","size":16631,"crc":-640090207},{"key":"kotlin/collections/CollectionsKt__IterablesKt$Iterable$1.class","name":"kotlin/collections/CollectionsKt__IterablesKt$Iterable$1.class","size":1899,"crc":1047870628},{"key":"kotlin/collections/CollectionsKt__IterablesKt.class","name":"kotlin/collections/CollectionsKt__IterablesKt.class","size":3909,"crc":407819054},{"key":"kotlin/collections/CollectionsKt__IteratorsJVMKt$iterator$1.class","name":"kotlin/collections/CollectionsKt__IteratorsJVMKt$iterator$1.class","size":1644,"crc":-171621508},{"key":"kotlin/collections/CollectionsKt__IteratorsJVMKt.class","name":"kotlin/collections/CollectionsKt__IteratorsJVMKt.class","size":1335,"crc":1178061839},{"key":"kotlin/collections/CollectionsKt__IteratorsKt.class","name":"kotlin/collections/CollectionsKt__IteratorsKt.class","size":2357,"crc":2141603096},{"key":"kotlin/collections/CollectionsKt__MutableCollectionsJVMKt.class","name":"kotlin/collections/CollectionsKt__MutableCollectionsJVMKt.class","size":3715,"crc":-1930519529},{"key":"kotlin/collections/CollectionsKt__MutableCollectionsKt.class","name":"kotlin/collections/CollectionsKt__MutableCollectionsKt.class","size":12811,"crc":-535399372},{"key":"kotlin/collections/CollectionsKt__ReversedViewsKt.class","name":"kotlin/collections/CollectionsKt__ReversedViewsKt.class","size":3400,"crc":-1675935350},{"key":"kotlin/collections/CollectionsKt___CollectionsJvmKt.class","name":"kotlin/collections/CollectionsKt___CollectionsJvmKt.class","size":10367,"crc":877633345},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$asSequence$$inlined$Sequence$1.class","size":2087,"crc":-972801769},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$elementAt$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$elementAt$1.class","size":1678,"crc":1134871135},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$groupingBy$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$groupingBy$1.class","size":2283,"crc":-857892687},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$withIndex$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$withIndex$1.class","size":1448,"crc":-839803886},{"key":"kotlin/collections/CollectionsKt___CollectionsKt.class","name":"kotlin/collections/CollectionsKt___CollectionsKt.class","size":130225,"crc":830408082},{"key":"kotlin/collections/DoubleIterator.class","name":"kotlin/collections/DoubleIterator.class","size":1330,"crc":662992200},{"key":"kotlin/collections/EmptyIterator.class","name":"kotlin/collections/EmptyIterator.class","size":2129,"crc":-1437025087},{"key":"kotlin/collections/EmptyList.class","name":"kotlin/collections/EmptyList.class","size":6384,"crc":2128661276},{"key":"kotlin/collections/EmptyMap.class","name":"kotlin/collections/EmptyMap.class","size":4568,"crc":945217483},{"key":"kotlin/collections/EmptySet.class","name":"kotlin/collections/EmptySet.class","size":3882,"crc":207943678},{"key":"kotlin/collections/FloatIterator.class","name":"kotlin/collections/FloatIterator.class","size":1323,"crc":1320238133},{"key":"kotlin/collections/Grouping.class","name":"kotlin/collections/Grouping.class","size":837,"crc":655873736},{"key":"kotlin/collections/GroupingKt.class","name":"kotlin/collections/GroupingKt.class","size":465,"crc":-2036176059},{"key":"kotlin/collections/GroupingKt__GroupingJVMKt.class","name":"kotlin/collections/GroupingKt__GroupingJVMKt.class","size":6035,"crc":-279017986},{"key":"kotlin/collections/GroupingKt__GroupingKt.class","name":"kotlin/collections/GroupingKt__GroupingKt.class","size":14401,"crc":1229889088},{"key":"kotlin/collections/IndexedValue.class","name":"kotlin/collections/IndexedValue.class","size":2802,"crc":1342510738},{"key":"kotlin/collections/IndexingIterable.class","name":"kotlin/collections/IndexingIterable.class","size":1853,"crc":825401620},{"key":"kotlin/collections/IndexingIterator.class","name":"kotlin/collections/IndexingIterator.class","size":2190,"crc":-844613135},{"key":"kotlin/collections/IntIterator.class","name":"kotlin/collections/IntIterator.class","size":1325,"crc":489979873},{"key":"kotlin/collections/LongIterator.class","name":"kotlin/collections/LongIterator.class","size":1316,"crc":1721542277},{"key":"kotlin/collections/MapAccessorsKt.class","name":"kotlin/collections/MapAccessorsKt.class","size":2244,"crc":1371982810},{"key":"kotlin/collections/MapWithDefault.class","name":"kotlin/collections/MapWithDefault.class","size":962,"crc":1623959559},{"key":"kotlin/collections/MapWithDefaultImpl.class","name":"kotlin/collections/MapWithDefaultImpl.class","size":5799,"crc":-1972097377},{"key":"kotlin/collections/MapsKt.class","name":"kotlin/collections/MapsKt.class","size":573,"crc":-575621667},{"key":"kotlin/collections/MapsKt__MapWithDefaultKt.class","name":"kotlin/collections/MapsKt__MapWithDefaultKt.class","size":4135,"crc":-1201746970},{"key":"kotlin/collections/MapsKt__MapsJVMKt.class","name":"kotlin/collections/MapsKt__MapsJVMKt.class","size":9144,"crc":1982366243},{"key":"kotlin/collections/MapsKt__MapsKt.class","name":"kotlin/collections/MapsKt__MapsKt.class","size":33483,"crc":-796985209},{"key":"kotlin/collections/MapsKt___MapsJvmKt.class","name":"kotlin/collections/MapsKt___MapsJvmKt.class","size":4141,"crc":-1450591339},{"key":"kotlin/collections/MapsKt___MapsKt.class","name":"kotlin/collections/MapsKt___MapsKt.class","size":29119,"crc":-1595953868},{"key":"kotlin/collections/MovingSubList.class","name":"kotlin/collections/MovingSubList.class","size":2153,"crc":44607288},{"key":"kotlin/collections/MutableMapWithDefault.class","name":"kotlin/collections/MutableMapWithDefault.class","size":984,"crc":909094730},{"key":"kotlin/collections/MutableMapWithDefaultImpl.class","name":"kotlin/collections/MutableMapWithDefaultImpl.class","size":6014,"crc":8551959},{"key":"kotlin/collections/ReversedList$listIterator$1.class","name":"kotlin/collections/ReversedList$listIterator$1.class","size":3012,"crc":-1910864434},{"key":"kotlin/collections/ReversedList.class","name":"kotlin/collections/ReversedList.class","size":3267,"crc":-1943953868},{"key":"kotlin/collections/ReversedListReadOnly$listIterator$1.class","name":"kotlin/collections/ReversedListReadOnly$listIterator$1.class","size":3027,"crc":-1469558624},{"key":"kotlin/collections/ReversedListReadOnly.class","name":"kotlin/collections/ReversedListReadOnly.class","size":2544,"crc":1146851822},{"key":"kotlin/collections/RingBuffer$iterator$1.class","name":"kotlin/collections/RingBuffer$iterator$1.class","size":2412,"crc":579025793},{"key":"kotlin/collections/RingBuffer.class","name":"kotlin/collections/RingBuffer.class","size":7053,"crc":-1109652082},{"key":"kotlin/collections/SetsKt.class","name":"kotlin/collections/SetsKt.class","size":481,"crc":1020848140},{"key":"kotlin/collections/SetsKt__SetsJVMKt.class","name":"kotlin/collections/SetsKt__SetsJVMKt.class","size":4092,"crc":1886343417},{"key":"kotlin/collections/SetsKt__SetsKt.class","name":"kotlin/collections/SetsKt__SetsKt.class","size":5880,"crc":1286800867},{"key":"kotlin/collections/SetsKt___SetsKt.class","name":"kotlin/collections/SetsKt___SetsKt.class","size":6693,"crc":789464032},{"key":"kotlin/collections/ShortIterator.class","name":"kotlin/collections/ShortIterator.class","size":1323,"crc":-1969046658},{"key":"kotlin/collections/SlidingWindowKt$windowedIterator$1.class","name":"kotlin/collections/SlidingWindowKt$windowedIterator$1.class","size":6257,"crc":-207977163},{"key":"kotlin/collections/SlidingWindowKt$windowedSequence$$inlined$Sequence$1.class","name":"kotlin/collections/SlidingWindowKt$windowedSequence$$inlined$Sequence$1.class","size":2320,"crc":-502475565},{"key":"kotlin/collections/SlidingWindowKt.class","name":"kotlin/collections/SlidingWindowKt.class","size":3054,"crc":346070121},{"key":"kotlin/collections/State.class","name":"kotlin/collections/State.class","size":1843,"crc":-1049585528},{"key":"kotlin/collections/TypeAliasesKt.class","name":"kotlin/collections/TypeAliasesKt.class","size":1490,"crc":-980516392},{"key":"kotlin/collections/UArraySortingKt.class","name":"kotlin/collections/UArraySortingKt.class","size":4800,"crc":-1322290976},{"key":"kotlin/collections/UCollectionsKt.class","name":"kotlin/collections/UCollectionsKt.class","size":472,"crc":-1510629429},{"key":"kotlin/collections/UCollectionsKt___UCollectionsKt.class","name":"kotlin/collections/UCollectionsKt___UCollectionsKt.class","size":4849,"crc":608557602},{"key":"kotlin/collections/builders/AbstractMapBuilderEntrySet.class","name":"kotlin/collections/builders/AbstractMapBuilderEntrySet.class","size":1858,"crc":-57714870},{"key":"kotlin/collections/builders/ListBuilder$Companion.class","name":"kotlin/collections/builders/ListBuilder$Companion.class","size":920,"crc":1508863899},{"key":"kotlin/collections/builders/ListBuilder$Itr.class","name":"kotlin/collections/builders/ListBuilder$Itr.class","size":4527,"crc":-1592649838},{"key":"kotlin/collections/builders/ListBuilder.class","name":"kotlin/collections/builders/ListBuilder.class","size":14699,"crc":-683150615},{"key":"kotlin/collections/builders/ListBuilderKt.class","name":"kotlin/collections/builders/ListBuilderKt.class","size":5098,"crc":-1694029465},{"key":"kotlin/collections/builders/MapBuilder$Companion.class","name":"kotlin/collections/builders/MapBuilder$Companion.class","size":2034,"crc":154379890},{"key":"kotlin/collections/builders/MapBuilder$EntriesItr.class","name":"kotlin/collections/builders/MapBuilder$EntriesItr.class","size":3932,"crc":-972088827},{"key":"kotlin/collections/builders/MapBuilder$EntryRef.class","name":"kotlin/collections/builders/MapBuilder$EntryRef.class","size":3354,"crc":-1395487142},{"key":"kotlin/collections/builders/MapBuilder$Itr.class","name":"kotlin/collections/builders/MapBuilder$Itr.class","size":3920,"crc":-1266420236},{"key":"kotlin/collections/builders/MapBuilder$KeysItr.class","name":"kotlin/collections/builders/MapBuilder$KeysItr.class","size":2265,"crc":918809074},{"key":"kotlin/collections/builders/MapBuilder$ValuesItr.class","name":"kotlin/collections/builders/MapBuilder$ValuesItr.class","size":2326,"crc":47377105},{"key":"kotlin/collections/builders/MapBuilder.class","name":"kotlin/collections/builders/MapBuilder.class","size":20144,"crc":303775641},{"key":"kotlin/collections/builders/MapBuilderEntries.class","name":"kotlin/collections/builders/MapBuilderEntries.class","size":4314,"crc":-1107642348},{"key":"kotlin/collections/builders/MapBuilderKeys.class","name":"kotlin/collections/builders/MapBuilderKeys.class","size":3470,"crc":-1151575340},{"key":"kotlin/collections/builders/MapBuilderValues.class","name":"kotlin/collections/builders/MapBuilderValues.class","size":3674,"crc":1831334250},{"key":"kotlin/collections/builders/SerializedCollection$Companion.class","name":"kotlin/collections/builders/SerializedCollection$Companion.class","size":975,"crc":596178204},{"key":"kotlin/collections/builders/SerializedCollection.class","name":"kotlin/collections/builders/SerializedCollection.class","size":5025,"crc":1825690600},{"key":"kotlin/collections/builders/SerializedMap$Companion.class","name":"kotlin/collections/builders/SerializedMap$Companion.class","size":879,"crc":1162081046},{"key":"kotlin/collections/builders/SerializedMap.class","name":"kotlin/collections/builders/SerializedMap.class","size":3867,"crc":-2129362891},{"key":"kotlin/collections/builders/SetBuilder$Companion.class","name":"kotlin/collections/builders/SetBuilder$Companion.class","size":915,"crc":1511327319},{"key":"kotlin/collections/builders/SetBuilder.class","name":"kotlin/collections/builders/SetBuilder.class","size":5095,"crc":654995642},{"key":"kotlin/collections/unsigned/UArraysKt.class","name":"kotlin/collections/unsigned/UArraysKt.class","size":528,"crc":1164291945},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$1.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$1.class","size":2704,"crc":45704206},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$2.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$2.class","size":2738,"crc":528480706},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$3.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$3.class","size":2738,"crc":292429636},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$4.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$4.class","size":2743,"crc":1896214284},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt.class","size":22059,"crc":-2087365097},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$1.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$1.class","size":1381,"crc":-1119412604},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$2.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$2.class","size":1385,"crc":-1360770574},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$3.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$3.class","size":1385,"crc":-2101763271},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$4.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$4.class","size":1389,"crc":-248392812},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt.class","size":307397,"crc":931509025},{"key":"kotlin/comparisons/ComparisonsKt.class","name":"kotlin/comparisons/ComparisonsKt.class","size":538,"crc":2140344418},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$2.class","size":2051,"crc":1259970767},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$3.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$3.class","size":2078,"crc":33849803},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$1.class","size":2101,"crc":1890859729},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$2.class","size":2128,"crc":-1851035345},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$1.class","size":2329,"crc":-567441521},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$2.class","size":2320,"crc":-2106552422},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$1.class","size":2389,"crc":947165556},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$2.class","size":2380,"crc":-1169006856},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenComparator$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenComparator$1.class","size":2282,"crc":1032142794},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt.class","size":13367,"crc":725795358},{"key":"kotlin/comparisons/ComparisonsKt___ComparisonsJvmKt.class","name":"kotlin/comparisons/ComparisonsKt___ComparisonsJvmKt.class","size":9184,"crc":1011038488},{"key":"kotlin/comparisons/ComparisonsKt___ComparisonsKt.class","name":"kotlin/comparisons/ComparisonsKt___ComparisonsKt.class","size":3216,"crc":-109938691},{"key":"kotlin/comparisons/NaturalOrderComparator.class","name":"kotlin/comparisons/NaturalOrderComparator.class","size":2025,"crc":590916352},{"key":"kotlin/comparisons/ReverseOrderComparator.class","name":"kotlin/comparisons/ReverseOrderComparator.class","size":2025,"crc":-1427608736},{"key":"kotlin/comparisons/ReversedComparator.class","name":"kotlin/comparisons/ReversedComparator.class","size":1737,"crc":-1796753622},{"key":"kotlin/comparisons/UComparisonsKt.class","name":"kotlin/comparisons/UComparisonsKt.class","size":472,"crc":932404807},{"key":"kotlin/comparisons/UComparisonsKt___UComparisonsKt.class","name":"kotlin/comparisons/UComparisonsKt___UComparisonsKt.class","size":6810,"crc":420367867},{"key":"kotlin/concurrent/LocksKt.class","name":"kotlin/concurrent/LocksKt.class","size":3811,"crc":-1221257463},{"key":"kotlin/concurrent/ThreadsKt$thread$thread$1.class","name":"kotlin/concurrent/ThreadsKt$thread$thread$1.class","size":1167,"crc":-1249446432},{"key":"kotlin/concurrent/ThreadsKt.class","name":"kotlin/concurrent/ThreadsKt.class","size":3426,"crc":1935299403},{"key":"kotlin/concurrent/TimersKt$timerTask$1.class","name":"kotlin/concurrent/TimersKt$timerTask$1.class","size":1521,"crc":861764870},{"key":"kotlin/concurrent/TimersKt.class","name":"kotlin/concurrent/TimersKt.class","size":6889,"crc":671541535},{"key":"kotlin/concurrent/VolatileKt.class","name":"kotlin/concurrent/VolatileKt.class","size":552,"crc":1917291917},{"key":"kotlin/contracts/CallsInPlace.class","name":"kotlin/contracts/CallsInPlace.class","size":573,"crc":-435486496},{"key":"kotlin/contracts/ConditionalEffect.class","name":"kotlin/contracts/ConditionalEffect.class","size":583,"crc":695956468},{"key":"kotlin/contracts/ContractBuilder$DefaultImpls.class","name":"kotlin/contracts/ContractBuilder$DefaultImpls.class","size":1016,"crc":611702168},{"key":"kotlin/contracts/ContractBuilder.class","name":"kotlin/contracts/ContractBuilder.class","size":1591,"crc":-310543849},{"key":"kotlin/contracts/ContractBuilderKt.class","name":"kotlin/contracts/ContractBuilderKt.class","size":1127,"crc":1688302817},{"key":"kotlin/contracts/Effect.class","name":"kotlin/contracts/Effect.class","size":506,"crc":1496566889},{"key":"kotlin/contracts/ExperimentalContracts.class","name":"kotlin/contracts/ExperimentalContracts.class","size":813,"crc":409405595},{"key":"kotlin/contracts/InvocationKind.class","name":"kotlin/contracts/InvocationKind.class","size":2104,"crc":125711993},{"key":"kotlin/contracts/Returns.class","name":"kotlin/contracts/Returns.class","size":575,"crc":-1505381929},{"key":"kotlin/contracts/ReturnsNotNull.class","name":"kotlin/contracts/ReturnsNotNull.class","size":589,"crc":1387623790},{"key":"kotlin/contracts/SimpleEffect.class","name":"kotlin/contracts/SimpleEffect.class","size":799,"crc":-736547963},{"key":"kotlin/coroutines/AbstractCoroutineContextElement.class","name":"kotlin/coroutines/AbstractCoroutineContextElement.class","size":3448,"crc":-423380029},{"key":"kotlin/coroutines/AbstractCoroutineContextKey.class","name":"kotlin/coroutines/AbstractCoroutineContextKey.class","size":2994,"crc":1120813119},{"key":"kotlin/coroutines/CombinedContext$Serialized$Companion.class","name":"kotlin/coroutines/CombinedContext$Serialized$Companion.class","size":958,"crc":-1682206842},{"key":"kotlin/coroutines/CombinedContext$Serialized.class","name":"kotlin/coroutines/CombinedContext$Serialized.class","size":3182,"crc":938082246},{"key":"kotlin/coroutines/CombinedContext$toString$1.class","name":"kotlin/coroutines/CombinedContext$toString$1.class","size":2178,"crc":-345279751},{"key":"kotlin/coroutines/CombinedContext$writeReplace$1.class","name":"kotlin/coroutines/CombinedContext$writeReplace$1.class","size":2073,"crc":1353004527},{"key":"kotlin/coroutines/CombinedContext.class","name":"kotlin/coroutines/CombinedContext.class","size":6931,"crc":-261250255},{"key":"kotlin/coroutines/Continuation.class","name":"kotlin/coroutines/Continuation.class","size":913,"crc":-1120241580},{"key":"kotlin/coroutines/ContinuationInterceptor$DefaultImpls.class","name":"kotlin/coroutines/ContinuationInterceptor$DefaultImpls.class","size":4084,"crc":1683869132},{"key":"kotlin/coroutines/ContinuationInterceptor$Key.class","name":"kotlin/coroutines/ContinuationInterceptor$Key.class","size":1038,"crc":1210631834},{"key":"kotlin/coroutines/ContinuationInterceptor.class","name":"kotlin/coroutines/ContinuationInterceptor.class","size":2323,"crc":-1207345493},{"key":"kotlin/coroutines/ContinuationKt$Continuation$1.class","name":"kotlin/coroutines/ContinuationKt$Continuation$1.class","size":2405,"crc":-1625800894},{"key":"kotlin/coroutines/ContinuationKt.class","name":"kotlin/coroutines/ContinuationKt.class","size":6820,"crc":-204309542},{"key":"kotlin/coroutines/CoroutineContext$DefaultImpls.class","name":"kotlin/coroutines/CoroutineContext$DefaultImpls.class","size":1311,"crc":943102766},{"key":"kotlin/coroutines/CoroutineContext$Element$DefaultImpls.class","name":"kotlin/coroutines/CoroutineContext$Element$DefaultImpls.class","size":3210,"crc":-1710519820},{"key":"kotlin/coroutines/CoroutineContext$Element.class","name":"kotlin/coroutines/CoroutineContext$Element.class","size":1928,"crc":-1972277159},{"key":"kotlin/coroutines/CoroutineContext$Key.class","name":"kotlin/coroutines/CoroutineContext$Key.class","size":684,"crc":174149647},{"key":"kotlin/coroutines/CoroutineContext$plus$1.class","name":"kotlin/coroutines/CoroutineContext$plus$1.class","size":3101,"crc":106110687},{"key":"kotlin/coroutines/CoroutineContext.class","name":"kotlin/coroutines/CoroutineContext.class","size":1988,"crc":1131594419},{"key":"kotlin/coroutines/CoroutineContextImplKt.class","name":"kotlin/coroutines/CoroutineContextImplKt.class","size":2711,"crc":1377495188},{"key":"kotlin/coroutines/EmptyCoroutineContext.class","name":"kotlin/coroutines/EmptyCoroutineContext.class","size":3269,"crc":1682240233},{"key":"kotlin/coroutines/RestrictsSuspension.class","name":"kotlin/coroutines/RestrictsSuspension.class","size":885,"crc":158984251},{"key":"kotlin/coroutines/SafeContinuation$Companion.class","name":"kotlin/coroutines/SafeContinuation$Companion.class","size":1152,"crc":1344268190},{"key":"kotlin/coroutines/SafeContinuation.class","name":"kotlin/coroutines/SafeContinuation.class","size":4782,"crc":-1521873190},{"key":"kotlin/coroutines/cancellation/CancellationExceptionKt.class","name":"kotlin/coroutines/cancellation/CancellationExceptionKt.class","size":2318,"crc":-1589862015},{"key":"kotlin/coroutines/intrinsics/CoroutineSingletons.class","name":"kotlin/coroutines/intrinsics/CoroutineSingletons.class","size":2043,"crc":-2045290494},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt.class","size":517,"crc":1661074142},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$1.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$1.class","size":3103,"crc":-1752927005},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$2.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$2.class","size":3252,"crc":710224689},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$1.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$1.class","size":3956,"crc":94828228},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$2.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$2.class","size":4069,"crc":-630652525},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$3.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$3.class","size":4201,"crc":156100178},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$4.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$4.class","size":4315,"crc":-50021501},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$1.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$1.class","size":1852,"crc":-6134372},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$2.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$2.class","size":1965,"crc":337899718},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt.class","size":10625,"crc":-1544318921},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsKt.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsKt.class","size":1954,"crc":-1145292913},{"key":"kotlin/coroutines/jvm/internal/BaseContinuationImpl.class","name":"kotlin/coroutines/jvm/internal/BaseContinuationImpl.class","size":5416,"crc":652345835},{"key":"kotlin/coroutines/jvm/internal/Boxing.class","name":"kotlin/coroutines/jvm/internal/Boxing.class","size":2363,"crc":509565252},{"key":"kotlin/coroutines/jvm/internal/CompletedContinuation.class","name":"kotlin/coroutines/jvm/internal/CompletedContinuation.class","size":1660,"crc":219428893},{"key":"kotlin/coroutines/jvm/internal/ContinuationImpl.class","name":"kotlin/coroutines/jvm/internal/ContinuationImpl.class","size":3754,"crc":-633052385},{"key":"kotlin/coroutines/jvm/internal/CoroutineStackFrame.class","name":"kotlin/coroutines/jvm/internal/CoroutineStackFrame.class","size":805,"crc":1465629375},{"key":"kotlin/coroutines/jvm/internal/DebugMetadata.class","name":"kotlin/coroutines/jvm/internal/DebugMetadata.class","size":1684,"crc":-2040427531},{"key":"kotlin/coroutines/jvm/internal/DebugMetadataKt.class","name":"kotlin/coroutines/jvm/internal/DebugMetadataKt.class","size":5614,"crc":-1052535827},{"key":"kotlin/coroutines/jvm/internal/DebugProbesKt.class","name":"kotlin/coroutines/jvm/internal/DebugProbesKt.class","size":1451,"crc":-2117355756},{"key":"kotlin/coroutines/jvm/internal/ModuleNameRetriever$Cache.class","name":"kotlin/coroutines/jvm/internal/ModuleNameRetriever$Cache.class","size":1259,"crc":-1752469634},{"key":"kotlin/coroutines/jvm/internal/ModuleNameRetriever.class","name":"kotlin/coroutines/jvm/internal/ModuleNameRetriever.class","size":3891,"crc":-441175355},{"key":"kotlin/coroutines/jvm/internal/RestrictedContinuationImpl.class","name":"kotlin/coroutines/jvm/internal/RestrictedContinuationImpl.class","size":2008,"crc":-1284384493},{"key":"kotlin/coroutines/jvm/internal/RestrictedSuspendLambda.class","name":"kotlin/coroutines/jvm/internal/RestrictedSuspendLambda.class","size":2365,"crc":452140700},{"key":"kotlin/coroutines/jvm/internal/RunSuspend.class","name":"kotlin/coroutines/jvm/internal/RunSuspend.class","size":2789,"crc":2052918701},{"key":"kotlin/coroutines/jvm/internal/RunSuspendKt.class","name":"kotlin/coroutines/jvm/internal/RunSuspendKt.class","size":1438,"crc":-977187061},{"key":"kotlin/coroutines/jvm/internal/SuspendFunction.class","name":"kotlin/coroutines/jvm/internal/SuspendFunction.class","size":478,"crc":639516507},{"key":"kotlin/coroutines/jvm/internal/SuspendLambda.class","name":"kotlin/coroutines/jvm/internal/SuspendLambda.class","size":2315,"crc":1439096700},{"key":"kotlin/enums/EnumEntries.class","name":"kotlin/enums/EnumEntries.class","size":800,"crc":-896832478},{"key":"kotlin/enums/EnumEntriesJVMKt.class","name":"kotlin/enums/EnumEntriesJVMKt.class","size":1059,"crc":-687293350},{"key":"kotlin/enums/EnumEntriesKt.class","name":"kotlin/enums/EnumEntriesKt.class","size":2684,"crc":423460520},{"key":"kotlin/enums/EnumEntriesList.class","name":"kotlin/enums/EnumEntriesList.class","size":3422,"crc":-811996100},{"key":"kotlin/enums/EnumEntriesSerializationProxy$Companion.class","name":"kotlin/enums/EnumEntriesSerializationProxy$Companion.class","size":901,"crc":1451853094},{"key":"kotlin/enums/EnumEntriesSerializationProxy.class","name":"kotlin/enums/EnumEntriesSerializationProxy.class","size":2138,"crc":765468858},{"key":"kotlin/experimental/BitwiseOperationsKt.class","name":"kotlin/experimental/BitwiseOperationsKt.class","size":1508,"crc":-235398090},{"key":"kotlin/experimental/ExperimentalNativeApi.class","name":"kotlin/experimental/ExperimentalNativeApi.class","size":1430,"crc":-130773746},{"key":"kotlin/experimental/ExperimentalObjCName.class","name":"kotlin/experimental/ExperimentalObjCName.class","size":1041,"crc":-1610923018},{"key":"kotlin/experimental/ExperimentalObjCRefinement.class","name":"kotlin/experimental/ExperimentalObjCRefinement.class","size":1059,"crc":-1537317411},{"key":"kotlin/experimental/ExperimentalTypeInference.class","name":"kotlin/experimental/ExperimentalTypeInference.class","size":1197,"crc":2040029542},{"key":"kotlin/internal/AccessibleLateinitPropertyLiteral.class","name":"kotlin/internal/AccessibleLateinitPropertyLiteral.class","size":931,"crc":537382718},{"key":"kotlin/internal/ContractsDsl.class","name":"kotlin/internal/ContractsDsl.class","size":677,"crc":-1622441649},{"key":"kotlin/internal/DynamicExtension.class","name":"kotlin/internal/DynamicExtension.class","size":817,"crc":1283871041},{"key":"kotlin/internal/Exact.class","name":"kotlin/internal/Exact.class","size":724,"crc":1937309538},{"key":"kotlin/internal/HidesMembers.class","name":"kotlin/internal/HidesMembers.class","size":809,"crc":1043804348},{"key":"kotlin/internal/InlineOnly.class","name":"kotlin/internal/InlineOnly.class","size":851,"crc":-1129162316},{"key":"kotlin/internal/IntrinsicConstEvaluation.class","name":"kotlin/internal/IntrinsicConstEvaluation.class","size":951,"crc":2106596098},{"key":"kotlin/internal/LowPriorityInOverloadResolution.class","name":"kotlin/internal/LowPriorityInOverloadResolution.class","size":871,"crc":988902805},{"key":"kotlin/internal/NoInfer.class","name":"kotlin/internal/NoInfer.class","size":728,"crc":-2135110351},{"key":"kotlin/internal/OnlyInputTypes.class","name":"kotlin/internal/OnlyInputTypes.class","size":752,"crc":915397554},{"key":"kotlin/internal/PlatformDependent.class","name":"kotlin/internal/PlatformDependent.class","size":811,"crc":-1526537696},{"key":"kotlin/internal/PlatformImplementations$ReflectThrowable.class","name":"kotlin/internal/PlatformImplementations$ReflectThrowable.class","size":2779,"crc":65562786},{"key":"kotlin/internal/PlatformImplementations.class","name":"kotlin/internal/PlatformImplementations.class","size":3368,"crc":-1753269538},{"key":"kotlin/internal/PlatformImplementationsKt.class","name":"kotlin/internal/PlatformImplementationsKt.class","size":2660,"crc":-964337367},{"key":"kotlin/internal/ProgressionUtilKt.class","name":"kotlin/internal/ProgressionUtilKt.class","size":1714,"crc":-409225869},{"key":"kotlin/internal/PureReifiable.class","name":"kotlin/internal/PureReifiable.class","size":758,"crc":1345178402},{"key":"kotlin/internal/RequireKotlin$Container.class","name":"kotlin/internal/RequireKotlin$Container.class","size":935,"crc":-1063676858},{"key":"kotlin/internal/RequireKotlin.class","name":"kotlin/internal/RequireKotlin.class","size":1730,"crc":-1294212214},{"key":"kotlin/internal/RequireKotlinVersionKind.class","name":"kotlin/internal/RequireKotlinVersionKind.class","size":1976,"crc":1952872647},{"key":"kotlin/internal/UProgressionUtilKt.class","name":"kotlin/internal/UProgressionUtilKt.class","size":2147,"crc":2024212222},{"key":"kotlin/io/AccessDeniedException.class","name":"kotlin/io/AccessDeniedException.class","size":1234,"crc":227190511},{"key":"kotlin/io/ByteStreamsKt$iterator$1.class","name":"kotlin/io/ByteStreamsKt$iterator$1.class","size":2283,"crc":820478245},{"key":"kotlin/io/ByteStreamsKt.class","name":"kotlin/io/ByteStreamsKt.class","size":8217,"crc":2049191648},{"key":"kotlin/io/CloseableKt.class","name":"kotlin/io/CloseableKt.class","size":2410,"crc":-127060267},{"key":"kotlin/io/ConsoleKt.class","name":"kotlin/io/ConsoleKt.class","size":4298,"crc":1628739225},{"key":"kotlin/io/ConstantsKt.class","name":"kotlin/io/ConstantsKt.class","size":606,"crc":2117026884},{"key":"kotlin/io/ExceptionsKt.class","name":"kotlin/io/ExceptionsKt.class","size":1363,"crc":1571864551},{"key":"kotlin/io/ExposingBufferByteArrayOutputStream.class","name":"kotlin/io/ExposingBufferByteArrayOutputStream.class","size":985,"crc":-1330676948},{"key":"kotlin/io/FileAlreadyExistsException.class","name":"kotlin/io/FileAlreadyExistsException.class","size":1244,"crc":-2054698936},{"key":"kotlin/io/FilePathComponents.class","name":"kotlin/io/FilePathComponents.class","size":4372,"crc":1963806951},{"key":"kotlin/io/FileSystemException.class","name":"kotlin/io/FileSystemException.class","size":1900,"crc":1442021606},{"key":"kotlin/io/FileTreeWalk$DirectoryState.class","name":"kotlin/io/FileTreeWalk$DirectoryState.class","size":1792,"crc":-1325553207},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$BottomUpDirectoryState.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$BottomUpDirectoryState.class","size":2896,"crc":1532611359},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$SingleFileState.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$SingleFileState.class","size":2426,"crc":-496394119},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$TopDownDirectoryState.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$TopDownDirectoryState.class","size":2899,"crc":2110876839},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$WhenMappings.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$WhenMappings.class","size":842,"crc":1978710697},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator.class","size":3501,"crc":-621707946},{"key":"kotlin/io/FileTreeWalk$WalkState.class","name":"kotlin/io/FileTreeWalk$WalkState.class","size":1143,"crc":1105107333},{"key":"kotlin/io/FileTreeWalk.class","name":"kotlin/io/FileTreeWalk.class","size":6105,"crc":296366671},{"key":"kotlin/io/FileWalkDirection.class","name":"kotlin/io/FileWalkDirection.class","size":1746,"crc":-233356171},{"key":"kotlin/io/FilesKt.class","name":"kotlin/io/FilesKt.class","size":500,"crc":-1292473319},{"key":"kotlin/io/FilesKt__FilePathComponentsKt.class","name":"kotlin/io/FilesKt__FilePathComponentsKt.class","size":5233,"crc":538980239},{"key":"kotlin/io/FilesKt__FileReadWriteKt$readLines$1.class","name":"kotlin/io/FilesKt__FileReadWriteKt$readLines$1.class","size":1726,"crc":973217240},{"key":"kotlin/io/FilesKt__FileReadWriteKt.class","name":"kotlin/io/FilesKt__FileReadWriteKt.class","size":15877,"crc":-134723506},{"key":"kotlin/io/FilesKt__FileTreeWalkKt.class","name":"kotlin/io/FilesKt__FileTreeWalkKt.class","size":1799,"crc":1675044352},{"key":"kotlin/io/FilesKt__UtilsKt$copyRecursively$1.class","name":"kotlin/io/FilesKt__UtilsKt$copyRecursively$1.class","size":1612,"crc":588321209},{"key":"kotlin/io/FilesKt__UtilsKt$copyRecursively$2.class","name":"kotlin/io/FilesKt__UtilsKt$copyRecursively$2.class","size":2141,"crc":-266864910},{"key":"kotlin/io/FilesKt__UtilsKt.class","name":"kotlin/io/FilesKt__UtilsKt.class","size":16836,"crc":-1104781288},{"key":"kotlin/io/LineReader.class","name":"kotlin/io/LineReader.class","size":5960,"crc":-672957175},{"key":"kotlin/io/LinesSequence$iterator$1.class","name":"kotlin/io/LinesSequence$iterator$1.class","size":2145,"crc":513590345},{"key":"kotlin/io/LinesSequence.class","name":"kotlin/io/LinesSequence.class","size":1525,"crc":1307884124},{"key":"kotlin/io/NoSuchFileException.class","name":"kotlin/io/NoSuchFileException.class","size":1230,"crc":1485785339},{"key":"kotlin/io/OnErrorAction.class","name":"kotlin/io/OnErrorAction.class","size":1707,"crc":201315114},{"key":"kotlin/io/ReadAfterEOFException.class","name":"kotlin/io/ReadAfterEOFException.class","size":754,"crc":863840860},{"key":"kotlin/io/SerializableKt.class","name":"kotlin/io/SerializableKt.class","size":448,"crc":-1216600242},{"key":"kotlin/io/TerminateException.class","name":"kotlin/io/TerminateException.class","size":924,"crc":-1178535396},{"key":"kotlin/io/TextStreamsKt$readLines$1.class","name":"kotlin/io/TextStreamsKt$readLines$1.class","size":1665,"crc":1083965957},{"key":"kotlin/io/TextStreamsKt.class","name":"kotlin/io/TextStreamsKt.class","size":8810,"crc":25805800},{"key":"kotlin/io/encoding/Base64$Default.class","name":"kotlin/io/encoding/Base64$Default.class","size":1777,"crc":-1283377667},{"key":"kotlin/io/encoding/Base64.class","name":"kotlin/io/encoding/Base64.class","size":15178,"crc":971005045},{"key":"kotlin/io/encoding/Base64JVMKt.class","name":"kotlin/io/encoding/Base64JVMKt.class","size":2904,"crc":1209305563},{"key":"kotlin/io/encoding/Base64Kt.class","name":"kotlin/io/encoding/Base64Kt.class","size":4749,"crc":-1677149066},{"key":"kotlin/io/encoding/DecodeInputStream.class","name":"kotlin/io/encoding/DecodeInputStream.class","size":5329,"crc":-1122565338},{"key":"kotlin/io/encoding/EncodeOutputStream.class","name":"kotlin/io/encoding/EncodeOutputStream.class","size":4679,"crc":-1623836776},{"key":"kotlin/io/encoding/ExperimentalEncodingApi.class","name":"kotlin/io/encoding/ExperimentalEncodingApi.class","size":1434,"crc":647943232},{"key":"kotlin/io/encoding/StreamEncodingKt.class","name":"kotlin/io/encoding/StreamEncodingKt.class","size":480,"crc":-1073408436},{"key":"kotlin/io/encoding/StreamEncodingKt__Base64IOStreamKt.class","name":"kotlin/io/encoding/StreamEncodingKt__Base64IOStreamKt.class","size":1806,"crc":974887480},{"key":"kotlin/js/ExperimentalJsExport.class","name":"kotlin/js/ExperimentalJsExport.class","size":949,"crc":-1053284241},{"key":"kotlin/js/ExperimentalJsFileName.class","name":"kotlin/js/ExperimentalJsFileName.class","size":953,"crc":-2097952026},{"key":"kotlin/js/ExperimentalJsReflectionCreateInstance.class","name":"kotlin/js/ExperimentalJsReflectionCreateInstance.class","size":1439,"crc":-2141626407},{"key":"kotlin/jvm/ImplicitlyActualizedByJvmDeclaration.class","name":"kotlin/jvm/ImplicitlyActualizedByJvmDeclaration.class","size":1039,"crc":-2136889168},{"key":"kotlin/jvm/JvmClassMappingKt.class","name":"kotlin/jvm/JvmClassMappingKt.class","size":7168,"crc":1011152709},{"key":"kotlin/jvm/JvmDefault.class","name":"kotlin/jvm/JvmDefault.class","size":965,"crc":-1497896027},{"key":"kotlin/jvm/JvmDefaultWithCompatibility.class","name":"kotlin/jvm/JvmDefaultWithCompatibility.class","size":900,"crc":2061592004},{"key":"kotlin/jvm/JvmDefaultWithoutCompatibility.class","name":"kotlin/jvm/JvmDefaultWithoutCompatibility.class","size":891,"crc":-1538422422},{"key":"kotlin/jvm/JvmField.class","name":"kotlin/jvm/JvmField.class","size":857,"crc":441782847},{"key":"kotlin/jvm/JvmInline.class","name":"kotlin/jvm/JvmInline.class","size":945,"crc":906305351},{"key":"kotlin/jvm/JvmMultifileClass.class","name":"kotlin/jvm/JvmMultifileClass.class","size":824,"crc":1147139065},{"key":"kotlin/jvm/JvmName.class","name":"kotlin/jvm/JvmName.class","size":1005,"crc":865165738},{"key":"kotlin/jvm/JvmOverloads.class","name":"kotlin/jvm/JvmOverloads.class","size":901,"crc":-302911517},{"key":"kotlin/jvm/JvmPackageName.class","name":"kotlin/jvm/JvmPackageName.class","size":984,"crc":-1170927781},{"key":"kotlin/jvm/JvmRecord.class","name":"kotlin/jvm/JvmRecord.class","size":944,"crc":1705738379},{"key":"kotlin/jvm/JvmSerializableLambda.class","name":"kotlin/jvm/JvmSerializableLambda.class","size":837,"crc":-81358833},{"key":"kotlin/jvm/JvmStatic.class","name":"kotlin/jvm/JvmStatic.class","size":926,"crc":465241126},{"key":"kotlin/jvm/JvmSuppressWildcards.class","name":"kotlin/jvm/JvmSuppressWildcards.class","size":1029,"crc":-1748683121},{"key":"kotlin/jvm/JvmSynthetic.class","name":"kotlin/jvm/JvmSynthetic.class","size":862,"crc":-1451426540},{"key":"kotlin/jvm/JvmWildcard.class","name":"kotlin/jvm/JvmWildcard.class","size":820,"crc":738466343},{"key":"kotlin/jvm/KotlinReflectionNotSupportedError.class","name":"kotlin/jvm/KotlinReflectionNotSupportedError.class","size":1332,"crc":1923609602},{"key":"kotlin/jvm/PurelyImplements.class","name":"kotlin/jvm/PurelyImplements.class","size":940,"crc":-260409503},{"key":"kotlin/jvm/Strictfp.class","name":"kotlin/jvm/Strictfp.class","size":952,"crc":110649944},{"key":"kotlin/jvm/Synchronized.class","name":"kotlin/jvm/Synchronized.class","size":911,"crc":1122271982},{"key":"kotlin/jvm/Throws.class","name":"kotlin/jvm/Throws.class","size":1087,"crc":-1567643716},{"key":"kotlin/jvm/Transient.class","name":"kotlin/jvm/Transient.class","size":847,"crc":-2079134763},{"key":"kotlin/jvm/Volatile.class","name":"kotlin/jvm/Volatile.class","size":845,"crc":-888361923},{"key":"kotlin/jvm/functions/Function0.class","name":"kotlin/jvm/functions/Function0.class","size":584,"crc":-909373440},{"key":"kotlin/jvm/functions/Function1.class","name":"kotlin/jvm/functions/Function1.class","size":661,"crc":922677424},{"key":"kotlin/jvm/functions/Function10.class","name":"kotlin/jvm/functions/Function10.class","size":1351,"crc":470156020},{"key":"kotlin/jvm/functions/Function11.class","name":"kotlin/jvm/functions/Function11.class","size":1431,"crc":-1769343939},{"key":"kotlin/jvm/functions/Function12.class","name":"kotlin/jvm/functions/Function12.class","size":1511,"crc":2121955041},{"key":"kotlin/jvm/functions/Function13.class","name":"kotlin/jvm/functions/Function13.class","size":1591,"crc":-88986153},{"key":"kotlin/jvm/functions/Function14.class","name":"kotlin/jvm/functions/Function14.class","size":1671,"crc":-727615517},{"key":"kotlin/jvm/functions/Function15.class","name":"kotlin/jvm/functions/Function15.class","size":1753,"crc":-755344073},{"key":"kotlin/jvm/functions/Function16.class","name":"kotlin/jvm/functions/Function16.class","size":1833,"crc":-440676244},{"key":"kotlin/jvm/functions/Function17.class","name":"kotlin/jvm/functions/Function17.class","size":1913,"crc":1566142966},{"key":"kotlin/jvm/functions/Function18.class","name":"kotlin/jvm/functions/Function18.class","size":1993,"crc":1363447016},{"key":"kotlin/jvm/functions/Function19.class","name":"kotlin/jvm/functions/Function19.class","size":2073,"crc":564255108},{"key":"kotlin/jvm/functions/Function2.class","name":"kotlin/jvm/functions/Function2.class","size":737,"crc":-1331267189},{"key":"kotlin/jvm/functions/Function20.class","name":"kotlin/jvm/functions/Function20.class","size":2153,"crc":169038817},{"key":"kotlin/jvm/functions/Function21.class","name":"kotlin/jvm/functions/Function21.class","size":2233,"crc":-1762499913},{"key":"kotlin/jvm/functions/Function22.class","name":"kotlin/jvm/functions/Function22.class","size":2313,"crc":1364071103},{"key":"kotlin/jvm/functions/Function3.class","name":"kotlin/jvm/functions/Function3.class","size":813,"crc":-756278940},{"key":"kotlin/jvm/functions/Function4.class","name":"kotlin/jvm/functions/Function4.class","size":889,"crc":1638232334},{"key":"kotlin/jvm/functions/Function5.class","name":"kotlin/jvm/functions/Function5.class","size":965,"crc":598414095},{"key":"kotlin/jvm/functions/Function6.class","name":"kotlin/jvm/functions/Function6.class","size":1041,"crc":-343278714},{"key":"kotlin/jvm/functions/Function7.class","name":"kotlin/jvm/functions/Function7.class","size":1117,"crc":-597218157},{"key":"kotlin/jvm/functions/Function8.class","name":"kotlin/jvm/functions/Function8.class","size":1193,"crc":-1418717722},{"key":"kotlin/jvm/functions/Function9.class","name":"kotlin/jvm/functions/Function9.class","size":1269,"crc":-1749645506},{"key":"kotlin/jvm/functions/FunctionN.class","name":"kotlin/jvm/functions/FunctionN.class","size":1061,"crc":-1536285221},{"key":"kotlin/jvm/internal/ArrayBooleanIterator.class","name":"kotlin/jvm/internal/ArrayBooleanIterator.class","size":1515,"crc":778217530},{"key":"kotlin/jvm/internal/ArrayByteIterator.class","name":"kotlin/jvm/internal/ArrayByteIterator.class","size":1515,"crc":-256114036},{"key":"kotlin/jvm/internal/ArrayCharIterator.class","name":"kotlin/jvm/internal/ArrayCharIterator.class","size":1515,"crc":-763297858},{"key":"kotlin/jvm/internal/ArrayDoubleIterator.class","name":"kotlin/jvm/internal/ArrayDoubleIterator.class","size":1525,"crc":1464987663},{"key":"kotlin/jvm/internal/ArrayFloatIterator.class","name":"kotlin/jvm/internal/ArrayFloatIterator.class","size":1520,"crc":-64944472},{"key":"kotlin/jvm/internal/ArrayIntIterator.class","name":"kotlin/jvm/internal/ArrayIntIterator.class","size":1501,"crc":-1677935995},{"key":"kotlin/jvm/internal/ArrayIterator.class","name":"kotlin/jvm/internal/ArrayIterator.class","size":2106,"crc":1687851062},{"key":"kotlin/jvm/internal/ArrayIteratorKt.class","name":"kotlin/jvm/internal/ArrayIteratorKt.class","size":1023,"crc":1440653645},{"key":"kotlin/jvm/internal/ArrayIteratorsKt.class","name":"kotlin/jvm/internal/ArrayIteratorsKt.class","size":3114,"crc":-1342272618},{"key":"kotlin/jvm/internal/ArrayLongIterator.class","name":"kotlin/jvm/internal/ArrayLongIterator.class","size":1515,"crc":-1231845849},{"key":"kotlin/jvm/internal/ArrayShortIterator.class","name":"kotlin/jvm/internal/ArrayShortIterator.class","size":1520,"crc":-434393845},{"key":"kotlin/jvm/internal/BooleanCompanionObject.class","name":"kotlin/jvm/internal/BooleanCompanionObject.class","size":766,"crc":1111651632},{"key":"kotlin/jvm/internal/BooleanSpreadBuilder.class","name":"kotlin/jvm/internal/BooleanSpreadBuilder.class","size":1725,"crc":2063761744},{"key":"kotlin/jvm/internal/ByteCompanionObject.class","name":"kotlin/jvm/internal/ByteCompanionObject.class","size":1195,"crc":-396125422},{"key":"kotlin/jvm/internal/ByteSpreadBuilder.class","name":"kotlin/jvm/internal/ByteSpreadBuilder.class","size":1719,"crc":-219929107},{"key":"kotlin/jvm/internal/CharCompanionObject.class","name":"kotlin/jvm/internal/CharCompanionObject.class","size":1733,"crc":832403686},{"key":"kotlin/jvm/internal/CharSpreadBuilder.class","name":"kotlin/jvm/internal/CharSpreadBuilder.class","size":1719,"crc":1142829869},{"key":"kotlin/jvm/internal/ClassBasedDeclarationContainer.class","name":"kotlin/jvm/internal/ClassBasedDeclarationContainer.class","size":737,"crc":2093255845},{"key":"kotlin/jvm/internal/ClassReference$Companion.class","name":"kotlin/jvm/internal/ClassReference$Companion.class","size":5631,"crc":-135940931},{"key":"kotlin/jvm/internal/ClassReference.class","name":"kotlin/jvm/internal/ClassReference.class","size":16432,"crc":-1582948118},{"key":"kotlin/jvm/internal/CollectionToArray.class","name":"kotlin/jvm/internal/CollectionToArray.class","size":6451,"crc":1808882824},{"key":"kotlin/jvm/internal/DoubleCompanionObject.class","name":"kotlin/jvm/internal/DoubleCompanionObject.class","size":2295,"crc":-405870132},{"key":"kotlin/jvm/internal/DoubleSpreadBuilder.class","name":"kotlin/jvm/internal/DoubleSpreadBuilder.class","size":1723,"crc":798466303},{"key":"kotlin/jvm/internal/EnumCompanionObject.class","name":"kotlin/jvm/internal/EnumCompanionObject.class","size":704,"crc":761914367},{"key":"kotlin/jvm/internal/FloatCompanionObject.class","name":"kotlin/jvm/internal/FloatCompanionObject.class","size":2268,"crc":551660058},{"key":"kotlin/jvm/internal/FloatSpreadBuilder.class","name":"kotlin/jvm/internal/FloatSpreadBuilder.class","size":1721,"crc":171521870},{"key":"kotlin/jvm/internal/FunctionBase.class","name":"kotlin/jvm/internal/FunctionBase.class","size":587,"crc":-1463696599},{"key":"kotlin/jvm/internal/IntCompanionObject.class","name":"kotlin/jvm/internal/IntCompanionObject.class","size":1183,"crc":78804304},{"key":"kotlin/jvm/internal/IntSpreadBuilder.class","name":"kotlin/jvm/internal/IntSpreadBuilder.class","size":1696,"crc":-774089228},{"key":"kotlin/jvm/internal/KTypeBase.class","name":"kotlin/jvm/internal/KTypeBase.class","size":670,"crc":-1983015743},{"key":"kotlin/jvm/internal/Lambda.class","name":"kotlin/jvm/internal/Lambda.class","size":1437,"crc":112863782},{"key":"kotlin/jvm/internal/LocalVariableReference.class","name":"kotlin/jvm/internal/LocalVariableReference.class","size":1365,"crc":-1012495115},{"key":"kotlin/jvm/internal/LocalVariableReferencesKt.class","name":"kotlin/jvm/internal/LocalVariableReferencesKt.class","size":682,"crc":569424948},{"key":"kotlin/jvm/internal/LongCompanionObject.class","name":"kotlin/jvm/internal/LongCompanionObject.class","size":1208,"crc":-277488326},{"key":"kotlin/jvm/internal/LongSpreadBuilder.class","name":"kotlin/jvm/internal/LongSpreadBuilder.class","size":1719,"crc":835972803},{"key":"kotlin/jvm/internal/MutableLocalVariableReference.class","name":"kotlin/jvm/internal/MutableLocalVariableReference.class","size":1719,"crc":-1117062596},{"key":"kotlin/jvm/internal/PackageReference.class","name":"kotlin/jvm/internal/PackageReference.class","size":2620,"crc":-701014410},{"key":"kotlin/jvm/internal/PrimitiveSpreadBuilder.class","name":"kotlin/jvm/internal/PrimitiveSpreadBuilder.class","size":2880,"crc":-71319985},{"key":"kotlin/jvm/internal/SerializedIr.class","name":"kotlin/jvm/internal/SerializedIr.class","size":1063,"crc":2026605270},{"key":"kotlin/jvm/internal/ShortCompanionObject.class","name":"kotlin/jvm/internal/ShortCompanionObject.class","size":1202,"crc":-87682822},{"key":"kotlin/jvm/internal/ShortSpreadBuilder.class","name":"kotlin/jvm/internal/ShortSpreadBuilder.class","size":1721,"crc":1196198986},{"key":"kotlin/jvm/internal/SourceDebugExtension.class","name":"kotlin/jvm/internal/SourceDebugExtension.class","size":992,"crc":473137854},{"key":"kotlin/jvm/internal/StringCompanionObject.class","name":"kotlin/jvm/internal/StringCompanionObject.class","size":708,"crc":731090467},{"key":"kotlin/jvm/internal/TypeParameterReference$Companion$WhenMappings.class","name":"kotlin/jvm/internal/TypeParameterReference$Companion$WhenMappings.class","size":907,"crc":-1451406313},{"key":"kotlin/jvm/internal/TypeParameterReference$Companion.class","name":"kotlin/jvm/internal/TypeParameterReference$Companion.class","size":2139,"crc":650463094},{"key":"kotlin/jvm/internal/TypeParameterReference.class","name":"kotlin/jvm/internal/TypeParameterReference.class","size":4710,"crc":-1950052979},{"key":"kotlin/jvm/internal/TypeReference$Companion.class","name":"kotlin/jvm/internal/TypeReference$Companion.class","size":952,"crc":1106262449},{"key":"kotlin/jvm/internal/TypeReference$WhenMappings.class","name":"kotlin/jvm/internal/TypeReference$WhenMappings.class","size":792,"crc":268010207},{"key":"kotlin/jvm/internal/TypeReference$asString$args$1.class","name":"kotlin/jvm/internal/TypeReference$asString$args$1.class","size":1783,"crc":163653558},{"key":"kotlin/jvm/internal/TypeReference.class","name":"kotlin/jvm/internal/TypeReference.class","size":8247,"crc":374088075},{"key":"kotlin/jvm/internal/markers/KMappedMarker.class","name":"kotlin/jvm/internal/markers/KMappedMarker.class","size":374,"crc":1379417699},{"key":"kotlin/jvm/internal/markers/KMutableCollection.class","name":"kotlin/jvm/internal/markers/KMutableCollection.class","size":481,"crc":495101105},{"key":"kotlin/jvm/internal/markers/KMutableIterable.class","name":"kotlin/jvm/internal/markers/KMutableIterable.class","size":471,"crc":-1761605521},{"key":"kotlin/jvm/internal/markers/KMutableIterator.class","name":"kotlin/jvm/internal/markers/KMutableIterator.class","size":471,"crc":212924626},{"key":"kotlin/jvm/internal/markers/KMutableList.class","name":"kotlin/jvm/internal/markers/KMutableList.class","size":473,"crc":-460822749},{"key":"kotlin/jvm/internal/markers/KMutableListIterator.class","name":"kotlin/jvm/internal/markers/KMutableListIterator.class","size":485,"crc":-1420650768},{"key":"kotlin/jvm/internal/markers/KMutableMap$Entry.class","name":"kotlin/jvm/internal/markers/KMutableMap$Entry.class","size":557,"crc":-1507953878},{"key":"kotlin/jvm/internal/markers/KMutableMap.class","name":"kotlin/jvm/internal/markers/KMutableMap.class","size":558,"crc":-1887506385},{"key":"kotlin/jvm/internal/markers/KMutableSet.class","name":"kotlin/jvm/internal/markers/KMutableSet.class","size":471,"crc":-209730974},{"key":"kotlin/jvm/internal/unsafe/MonitorKt.class","name":"kotlin/jvm/internal/unsafe/MonitorKt.class","size":767,"crc":1856449257},{"key":"kotlin/math/Constants.class","name":"kotlin/math/Constants.class","size":1288,"crc":863133183},{"key":"kotlin/math/MathKt.class","name":"kotlin/math/MathKt.class","size":493,"crc":-338347273},{"key":"kotlin/math/MathKt__MathHKt.class","name":"kotlin/math/MathKt__MathHKt.class","size":775,"crc":965165272},{"key":"kotlin/math/MathKt__MathJVMKt.class","name":"kotlin/math/MathKt__MathJVMKt.class","size":14868,"crc":-1125826625},{"key":"kotlin/math/UMathKt.class","name":"kotlin/math/UMathKt.class","size":1399,"crc":-532145849},{"key":"kotlin/properties/Delegates$observable$1.class","name":"kotlin/properties/Delegates$observable$1.class","size":2326,"crc":1858811867},{"key":"kotlin/properties/Delegates$vetoable$1.class","name":"kotlin/properties/Delegates$vetoable$1.class","size":2388,"crc":-1506224883},{"key":"kotlin/properties/Delegates.class","name":"kotlin/properties/Delegates.class","size":2794,"crc":1843751956},{"key":"kotlin/properties/NotNullVar.class","name":"kotlin/properties/NotNullVar.class","size":2583,"crc":-453126454},{"key":"kotlin/properties/ObservableProperty.class","name":"kotlin/properties/ObservableProperty.class","size":3024,"crc":-969331561},{"key":"kotlin/properties/PropertyDelegateProvider.class","name":"kotlin/properties/PropertyDelegateProvider.class","size":933,"crc":-495463817},{"key":"kotlin/properties/ReadOnlyProperty.class","name":"kotlin/properties/ReadOnlyProperty.class","size":824,"crc":1858658415},{"key":"kotlin/properties/ReadWriteProperty.class","name":"kotlin/properties/ReadWriteProperty.class","size":1184,"crc":1258318723},{"key":"kotlin/random/AbstractPlatformRandom.class","name":"kotlin/random/AbstractPlatformRandom.class","size":2535,"crc":1100785784},{"key":"kotlin/random/FallbackThreadLocalRandom$implStorage$1.class","name":"kotlin/random/FallbackThreadLocalRandom$implStorage$1.class","size":1094,"crc":968345181},{"key":"kotlin/random/FallbackThreadLocalRandom.class","name":"kotlin/random/FallbackThreadLocalRandom.class","size":1288,"crc":-247279545},{"key":"kotlin/random/KotlinRandom$Companion.class","name":"kotlin/random/KotlinRandom$Companion.class","size":838,"crc":-1557800371},{"key":"kotlin/random/KotlinRandom.class","name":"kotlin/random/KotlinRandom.class","size":2780,"crc":1594010224},{"key":"kotlin/random/PlatformRandom$Companion.class","name":"kotlin/random/PlatformRandom$Companion.class","size":844,"crc":112823939},{"key":"kotlin/random/PlatformRandom.class","name":"kotlin/random/PlatformRandom.class","size":1503,"crc":-527473605},{"key":"kotlin/random/PlatformRandomKt.class","name":"kotlin/random/PlatformRandomKt.class","size":2025,"crc":734052214},{"key":"kotlin/random/Random$Default$Serialized.class","name":"kotlin/random/Random$Default$Serialized.class","size":1157,"crc":625402449},{"key":"kotlin/random/Random$Default.class","name":"kotlin/random/Random$Default.class","size":3425,"crc":-1200305273},{"key":"kotlin/random/Random.class","name":"kotlin/random/Random.class","size":6513,"crc":-1149581943},{"key":"kotlin/random/RandomKt.class","name":"kotlin/random/RandomKt.class","size":4395,"crc":1502624398},{"key":"kotlin/random/URandomKt.class","name":"kotlin/random/URandomKt.class","size":6606,"crc":-63212210},{"key":"kotlin/random/XorWowRandom$Companion.class","name":"kotlin/random/XorWowRandom$Companion.class","size":836,"crc":-301569317},{"key":"kotlin/random/XorWowRandom.class","name":"kotlin/random/XorWowRandom.class","size":2991,"crc":1089717476},{"key":"kotlin/ranges/CharProgression$Companion.class","name":"kotlin/ranges/CharProgression$Companion.class","size":1195,"crc":568481049},{"key":"kotlin/ranges/CharProgression.class","name":"kotlin/ranges/CharProgression.class","size":3577,"crc":1877081729},{"key":"kotlin/ranges/CharProgressionIterator.class","name":"kotlin/ranges/CharProgressionIterator.class","size":1547,"crc":842801371},{"key":"kotlin/ranges/CharRange$Companion.class","name":"kotlin/ranges/CharRange$Companion.class","size":1068,"crc":1955667294},{"key":"kotlin/ranges/CharRange.class","name":"kotlin/ranges/CharRange.class","size":4291,"crc":-728609082},{"key":"kotlin/ranges/ClosedDoubleRange.class","name":"kotlin/ranges/ClosedDoubleRange.class","size":3157,"crc":1869616073},{"key":"kotlin/ranges/ClosedFloatRange.class","name":"kotlin/ranges/ClosedFloatRange.class","size":3150,"crc":1547889871},{"key":"kotlin/ranges/ClosedFloatingPointRange$DefaultImpls.class","name":"kotlin/ranges/ClosedFloatingPointRange$DefaultImpls.class","size":1423,"crc":1045014490},{"key":"kotlin/ranges/ClosedFloatingPointRange.class","name":"kotlin/ranges/ClosedFloatingPointRange.class","size":1179,"crc":-548035710},{"key":"kotlin/ranges/ClosedRange$DefaultImpls.class","name":"kotlin/ranges/ClosedRange$DefaultImpls.class","size":1321,"crc":-234209581},{"key":"kotlin/ranges/ClosedRange.class","name":"kotlin/ranges/ClosedRange.class","size":1018,"crc":301778213},{"key":"kotlin/ranges/ComparableOpenEndRange.class","name":"kotlin/ranges/ComparableOpenEndRange.class","size":2868,"crc":225943172},{"key":"kotlin/ranges/ComparableRange.class","name":"kotlin/ranges/ComparableRange.class","size":2847,"crc":300326156},{"key":"kotlin/ranges/IntProgression$Companion.class","name":"kotlin/ranges/IntProgression$Companion.class","size":1176,"crc":1835738025},{"key":"kotlin/ranges/IntProgression.class","name":"kotlin/ranges/IntProgression.class","size":3415,"crc":-1281017826},{"key":"kotlin/ranges/IntProgressionIterator.class","name":"kotlin/ranges/IntProgressionIterator.class","size":1442,"crc":-1921490937},{"key":"kotlin/ranges/IntRange$Companion.class","name":"kotlin/ranges/IntRange$Companion.class","size":1063,"crc":1372381880},{"key":"kotlin/ranges/IntRange.class","name":"kotlin/ranges/IntRange.class","size":4195,"crc":-1156792322},{"key":"kotlin/ranges/LongProgression$Companion.class","name":"kotlin/ranges/LongProgression$Companion.class","size":1182,"crc":1474442642},{"key":"kotlin/ranges/LongProgression.class","name":"kotlin/ranges/LongProgression.class","size":3485,"crc":1257759845},{"key":"kotlin/ranges/LongProgressionIterator.class","name":"kotlin/ranges/LongProgressionIterator.class","size":1453,"crc":933329898},{"key":"kotlin/ranges/LongRange$Companion.class","name":"kotlin/ranges/LongRange$Companion.class","size":1068,"crc":-1026190171},{"key":"kotlin/ranges/LongRange.class","name":"kotlin/ranges/LongRange.class","size":4235,"crc":-441740008},{"key":"kotlin/ranges/OpenEndDoubleRange.class","name":"kotlin/ranges/OpenEndDoubleRange.class","size":2969,"crc":-558656841},{"key":"kotlin/ranges/OpenEndFloatRange.class","name":"kotlin/ranges/OpenEndFloatRange.class","size":2962,"crc":151745833},{"key":"kotlin/ranges/OpenEndRange$DefaultImpls.class","name":"kotlin/ranges/OpenEndRange$DefaultImpls.class","size":1328,"crc":-2032834879},{"key":"kotlin/ranges/OpenEndRange.class","name":"kotlin/ranges/OpenEndRange.class","size":1163,"crc":-2051846807},{"key":"kotlin/ranges/RangesKt.class","name":"kotlin/ranges/RangesKt.class","size":431,"crc":296605454},{"key":"kotlin/ranges/RangesKt__RangesKt.class","name":"kotlin/ranges/RangesKt__RangesKt.class","size":4848,"crc":1037585792},{"key":"kotlin/ranges/RangesKt___RangesKt.class","name":"kotlin/ranges/RangesKt___RangesKt.class","size":39681,"crc":561928167},{"key":"kotlin/ranges/UIntProgression$Companion.class","name":"kotlin/ranges/UIntProgression$Companion.class","size":1292,"crc":-1079126007},{"key":"kotlin/ranges/UIntProgression.class","name":"kotlin/ranges/UIntProgression.class","size":3943,"crc":-995890194},{"key":"kotlin/ranges/UIntProgressionIterator.class","name":"kotlin/ranges/UIntProgressionIterator.class","size":2363,"crc":2089207368},{"key":"kotlin/ranges/UIntRange$Companion.class","name":"kotlin/ranges/UIntRange$Companion.class","size":1062,"crc":-584665661},{"key":"kotlin/ranges/UIntRange.class","name":"kotlin/ranges/UIntRange.class","size":4761,"crc":-805906275},{"key":"kotlin/ranges/ULongProgression$Companion.class","name":"kotlin/ranges/ULongProgression$Companion.class","size":1300,"crc":118167765},{"key":"kotlin/ranges/ULongProgression.class","name":"kotlin/ranges/ULongProgression.class","size":4080,"crc":224647720},{"key":"kotlin/ranges/ULongProgressionIterator.class","name":"kotlin/ranges/ULongProgressionIterator.class","size":2373,"crc":687574904},{"key":"kotlin/ranges/ULongRange$Companion.class","name":"kotlin/ranges/ULongRange$Companion.class","size":1068,"crc":-153807014},{"key":"kotlin/ranges/ULongRange.class","name":"kotlin/ranges/ULongRange.class","size":4864,"crc":-755025482},{"key":"kotlin/ranges/URangesKt.class","name":"kotlin/ranges/URangesKt.class","size":432,"crc":-862865872},{"key":"kotlin/ranges/URangesKt___URangesKt.class","name":"kotlin/ranges/URangesKt___URangesKt.class","size":17356,"crc":-503970653},{"key":"kotlin/reflect/GenericArrayTypeImpl.class","name":"kotlin/reflect/GenericArrayTypeImpl.class","size":2222,"crc":1336638857},{"key":"kotlin/reflect/KAnnotatedElement.class","name":"kotlin/reflect/KAnnotatedElement.class","size":636,"crc":-484705383},{"key":"kotlin/reflect/KCallable$DefaultImpls.class","name":"kotlin/reflect/KCallable$DefaultImpls.class","size":1111,"crc":710623442},{"key":"kotlin/reflect/KCallable.class","name":"kotlin/reflect/KCallable.class","size":2495,"crc":1584328110},{"key":"kotlin/reflect/KClass$DefaultImpls.class","name":"kotlin/reflect/KClass$DefaultImpls.class","size":1652,"crc":-566690550},{"key":"kotlin/reflect/KClass.class","name":"kotlin/reflect/KClass.class","size":3949,"crc":-770042337},{"key":"kotlin/reflect/KClasses.class","name":"kotlin/reflect/KClasses.class","size":2780,"crc":-1016113458},{"key":"kotlin/reflect/KClassesImplKt.class","name":"kotlin/reflect/KClassesImplKt.class","size":1124,"crc":21413327},{"key":"kotlin/reflect/KClassifier.class","name":"kotlin/reflect/KClassifier.class","size":433,"crc":-1495443118},{"key":"kotlin/reflect/KDeclarationContainer.class","name":"kotlin/reflect/KDeclarationContainer.class","size":681,"crc":-676512510},{"key":"kotlin/reflect/KFunction$DefaultImpls.class","name":"kotlin/reflect/KFunction$DefaultImpls.class","size":788,"crc":2007138240},{"key":"kotlin/reflect/KFunction.class","name":"kotlin/reflect/KFunction.class","size":1118,"crc":1542341802},{"key":"kotlin/reflect/KMutableProperty$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty$DefaultImpls.class","size":421,"crc":-1275981287},{"key":"kotlin/reflect/KMutableProperty$Setter.class","name":"kotlin/reflect/KMutableProperty$Setter.class","size":824,"crc":-55158174},{"key":"kotlin/reflect/KMutableProperty.class","name":"kotlin/reflect/KMutableProperty.class","size":1038,"crc":-1758317587},{"key":"kotlin/reflect/KMutableProperty0$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty0$DefaultImpls.class","size":423,"crc":-371887144},{"key":"kotlin/reflect/KMutableProperty0$Setter.class","name":"kotlin/reflect/KMutableProperty0$Setter.class","size":851,"crc":-1371139119},{"key":"kotlin/reflect/KMutableProperty0.class","name":"kotlin/reflect/KMutableProperty0.class","size":1289,"crc":-660774358},{"key":"kotlin/reflect/KMutableProperty1$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty1$DefaultImpls.class","size":423,"crc":-1486605265},{"key":"kotlin/reflect/KMutableProperty1$Setter.class","name":"kotlin/reflect/KMutableProperty1$Setter.class","size":894,"crc":1154652165},{"key":"kotlin/reflect/KMutableProperty1.class","name":"kotlin/reflect/KMutableProperty1.class","size":1384,"crc":-1554348424},{"key":"kotlin/reflect/KMutableProperty2$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty2$DefaultImpls.class","size":423,"crc":1958214710},{"key":"kotlin/reflect/KMutableProperty2$Setter.class","name":"kotlin/reflect/KMutableProperty2$Setter.class","size":936,"crc":1804541428},{"key":"kotlin/reflect/KMutableProperty2.class","name":"kotlin/reflect/KMutableProperty2.class","size":1480,"crc":100480214},{"key":"kotlin/reflect/KParameter$DefaultImpls.class","name":"kotlin/reflect/KParameter$DefaultImpls.class","size":495,"crc":-1069332061},{"key":"kotlin/reflect/KParameter$Kind.class","name":"kotlin/reflect/KParameter$Kind.class","size":1902,"crc":1342257404},{"key":"kotlin/reflect/KParameter.class","name":"kotlin/reflect/KParameter.class","size":1288,"crc":1620613847},{"key":"kotlin/reflect/KProperty$Accessor.class","name":"kotlin/reflect/KProperty$Accessor.class","size":777,"crc":1370458406},{"key":"kotlin/reflect/KProperty$DefaultImpls.class","name":"kotlin/reflect/KProperty$DefaultImpls.class","size":623,"crc":-2041662637},{"key":"kotlin/reflect/KProperty$Getter.class","name":"kotlin/reflect/KProperty$Getter.class","size":755,"crc":-1127746446},{"key":"kotlin/reflect/KProperty.class","name":"kotlin/reflect/KProperty.class","size":1234,"crc":-692638702},{"key":"kotlin/reflect/KProperty0$DefaultImpls.class","name":"kotlin/reflect/KProperty0$DefaultImpls.class","size":409,"crc":334583848},{"key":"kotlin/reflect/KProperty0$Getter.class","name":"kotlin/reflect/KProperty0$Getter.class","size":775,"crc":-2079112201},{"key":"kotlin/reflect/KProperty0.class","name":"kotlin/reflect/KProperty0.class","size":1338,"crc":1663799897},{"key":"kotlin/reflect/KProperty1$DefaultImpls.class","name":"kotlin/reflect/KProperty1$DefaultImpls.class","size":409,"crc":-1483283828},{"key":"kotlin/reflect/KProperty1$Getter.class","name":"kotlin/reflect/KProperty1$Getter.class","size":818,"crc":1698249378},{"key":"kotlin/reflect/KProperty1.class","name":"kotlin/reflect/KProperty1.class","size":1482,"crc":884293612},{"key":"kotlin/reflect/KProperty2$DefaultImpls.class","name":"kotlin/reflect/KProperty2$DefaultImpls.class","size":409,"crc":-1605424351},{"key":"kotlin/reflect/KProperty2$Getter.class","name":"kotlin/reflect/KProperty2$Getter.class","size":860,"crc":-352825252},{"key":"kotlin/reflect/KProperty2.class","name":"kotlin/reflect/KProperty2.class","size":1589,"crc":-667568397},{"key":"kotlin/reflect/KType$DefaultImpls.class","name":"kotlin/reflect/KType$DefaultImpls.class","size":562,"crc":-144222734},{"key":"kotlin/reflect/KType.class","name":"kotlin/reflect/KType.class","size":1145,"crc":611998814},{"key":"kotlin/reflect/KTypeParameter.class","name":"kotlin/reflect/KTypeParameter.class","size":1075,"crc":-41524431},{"key":"kotlin/reflect/KTypeProjection$Companion.class","name":"kotlin/reflect/KTypeProjection$Companion.class","size":2150,"crc":-1683658855},{"key":"kotlin/reflect/KTypeProjection$WhenMappings.class","name":"kotlin/reflect/KTypeProjection$WhenMappings.class","size":788,"crc":925001456},{"key":"kotlin/reflect/KTypeProjection.class","name":"kotlin/reflect/KTypeProjection.class","size":4537,"crc":-1819724631},{"key":"kotlin/reflect/KVariance.class","name":"kotlin/reflect/KVariance.class","size":1833,"crc":-1081405589},{"key":"kotlin/reflect/KVisibility.class","name":"kotlin/reflect/KVisibility.class","size":1919,"crc":610208808},{"key":"kotlin/reflect/ParameterizedTypeImpl$getTypeName$1$1.class","name":"kotlin/reflect/ParameterizedTypeImpl$getTypeName$1$1.class","size":1685,"crc":-1186164228},{"key":"kotlin/reflect/ParameterizedTypeImpl.class","name":"kotlin/reflect/ParameterizedTypeImpl.class","size":5108,"crc":-1248219311},{"key":"kotlin/reflect/TypeImpl.class","name":"kotlin/reflect/TypeImpl.class","size":587,"crc":1021264950},{"key":"kotlin/reflect/TypeOfKt.class","name":"kotlin/reflect/TypeOfKt.class","size":929,"crc":-1477382926},{"key":"kotlin/reflect/TypeVariableImpl.class","name":"kotlin/reflect/TypeVariableImpl.class","size":5991,"crc":1382623892},{"key":"kotlin/reflect/TypesJVMKt$WhenMappings.class","name":"kotlin/reflect/TypesJVMKt$WhenMappings.class","size":771,"crc":-1586309048},{"key":"kotlin/reflect/TypesJVMKt$typeToString$unwrap$1.class","name":"kotlin/reflect/TypesJVMKt$typeToString$unwrap$1.class","size":1628,"crc":1996157594},{"key":"kotlin/reflect/TypesJVMKt.class","name":"kotlin/reflect/TypesJVMKt.class","size":9444,"crc":2103517024},{"key":"kotlin/reflect/WildcardTypeImpl$Companion.class","name":"kotlin/reflect/WildcardTypeImpl$Companion.class","size":1098,"crc":-1641149225},{"key":"kotlin/reflect/WildcardTypeImpl.class","name":"kotlin/reflect/WildcardTypeImpl.class","size":3890,"crc":1895596086},{"key":"kotlin/sequences/ConstrainedOnceSequence.class","name":"kotlin/sequences/ConstrainedOnceSequence.class","size":1883,"crc":-1751058795},{"key":"kotlin/sequences/DistinctIterator.class","name":"kotlin/sequences/DistinctIterator.class","size":2274,"crc":-1544304662},{"key":"kotlin/sequences/DistinctSequence.class","name":"kotlin/sequences/DistinctSequence.class","size":1848,"crc":435489402},{"key":"kotlin/sequences/DropSequence$iterator$1.class","name":"kotlin/sequences/DropSequence$iterator$1.class","size":2456,"crc":-734076564},{"key":"kotlin/sequences/DropSequence.class","name":"kotlin/sequences/DropSequence.class","size":3649,"crc":320027259},{"key":"kotlin/sequences/DropTakeSequence.class","name":"kotlin/sequences/DropTakeSequence.class","size":823,"crc":1108774320},{"key":"kotlin/sequences/DropWhileSequence$iterator$1.class","name":"kotlin/sequences/DropWhileSequence$iterator$1.class","size":3385,"crc":-150881091},{"key":"kotlin/sequences/DropWhileSequence.class","name":"kotlin/sequences/DropWhileSequence.class","size":2193,"crc":-1394602980},{"key":"kotlin/sequences/EmptySequence.class","name":"kotlin/sequences/EmptySequence.class","size":1577,"crc":770645749},{"key":"kotlin/sequences/FilteringSequence$iterator$1.class","name":"kotlin/sequences/FilteringSequence$iterator$1.class","size":3499,"crc":-144551757},{"key":"kotlin/sequences/FilteringSequence.class","name":"kotlin/sequences/FilteringSequence.class","size":2625,"crc":-166037849},{"key":"kotlin/sequences/FlatteningSequence$iterator$1.class","name":"kotlin/sequences/FlatteningSequence$iterator$1.class","size":3332,"crc":341688098},{"key":"kotlin/sequences/FlatteningSequence.class","name":"kotlin/sequences/FlatteningSequence.class","size":2612,"crc":209523866},{"key":"kotlin/sequences/GeneratorSequence$iterator$1.class","name":"kotlin/sequences/GeneratorSequence$iterator$1.class","size":3312,"crc":-978476975},{"key":"kotlin/sequences/GeneratorSequence.class","name":"kotlin/sequences/GeneratorSequence.class","size":2269,"crc":366047889},{"key":"kotlin/sequences/IndexingSequence$iterator$1.class","name":"kotlin/sequences/IndexingSequence$iterator$1.class","size":2665,"crc":-338549996},{"key":"kotlin/sequences/IndexingSequence.class","name":"kotlin/sequences/IndexingSequence.class","size":1790,"crc":491973965},{"key":"kotlin/sequences/MergingSequence$iterator$1.class","name":"kotlin/sequences/MergingSequence$iterator$1.class","size":2631,"crc":-1924759999},{"key":"kotlin/sequences/MergingSequence.class","name":"kotlin/sequences/MergingSequence.class","size":2548,"crc":139581051},{"key":"kotlin/sequences/Sequence.class","name":"kotlin/sequences/Sequence.class","size":618,"crc":-664650727},{"key":"kotlin/sequences/SequenceBuilderIterator.class","name":"kotlin/sequences/SequenceBuilderIterator.class","size":5768,"crc":1776433590},{"key":"kotlin/sequences/SequenceScope.class","name":"kotlin/sequences/SequenceScope.class","size":2639,"crc":2018900657},{"key":"kotlin/sequences/SequencesKt.class","name":"kotlin/sequences/SequencesKt.class","size":615,"crc":848333778},{"key":"kotlin/sequences/SequencesKt__SequenceBuilderKt$sequence$$inlined$Sequence$1.class","name":"kotlin/sequences/SequencesKt__SequenceBuilderKt$sequence$$inlined$Sequence$1.class","size":2168,"crc":-10958493},{"key":"kotlin/sequences/SequencesKt__SequenceBuilderKt.class","name":"kotlin/sequences/SequencesKt__SequenceBuilderKt.class","size":3143,"crc":972722849},{"key":"kotlin/sequences/SequencesKt__SequencesJVMKt.class","name":"kotlin/sequences/SequencesKt__SequencesJVMKt.class","size":1316,"crc":-1047118410},{"key":"kotlin/sequences/SequencesKt__SequencesKt$Sequence$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$Sequence$1.class","size":1840,"crc":451179930},{"key":"kotlin/sequences/SequencesKt__SequencesKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$asSequence$$inlined$Sequence$1.class","size":1951,"crc":567200348},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatMapIndexed$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatMapIndexed$1.class","size":5034,"crc":-374444945},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatten$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatten$1.class","size":1762,"crc":-2130146256},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatten$2.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatten$2.class","size":1745,"crc":-1978520295},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatten$3.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatten$3.class","size":1190,"crc":2035902830},{"key":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$1.class","size":1671,"crc":1082457875},{"key":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$2.class","name":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$2.class","size":1228,"crc":360235832},{"key":"kotlin/sequences/SequencesKt__SequencesKt$ifEmpty$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$ifEmpty$1.class","size":4344,"crc":60416370},{"key":"kotlin/sequences/SequencesKt__SequencesKt$shuffled$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$shuffled$1.class","size":4592,"crc":-1161924593},{"key":"kotlin/sequences/SequencesKt__SequencesKt.class","name":"kotlin/sequences/SequencesKt__SequencesKt.class","size":10590,"crc":-1909566609},{"key":"kotlin/sequences/SequencesKt___SequencesJvmKt$filterIsInstance$1.class","name":"kotlin/sequences/SequencesKt___SequencesJvmKt$filterIsInstance$1.class","size":1726,"crc":615280926},{"key":"kotlin/sequences/SequencesKt___SequencesJvmKt.class","name":"kotlin/sequences/SequencesKt___SequencesJvmKt.class","size":10508,"crc":1963241245},{"key":"kotlin/sequences/SequencesKt___SequencesKt$asIterable$$inlined$Iterable$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$asIterable$$inlined$Iterable$1.class","size":2123,"crc":-1116657657},{"key":"kotlin/sequences/SequencesKt___SequencesKt$distinct$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$distinct$1.class","size":1127,"crc":-1100824274},{"key":"kotlin/sequences/SequencesKt___SequencesKt$elementAt$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$elementAt$1.class","size":1663,"crc":2059893537},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$1.class","size":2273,"crc":471890774},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$2.class","size":1740,"crc":1592598920},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterIsInstance$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterIsInstance$1.class","size":2070,"crc":-503817201},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterNotNull$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterNotNull$1.class","size":1610,"crc":-160418733},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$1.class","size":1773,"crc":-1207663092},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$2.class","size":1800,"crc":-2038592575},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$1.class","size":1794,"crc":-1291009388},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$2.class","size":1829,"crc":-1972212062},{"key":"kotlin/sequences/SequencesKt___SequencesKt$groupingBy$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$groupingBy$1.class","size":2285,"crc":348395473},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$1$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$1$iterator$1.class","size":1884,"crc":-1161368187},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$1.class","size":1928,"crc":1091806997},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$2$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$2$iterator$1.class","size":1586,"crc":1438454254},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$2.class","size":1735,"crc":1236249635},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$3$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$3$iterator$1.class","size":1612,"crc":-81536014},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$3.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$3.class","size":2071,"crc":1099519901},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$4$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$4$iterator$1.class","size":1582,"crc":-1906121447},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$4.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$4.class","size":1964,"crc":1887748197},{"key":"kotlin/sequences/SequencesKt___SequencesKt$onEach$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$onEach$1.class","size":1327,"crc":2074555998},{"key":"kotlin/sequences/SequencesKt___SequencesKt$onEachIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$onEachIndexed$1.class","size":1749,"crc":444106718},{"key":"kotlin/sequences/SequencesKt___SequencesKt$requireNoNulls$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$requireNoNulls$1.class","size":1912,"crc":-1840415102},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningFold$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningFold$1.class","size":4591,"crc":1361607578},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningFoldIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningFoldIndexed$1.class","size":5148,"crc":1880335320},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningReduce$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningReduce$1.class","size":4612,"crc":-127889472},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningReduceIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningReduceIndexed$1.class","size":5180,"crc":-178835202},{"key":"kotlin/sequences/SequencesKt___SequencesKt$sorted$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$sorted$1.class","size":1569,"crc":-385750423},{"key":"kotlin/sequences/SequencesKt___SequencesKt$sortedWith$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$sortedWith$1.class","size":1798,"crc":1852495724},{"key":"kotlin/sequences/SequencesKt___SequencesKt$zip$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$zip$1.class","size":1555,"crc":494237787},{"key":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$1.class","size":1537,"crc":2038610873},{"key":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$2.class","size":4518,"crc":-1979927420},{"key":"kotlin/sequences/SequencesKt___SequencesKt.class","name":"kotlin/sequences/SequencesKt___SequencesKt.class","size":94720,"crc":-1548072491},{"key":"kotlin/sequences/SubSequence$iterator$1.class","name":"kotlin/sequences/SubSequence$iterator$1.class","size":2702,"crc":-564386815},{"key":"kotlin/sequences/SubSequence.class","name":"kotlin/sequences/SubSequence.class","size":4078,"crc":973808188},{"key":"kotlin/sequences/TakeSequence$iterator$1.class","name":"kotlin/sequences/TakeSequence$iterator$1.class","size":2394,"crc":-1151008795},{"key":"kotlin/sequences/TakeSequence.class","name":"kotlin/sequences/TakeSequence.class","size":3511,"crc":1571242295},{"key":"kotlin/sequences/TakeWhileSequence$iterator$1.class","name":"kotlin/sequences/TakeWhileSequence$iterator$1.class","size":3416,"crc":-1661702110},{"key":"kotlin/sequences/TakeWhileSequence.class","name":"kotlin/sequences/TakeWhileSequence.class","size":2193,"crc":117016854},{"key":"kotlin/sequences/TransformingIndexedSequence$iterator$1.class","name":"kotlin/sequences/TransformingIndexedSequence$iterator$1.class","size":2837,"crc":439955923},{"key":"kotlin/sequences/TransformingIndexedSequence.class","name":"kotlin/sequences/TransformingIndexedSequence.class","size":2302,"crc":-671357904},{"key":"kotlin/sequences/TransformingSequence$iterator$1.class","name":"kotlin/sequences/TransformingSequence$iterator$1.class","size":2288,"crc":-764657572},{"key":"kotlin/sequences/TransformingSequence.class","name":"kotlin/sequences/TransformingSequence.class","size":2769,"crc":-1815061523},{"key":"kotlin/sequences/USequencesKt.class","name":"kotlin/sequences/USequencesKt.class","size":456,"crc":-957657449},{"key":"kotlin/sequences/USequencesKt___USequencesKt.class","name":"kotlin/sequences/USequencesKt___USequencesKt.class","size":2829,"crc":-1118579213},{"key":"kotlin/system/ProcessKt.class","name":"kotlin/system/ProcessKt.class","size":830,"crc":1529082854},{"key":"kotlin/system/TimingKt.class","name":"kotlin/system/TimingKt.class","size":1450,"crc":1565824004},{"key":"kotlin/text/CharCategory$Companion.class","name":"kotlin/text/CharCategory$Companion.class","size":1703,"crc":-1132543679},{"key":"kotlin/text/CharCategory.class","name":"kotlin/text/CharCategory.class","size":4987,"crc":-667104573},{"key":"kotlin/text/CharDirectionality$Companion$directionalityMap$2.class","name":"kotlin/text/CharDirectionality$Companion$directionalityMap$2.class","size":3413,"crc":-1613822069},{"key":"kotlin/text/CharDirectionality$Companion.class","name":"kotlin/text/CharDirectionality$Companion.class","size":2095,"crc":-679805395},{"key":"kotlin/text/CharDirectionality.class","name":"kotlin/text/CharDirectionality.class","size":4161,"crc":-1003309696},{"key":"kotlin/text/CharsKt.class","name":"kotlin/text/CharsKt.class","size":417,"crc":-933000599},{"key":"kotlin/text/CharsKt__CharJVMKt.class","name":"kotlin/text/CharsKt__CharJVMKt.class","size":7776,"crc":-697773165},{"key":"kotlin/text/CharsKt__CharKt.class","name":"kotlin/text/CharsKt__CharKt.class","size":4868,"crc":-299643566},{"key":"kotlin/text/Charsets.class","name":"kotlin/text/Charsets.class","size":2801,"crc":1097519644},{"key":"kotlin/text/CharsetsKt.class","name":"kotlin/text/CharsetsKt.class","size":935,"crc":143248290},{"key":"kotlin/text/DelimitedRangesSequence$iterator$1.class","name":"kotlin/text/DelimitedRangesSequence$iterator$1.class","size":4856,"crc":-635155402},{"key":"kotlin/text/DelimitedRangesSequence.class","name":"kotlin/text/DelimitedRangesSequence.class","size":2937,"crc":-1790326913},{"key":"kotlin/text/FlagEnum.class","name":"kotlin/text/FlagEnum.class","size":457,"crc":763795196},{"key":"kotlin/text/HexExtensionsKt.class","name":"kotlin/text/HexExtensionsKt.class","size":19232,"crc":2067466407},{"key":"kotlin/text/HexFormat$Builder.class","name":"kotlin/text/HexFormat$Builder.class","size":3943,"crc":-2092767042},{"key":"kotlin/text/HexFormat$BytesHexFormat$Builder.class","name":"kotlin/text/HexFormat$BytesHexFormat$Builder.class","size":4419,"crc":213447693},{"key":"kotlin/text/HexFormat$BytesHexFormat$Companion.class","name":"kotlin/text/HexFormat$BytesHexFormat$Companion.class","size":1203,"crc":255977616},{"key":"kotlin/text/HexFormat$BytesHexFormat.class","name":"kotlin/text/HexFormat$BytesHexFormat.class","size":4172,"crc":-1769714937},{"key":"kotlin/text/HexFormat$Companion.class","name":"kotlin/text/HexFormat$Companion.class","size":1219,"crc":1757047776},{"key":"kotlin/text/HexFormat$NumberHexFormat$Builder.class","name":"kotlin/text/HexFormat$NumberHexFormat$Builder.class","size":2999,"crc":226623453},{"key":"kotlin/text/HexFormat$NumberHexFormat$Companion.class","name":"kotlin/text/HexFormat$NumberHexFormat$Companion.class","size":1209,"crc":2035941708},{"key":"kotlin/text/HexFormat$NumberHexFormat.class","name":"kotlin/text/HexFormat$NumberHexFormat.class","size":3274,"crc":607927770},{"key":"kotlin/text/HexFormat.class","name":"kotlin/text/HexFormat.class","size":3850,"crc":56274250},{"key":"kotlin/text/HexFormatKt.class","name":"kotlin/text/HexFormatKt.class","size":1435,"crc":-485066538},{"key":"kotlin/text/MatchGroup.class","name":"kotlin/text/MatchGroup.class","size":2808,"crc":1665906965},{"key":"kotlin/text/MatchGroupCollection.class","name":"kotlin/text/MatchGroupCollection.class","size":781,"crc":313419264},{"key":"kotlin/text/MatchNamedGroupCollection.class","name":"kotlin/text/MatchNamedGroupCollection.class","size":815,"crc":-1422321725},{"key":"kotlin/text/MatchResult$DefaultImpls.class","name":"kotlin/text/MatchResult$DefaultImpls.class","size":804,"crc":520008573},{"key":"kotlin/text/MatchResult$Destructured.class","name":"kotlin/text/MatchResult$Destructured.class","size":2731,"crc":-110060805},{"key":"kotlin/text/MatchResult.class","name":"kotlin/text/MatchResult.class","size":1438,"crc":522341712},{"key":"kotlin/text/MatcherMatchResult$groupValues$1.class","name":"kotlin/text/MatcherMatchResult$groupValues$1.class","size":2367,"crc":-27828042},{"key":"kotlin/text/MatcherMatchResult$groups$1$iterator$1.class","name":"kotlin/text/MatcherMatchResult$groups$1$iterator$1.class","size":1469,"crc":648128685},{"key":"kotlin/text/MatcherMatchResult$groups$1.class","name":"kotlin/text/MatcherMatchResult$groups$1.class","size":4107,"crc":-1597311445},{"key":"kotlin/text/MatcherMatchResult.class","name":"kotlin/text/MatcherMatchResult.class","size":4089,"crc":-45964109},{"key":"kotlin/text/Regex$Companion.class","name":"kotlin/text/Regex$Companion.class","size":2221,"crc":1649161083},{"key":"kotlin/text/Regex$Serialized$Companion.class","name":"kotlin/text/Regex$Serialized$Companion.class","size":879,"crc":-811797597},{"key":"kotlin/text/Regex$Serialized.class","name":"kotlin/text/Regex$Serialized.class","size":1985,"crc":1705274471},{"key":"kotlin/text/Regex$findAll$1.class","name":"kotlin/text/Regex$findAll$1.class","size":1418,"crc":272526180},{"key":"kotlin/text/Regex$findAll$2.class","name":"kotlin/text/Regex$findAll$2.class","size":1646,"crc":-568084574},{"key":"kotlin/text/Regex$special$$inlined$fromInt$1.class","name":"kotlin/text/Regex$special$$inlined$fromInt$1.class","size":2026,"crc":1424913807},{"key":"kotlin/text/Regex$splitToSequence$1.class","name":"kotlin/text/Regex$splitToSequence$1.class","size":4757,"crc":-524930077},{"key":"kotlin/text/Regex.class","name":"kotlin/text/Regex.class","size":12561,"crc":614994798},{"key":"kotlin/text/RegexKt$fromInt$1$1.class","name":"kotlin/text/RegexKt$fromInt$1$1.class","size":1854,"crc":497591507},{"key":"kotlin/text/RegexKt.class","name":"kotlin/text/RegexKt.class","size":4921,"crc":674041991},{"key":"kotlin/text/RegexOption.class","name":"kotlin/text/RegexOption.class","size":2681,"crc":-387070237},{"key":"kotlin/text/ScreenFloatValueRegEx.class","name":"kotlin/text/ScreenFloatValueRegEx.class","size":1866,"crc":1747062034},{"key":"kotlin/text/StringsKt.class","name":"kotlin/text/StringsKt.class","size":887,"crc":-2009781298},{"key":"kotlin/text/StringsKt__AppendableKt.class","name":"kotlin/text/StringsKt__AppendableKt.class","size":3948,"crc":1642355746},{"key":"kotlin/text/StringsKt__IndentKt$getIndentFunction$1.class","name":"kotlin/text/StringsKt__IndentKt$getIndentFunction$1.class","size":1567,"crc":-1909286953},{"key":"kotlin/text/StringsKt__IndentKt$getIndentFunction$2.class","name":"kotlin/text/StringsKt__IndentKt$getIndentFunction$2.class","size":1717,"crc":-1588926807},{"key":"kotlin/text/StringsKt__IndentKt$prependIndent$1.class","name":"kotlin/text/StringsKt__IndentKt$prependIndent$1.class","size":1908,"crc":-1942444076},{"key":"kotlin/text/StringsKt__IndentKt.class","name":"kotlin/text/StringsKt__IndentKt.class","size":14470,"crc":-771268068},{"key":"kotlin/text/StringsKt__RegexExtensionsJVMKt.class","name":"kotlin/text/StringsKt__RegexExtensionsJVMKt.class","size":1036,"crc":-1173897330},{"key":"kotlin/text/StringsKt__RegexExtensionsKt.class","name":"kotlin/text/StringsKt__RegexExtensionsKt.class","size":1709,"crc":295410664},{"key":"kotlin/text/StringsKt__StringBuilderJVMKt.class","name":"kotlin/text/StringsKt__StringBuilderJVMKt.class","size":12208,"crc":1028466760},{"key":"kotlin/text/StringsKt__StringBuilderKt.class","name":"kotlin/text/StringsKt__StringBuilderKt.class","size":5671,"crc":-1855115521},{"key":"kotlin/text/StringsKt__StringNumberConversionsJVMKt.class","name":"kotlin/text/StringsKt__StringNumberConversionsJVMKt.class","size":9173,"crc":-1143361165},{"key":"kotlin/text/StringsKt__StringNumberConversionsKt.class","name":"kotlin/text/StringsKt__StringNumberConversionsKt.class","size":4915,"crc":-2101327634},{"key":"kotlin/text/StringsKt__StringsJVMKt.class","name":"kotlin/text/StringsKt__StringsJVMKt.class","size":29002,"crc":700212759},{"key":"kotlin/text/StringsKt__StringsKt$iterator$1.class","name":"kotlin/text/StringsKt__StringsKt$iterator$1.class","size":1269,"crc":891858504},{"key":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$1.class","name":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$1.class","size":2855,"crc":-541385193},{"key":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$2.class","name":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$2.class","size":3158,"crc":536954088},{"key":"kotlin/text/StringsKt__StringsKt$splitToSequence$1.class","name":"kotlin/text/StringsKt__StringsKt$splitToSequence$1.class","size":1758,"crc":-692486666},{"key":"kotlin/text/StringsKt__StringsKt$splitToSequence$2.class","name":"kotlin/text/StringsKt__StringsKt$splitToSequence$2.class","size":1741,"crc":-610990579},{"key":"kotlin/text/StringsKt__StringsKt.class","name":"kotlin/text/StringsKt__StringsKt.class","size":54612,"crc":1053214779},{"key":"kotlin/text/StringsKt___StringsJvmKt.class","name":"kotlin/text/StringsKt___StringsJvmKt.class","size":7791,"crc":1484138044},{"key":"kotlin/text/StringsKt___StringsKt$asIterable$$inlined$Iterable$1.class","name":"kotlin/text/StringsKt___StringsKt$asIterable$$inlined$Iterable$1.class","size":2180,"crc":2121200106},{"key":"kotlin/text/StringsKt___StringsKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/text/StringsKt___StringsKt$asSequence$$inlined$Sequence$1.class","size":2134,"crc":-2082882496},{"key":"kotlin/text/StringsKt___StringsKt$chunkedSequence$1.class","name":"kotlin/text/StringsKt___StringsKt$chunkedSequence$1.class","size":1651,"crc":1919282439},{"key":"kotlin/text/StringsKt___StringsKt$groupingBy$1.class","name":"kotlin/text/StringsKt___StringsKt$groupingBy$1.class","size":2547,"crc":-1569668854},{"key":"kotlin/text/StringsKt___StringsKt$windowed$1.class","name":"kotlin/text/StringsKt___StringsKt$windowed$1.class","size":1621,"crc":-1213360900},{"key":"kotlin/text/StringsKt___StringsKt$windowedSequence$1.class","name":"kotlin/text/StringsKt___StringsKt$windowedSequence$1.class","size":1656,"crc":-1189285209},{"key":"kotlin/text/StringsKt___StringsKt$windowedSequence$2.class","name":"kotlin/text/StringsKt___StringsKt$windowedSequence$2.class","size":1965,"crc":874419344},{"key":"kotlin/text/StringsKt___StringsKt$withIndex$1.class","name":"kotlin/text/StringsKt___StringsKt$withIndex$1.class","size":1453,"crc":-1684288196},{"key":"kotlin/text/StringsKt___StringsKt.class","name":"kotlin/text/StringsKt___StringsKt.class","size":92544,"crc":-2141982767},{"key":"kotlin/text/SystemProperties.class","name":"kotlin/text/SystemProperties.class","size":1019,"crc":-1266692876},{"key":"kotlin/text/TypeAliasesKt.class","name":"kotlin/text/TypeAliasesKt.class","size":1059,"crc":-986699720},{"key":"kotlin/text/Typography.class","name":"kotlin/text/Typography.class","size":3740,"crc":-1203784232},{"key":"kotlin/text/UHexExtensionsKt.class","name":"kotlin/text/UHexExtensionsKt.class","size":7060,"crc":1305264527},{"key":"kotlin/text/UStringsKt.class","name":"kotlin/text/UStringsKt.class","size":7615,"crc":1343714260},{"key":"kotlin/text/_OneToManyTitlecaseMappingsKt.class","name":"kotlin/text/_OneToManyTitlecaseMappingsKt.class","size":1659,"crc":711241838},{"key":"kotlin/text/jdk8/RegexExtensionsJDK8Kt.class","name":"kotlin/text/jdk8/RegexExtensionsJDK8Kt.class","size":1532,"crc":226408685},{"key":"kotlin/time/AbstractDoubleTimeSource$DoubleTimeMark.class","name":"kotlin/time/AbstractDoubleTimeSource$DoubleTimeMark.class","size":5243,"crc":4102611},{"key":"kotlin/time/AbstractDoubleTimeSource.class","name":"kotlin/time/AbstractDoubleTimeSource.class","size":2232,"crc":-845051538},{"key":"kotlin/time/AbstractLongTimeSource$LongTimeMark.class","name":"kotlin/time/AbstractLongTimeSource$LongTimeMark.class","size":6883,"crc":1042036677},{"key":"kotlin/time/AbstractLongTimeSource$zero$2.class","name":"kotlin/time/AbstractLongTimeSource$zero$2.class","size":1291,"crc":-336749478},{"key":"kotlin/time/AbstractLongTimeSource.class","name":"kotlin/time/AbstractLongTimeSource.class","size":2920,"crc":274880219},{"key":"kotlin/time/AdjustedTimeMark.class","name":"kotlin/time/AdjustedTimeMark.class","size":2304,"crc":1399284601},{"key":"kotlin/time/ComparableTimeMark$DefaultImpls.class","name":"kotlin/time/ComparableTimeMark$DefaultImpls.class","size":1769,"crc":-1139654078},{"key":"kotlin/time/ComparableTimeMark.class","name":"kotlin/time/ComparableTimeMark.class","size":1577,"crc":320485269},{"key":"kotlin/time/Duration$Companion.class","name":"kotlin/time/Duration$Companion.class","size":14853,"crc":-770723991},{"key":"kotlin/time/Duration.class","name":"kotlin/time/Duration.class","size":25552,"crc":-761604618},{"key":"kotlin/time/DurationJvmKt.class","name":"kotlin/time/DurationJvmKt.class","size":3148,"crc":375553204},{"key":"kotlin/time/DurationKt.class","name":"kotlin/time/DurationKt.class","size":21546,"crc":421511246},{"key":"kotlin/time/DurationUnit.class","name":"kotlin/time/DurationUnit.class","size":2691,"crc":-1102744434},{"key":"kotlin/time/DurationUnitKt.class","name":"kotlin/time/DurationUnitKt.class","size":461,"crc":1008182113},{"key":"kotlin/time/DurationUnitKt__DurationUnitJvmKt$WhenMappings.class","name":"kotlin/time/DurationUnitKt__DurationUnitJvmKt$WhenMappings.class","size":1039,"crc":1698368391},{"key":"kotlin/time/DurationUnitKt__DurationUnitJvmKt.class","name":"kotlin/time/DurationUnitKt__DurationUnitJvmKt.class","size":3052,"crc":481317691},{"key":"kotlin/time/DurationUnitKt__DurationUnitKt$WhenMappings.class","name":"kotlin/time/DurationUnitKt__DurationUnitKt$WhenMappings.class","size":1015,"crc":-1563422188},{"key":"kotlin/time/DurationUnitKt__DurationUnitKt.class","name":"kotlin/time/DurationUnitKt__DurationUnitKt.class","size":3218,"crc":-1696255116},{"key":"kotlin/time/ExperimentalTime.class","name":"kotlin/time/ExperimentalTime.class","size":1399,"crc":1859025207},{"key":"kotlin/time/LongSaturatedMathKt.class","name":"kotlin/time/LongSaturatedMathKt.class","size":4925,"crc":-495153680},{"key":"kotlin/time/MeasureTimeKt.class","name":"kotlin/time/MeasureTimeKt.class","size":4884,"crc":526204496},{"key":"kotlin/time/MonoTimeSourceKt.class","name":"kotlin/time/MonoTimeSourceKt.class","size":448,"crc":-224530652},{"key":"kotlin/time/MonotonicTimeSource.class","name":"kotlin/time/MonotonicTimeSource.class","size":2800,"crc":830857267},{"key":"kotlin/time/TestTimeSource.class","name":"kotlin/time/TestTimeSource.class","size":3437,"crc":-120753089},{"key":"kotlin/time/TimeMark$DefaultImpls.class","name":"kotlin/time/TimeMark$DefaultImpls.class","size":1366,"crc":1566171465},{"key":"kotlin/time/TimeMark.class","name":"kotlin/time/TimeMark.class","size":1046,"crc":-701478475},{"key":"kotlin/time/TimeSource$Companion.class","name":"kotlin/time/TimeSource$Companion.class","size":668,"crc":-1281162627},{"key":"kotlin/time/TimeSource$Monotonic$ValueTimeMark.class","name":"kotlin/time/TimeSource$Monotonic$ValueTimeMark.class","size":6185,"crc":-1033946925},{"key":"kotlin/time/TimeSource$Monotonic.class","name":"kotlin/time/TimeSource$Monotonic.class","size":1661,"crc":-622070969},{"key":"kotlin/time/TimeSource$WithComparableMarks.class","name":"kotlin/time/TimeSource$WithComparableMarks.class","size":819,"crc":868573578},{"key":"kotlin/time/TimeSource.class","name":"kotlin/time/TimeSource.class","size":1034,"crc":867313802},{"key":"kotlin/time/TimedValue.class","name":"kotlin/time/TimedValue.class","size":3315,"crc":789846310},{"key":"kotlin/collections/ArraysUtilJVM.class","name":"kotlin/collections/ArraysUtilJVM.class","size":596,"crc":570328725},{"key":"kotlin/jvm/internal/AdaptedFunctionReference.class","name":"kotlin/jvm/internal/AdaptedFunctionReference.class","size":2746,"crc":1457329729},{"key":"kotlin/jvm/internal/CallableReference$NoReceiver.class","name":"kotlin/jvm/internal/CallableReference$NoReceiver.class","size":898,"crc":1125258272},{"key":"kotlin/jvm/internal/CallableReference.class","name":"kotlin/jvm/internal/CallableReference.class","size":4181,"crc":500298900},{"key":"kotlin/jvm/internal/DefaultConstructorMarker.class","name":"kotlin/jvm/internal/DefaultConstructorMarker.class","size":337,"crc":47587920},{"key":"kotlin/jvm/internal/FunInterfaceConstructorReference.class","name":"kotlin/jvm/internal/FunInterfaceConstructorReference.class","size":1591,"crc":687584605},{"key":"kotlin/jvm/internal/FunctionAdapter.class","name":"kotlin/jvm/internal/FunctionAdapter.class","size":314,"crc":-72599158},{"key":"kotlin/jvm/internal/FunctionImpl.class","name":"kotlin/jvm/internal/FunctionImpl.class","size":13161,"crc":-558677605},{"key":"kotlin/jvm/internal/FunctionReference.class","name":"kotlin/jvm/internal/FunctionReference.class","size":3689,"crc":1951168182},{"key":"kotlin/jvm/internal/FunctionReferenceImpl.class","name":"kotlin/jvm/internal/FunctionReferenceImpl.class","size":1514,"crc":11015438},{"key":"kotlin/jvm/internal/InlineMarker.class","name":"kotlin/jvm/internal/InlineMarker.class","size":761,"crc":-1234111204},{"key":"kotlin/jvm/internal/Intrinsics$Kotlin.class","name":"kotlin/jvm/internal/Intrinsics$Kotlin.class","size":475,"crc":168489227},{"key":"kotlin/jvm/internal/Intrinsics.class","name":"kotlin/jvm/internal/Intrinsics.class","size":9086,"crc":1370135565},{"key":"kotlin/jvm/internal/MagicApiIntrinsics.class","name":"kotlin/jvm/internal/MagicApiIntrinsics.class","size":2575,"crc":-1698388096},{"key":"kotlin/jvm/internal/MutablePropertyReference.class","name":"kotlin/jvm/internal/MutablePropertyReference.class","size":942,"crc":-873243443},{"key":"kotlin/jvm/internal/MutablePropertyReference0.class","name":"kotlin/jvm/internal/MutablePropertyReference0.class","size":2307,"crc":1128124820},{"key":"kotlin/jvm/internal/MutablePropertyReference0Impl.class","name":"kotlin/jvm/internal/MutablePropertyReference0Impl.class","size":2126,"crc":-184418059},{"key":"kotlin/jvm/internal/MutablePropertyReference1.class","name":"kotlin/jvm/internal/MutablePropertyReference1.class","size":2347,"crc":377178670},{"key":"kotlin/jvm/internal/MutablePropertyReference1Impl.class","name":"kotlin/jvm/internal/MutablePropertyReference1Impl.class","size":2190,"crc":2046035585},{"key":"kotlin/jvm/internal/MutablePropertyReference2.class","name":"kotlin/jvm/internal/MutablePropertyReference2.class","size":2348,"crc":-571971330},{"key":"kotlin/jvm/internal/MutablePropertyReference2Impl.class","name":"kotlin/jvm/internal/MutablePropertyReference2Impl.class","size":2011,"crc":-677246454},{"key":"kotlin/jvm/internal/PropertyReference.class","name":"kotlin/jvm/internal/PropertyReference.class","size":3202,"crc":-1743798952},{"key":"kotlin/jvm/internal/PropertyReference0.class","name":"kotlin/jvm/internal/PropertyReference0.class","size":1821,"crc":-1475025845},{"key":"kotlin/jvm/internal/PropertyReference0Impl.class","name":"kotlin/jvm/internal/PropertyReference0Impl.class","size":1798,"crc":1194211845},{"key":"kotlin/jvm/internal/PropertyReference1.class","name":"kotlin/jvm/internal/PropertyReference1.class","size":1861,"crc":-1829718760},{"key":"kotlin/jvm/internal/PropertyReference1Impl.class","name":"kotlin/jvm/internal/PropertyReference1Impl.class","size":1830,"crc":-1299899906},{"key":"kotlin/jvm/internal/PropertyReference2.class","name":"kotlin/jvm/internal/PropertyReference2.class","size":1862,"crc":-885315845},{"key":"kotlin/jvm/internal/PropertyReference2Impl.class","name":"kotlin/jvm/internal/PropertyReference2Impl.class","size":1619,"crc":617056996},{"key":"kotlin/jvm/internal/Ref$BooleanRef.class","name":"kotlin/jvm/internal/Ref$BooleanRef.class","size":593,"crc":904687793},{"key":"kotlin/jvm/internal/Ref$ByteRef.class","name":"kotlin/jvm/internal/Ref$ByteRef.class","size":584,"crc":1970120690},{"key":"kotlin/jvm/internal/Ref$CharRef.class","name":"kotlin/jvm/internal/Ref$CharRef.class","size":584,"crc":-2104091034},{"key":"kotlin/jvm/internal/Ref$DoubleRef.class","name":"kotlin/jvm/internal/Ref$DoubleRef.class","size":590,"crc":1433144171},{"key":"kotlin/jvm/internal/Ref$FloatRef.class","name":"kotlin/jvm/internal/Ref$FloatRef.class","size":587,"crc":-224759536},{"key":"kotlin/jvm/internal/Ref$IntRef.class","name":"kotlin/jvm/internal/Ref$IntRef.class","size":581,"crc":-414275565},{"key":"kotlin/jvm/internal/Ref$LongRef.class","name":"kotlin/jvm/internal/Ref$LongRef.class","size":584,"crc":526024706},{"key":"kotlin/jvm/internal/Ref$ObjectRef.class","name":"kotlin/jvm/internal/Ref$ObjectRef.class","size":827,"crc":168012497},{"key":"kotlin/jvm/internal/Ref$ShortRef.class","name":"kotlin/jvm/internal/Ref$ShortRef.class","size":587,"crc":-780272668},{"key":"kotlin/jvm/internal/Ref.class","name":"kotlin/jvm/internal/Ref.class","size":808,"crc":745872339},{"key":"kotlin/jvm/internal/Reflection.class","name":"kotlin/jvm/internal/Reflection.class","size":7937,"crc":901832041},{"key":"kotlin/jvm/internal/ReflectionFactory.class","name":"kotlin/jvm/internal/ReflectionFactory.class","size":6141,"crc":-1592711195},{"key":"kotlin/jvm/internal/RepeatableContainer.class","name":"kotlin/jvm/internal/RepeatableContainer.class","size":506,"crc":527536588},{"key":"kotlin/jvm/internal/SpreadBuilder.class","name":"kotlin/jvm/internal/SpreadBuilder.class","size":2089,"crc":238365591},{"key":"kotlin/jvm/internal/TypeIntrinsics.class","name":"kotlin/jvm/internal/TypeIntrinsics.class","size":9334,"crc":-1140538051},{"key":"kotlin/annotation/annotation.kotlin_builtins","name":"kotlin/annotation/annotation.kotlin_builtins","size":928,"crc":-1904709562},{"key":"kotlin/collections/collections.kotlin_builtins","name":"kotlin/collections/collections.kotlin_builtins","size":3685,"crc":-199479089},{"key":"kotlin/coroutines/coroutines.kotlin_builtins","name":"kotlin/coroutines/coroutines.kotlin_builtins","size":200,"crc":-962600637},{"key":"kotlin/internal/internal.kotlin_builtins","name":"kotlin/internal/internal.kotlin_builtins","size":646,"crc":-657313011},{"key":"kotlin/kotlin.kotlin_builtins","name":"kotlin/kotlin.kotlin_builtins","size":18640,"crc":-142636579},{"key":"kotlin/ranges/ranges.kotlin_builtins","name":"kotlin/ranges/ranges.kotlin_builtins","size":3399,"crc":-885290259},{"key":"kotlin/reflect/reflect.kotlin_builtins","name":"kotlin/reflect/reflect.kotlin_builtins","size":2426,"crc":2118008088},{"key":"META-INF/kotlin-stdlib-jdk7.kotlin_module","name":"META-INF/kotlin-stdlib-jdk7.kotlin_module","size":199,"crc":-524877854},{"key":"kotlin/internal/jdk7/JDK7PlatformImplementations$ReflectSdkVersion.class","name":"kotlin/internal/jdk7/JDK7PlatformImplementations$ReflectSdkVersion.class","size":2336,"crc":1120736263},{"key":"kotlin/internal/jdk7/JDK7PlatformImplementations.class","name":"kotlin/internal/jdk7/JDK7PlatformImplementations.class","size":2256,"crc":-1955105638},{"key":"kotlin/io/path/CopyActionContext.class","name":"kotlin/io/path/CopyActionContext.class","size":879,"crc":1638522530},{"key":"kotlin/io/path/CopyActionResult.class","name":"kotlin/io/path/CopyActionResult.class","size":1952,"crc":641326096},{"key":"kotlin/io/path/DefaultCopyActionContext.class","name":"kotlin/io/path/DefaultCopyActionContext.class","size":2313,"crc":-87017421},{"key":"kotlin/io/path/DirectoryEntriesReader.class","name":"kotlin/io/path/DirectoryEntriesReader.class","size":4163,"crc":936081326},{"key":"kotlin/io/path/ExceptionsCollector.class","name":"kotlin/io/path/ExceptionsCollector.class","size":3709,"crc":752860814},{"key":"kotlin/io/path/ExperimentalPathApi.class","name":"kotlin/io/path/ExperimentalPathApi.class","size":1419,"crc":857299491},{"key":"kotlin/io/path/FileVisitorBuilder.class","name":"kotlin/io/path/FileVisitorBuilder.class","size":1742,"crc":-676369227},{"key":"kotlin/io/path/FileVisitorBuilderImpl.class","name":"kotlin/io/path/FileVisitorBuilderImpl.class","size":4227,"crc":-1840039802},{"key":"kotlin/io/path/FileVisitorImpl.class","name":"kotlin/io/path/FileVisitorImpl.class","size":4714,"crc":-1718230176},{"key":"kotlin/io/path/LinkFollowing.class","name":"kotlin/io/path/LinkFollowing.class","size":2654,"crc":50891980},{"key":"kotlin/io/path/OnErrorResult.class","name":"kotlin/io/path/OnErrorResult.class","size":1866,"crc":1914823269},{"key":"kotlin/io/path/PathNode.class","name":"kotlin/io/path/PathNode.class","size":2111,"crc":1196566645},{"key":"kotlin/io/path/PathRelativizer.class","name":"kotlin/io/path/PathRelativizer.class","size":2861,"crc":-247712051},{"key":"kotlin/io/path/PathTreeWalk$bfsIterator$1.class","name":"kotlin/io/path/PathTreeWalk$bfsIterator$1.class","size":7252,"crc":-1760239622},{"key":"kotlin/io/path/PathTreeWalk$dfsIterator$1.class","name":"kotlin/io/path/PathTreeWalk$dfsIterator$1.class","size":8910,"crc":233342008},{"key":"kotlin/io/path/PathTreeWalk.class","name":"kotlin/io/path/PathTreeWalk.class","size":6225,"crc":-1037379088},{"key":"kotlin/io/path/PathTreeWalkKt.class","name":"kotlin/io/path/PathTreeWalkKt.class","size":2267,"crc":1250605669},{"key":"kotlin/io/path/PathWalkOption.class","name":"kotlin/io/path/PathWalkOption.class","size":1951,"crc":1492404480},{"key":"kotlin/io/path/PathsKt.class","name":"kotlin/io/path/PathsKt.class","size":494,"crc":-2127427709},{"key":"kotlin/io/path/PathsKt__PathReadWriteKt.class","name":"kotlin/io/path/PathsKt__PathReadWriteKt.class","size":19238,"crc":-1151320291},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$WhenMappings.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$WhenMappings.class","size":1111,"crc":1946565246},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$1.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$1.class","size":1893,"crc":1720509829},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$2.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$2.class","size":3560,"crc":1332917823},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$3.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$3.class","size":1924,"crc":1488691726},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$4.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$4.class","size":2244,"crc":1457720587},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$1.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$1.class","size":3421,"crc":1749394929},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$2.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$2.class","size":3421,"crc":581085575},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$3.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$3.class","size":2835,"crc":1715793014},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$4.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$4.class","size":2803,"crc":-1013540551},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5.class","size":3433,"crc":563716547},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt.class","size":21121,"crc":1111773110},{"key":"kotlin/io/path/PathsKt__PathUtilsKt.class","name":"kotlin/io/path/PathsKt__PathUtilsKt.class","size":34025,"crc":-1598000357},{"key":"kotlin/jdk7/AutoCloseableKt.class","name":"kotlin/jdk7/AutoCloseableKt.class","size":2274,"crc":1555924297},{"key":"META-INF/kotlin-stdlib-jdk8.kotlin_module","name":"META-INF/kotlin-stdlib-jdk8.kotlin_module","size":297,"crc":226699991},{"key":"kotlin/collections/jdk8/CollectionsJDK8Kt.class","name":"kotlin/collections/jdk8/CollectionsJDK8Kt.class","size":1931,"crc":100069948},{"key":"kotlin/internal/jdk8/JDK8PlatformImplementations$ReflectSdkVersion.class","name":"kotlin/internal/jdk8/JDK8PlatformImplementations$ReflectSdkVersion.class","size":2336,"crc":-2074913472},{"key":"kotlin/internal/jdk8/JDK8PlatformImplementations.class","name":"kotlin/internal/jdk8/JDK8PlatformImplementations.class","size":2791,"crc":-1085036541},{"key":"kotlin/jvm/jdk8/JvmRepeatableKt.class","name":"kotlin/jvm/jdk8/JvmRepeatableKt.class","size":610,"crc":1512573758},{"key":"kotlin/jvm/optionals/OptionalsKt.class","name":"kotlin/jvm/optionals/OptionalsKt.class","size":4494,"crc":-1592243673},{"key":"kotlin/random/jdk8/PlatformThreadLocalRandom.class","name":"kotlin/random/jdk8/PlatformThreadLocalRandom.class","size":1719,"crc":1666223274},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$1.class","size":2121,"crc":546057661},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$2.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$2.class","size":2232,"crc":1992787600},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$3.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$3.class","size":2231,"crc":1961906108},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$4.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$4.class","size":2245,"crc":1085866712},{"key":"kotlin/streams/jdk8/StreamsKt.class","name":"kotlin/streams/jdk8/StreamsKt.class","size":5761,"crc":-1800446093},{"key":"kotlin/time/jdk8/DurationConversionsJDK8Kt.class","name":"kotlin/time/jdk8/DurationConversionsJDK8Kt.class","size":2745,"crc":-206161381},{"key":"META-INF/versions/9/module-info.class","name":"META-INF/versions/9/module-info.class","size":1308,"crc":-626110942}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EESl4ZNJCLRiyEgzR6py0g== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EESl4ZNJCLRiyEgzR6py0g== new file mode 100644 index 0000000..58d4be9 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EESl4ZNJCLRiyEgzR6py0g== @@ -0,0 +1 @@ +[{"key":"androidx/core/animation/AnimatorKt$addListener$1.class","name":"androidx/core/animation/AnimatorKt$addListener$1.class","size":2072,"crc":418484232},{"key":"androidx/core/animation/AnimatorKt$addListener$2.class","name":"androidx/core/animation/AnimatorKt$addListener$2.class","size":2072,"crc":184953868},{"key":"androidx/core/animation/AnimatorKt$addListener$3.class","name":"androidx/core/animation/AnimatorKt$addListener$3.class","size":2072,"crc":-1115493806},{"key":"androidx/core/animation/AnimatorKt$addListener$4.class","name":"androidx/core/animation/AnimatorKt$addListener$4.class","size":2072,"crc":753488900},{"key":"androidx/core/animation/AnimatorKt$addListener$listener$1.class","name":"androidx/core/animation/AnimatorKt$addListener$listener$1.class","size":3004,"crc":1929653027},{"key":"androidx/core/animation/AnimatorKt$addPauseListener$1.class","name":"androidx/core/animation/AnimatorKt$addPauseListener$1.class","size":1667,"crc":298052684},{"key":"androidx/core/animation/AnimatorKt$addPauseListener$2.class","name":"androidx/core/animation/AnimatorKt$addPauseListener$2.class","size":1667,"crc":-1486326301},{"key":"androidx/core/animation/AnimatorKt$addPauseListener$listener$1.class","name":"androidx/core/animation/AnimatorKt$addPauseListener$listener$1.class","size":2005,"crc":-393234717},{"key":"androidx/core/animation/AnimatorKt$doOnCancel$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnCancel$$inlined$addListener$default$1.class","size":3227,"crc":-1382013354},{"key":"androidx/core/animation/AnimatorKt$doOnEnd$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnEnd$$inlined$addListener$default$1.class","size":3215,"crc":-940658275},{"key":"androidx/core/animation/AnimatorKt$doOnRepeat$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnRepeat$$inlined$addListener$default$1.class","size":3227,"crc":1392854728},{"key":"androidx/core/animation/AnimatorKt$doOnStart$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnStart$$inlined$addListener$default$1.class","size":3223,"crc":-1728579789},{"key":"androidx/core/animation/AnimatorKt.class","name":"androidx/core/animation/AnimatorKt.class","size":8763,"crc":607327252},{"key":"androidx/core/content/ContentValuesKt.class","name":"androidx/core/content/ContentValuesKt.class","size":2836,"crc":-1935003833},{"key":"androidx/core/content/ContextKt.class","name":"androidx/core/content/ContextKt.class","size":3226,"crc":1551521884},{"key":"androidx/core/content/SharedPreferencesKt.class","name":"androidx/core/content/SharedPreferencesKt.class","size":2001,"crc":-619846206},{"key":"androidx/core/content/res/TypedArrayApi26ImplKt.class","name":"androidx/core/content/res/TypedArrayApi26ImplKt.class","size":1430,"crc":-1074938375},{"key":"androidx/core/content/res/TypedArrayKt.class","name":"androidx/core/content/res/TypedArrayKt.class","size":6760,"crc":1463953149},{"key":"androidx/core/database/CursorKt.class","name":"androidx/core/database/CursorKt.class","size":3230,"crc":1881509060},{"key":"androidx/core/database/sqlite/SQLiteDatabaseKt.class","name":"androidx/core/database/sqlite/SQLiteDatabaseKt.class","size":2183,"crc":859278266},{"key":"androidx/core/graphics/BitmapKt.class","name":"androidx/core/graphics/BitmapKt.class","size":5026,"crc":410927679},{"key":"androidx/core/graphics/CanvasKt.class","name":"androidx/core/graphics/CanvasKt.class","size":9550,"crc":843271514},{"key":"androidx/core/graphics/ColorKt.class","name":"androidx/core/graphics/ColorKt.class","size":7674,"crc":1177779626},{"key":"androidx/core/graphics/ImageDecoderKt$decodeBitmap$1.class","name":"androidx/core/graphics/ImageDecoderKt$decodeBitmap$1.class","size":2549,"crc":-1823524805},{"key":"androidx/core/graphics/ImageDecoderKt$decodeDrawable$1.class","name":"androidx/core/graphics/ImageDecoderKt$decodeDrawable$1.class","size":2570,"crc":-321689319},{"key":"androidx/core/graphics/ImageDecoderKt.class","name":"androidx/core/graphics/ImageDecoderKt.class","size":3044,"crc":-314139499},{"key":"androidx/core/graphics/MatrixKt.class","name":"androidx/core/graphics/MatrixKt.class","size":3218,"crc":-594314538},{"key":"androidx/core/graphics/PaintKt.class","name":"androidx/core/graphics/PaintKt.class","size":891,"crc":953346222},{"key":"androidx/core/graphics/PathKt.class","name":"androidx/core/graphics/PathKt.class","size":3760,"crc":-512172921},{"key":"androidx/core/graphics/PictureKt.class","name":"androidx/core/graphics/PictureKt.class","size":1684,"crc":133754184},{"key":"androidx/core/graphics/PointKt.class","name":"androidx/core/graphics/PointKt.class","size":5437,"crc":-243042949},{"key":"androidx/core/graphics/PorterDuffKt.class","name":"androidx/core/graphics/PorterDuffKt.class","size":1466,"crc":275426395},{"key":"androidx/core/graphics/RectKt.class","name":"androidx/core/graphics/RectKt.class","size":12156,"crc":1965077590},{"key":"androidx/core/graphics/RegionKt$iterator$1.class","name":"androidx/core/graphics/RegionKt$iterator$1.class","size":2153,"crc":-1897165153},{"key":"androidx/core/graphics/RegionKt.class","name":"androidx/core/graphics/RegionKt.class","size":6921,"crc":1546608705},{"key":"androidx/core/graphics/ShaderKt.class","name":"androidx/core/graphics/ShaderKt.class","size":1359,"crc":-236365484},{"key":"androidx/core/graphics/drawable/BitmapDrawableKt.class","name":"androidx/core/graphics/drawable/BitmapDrawableKt.class","size":1055,"crc":-106308825},{"key":"androidx/core/graphics/drawable/ColorDrawableKt.class","name":"androidx/core/graphics/drawable/ColorDrawableKt.class","size":1276,"crc":1125532470},{"key":"androidx/core/graphics/drawable/DrawableKt.class","name":"androidx/core/graphics/drawable/DrawableKt.class","size":4693,"crc":-465857029},{"key":"androidx/core/graphics/drawable/IconKt.class","name":"androidx/core/graphics/drawable/IconKt.class","size":1676,"crc":-511645807},{"key":"androidx/core/location/LocationKt.class","name":"androidx/core/location/LocationKt.class","size":909,"crc":-1010250142},{"key":"androidx/core/net/UriKt.class","name":"androidx/core/net/UriKt.class","size":2253,"crc":372801735},{"key":"androidx/core/os/BundleApi21ImplKt.class","name":"androidx/core/os/BundleApi21ImplKt.class","size":1663,"crc":-1623609836},{"key":"androidx/core/os/BundleKt.class","name":"androidx/core/os/BundleKt.class","size":5925,"crc":-1131137531},{"key":"androidx/core/os/ContinuationOutcomeReceiver.class","name":"androidx/core/os/ContinuationOutcomeReceiver.class","size":2623,"crc":1892959443},{"key":"androidx/core/os/HandlerKt$postAtTime$runnable$1.class","name":"androidx/core/os/HandlerKt$postAtTime$runnable$1.class","size":1511,"crc":-1013347584},{"key":"androidx/core/os/HandlerKt$postDelayed$runnable$1.class","name":"androidx/core/os/HandlerKt$postDelayed$runnable$1.class","size":1516,"crc":-537575688},{"key":"androidx/core/os/HandlerKt.class","name":"androidx/core/os/HandlerKt.class","size":2721,"crc":613945496},{"key":"androidx/core/os/OutcomeReceiverKt.class","name":"androidx/core/os/OutcomeReceiverKt.class","size":1188,"crc":-710731725},{"key":"androidx/core/os/PersistableBundleApi21ImplKt.class","name":"androidx/core/os/PersistableBundleApi21ImplKt.class","size":4296,"crc":-581828102},{"key":"androidx/core/os/PersistableBundleApi22ImplKt.class","name":"androidx/core/os/PersistableBundleApi22ImplKt.class","size":1657,"crc":1648977533},{"key":"androidx/core/os/PersistableBundleKt.class","name":"androidx/core/os/PersistableBundleKt.class","size":3346,"crc":2042286547},{"key":"androidx/core/os/TraceKt.class","name":"androidx/core/os/TraceKt.class","size":1576,"crc":-1656383156},{"key":"androidx/core/text/CharSequenceKt.class","name":"androidx/core/text/CharSequenceKt.class","size":942,"crc":-1064874012},{"key":"androidx/core/text/HtmlKt.class","name":"androidx/core/text/HtmlKt.class","size":2102,"crc":391129859},{"key":"androidx/core/text/LocaleKt.class","name":"androidx/core/text/LocaleKt.class","size":766,"crc":97015865},{"key":"androidx/core/text/SpannableStringBuilderKt.class","name":"androidx/core/text/SpannableStringBuilderKt.class","size":8033,"crc":199973281},{"key":"androidx/core/text/SpannableStringKt.class","name":"androidx/core/text/SpannableStringKt.class","size":3365,"crc":1780735941},{"key":"androidx/core/text/SpannedStringKt.class","name":"androidx/core/text/SpannedStringKt.class","size":1780,"crc":193989245},{"key":"androidx/core/text/StringKt.class","name":"androidx/core/text/StringKt.class","size":731,"crc":896149928},{"key":"androidx/core/transition/TransitionKt$addListener$1.class","name":"androidx/core/transition/TransitionKt$addListener$1.class","size":2154,"crc":-839788383},{"key":"androidx/core/transition/TransitionKt$addListener$2.class","name":"androidx/core/transition/TransitionKt$addListener$2.class","size":2154,"crc":1087598930},{"key":"androidx/core/transition/TransitionKt$addListener$3.class","name":"androidx/core/transition/TransitionKt$addListener$3.class","size":2154,"crc":-237391139},{"key":"androidx/core/transition/TransitionKt$addListener$4.class","name":"androidx/core/transition/TransitionKt$addListener$4.class","size":2154,"crc":-2115558155},{"key":"androidx/core/transition/TransitionKt$addListener$5.class","name":"androidx/core/transition/TransitionKt$addListener$5.class","size":2154,"crc":-732190222},{"key":"androidx/core/transition/TransitionKt$addListener$listener$1.class","name":"androidx/core/transition/TransitionKt$addListener$listener$1.class","size":3405,"crc":1464816342},{"key":"androidx/core/transition/TransitionKt$doOnCancel$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnCancel$$inlined$addListener$default$1.class","size":3717,"crc":-105768045},{"key":"androidx/core/transition/TransitionKt$doOnEnd$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnEnd$$inlined$addListener$default$1.class","size":3705,"crc":618435903},{"key":"androidx/core/transition/TransitionKt$doOnPause$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnPause$$inlined$addListener$default$1.class","size":3713,"crc":384620249},{"key":"androidx/core/transition/TransitionKt$doOnResume$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnResume$$inlined$addListener$default$1.class","size":3717,"crc":561920813},{"key":"androidx/core/transition/TransitionKt$doOnStart$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnStart$$inlined$addListener$default$1.class","size":3713,"crc":1184027228},{"key":"androidx/core/transition/TransitionKt.class","name":"androidx/core/transition/TransitionKt.class","size":7563,"crc":-1807820168},{"key":"androidx/core/util/AndroidXConsumerKt.class","name":"androidx/core/util/AndroidXConsumerKt.class","size":1064,"crc":1207069760},{"key":"androidx/core/util/AndroidXContinuationConsumer.class","name":"androidx/core/util/AndroidXContinuationConsumer.class","size":2163,"crc":-1909667356},{"key":"androidx/core/util/AtomicFileKt.class","name":"androidx/core/util/AtomicFileKt.class","size":4257,"crc":-481545007},{"key":"androidx/core/util/ConsumerKt.class","name":"androidx/core/util/ConsumerKt.class","size":1161,"crc":1842462364},{"key":"androidx/core/util/ContinuationConsumer.class","name":"androidx/core/util/ContinuationConsumer.class","size":2205,"crc":1745566208},{"key":"androidx/core/util/ContinuationRunnable.class","name":"androidx/core/util/ContinuationRunnable.class","size":1967,"crc":582150496},{"key":"androidx/core/util/HalfKt.class","name":"androidx/core/util/HalfKt.class","size":1815,"crc":-1379790822},{"key":"androidx/core/util/LongSparseArrayKt$keyIterator$1.class","name":"androidx/core/util/LongSparseArrayKt$keyIterator$1.class","size":1625,"crc":-1261659768},{"key":"androidx/core/util/LongSparseArrayKt$valueIterator$1.class","name":"androidx/core/util/LongSparseArrayKt$valueIterator$1.class","size":2036,"crc":447773195},{"key":"androidx/core/util/LongSparseArrayKt.class","name":"androidx/core/util/LongSparseArrayKt.class","size":7840,"crc":-221005389},{"key":"androidx/core/util/LruCacheKt$lruCache$1.class","name":"androidx/core/util/LruCacheKt$lruCache$1.class","size":2023,"crc":-1330562761},{"key":"androidx/core/util/LruCacheKt$lruCache$2.class","name":"androidx/core/util/LruCacheKt$lruCache$2.class","size":1711,"crc":-617831577},{"key":"androidx/core/util/LruCacheKt$lruCache$3.class","name":"androidx/core/util/LruCacheKt$lruCache$3.class","size":2251,"crc":-1322802722},{"key":"androidx/core/util/LruCacheKt$lruCache$4.class","name":"androidx/core/util/LruCacheKt$lruCache$4.class","size":3354,"crc":-975443624},{"key":"androidx/core/util/LruCacheKt.class","name":"androidx/core/util/LruCacheKt.class","size":2804,"crc":-526826459},{"key":"androidx/core/util/PairKt.class","name":"androidx/core/util/PairKt.class","size":3497,"crc":-1245435621},{"key":"androidx/core/util/RangeKt$toClosedRange$1.class","name":"androidx/core/util/RangeKt$toClosedRange$1.class","size":1925,"crc":2131224529},{"key":"androidx/core/util/RangeKt.class","name":"androidx/core/util/RangeKt.class","size":3230,"crc":-1491720124},{"key":"androidx/core/util/RunnableKt.class","name":"androidx/core/util/RunnableKt.class","size":958,"crc":474323119},{"key":"androidx/core/util/SizeKt.class","name":"androidx/core/util/SizeKt.class","size":1746,"crc":2084608092},{"key":"androidx/core/util/SparseArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseArrayKt$keyIterator$1.class","size":1566,"crc":-153881193},{"key":"androidx/core/util/SparseArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseArrayKt$valueIterator$1.class","size":1996,"crc":-1787147675},{"key":"androidx/core/util/SparseArrayKt.class","name":"androidx/core/util/SparseArrayKt.class","size":7589,"crc":-1154026456},{"key":"androidx/core/util/SparseBooleanArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseBooleanArrayKt$keyIterator$1.class","size":1523,"crc":-1227995325},{"key":"androidx/core/util/SparseBooleanArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseBooleanArrayKt$valueIterator$1.class","size":1549,"crc":-1149490815},{"key":"androidx/core/util/SparseBooleanArrayKt.class","name":"androidx/core/util/SparseBooleanArrayKt.class","size":6638,"crc":1712220530},{"key":"androidx/core/util/SparseIntArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseIntArrayKt$keyIterator$1.class","size":1491,"crc":-1721360329},{"key":"androidx/core/util/SparseIntArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseIntArrayKt$valueIterator$1.class","size":1501,"crc":266627038},{"key":"androidx/core/util/SparseIntArrayKt.class","name":"androidx/core/util/SparseIntArrayKt.class","size":6274,"crc":-926075899},{"key":"androidx/core/util/SparseLongArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseLongArrayKt$keyIterator$1.class","size":1499,"crc":-1650307329},{"key":"androidx/core/util/SparseLongArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseLongArrayKt$valueIterator$1.class","size":1528,"crc":30930225},{"key":"androidx/core/util/SparseLongArrayKt.class","name":"androidx/core/util/SparseLongArrayKt.class","size":6585,"crc":-2013780278},{"key":"androidx/core/view/MenuKt$children$1.class","name":"androidx/core/view/MenuKt$children$1.class","size":1291,"crc":688693280},{"key":"androidx/core/view/MenuKt$iterator$1.class","name":"androidx/core/view/MenuKt$iterator$1.class","size":2852,"crc":504074570},{"key":"androidx/core/view/MenuKt.class","name":"androidx/core/view/MenuKt.class","size":5223,"crc":449666812},{"key":"androidx/core/view/TreeIterator.class","name":"androidx/core/view/TreeIterator.class","size":2921,"crc":1851287964},{"key":"androidx/core/view/ViewGroupKt$children$1.class","name":"androidx/core/view/ViewGroupKt$children$1.class","size":1319,"crc":-1831304970},{"key":"androidx/core/view/ViewGroupKt$descendants$1$1.class","name":"androidx/core/view/ViewGroupKt$descendants$1$1.class","size":1821,"crc":-1329298579},{"key":"androidx/core/view/ViewGroupKt$iterator$1.class","name":"androidx/core/view/ViewGroupKt$iterator$1.class","size":1897,"crc":-1639515172},{"key":"androidx/core/view/ViewGroupKt$special$$inlined$Sequence$1.class","name":"androidx/core/view/ViewGroupKt$special$$inlined$Sequence$1.class","size":2323,"crc":-155440975},{"key":"androidx/core/view/ViewGroupKt.class","name":"androidx/core/view/ViewGroupKt.class","size":7598,"crc":1363807469},{"key":"androidx/core/view/ViewKt$allViews$1.class","name":"androidx/core/view/ViewKt$allViews$1.class","size":3857,"crc":-1813219413},{"key":"androidx/core/view/ViewKt$ancestors$1.class","name":"androidx/core/view/ViewKt$ancestors$1.class","size":1480,"crc":-377500194},{"key":"androidx/core/view/ViewKt$doOnAttach$1.class","name":"androidx/core/view/ViewKt$doOnAttach$1.class","size":2137,"crc":1505595239},{"key":"androidx/core/view/ViewKt$doOnDetach$1.class","name":"androidx/core/view/ViewKt$doOnDetach$1.class","size":2137,"crc":-771929976},{"key":"androidx/core/view/ViewKt$doOnLayout$$inlined$doOnNextLayout$1.class","name":"androidx/core/view/ViewKt$doOnLayout$$inlined$doOnNextLayout$1.class","size":2349,"crc":-1146481346},{"key":"androidx/core/view/ViewKt$doOnNextLayout$1.class","name":"androidx/core/view/ViewKt$doOnNextLayout$1.class","size":2226,"crc":-1548757116},{"key":"androidx/core/view/ViewKt$doOnPreDraw$1.class","name":"androidx/core/view/ViewKt$doOnPreDraw$1.class","size":1651,"crc":-2042201155},{"key":"androidx/core/view/ViewKt$postDelayed$runnable$1.class","name":"androidx/core/view/ViewKt$postDelayed$runnable$1.class","size":1479,"crc":-249371899},{"key":"androidx/core/view/ViewKt.class","name":"androidx/core/view/ViewKt.class","size":14739,"crc":1277246314},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$1.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$1.class","size":2309,"crc":-1458842161},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$2.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$2.class","size":2309,"crc":1800048640},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$3.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$3.class","size":1963,"crc":-2036036547},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$textWatcher$1.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$textWatcher$1.class","size":3399,"crc":-971685379},{"key":"androidx/core/widget/TextViewKt$doAfterTextChanged$$inlined$addTextChangedListener$default$1.class","name":"androidx/core/widget/TextViewKt$doAfterTextChanged$$inlined$addTextChangedListener$default$1.class","size":3110,"crc":-2117680630},{"key":"androidx/core/widget/TextViewKt$doBeforeTextChanged$$inlined$addTextChangedListener$default$1.class","name":"androidx/core/widget/TextViewKt$doBeforeTextChanged$$inlined$addTextChangedListener$default$1.class","size":3258,"crc":-1619639831},{"key":"androidx/core/widget/TextViewKt$doOnTextChanged$$inlined$addTextChangedListener$default$1.class","name":"androidx/core/widget/TextViewKt$doOnTextChanged$$inlined$addTextChangedListener$default$1.class","size":3242,"crc":474637645},{"key":"androidx/core/widget/TextViewKt.class","name":"androidx/core/widget/TextViewKt.class","size":6573,"crc":-918980938},{"key":"META-INF/androidx.core_core-ktx.version","name":"META-INF/androidx.core_core-ktx.version","size":7,"crc":-1000712479},{"key":"META-INF/core-ktx_release.kotlin_module","name":"META-INF/core-ktx_release.kotlin_module","size":1150,"crc":717817418}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LQUd0yE2yD+5NqgPnd+cWQ== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LQUd0yE2yD+5NqgPnd+cWQ== new file mode 100644 index 0000000..d92be7d --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LQUd0yE2yD+5NqgPnd+cWQ== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":128,"crc":219314733},{"key":"org/intellij/lang/annotations/Flow.class","name":"org/intellij/lang/annotations/Flow.class","size":1217,"crc":-2102043213},{"key":"org/intellij/lang/annotations/Identifier.class","name":"org/intellij/lang/annotations/Identifier.class","size":324,"crc":1003706824},{"key":"org/intellij/lang/annotations/JdkConstants$AdjustableOrientation.class","name":"org/intellij/lang/annotations/JdkConstants$AdjustableOrientation.class","size":299,"crc":585442457},{"key":"org/intellij/lang/annotations/JdkConstants$BoxLayoutAxis.class","name":"org/intellij/lang/annotations/JdkConstants$BoxLayoutAxis.class","size":283,"crc":2112307339},{"key":"org/intellij/lang/annotations/JdkConstants$CalendarMonth.class","name":"org/intellij/lang/annotations/JdkConstants$CalendarMonth.class","size":283,"crc":-1461794964},{"key":"org/intellij/lang/annotations/JdkConstants$CursorType.class","name":"org/intellij/lang/annotations/JdkConstants$CursorType.class","size":277,"crc":1261991804},{"key":"org/intellij/lang/annotations/JdkConstants$FlowLayoutAlignment.class","name":"org/intellij/lang/annotations/JdkConstants$FlowLayoutAlignment.class","size":295,"crc":-1309531958},{"key":"org/intellij/lang/annotations/JdkConstants$FontStyle.class","name":"org/intellij/lang/annotations/JdkConstants$FontStyle.class","size":275,"crc":672556144},{"key":"org/intellij/lang/annotations/JdkConstants$HorizontalAlignment.class","name":"org/intellij/lang/annotations/JdkConstants$HorizontalAlignment.class","size":295,"crc":-1845894850},{"key":"org/intellij/lang/annotations/JdkConstants$InputEventMask.class","name":"org/intellij/lang/annotations/JdkConstants$InputEventMask.class","size":285,"crc":115820859},{"key":"org/intellij/lang/annotations/JdkConstants$ListSelectionMode.class","name":"org/intellij/lang/annotations/JdkConstants$ListSelectionMode.class","size":291,"crc":1972304950},{"key":"org/intellij/lang/annotations/JdkConstants$PatternFlags.class","name":"org/intellij/lang/annotations/JdkConstants$PatternFlags.class","size":281,"crc":-1389407250},{"key":"org/intellij/lang/annotations/JdkConstants$TabLayoutPolicy.class","name":"org/intellij/lang/annotations/JdkConstants$TabLayoutPolicy.class","size":287,"crc":-636391766},{"key":"org/intellij/lang/annotations/JdkConstants$TabPlacement.class","name":"org/intellij/lang/annotations/JdkConstants$TabPlacement.class","size":281,"crc":-214765930},{"key":"org/intellij/lang/annotations/JdkConstants$TitledBorderJustification.class","name":"org/intellij/lang/annotations/JdkConstants$TitledBorderJustification.class","size":307,"crc":859456766},{"key":"org/intellij/lang/annotations/JdkConstants$TitledBorderTitlePosition.class","name":"org/intellij/lang/annotations/JdkConstants$TitledBorderTitlePosition.class","size":307,"crc":1103964778},{"key":"org/intellij/lang/annotations/JdkConstants$TreeSelectionMode.class","name":"org/intellij/lang/annotations/JdkConstants$TreeSelectionMode.class","size":291,"crc":-474777859},{"key":"org/intellij/lang/annotations/JdkConstants.class","name":"org/intellij/lang/annotations/JdkConstants.class","size":1730,"crc":1434561639},{"key":"org/intellij/lang/annotations/Language.class","name":"org/intellij/lang/annotations/Language.class","size":681,"crc":-1817758794},{"key":"org/intellij/lang/annotations/MagicConstant.class","name":"org/intellij/lang/annotations/MagicConstant.class","size":715,"crc":-1592799795},{"key":"org/intellij/lang/annotations/Pattern.class","name":"org/intellij/lang/annotations/Pattern.class","size":600,"crc":-530891111},{"key":"org/intellij/lang/annotations/PrintFormat.class","name":"org/intellij/lang/annotations/PrintFormat.class","size":356,"crc":1445148429},{"key":"org/intellij/lang/annotations/PrintFormatPattern.class","name":"org/intellij/lang/annotations/PrintFormatPattern.class","size":964,"crc":-1507760601},{"key":"org/intellij/lang/annotations/RegExp.class","name":"org/intellij/lang/annotations/RegExp.class","size":665,"crc":-762257026},{"key":"org/intellij/lang/annotations/Subst.class","name":"org/intellij/lang/annotations/Subst.class","size":199,"crc":-1769088951},{"key":"org/jetbrains/annotations/Contract.class","name":"org/jetbrains/annotations/Contract.class","size":531,"crc":562269709},{"key":"org/jetbrains/annotations/Nls.class","name":"org/jetbrains/annotations/Nls.class","size":502,"crc":776170298},{"key":"org/jetbrains/annotations/NonNls.class","name":"org/jetbrains/annotations/NonNls.class","size":508,"crc":1172811652},{"key":"org/jetbrains/annotations/NotNull.class","name":"org/jetbrains/annotations/NotNull.class","size":546,"crc":-316212578},{"key":"org/jetbrains/annotations/Nullable.class","name":"org/jetbrains/annotations/Nullable.class","size":548,"crc":-689673279},{"key":"org/jetbrains/annotations/PropertyKey.class","name":"org/jetbrains/annotations/PropertyKey.class","size":525,"crc":862906181},{"key":"org/jetbrains/annotations/TestOnly.class","name":"org/jetbrains/annotations/TestOnly.class","size":453,"crc":1033452998},{"key":"META-INF/maven/org.jetbrains/annotations/pom.xml","name":"META-INF/maven/org.jetbrains/annotations/pom.xml","size":4930,"crc":-127628560},{"key":"META-INF/maven/org.jetbrains/annotations/pom.properties","name":"META-INF/maven/org.jetbrains/annotations/pom.properties","size":108,"crc":97218998}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MyRCIUP1tAsGoj3darRflA== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MyRCIUP1tAsGoj3darRflA== new file mode 100644 index 0000000..64cef69 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MyRCIUP1tAsGoj3darRflA== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":225,"crc":1334212140},{"key":"META-INF/versions/9/module-info.class","name":"META-INF/versions/9/module-info.class","size":287,"crc":-1907208598}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/O379FMBqjBB0IHCMcGWXWg== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/O379FMBqjBB0IHCMcGWXWg== new file mode 100644 index 0000000..7f431b7 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/O379FMBqjBB0IHCMcGWXWg== @@ -0,0 +1 @@ +[{"key":"androidx/interpolator/view/animation/FastOutLinearInInterpolator.class","name":"androidx/interpolator/view/animation/FastOutLinearInInterpolator.class","size":2893,"crc":-586218538},{"key":"androidx/interpolator/view/animation/FastOutSlowInInterpolator.class","name":"androidx/interpolator/view/animation/FastOutSlowInInterpolator.class","size":2876,"crc":-1344934723},{"key":"androidx/interpolator/view/animation/LinearOutSlowInInterpolator.class","name":"androidx/interpolator/view/animation/LinearOutSlowInInterpolator.class","size":2882,"crc":-733508970},{"key":"androidx/interpolator/view/animation/LookupTableInterpolator.class","name":"androidx/interpolator/view/animation/LookupTableInterpolator.class","size":907,"crc":-26214147},{"key":"META-INF/androidx.interpolator_interpolator.version","name":"META-INF/androidx.interpolator_interpolator.version","size":6,"crc":-42031000}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OJbcWPBVycWlwIwr7OOPOg== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OJbcWPBVycWlwIwr7OOPOg== new file mode 100644 index 0000000..cfcd7eb --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OJbcWPBVycWlwIwr7OOPOg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"META-INF/annotation.kotlin_module","name":"META-INF/annotation.kotlin_module","size":24,"crc":1613429616},{"key":"androidx/annotation/AnimRes.class","name":"androidx/annotation/AnimRes.class","size":998,"crc":1805675076},{"key":"androidx/annotation/AnimatorRes.class","name":"androidx/annotation/AnimatorRes.class","size":1010,"crc":-21670366},{"key":"androidx/annotation/AnyRes.class","name":"androidx/annotation/AnyRes.class","size":995,"crc":-1558869655},{"key":"androidx/annotation/AnyThread.class","name":"androidx/annotation/AnyThread.class","size":1047,"crc":-292959457},{"key":"androidx/annotation/ArrayRes.class","name":"androidx/annotation/ArrayRes.class","size":1001,"crc":-1364959277},{"key":"androidx/annotation/AttrRes.class","name":"androidx/annotation/AttrRes.class","size":998,"crc":336978531},{"key":"androidx/annotation/BinderThread.class","name":"androidx/annotation/BinderThread.class","size":1056,"crc":-1438044114},{"key":"androidx/annotation/BoolRes.class","name":"androidx/annotation/BoolRes.class","size":998,"crc":1086348174},{"key":"androidx/annotation/CallSuper.class","name":"androidx/annotation/CallSuper.class","size":919,"crc":-1796011780},{"key":"androidx/annotation/CheckResult.class","name":"androidx/annotation/CheckResult.class","size":1039,"crc":1042113953},{"key":"androidx/annotation/ChecksSdkIntAtLeast.class","name":"androidx/annotation/ChecksSdkIntAtLeast.class","size":1337,"crc":1242654976},{"key":"androidx/annotation/ColorInt.class","name":"androidx/annotation/ColorInt.class","size":1001,"crc":799609820},{"key":"androidx/annotation/ColorLong.class","name":"androidx/annotation/ColorLong.class","size":996,"crc":-965017695},{"key":"androidx/annotation/ColorRes.class","name":"androidx/annotation/ColorRes.class","size":1001,"crc":1387302471},{"key":"androidx/annotation/ContentView.class","name":"androidx/annotation/ContentView.class","size":790,"crc":1840561130},{"key":"androidx/annotation/DeprecatedSinceApi.class","name":"androidx/annotation/DeprecatedSinceApi.class","size":1210,"crc":-197722093},{"key":"androidx/annotation/DimenRes.class","name":"androidx/annotation/DimenRes.class","size":1001,"crc":1200789212},{"key":"androidx/annotation/Dimension$Companion.class","name":"androidx/annotation/Dimension$Companion.class","size":850,"crc":-597474804},{"key":"androidx/annotation/Dimension.class","name":"androidx/annotation/Dimension.class","size":1551,"crc":1192463037},{"key":"androidx/annotation/Discouraged.class","name":"androidx/annotation/Discouraged.class","size":1071,"crc":-1502727256},{"key":"androidx/annotation/DisplayContext.class","name":"androidx/annotation/DisplayContext.class","size":973,"crc":-1030231984},{"key":"androidx/annotation/DoNotInline.class","name":"androidx/annotation/DoNotInline.class","size":842,"crc":-784511386},{"key":"androidx/annotation/DrawableRes.class","name":"androidx/annotation/DrawableRes.class","size":1010,"crc":1762719637},{"key":"androidx/annotation/EmptySuper.class","name":"androidx/annotation/EmptySuper.class","size":876,"crc":-1971548453},{"key":"androidx/annotation/FloatRange.class","name":"androidx/annotation/FloatRange.class","size":1365,"crc":624310496},{"key":"androidx/annotation/FontRes.class","name":"androidx/annotation/FontRes.class","size":998,"crc":-641216705},{"key":"androidx/annotation/FractionRes.class","name":"androidx/annotation/FractionRes.class","size":1010,"crc":1499853784},{"key":"androidx/annotation/GravityInt.class","name":"androidx/annotation/GravityInt.class","size":1007,"crc":-1848783872},{"key":"androidx/annotation/GuardedBy.class","name":"androidx/annotation/GuardedBy.class","size":927,"crc":1952837113},{"key":"androidx/annotation/HalfFloat.class","name":"androidx/annotation/HalfFloat.class","size":996,"crc":-1673008440},{"key":"androidx/annotation/IdRes.class","name":"androidx/annotation/IdRes.class","size":992,"crc":1613555030},{"key":"androidx/annotation/InspectableProperty$EnumEntry.class","name":"androidx/annotation/InspectableProperty$EnumEntry.class","size":1098,"crc":1662655193},{"key":"androidx/annotation/InspectableProperty$FlagEntry.class","name":"androidx/annotation/InspectableProperty$FlagEntry.class","size":1182,"crc":-428253226},{"key":"androidx/annotation/InspectableProperty$ValueType.class","name":"androidx/annotation/InspectableProperty$ValueType.class","size":1854,"crc":1544860775},{"key":"androidx/annotation/InspectableProperty.class","name":"androidx/annotation/InspectableProperty.class","size":2118,"crc":1292687511},{"key":"androidx/annotation/IntDef.class","name":"androidx/annotation/IntDef.class","size":1018,"crc":-2084495046},{"key":"androidx/annotation/IntRange.class","name":"androidx/annotation/IntRange.class","size":1213,"crc":-1057240409},{"key":"androidx/annotation/IntegerRes.class","name":"androidx/annotation/IntegerRes.class","size":1007,"crc":1443210290},{"key":"androidx/annotation/InterpolatorRes.class","name":"androidx/annotation/InterpolatorRes.class","size":1022,"crc":1441158230},{"key":"androidx/annotation/Keep.class","name":"androidx/annotation/Keep.class","size":959,"crc":-614514485},{"key":"androidx/annotation/LayoutRes.class","name":"androidx/annotation/LayoutRes.class","size":1004,"crc":-1845378728},{"key":"androidx/annotation/LongDef.class","name":"androidx/annotation/LongDef.class","size":1021,"crc":-1882350390},{"key":"androidx/annotation/MainThread.class","name":"androidx/annotation/MainThread.class","size":1050,"crc":850348188},{"key":"androidx/annotation/MenuRes.class","name":"androidx/annotation/MenuRes.class","size":998,"crc":1561717034},{"key":"androidx/annotation/NavigationRes.class","name":"androidx/annotation/NavigationRes.class","size":1016,"crc":264753535},{"key":"androidx/annotation/NonNull.class","name":"androidx/annotation/NonNull.class","size":1072,"crc":1890549879},{"key":"androidx/annotation/NonUiContext.class","name":"androidx/annotation/NonUiContext.class","size":967,"crc":-287470527},{"key":"androidx/annotation/Nullable.class","name":"androidx/annotation/Nullable.class","size":1075,"crc":1363795669},{"key":"androidx/annotation/OpenForTesting.class","name":"androidx/annotation/OpenForTesting.class","size":951,"crc":-1077337476},{"key":"androidx/annotation/PluralsRes.class","name":"androidx/annotation/PluralsRes.class","size":1007,"crc":-16773091},{"key":"androidx/annotation/Px.class","name":"androidx/annotation/Px.class","size":1071,"crc":181286199},{"key":"androidx/annotation/RawRes.class","name":"androidx/annotation/RawRes.class","size":995,"crc":-734924532},{"key":"androidx/annotation/RequiresApi.class","name":"androidx/annotation/RequiresApi.class","size":1176,"crc":702703466},{"key":"androidx/annotation/RequiresExtension$Container.class","name":"androidx/annotation/RequiresExtension$Container.class","size":1055,"crc":-1982377015},{"key":"androidx/annotation/RequiresExtension.class","name":"androidx/annotation/RequiresExtension.class","size":1402,"crc":1188583388},{"key":"androidx/annotation/RequiresFeature.class","name":"androidx/annotation/RequiresFeature.class","size":1091,"crc":-586912630},{"key":"androidx/annotation/RequiresPermission$Read.class","name":"androidx/annotation/RequiresPermission$Read.class","size":1092,"crc":-606956352},{"key":"androidx/annotation/RequiresPermission$Write.class","name":"androidx/annotation/RequiresPermission$Write.class","size":1095,"crc":2005504804},{"key":"androidx/annotation/RequiresPermission.class","name":"androidx/annotation/RequiresPermission.class","size":1597,"crc":-40562329},{"key":"androidx/annotation/RestrictTo$Scope.class","name":"androidx/annotation/RestrictTo$Scope.class","size":1818,"crc":170557603},{"key":"androidx/annotation/RestrictTo.class","name":"androidx/annotation/RestrictTo.class","size":1308,"crc":-1930201174},{"key":"androidx/annotation/ReturnThis.class","name":"androidx/annotation/ReturnThis.class","size":893,"crc":-1928044719},{"key":"androidx/annotation/Size.class","name":"androidx/annotation/Size.class","size":1326,"crc":302039339},{"key":"androidx/annotation/StringDef.class","name":"androidx/annotation/StringDef.class","size":1005,"crc":-1165630304},{"key":"androidx/annotation/StringRes.class","name":"androidx/annotation/StringRes.class","size":1004,"crc":284093704},{"key":"androidx/annotation/StyleRes.class","name":"androidx/annotation/StyleRes.class","size":1001,"crc":1701184168},{"key":"androidx/annotation/StyleableRes.class","name":"androidx/annotation/StyleableRes.class","size":1013,"crc":1642461597},{"key":"androidx/annotation/TransitionRes.class","name":"androidx/annotation/TransitionRes.class","size":981,"crc":-1441671359},{"key":"androidx/annotation/UiContext.class","name":"androidx/annotation/UiContext.class","size":958,"crc":1604163313},{"key":"androidx/annotation/UiThread.class","name":"androidx/annotation/UiThread.class","size":1044,"crc":-490984382},{"key":"androidx/annotation/VisibleForTesting$Companion.class","name":"androidx/annotation/VisibleForTesting$Companion.class","size":967,"crc":599658159},{"key":"androidx/annotation/VisibleForTesting.class","name":"androidx/annotation/VisibleForTesting.class","size":1196,"crc":-761906278},{"key":"androidx/annotation/WorkerThread.class","name":"androidx/annotation/WorkerThread.class","size":1056,"crc":2033881368},{"key":"androidx/annotation/XmlRes.class","name":"androidx/annotation/XmlRes.class","size":995,"crc":1134232451},{"key":"META-INF/proguard/androidx-annotations.pro","name":"META-INF/proguard/androidx-annotations.pro","size":433,"crc":1618759247}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Q+jsjOVUi8dWYSPi0_iwQg== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Q+jsjOVUi8dWYSPi0_iwQg== new file mode 100644 index 0000000..e761500 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Q+jsjOVUi8dWYSPi0_iwQg== @@ -0,0 +1 @@ +[{"key":"androidx/savedstate/Recreator$Companion.class","name":"androidx/savedstate/Recreator$Companion.class","size":881,"crc":-2099199957},{"key":"androidx/savedstate/Recreator$SavedStateProvider.class","name":"androidx/savedstate/Recreator$SavedStateProvider.class","size":2367,"crc":1821800407},{"key":"androidx/savedstate/Recreator.class","name":"androidx/savedstate/Recreator.class","size":5559,"crc":-533493763},{"key":"androidx/savedstate/SavedStateRegistry$AutoRecreated.class","name":"androidx/savedstate/SavedStateRegistry$AutoRecreated.class","size":784,"crc":567056175},{"key":"androidx/savedstate/SavedStateRegistry$Companion.class","name":"androidx/savedstate/SavedStateRegistry$Companion.class","size":887,"crc":900872896},{"key":"androidx/savedstate/SavedStateRegistry$SavedStateProvider.class","name":"androidx/savedstate/SavedStateRegistry$SavedStateProvider.class","size":709,"crc":-309935901},{"key":"androidx/savedstate/SavedStateRegistry.class","name":"androidx/savedstate/SavedStateRegistry.class","size":10105,"crc":788600212},{"key":"androidx/savedstate/SavedStateRegistryController$Companion.class","name":"androidx/savedstate/SavedStateRegistryController$Companion.class","size":1607,"crc":-1819286630},{"key":"androidx/savedstate/SavedStateRegistryController.class","name":"androidx/savedstate/SavedStateRegistryController.class","size":4330,"crc":-287729808},{"key":"androidx/savedstate/SavedStateRegistryOwner.class","name":"androidx/savedstate/SavedStateRegistryOwner.class","size":755,"crc":-979039875},{"key":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$1.class","name":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$1.class","size":1846,"crc":423512158},{"key":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$2.class","name":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$2.class","size":2045,"crc":-1356874610},{"key":"androidx/savedstate/ViewTreeSavedStateRegistryOwner.class","name":"androidx/savedstate/ViewTreeSavedStateRegistryOwner.class","size":2543,"crc":1459979664},{"key":"META-INF/androidx.savedstate_savedstate.version","name":"META-INF/androidx.savedstate_savedstate.version","size":6,"crc":1315721634},{"key":"META-INF/savedstate_release.kotlin_module","name":"META-INF/savedstate_release.kotlin_module","size":80,"crc":-912612184}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RN15dX2CXDbLYzjgWiyI6w== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RN15dX2CXDbLYzjgWiyI6w== new file mode 100644 index 0000000..9963384 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RN15dX2CXDbLYzjgWiyI6w== @@ -0,0 +1 @@ +[{"key":"androidx/versionedparcelable/CustomVersionedParcelable.class","name":"androidx/versionedparcelable/CustomVersionedParcelable.class","size":915,"crc":-363159068},{"key":"androidx/versionedparcelable/NonParcelField.class","name":"androidx/versionedparcelable/NonParcelField.class","size":676,"crc":1361393714},{"key":"androidx/versionedparcelable/ParcelField.class","name":"androidx/versionedparcelable/ParcelField.class","size":762,"crc":-355164638},{"key":"androidx/versionedparcelable/ParcelImpl$1.class","name":"androidx/versionedparcelable/ParcelImpl$1.class","size":1191,"crc":-60532325},{"key":"androidx/versionedparcelable/ParcelImpl.class","name":"androidx/versionedparcelable/ParcelImpl.class","size":1979,"crc":1919067054},{"key":"androidx/versionedparcelable/ParcelUtils.class","name":"androidx/versionedparcelable/ParcelUtils.class","size":5523,"crc":-1129855369},{"key":"androidx/versionedparcelable/VersionedParcel$1.class","name":"androidx/versionedparcelable/VersionedParcel$1.class","size":1546,"crc":-1038307129},{"key":"androidx/versionedparcelable/VersionedParcel$ParcelException.class","name":"androidx/versionedparcelable/VersionedParcel$ParcelException.class","size":538,"crc":1830934000},{"key":"androidx/versionedparcelable/VersionedParcel.class","name":"androidx/versionedparcelable/VersionedParcel.class","size":29325,"crc":142272959},{"key":"androidx/versionedparcelable/VersionedParcelParcel.class","name":"androidx/versionedparcelable/VersionedParcelParcel.class","size":7429,"crc":-328586236},{"key":"androidx/versionedparcelable/VersionedParcelStream$1.class","name":"androidx/versionedparcelable/VersionedParcelStream$1.class","size":1613,"crc":1775874054},{"key":"androidx/versionedparcelable/VersionedParcelStream$FieldBuffer.class","name":"androidx/versionedparcelable/VersionedParcelStream$FieldBuffer.class","size":1288,"crc":1505456534},{"key":"androidx/versionedparcelable/VersionedParcelStream.class","name":"androidx/versionedparcelable/VersionedParcelStream.class","size":13823,"crc":-1859752855},{"key":"androidx/versionedparcelable/VersionedParcelable.class","name":"androidx/versionedparcelable/VersionedParcelable.class","size":148,"crc":752656910},{"key":"androidx/versionedparcelable/VersionedParcelize.class","name":"androidx/versionedparcelable/VersionedParcelize.class","size":964,"crc":886842821},{"key":"META-INF/androidx.versionedparcelable_versionedparcelable.version","name":"META-INF/androidx.versionedparcelable_versionedparcelable.version","size":6,"crc":1557790284}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RYtHelTi5C9aZOp8Qkps3w== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RYtHelTi5C9aZOp8Qkps3w== new file mode 100644 index 0000000..12ab86f --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RYtHelTi5C9aZOp8Qkps3w== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/Observer.class","name":"androidx/lifecycle/Observer.class","size":581,"crc":-1645925231},{"key":"androidx/lifecycle/LiveData$1.class","name":"androidx/lifecycle/LiveData$1.class","size":967,"crc":1624229709},{"key":"androidx/lifecycle/LiveData$AlwaysActiveObserver.class","name":"androidx/lifecycle/LiveData$AlwaysActiveObserver.class","size":1024,"crc":2056042322},{"key":"androidx/lifecycle/LiveData$LifecycleBoundObserver.class","name":"androidx/lifecycle/LiveData$LifecycleBoundObserver.class","size":2882,"crc":499156433},{"key":"androidx/lifecycle/LiveData$ObserverWrapper.class","name":"androidx/lifecycle/LiveData$ObserverWrapper.class","size":1588,"crc":-1223836256},{"key":"androidx/lifecycle/LiveData.class","name":"androidx/lifecycle/LiveData.class","size":8921,"crc":899075882},{"key":"androidx/lifecycle/MutableLiveData.class","name":"androidx/lifecycle/MutableLiveData.class","size":946,"crc":-710747396},{"key":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","name":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","size":78,"crc":1772768774},{"key":"META-INF/lifecycle-livedata-core_release.kotlin_module","name":"META-INF/lifecycle-livedata-core_release.kotlin_module","size":24,"crc":1613429616}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ReOC_eL0KBoYMRO8dew50A== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ReOC_eL0KBoYMRO8dew50A== new file mode 100644 index 0000000..d81198f --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ReOC_eL0KBoYMRO8dew50A== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/collection/ArrayMap$1.class","name":"androidx/collection/ArrayMap$1.class","size":2268,"crc":2119754508},{"key":"androidx/collection/ArrayMap.class","name":"androidx/collection/ArrayMap.class","size":3510,"crc":-1266570172},{"key":"androidx/collection/ArraySet$1.class","name":"androidx/collection/ArraySet$1.class","size":2270,"crc":467012598},{"key":"androidx/collection/ArraySet.class","name":"androidx/collection/ArraySet.class","size":11832,"crc":284151195},{"key":"androidx/collection/CircularArray.class","name":"androidx/collection/CircularArray.class","size":4178,"crc":-646150562},{"key":"androidx/collection/CircularIntArray.class","name":"androidx/collection/CircularIntArray.class","size":2996,"crc":-1809371816},{"key":"androidx/collection/ContainerHelpers.class","name":"androidx/collection/ContainerHelpers.class","size":1711,"crc":1459012494},{"key":"androidx/collection/LongSparseArray.class","name":"androidx/collection/LongSparseArray.class","size":7060,"crc":-249107820},{"key":"androidx/collection/LruCache.class","name":"androidx/collection/LruCache.class","size":6572,"crc":-1323386586},{"key":"androidx/collection/MapCollections$ArrayIterator.class","name":"androidx/collection/MapCollections$ArrayIterator.class","size":1678,"crc":-1282301111},{"key":"androidx/collection/MapCollections$EntrySet.class","name":"androidx/collection/MapCollections$EntrySet.class","size":4584,"crc":-1095945835},{"key":"androidx/collection/MapCollections$KeySet.class","name":"androidx/collection/MapCollections$KeySet.class","size":3760,"crc":251514751},{"key":"androidx/collection/MapCollections$MapIterator.class","name":"androidx/collection/MapCollections$MapIterator.class","size":3542,"crc":1838648568},{"key":"androidx/collection/MapCollections$ValuesCollection.class","name":"androidx/collection/MapCollections$ValuesCollection.class","size":3783,"crc":25099165},{"key":"androidx/collection/MapCollections.class","name":"androidx/collection/MapCollections.class","size":5551,"crc":525100092},{"key":"androidx/collection/SimpleArrayMap.class","name":"androidx/collection/SimpleArrayMap.class","size":10631,"crc":41097503},{"key":"androidx/collection/SparseArrayCompat.class","name":"androidx/collection/SparseArrayCompat.class","size":7216,"crc":1400669519}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TD8Hyvs8QAbZ5RKazFZJPA== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TD8Hyvs8QAbZ5RKazFZJPA== new file mode 100644 index 0000000..7fb7281 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TD8Hyvs8QAbZ5RKazFZJPA== @@ -0,0 +1 @@ +[{"key":"androidx/annotation/OptIn.class","name":"androidx/annotation/OptIn.class","size":1252,"crc":2044678581},{"key":"androidx/annotation/RequiresOptIn$Level.class","name":"androidx/annotation/RequiresOptIn$Level.class","size":1487,"crc":-1945499205},{"key":"androidx/annotation/RequiresOptIn.class","name":"androidx/annotation/RequiresOptIn.class","size":1119,"crc":1571113326},{"key":"androidx/annotation/experimental/Experimental$Level.class","name":"androidx/annotation/experimental/Experimental$Level.class","size":1570,"crc":-1659833789},{"key":"androidx/annotation/experimental/Experimental.class","name":"androidx/annotation/experimental/Experimental.class","size":1426,"crc":-1756277940},{"key":"androidx/annotation/experimental/UseExperimental.class","name":"androidx/annotation/experimental/UseExperimental.class","size":1521,"crc":-1036664509},{"key":"META-INF/androidx.annotation_annotation-experimental.version","name":"META-INF/androidx.annotation_annotation-experimental.version","size":6,"crc":1914453823},{"key":"META-INF/annotation-experimental_release.kotlin_module","name":"META-INF/annotation-experimental_release.kotlin_module","size":24,"crc":1197092421}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VC0R66DwliVXL5qljCx8DQ== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VC0R66DwliVXL5qljCx8DQ== new file mode 100644 index 0000000..af91a2c --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VC0R66DwliVXL5qljCx8DQ== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/AbstractSavedStateViewModelFactory$Companion.class","name":"androidx/lifecycle/AbstractSavedStateViewModelFactory$Companion.class","size":981,"crc":-856004234},{"key":"androidx/lifecycle/AbstractSavedStateViewModelFactory.class","name":"androidx/lifecycle/AbstractSavedStateViewModelFactory.class","size":6633,"crc":1887362684},{"key":"androidx/lifecycle/LegacySavedStateHandleController$OnRecreation.class","name":"androidx/lifecycle/LegacySavedStateHandleController$OnRecreation.class","size":3023,"crc":1352335096},{"key":"androidx/lifecycle/LegacySavedStateHandleController$tryToAddRecreator$1.class","name":"androidx/lifecycle/LegacySavedStateHandleController$tryToAddRecreator$1.class","size":2215,"crc":-1110321192},{"key":"androidx/lifecycle/LegacySavedStateHandleController.class","name":"androidx/lifecycle/LegacySavedStateHandleController.class","size":4229,"crc":2063421456},{"key":"androidx/lifecycle/SavedStateHandle$Companion.class","name":"androidx/lifecycle/SavedStateHandle$Companion.class","size":3880,"crc":-1386044437},{"key":"androidx/lifecycle/SavedStateHandle$SavingStateLiveData.class","name":"androidx/lifecycle/SavedStateHandle$SavingStateLiveData.class","size":2785,"crc":1239087543},{"key":"androidx/lifecycle/SavedStateHandle.class","name":"androidx/lifecycle/SavedStateHandle.class","size":13780,"crc":996357302},{"key":"androidx/lifecycle/SavedStateHandleAttacher.class","name":"androidx/lifecycle/SavedStateHandleAttacher.class","size":2410,"crc":-1934335314},{"key":"androidx/lifecycle/SavedStateHandleController.class","name":"androidx/lifecycle/SavedStateHandleController.class","size":3933,"crc":-1321318372},{"key":"androidx/lifecycle/SavedStateHandleSupport$DEFAULT_ARGS_KEY$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$DEFAULT_ARGS_KEY$1.class","size":1015,"crc":424264501},{"key":"androidx/lifecycle/SavedStateHandleSupport$SAVED_STATE_REGISTRY_OWNER_KEY$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$SAVED_STATE_REGISTRY_OWNER_KEY$1.class","size":1095,"crc":1523009794},{"key":"androidx/lifecycle/SavedStateHandleSupport$VIEW_MODEL_STORE_OWNER_KEY$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$VIEW_MODEL_STORE_OWNER_KEY$1.class","size":1077,"crc":-702670968},{"key":"androidx/lifecycle/SavedStateHandleSupport$savedStateHandlesVM$1$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$savedStateHandlesVM$1$1.class","size":1899,"crc":1635032056},{"key":"androidx/lifecycle/SavedStateHandleSupport.class","name":"androidx/lifecycle/SavedStateHandleSupport.class","size":9836,"crc":1960161047},{"key":"androidx/lifecycle/SavedStateHandlesProvider$viewModel$2.class","name":"androidx/lifecycle/SavedStateHandlesProvider$viewModel$2.class","size":1569,"crc":-295120749},{"key":"androidx/lifecycle/SavedStateHandlesProvider.class","name":"androidx/lifecycle/SavedStateHandlesProvider.class","size":5980,"crc":1046935854},{"key":"androidx/lifecycle/SavedStateHandlesVM.class","name":"androidx/lifecycle/SavedStateHandlesVM.class","size":1202,"crc":1705824530},{"key":"androidx/lifecycle/SavedStateViewModelFactory.class","name":"androidx/lifecycle/SavedStateViewModelFactory.class","size":8807,"crc":-1676903485},{"key":"androidx/lifecycle/SavedStateViewModelFactoryKt.class","name":"androidx/lifecycle/SavedStateViewModelFactoryKt.class","size":5061,"crc":2029493689},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","size":85,"crc":-1370551005},{"key":"META-INF/lifecycle-viewmodel-savedstate_release.kotlin_module","name":"META-INF/lifecycle-viewmodel-savedstate_release.kotlin_module","size":101,"crc":-1891795020}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VHfTNX0vYD6WhGD1R_y3jA== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VHfTNX0vYD6WhGD1R_y3jA== new file mode 100644 index 0000000..d01af01 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VHfTNX0vYD6WhGD1R_y3jA== @@ -0,0 +1 @@ +[{"key":"META-INF/androidx.tracing_tracing.version","name":"META-INF/androidx.tracing_tracing.version","size":6,"crc":-42031000},{"key":"androidx/tracing/TraceApi18Impl.class","name":"androidx/tracing/TraceApi18Impl.class","size":719,"crc":-735196291},{"key":"androidx/tracing/TraceApi29Impl.class","name":"androidx/tracing/TraceApi29Impl.class","size":975,"crc":-372479716},{"key":"androidx/tracing/Trace.class","name":"androidx/tracing/Trace.class","size":4760,"crc":1193004678}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vlt0x2RoTTjbih8798POwQ== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vlt0x2RoTTjbih8798POwQ== new file mode 100644 index 0000000..76c2e32 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vlt0x2RoTTjbih8798POwQ== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/AndroidViewModel.class","name":"androidx/lifecycle/AndroidViewModel.class","size":1321,"crc":-467527626},{"key":"androidx/lifecycle/HasDefaultViewModelProviderFactory.class","name":"androidx/lifecycle/HasDefaultViewModelProviderFactory.class","size":1425,"crc":763611457},{"key":"androidx/lifecycle/ViewModelLazy$1.class","name":"androidx/lifecycle/ViewModelLazy$1.class","size":1590,"crc":386025531},{"key":"androidx/lifecycle/ViewModelLazy.class","name":"androidx/lifecycle/ViewModelLazy.class","size":4709,"crc":-358808547},{"key":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion$ApplicationKeyImpl.class","name":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion$ApplicationKeyImpl.class","size":1424,"crc":2030250639},{"key":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion.class","name":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion.class","size":3267,"crc":1860571129},{"key":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory.class","name":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory.class","size":6463,"crc":1708545970},{"key":"androidx/lifecycle/ViewModelProvider$Factory$Companion.class","name":"androidx/lifecycle/ViewModelProvider$Factory$Companion.class","size":1899,"crc":-1841663057},{"key":"androidx/lifecycle/ViewModelProvider$Factory.class","name":"androidx/lifecycle/ViewModelProvider$Factory.class","size":2537,"crc":1242704570},{"key":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion$ViewModelKeyImpl.class","name":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion$ViewModelKeyImpl.class","size":1361,"crc":1951401922},{"key":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion.class","name":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion.class","size":2168,"crc":590277996},{"key":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory.class","name":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory.class","size":4099,"crc":482119706},{"key":"androidx/lifecycle/ViewModelProvider$OnRequeryFactory.class","name":"androidx/lifecycle/ViewModelProvider$OnRequeryFactory.class","size":1329,"crc":-648193253},{"key":"androidx/lifecycle/ViewModelProvider.class","name":"androidx/lifecycle/ViewModelProvider.class","size":6832,"crc":1554422119},{"key":"androidx/lifecycle/ViewModelProviderGetKt.class","name":"androidx/lifecycle/ViewModelProviderGetKt.class","size":2176,"crc":167055919},{"key":"androidx/lifecycle/ViewModelStore.class","name":"androidx/lifecycle/ViewModelStore.class","size":2811,"crc":-657158583},{"key":"androidx/lifecycle/ViewModelStoreOwner.class","name":"androidx/lifecycle/ViewModelStoreOwner.class","size":657,"crc":1248510734},{"key":"androidx/lifecycle/ViewTreeViewModelKt.class","name":"androidx/lifecycle/ViewTreeViewModelKt.class","size":1209,"crc":-29993865},{"key":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$1.class","name":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$1.class","size":1814,"crc":1140420585},{"key":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$2.class","name":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$2.class","size":2012,"crc":-1765475703},{"key":"androidx/lifecycle/ViewTreeViewModelStoreOwner.class","name":"androidx/lifecycle/ViewTreeViewModelStoreOwner.class","size":2495,"crc":396898371},{"key":"androidx/lifecycle/viewmodel/CreationExtras$Empty.class","name":"androidx/lifecycle/viewmodel/CreationExtras$Empty.class","size":1504,"crc":-1983505756},{"key":"androidx/lifecycle/viewmodel/CreationExtras$Key.class","name":"androidx/lifecycle/viewmodel/CreationExtras$Key.class","size":591,"crc":-1594625217},{"key":"androidx/lifecycle/viewmodel/CreationExtras.class","name":"androidx/lifecycle/viewmodel/CreationExtras.class","size":1730,"crc":1974911712},{"key":"androidx/lifecycle/viewmodel/InitializerViewModelFactory.class","name":"androidx/lifecycle/viewmodel/InitializerViewModelFactory.class","size":4210,"crc":26476270},{"key":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryBuilder.class","name":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryBuilder.class","size":3927,"crc":-1779341375},{"key":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryKt.class","name":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryKt.class","size":2730,"crc":1586886417},{"key":"androidx/lifecycle/viewmodel/MutableCreationExtras.class","name":"androidx/lifecycle/viewmodel/MutableCreationExtras.class","size":2582,"crc":2065569181},{"key":"androidx/lifecycle/viewmodel/ViewModelFactoryDsl.class","name":"androidx/lifecycle/viewmodel/ViewModelFactoryDsl.class","size":632,"crc":-1262435458},{"key":"androidx/lifecycle/viewmodel/ViewModelInitializer.class","name":"androidx/lifecycle/viewmodel/ViewModelInitializer.class","size":2135,"crc":1368863341},{"key":"androidx/lifecycle/ViewModel.class","name":"androidx/lifecycle/ViewModel.class","size":3594,"crc":1113704191},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","size":74,"crc":-1068237017},{"key":"META-INF/lifecycle-viewmodel_release.kotlin_module","name":"META-INF/lifecycle-viewmodel_release.kotlin_module","size":183,"crc":178230502}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/X4EuT1Dh_2KTNs2vjJ7eLw== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/X4EuT1Dh_2KTNs2vjJ7eLw== new file mode 100644 index 0000000..e5a84ae --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/X4EuT1Dh_2KTNs2vjJ7eLw== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$1.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$1.class","size":276,"crc":-940893964},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$AtomicHelper.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$AtomicHelper.class","size":2208,"crc":1918496937},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Cancellation.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Cancellation.class","size":1041,"crc":886782754},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Failure$1.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Failure$1.class","size":737,"crc":-471209672},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Failure.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Failure.class","size":951,"crc":-1760206701},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Listener.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Listener.class","size":873,"crc":402316535},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$SafeAtomicHelper.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$SafeAtomicHelper.class","size":5564,"crc":-1818562924},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$SetFuture.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$SetFuture.class","size":2033,"crc":286080067},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$SynchronizedHelper.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$SynchronizedHelper.class","size":3421,"crc":-1182687467},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Waiter.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Waiter.class","size":1723,"crc":226188834},{"key":"androidx/concurrent/futures/AbstractResolvableFuture.class","name":"androidx/concurrent/futures/AbstractResolvableFuture.class","size":18591,"crc":-370636094},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$Completer.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$Completer.class","size":3784,"crc":2035088105},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$FutureGarbageCollectedException.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$FutureGarbageCollectedException.class","size":706,"crc":-1609752935},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$Resolver.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$Resolver.class","size":831,"crc":142665041},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture$1.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture$1.class","size":1829,"crc":555402729},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture.class","size":3934,"crc":1212043617},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter.class","size":2370,"crc":1014408157},{"key":"androidx/concurrent/futures/DirectExecutor.class","name":"androidx/concurrent/futures/DirectExecutor.class","size":1661,"crc":-2104738324},{"key":"androidx/concurrent/futures/ResolvableFuture.class","name":"androidx/concurrent/futures/ResolvableFuture.class","size":1867,"crc":-254057077}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZVPie75okSJeJpiYw5l0Tw== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZVPie75okSJeJpiYw5l0Tw== new file mode 100644 index 0000000..1ee8c1c --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZVPie75okSJeJpiYw5l0Tw== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/lifecycle/ClassesInfoCache$CallbackInfo.class","name":"androidx/lifecycle/ClassesInfoCache$CallbackInfo.class","size":3345,"crc":-313150915},{"key":"androidx/lifecycle/ClassesInfoCache$MethodReference.class","name":"androidx/lifecycle/ClassesInfoCache$MethodReference.class","size":2284,"crc":508395143},{"key":"androidx/lifecycle/ClassesInfoCache.class","name":"androidx/lifecycle/ClassesInfoCache.class","size":7417,"crc":1890982937},{"key":"androidx/lifecycle/GenericLifecycleObserver.class","name":"androidx/lifecycle/GenericLifecycleObserver.class","size":557,"crc":1876517087},{"key":"androidx/lifecycle/OnLifecycleEvent.class","name":"androidx/lifecycle/OnLifecycleEvent.class","size":614,"crc":-662081732},{"key":"androidx/lifecycle/ReflectiveGenericLifecycleObserver.class","name":"androidx/lifecycle/ReflectiveGenericLifecycleObserver.class","size":1628,"crc":-661784695},{"key":"META-INF/lifecycle-common.kotlin_module","name":"META-INF/lifecycle-common.kotlin_module","size":98,"crc":-344145580},{"key":"androidx/lifecycle/CompositeGeneratedAdaptersObserver.class","name":"androidx/lifecycle/CompositeGeneratedAdaptersObserver.class","size":2192,"crc":-588589195},{"key":"androidx/lifecycle/DefaultLifecycleObserver.class","name":"androidx/lifecycle/DefaultLifecycleObserver.class","size":1561,"crc":1138428020},{"key":"androidx/lifecycle/DefaultLifecycleObserverAdapter$WhenMappings.class","name":"androidx/lifecycle/DefaultLifecycleObserverAdapter$WhenMappings.class","size":1129,"crc":-1393967104},{"key":"androidx/lifecycle/DefaultLifecycleObserverAdapter.class","name":"androidx/lifecycle/DefaultLifecycleObserverAdapter.class","size":2529,"crc":417874049},{"key":"androidx/lifecycle/DispatchQueue.class","name":"androidx/lifecycle/DispatchQueue.class","size":4226,"crc":-2053961371},{"key":"androidx/lifecycle/GeneratedAdapter.class","name":"androidx/lifecycle/GeneratedAdapter.class","size":1300,"crc":24417411},{"key":"androidx/lifecycle/Lifecycle$Event$Companion$WhenMappings.class","name":"androidx/lifecycle/Lifecycle$Event$Companion$WhenMappings.class","size":1073,"crc":-1453898351},{"key":"androidx/lifecycle/Lifecycle$Event$Companion.class","name":"androidx/lifecycle/Lifecycle$Event$Companion.class","size":2619,"crc":1493326216},{"key":"androidx/lifecycle/Lifecycle$Event$WhenMappings.class","name":"androidx/lifecycle/Lifecycle$Event$WhenMappings.class","size":1035,"crc":-1337925050},{"key":"androidx/lifecycle/Lifecycle$Event.class","name":"androidx/lifecycle/Lifecycle$Event.class","size":3618,"crc":-957783764},{"key":"androidx/lifecycle/Lifecycle$State.class","name":"androidx/lifecycle/Lifecycle$State.class","size":2085,"crc":1312149321},{"key":"androidx/lifecycle/Lifecycle.class","name":"androidx/lifecycle/Lifecycle.class","size":2354,"crc":-1628172174},{"key":"androidx/lifecycle/LifecycleController.class","name":"androidx/lifecycle/LifecycleController.class","size":4630,"crc":1874764903},{"key":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenCreated$1.class","name":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenCreated$1.class","size":4114,"crc":-636169170},{"key":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenResumed$1.class","name":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenResumed$1.class","size":4114,"crc":-72888868},{"key":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenStarted$1.class","name":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenStarted$1.class","size":4114,"crc":-832102748},{"key":"androidx/lifecycle/LifecycleCoroutineScope.class","name":"androidx/lifecycle/LifecycleCoroutineScope.class","size":3541,"crc":164913769},{"key":"androidx/lifecycle/LifecycleCoroutineScopeImpl$register$1.class","name":"androidx/lifecycle/LifecycleCoroutineScopeImpl$register$1.class","size":4156,"crc":2049593091},{"key":"androidx/lifecycle/LifecycleCoroutineScopeImpl.class","name":"androidx/lifecycle/LifecycleCoroutineScopeImpl.class","size":3622,"crc":1147053390},{"key":"androidx/lifecycle/LifecycleEventObserver.class","name":"androidx/lifecycle/LifecycleEventObserver.class","size":968,"crc":-1471782186},{"key":"androidx/lifecycle/LifecycleKt.class","name":"androidx/lifecycle/LifecycleKt.class","size":2164,"crc":2103077277},{"key":"androidx/lifecycle/LifecycleObserver.class","name":"androidx/lifecycle/LifecycleObserver.class","size":395,"crc":-329931382},{"key":"androidx/lifecycle/LifecycleOwner.class","name":"androidx/lifecycle/LifecycleOwner.class","size":611,"crc":-1363301969},{"key":"androidx/lifecycle/LifecycleOwnerKt.class","name":"androidx/lifecycle/LifecycleOwnerKt.class","size":1208,"crc":-317348439},{"key":"androidx/lifecycle/Lifecycling.class","name":"androidx/lifecycle/Lifecycling.class","size":9193,"crc":1781662277},{"key":"androidx/lifecycle/MethodCallsLogger.class","name":"androidx/lifecycle/MethodCallsLogger.class","size":1991,"crc":1355047278},{"key":"androidx/lifecycle/PausingDispatcher.class","name":"androidx/lifecycle/PausingDispatcher.class","size":2016,"crc":462084964},{"key":"androidx/lifecycle/PausingDispatcherKt$whenStateAtLeast$2.class","name":"androidx/lifecycle/PausingDispatcherKt$whenStateAtLeast$2.class","size":5702,"crc":-1188716541},{"key":"androidx/lifecycle/PausingDispatcherKt.class","name":"androidx/lifecycle/PausingDispatcherKt.class","size":6028,"crc":-1350334020},{"key":"androidx/lifecycle/SingleGeneratedAdapterObserver.class","name":"androidx/lifecycle/SingleGeneratedAdapterObserver.class","size":1792,"crc":1222686409}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_YS56lL8JITAr8WnkavucA== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_YS56lL8JITAr8WnkavucA== new file mode 100644 index 0000000..ba06094 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_YS56lL8JITAr8WnkavucA== @@ -0,0 +1 @@ +[{"key":"androidx/core/app/ComponentActivity$ExtraData.class","name":"androidx/core/app/ComponentActivity$ExtraData.class","size":1065,"crc":-1093318225},{"key":"androidx/core/app/ComponentActivity.class","name":"androidx/core/app/ComponentActivity.class","size":6563,"crc":852165625},{"key":"androidx/core/app/MultiWindowModeChangedInfo.class","name":"androidx/core/app/MultiWindowModeChangedInfo.class","size":2068,"crc":1341938654},{"key":"androidx/core/app/OnMultiWindowModeChangedProvider.class","name":"androidx/core/app/OnMultiWindowModeChangedProvider.class","size":955,"crc":44087049},{"key":"androidx/core/app/OnNewIntentProvider.class","name":"androidx/core/app/OnNewIntentProvider.class","size":846,"crc":-1758105483},{"key":"androidx/core/app/OnPictureInPictureModeChangedProvider.class","name":"androidx/core/app/OnPictureInPictureModeChangedProvider.class","size":990,"crc":-1938094298},{"key":"androidx/core/app/OnUserLeaveHintProvider.class","name":"androidx/core/app/OnUserLeaveHintProvider.class","size":713,"crc":16295445},{"key":"androidx/core/app/PictureInPictureModeChangedInfo.class","name":"androidx/core/app/PictureInPictureModeChangedInfo.class","size":2098,"crc":3524212},{"key":"androidx/core/content/OnConfigurationChangedProvider.class","name":"androidx/core/content/OnConfigurationChangedProvider.class","size":931,"crc":353118657},{"key":"androidx/core/content/OnTrimMemoryProvider.class","name":"androidx/core/content/OnTrimMemoryProvider.class","size":827,"crc":1533105599},{"key":"androidx/core/os/BuildCompat$Api30Impl.class","name":"androidx/core/os/BuildCompat$Api30Impl.class","size":1073,"crc":1857026514},{"key":"androidx/core/os/BuildCompat$PrereleaseSdkCheck.class","name":"androidx/core/os/BuildCompat$PrereleaseSdkCheck.class","size":781,"crc":-1758429442},{"key":"androidx/core/os/BuildCompat.class","name":"androidx/core/os/BuildCompat.class","size":7579,"crc":1955686922},{"key":"androidx/core/util/Consumer.class","name":"androidx/core/util/Consumer.class","size":559,"crc":-1040353088},{"key":"androidx/core/util/Function.class","name":"androidx/core/util/Function.class","size":601,"crc":-1585725341},{"key":"androidx/core/util/Pools$Pool.class","name":"androidx/core/util/Pools$Pool.class","size":886,"crc":1271013518},{"key":"androidx/core/util/Pools$SimplePool.class","name":"androidx/core/util/Pools$SimplePool.class","size":3066,"crc":887087881},{"key":"androidx/core/util/Pools$SynchronizedPool.class","name":"androidx/core/util/Pools$SynchronizedPool.class","size":2341,"crc":-136795928},{"key":"androidx/core/util/Pools.class","name":"androidx/core/util/Pools.class","size":710,"crc":1614321609},{"key":"androidx/core/util/Supplier.class","name":"androidx/core/util/Supplier.class","size":525,"crc":1418066445},{"key":"android/support/v4/app/INotificationSideChannel$Default.class","name":"android/support/v4/app/INotificationSideChannel$Default.class","size":1135,"crc":-395248935},{"key":"android/support/v4/app/INotificationSideChannel$Stub$Proxy.class","name":"android/support/v4/app/INotificationSideChannel$Stub$Proxy.class","size":2463,"crc":-839898487},{"key":"android/support/v4/app/INotificationSideChannel$Stub.class","name":"android/support/v4/app/INotificationSideChannel$Stub.class","size":2803,"crc":-1214087703},{"key":"android/support/v4/app/INotificationSideChannel$_Parcel.class","name":"android/support/v4/app/INotificationSideChannel$_Parcel.class","size":1753,"crc":-1278251948},{"key":"android/support/v4/app/INotificationSideChannel.class","name":"android/support/v4/app/INotificationSideChannel.class","size":1205,"crc":1388408453},{"key":"android/support/v4/app/RemoteActionCompatParcelizer.class","name":"android/support/v4/app/RemoteActionCompatParcelizer.class","size":1104,"crc":-587702565},{"key":"android/support/v4/graphics/drawable/IconCompatParcelizer.class","name":"android/support/v4/graphics/drawable/IconCompatParcelizer.class","size":1132,"crc":1368227130},{"key":"android/support/v4/os/IResultReceiver$Default.class","name":"android/support/v4/os/IResultReceiver$Default.class","size":727,"crc":-1405212393},{"key":"android/support/v4/os/IResultReceiver$Stub$Proxy.class","name":"android/support/v4/os/IResultReceiver$Stub$Proxy.class","size":1698,"crc":-1328091256},{"key":"android/support/v4/os/IResultReceiver$Stub.class","name":"android/support/v4/os/IResultReceiver$Stub.class","size":2268,"crc":649748008},{"key":"android/support/v4/os/IResultReceiver$_Parcel.class","name":"android/support/v4/os/IResultReceiver$_Parcel.class","size":1714,"crc":1885126233},{"key":"android/support/v4/os/IResultReceiver.class","name":"android/support/v4/os/IResultReceiver.class","size":977,"crc":305690791},{"key":"android/support/v4/os/IResultReceiver2$Default.class","name":"android/support/v4/os/IResultReceiver2$Default.class","size":731,"crc":-1958681237},{"key":"android/support/v4/os/IResultReceiver2$Stub$Proxy.class","name":"android/support/v4/os/IResultReceiver2$Stub$Proxy.class","size":1704,"crc":876312633},{"key":"android/support/v4/os/IResultReceiver2$Stub.class","name":"android/support/v4/os/IResultReceiver2$Stub.class","size":2275,"crc":124292307},{"key":"android/support/v4/os/IResultReceiver2$_Parcel.class","name":"android/support/v4/os/IResultReceiver2$_Parcel.class","size":1718,"crc":-149676984},{"key":"android/support/v4/os/IResultReceiver2.class","name":"android/support/v4/os/IResultReceiver2.class","size":983,"crc":890230104},{"key":"android/support/v4/os/ResultReceiver$1.class","name":"android/support/v4/os/ResultReceiver$1.class","size":1177,"crc":1291896286},{"key":"android/support/v4/os/ResultReceiver$MyResultReceiver.class","name":"android/support/v4/os/ResultReceiver$MyResultReceiver.class","size":1181,"crc":-989424411},{"key":"android/support/v4/os/ResultReceiver$MyRunnable.class","name":"android/support/v4/os/ResultReceiver$MyRunnable.class","size":886,"crc":-779159650},{"key":"android/support/v4/os/ResultReceiver.class","name":"android/support/v4/os/ResultReceiver.class","size":2978,"crc":2067024131},{"key":"androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.class","name":"androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.class","size":3090,"crc":-12636627},{"key":"androidx/core/app/ActivityCompat$1.class","name":"androidx/core/app/ActivityCompat$1.class","size":1622,"crc":1225455941},{"key":"androidx/core/app/ActivityCompat$Api21Impl.class","name":"androidx/core/app/ActivityCompat$Api21Impl.class","size":1385,"crc":-1567484227},{"key":"androidx/core/app/ActivityCompat$Api22Impl.class","name":"androidx/core/app/ActivityCompat$Api22Impl.class","size":765,"crc":-783118367},{"key":"androidx/core/app/ActivityCompat$Api23Impl.class","name":"androidx/core/app/ActivityCompat$Api23Impl.class","size":1442,"crc":-2095613175},{"key":"androidx/core/app/ActivityCompat$Api28Impl.class","name":"androidx/core/app/ActivityCompat$Api28Impl.class","size":867,"crc":-1216546312},{"key":"androidx/core/app/ActivityCompat$Api30Impl.class","name":"androidx/core/app/ActivityCompat$Api30Impl.class","size":1549,"crc":1350452771},{"key":"androidx/core/app/ActivityCompat$Api31Impl.class","name":"androidx/core/app/ActivityCompat$Api31Impl.class","size":2075,"crc":1497479999},{"key":"androidx/core/app/ActivityCompat$Api32Impl.class","name":"androidx/core/app/ActivityCompat$Api32Impl.class","size":839,"crc":9142853},{"key":"androidx/core/app/ActivityCompat$OnRequestPermissionsResultCallback.class","name":"androidx/core/app/ActivityCompat$OnRequestPermissionsResultCallback.class","size":425,"crc":1567962088},{"key":"androidx/core/app/ActivityCompat$PermissionCompatDelegate.class","name":"androidx/core/app/ActivityCompat$PermissionCompatDelegate.class","size":621,"crc":-671588751},{"key":"androidx/core/app/ActivityCompat$RequestPermissionsRequestCodeValidator.class","name":"androidx/core/app/ActivityCompat$RequestPermissionsRequestCodeValidator.class","size":584,"crc":780710089},{"key":"androidx/core/app/ActivityCompat$SharedElementCallback21Impl.class","name":"androidx/core/app/ActivityCompat$SharedElementCallback21Impl.class","size":4428,"crc":-1614036159},{"key":"androidx/core/app/ActivityCompat.class","name":"androidx/core/app/ActivityCompat.class","size":10691,"crc":-1278311694},{"key":"androidx/core/app/ActivityManagerCompat.class","name":"androidx/core/app/ActivityManagerCompat.class","size":620,"crc":-1018902847},{"key":"androidx/core/app/ActivityOptionsCompat$ActivityOptionsCompatImpl.class","name":"androidx/core/app/ActivityOptionsCompat$ActivityOptionsCompatImpl.class","size":2641,"crc":-1744141227},{"key":"androidx/core/app/ActivityOptionsCompat$Api21Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api21Impl.class","size":1582,"crc":-1814207042},{"key":"androidx/core/app/ActivityOptionsCompat$Api23Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api23Impl.class","size":1301,"crc":-655345617},{"key":"androidx/core/app/ActivityOptionsCompat$Api24Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api24Impl.class","size":1141,"crc":1739119961},{"key":"androidx/core/app/ActivityOptionsCompat$Api34Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api34Impl.class","size":890,"crc":-378556508},{"key":"androidx/core/app/ActivityOptionsCompat.class","name":"androidx/core/app/ActivityOptionsCompat.class","size":5510,"crc":1366438428},{"key":"androidx/core/app/ActivityRecreator$1.class","name":"androidx/core/app/ActivityRecreator$1.class","size":964,"crc":-1712743558},{"key":"androidx/core/app/ActivityRecreator$2.class","name":"androidx/core/app/ActivityRecreator$2.class","size":1176,"crc":1115639159},{"key":"androidx/core/app/ActivityRecreator$3.class","name":"androidx/core/app/ActivityRecreator$3.class","size":1787,"crc":-1288801421},{"key":"androidx/core/app/ActivityRecreator$LifecycleCheckCallbacks.class","name":"androidx/core/app/ActivityRecreator$LifecycleCheckCallbacks.class","size":2055,"crc":-1497301040},{"key":"androidx/core/app/ActivityRecreator.class","name":"androidx/core/app/ActivityRecreator.class","size":6249,"crc":1351327030},{"key":"androidx/core/app/AlarmManagerCompat$Api21Impl.class","name":"androidx/core/app/AlarmManagerCompat$Api21Impl.class","size":1309,"crc":474757778},{"key":"androidx/core/app/AlarmManagerCompat$Api23Impl.class","name":"androidx/core/app/AlarmManagerCompat$Api23Impl.class","size":1094,"crc":-2051566186},{"key":"androidx/core/app/AlarmManagerCompat$Api31Impl.class","name":"androidx/core/app/AlarmManagerCompat$Api31Impl.class","size":776,"crc":-349117402},{"key":"androidx/core/app/AlarmManagerCompat.class","name":"androidx/core/app/AlarmManagerCompat.class","size":2388,"crc":1546920433},{"key":"androidx/core/app/AppComponentFactory.class","name":"androidx/core/app/AppComponentFactory.class","size":4319,"crc":941336973},{"key":"androidx/core/app/AppLaunchChecker.class","name":"androidx/core/app/AppLaunchChecker.class","size":2271,"crc":-405740589},{"key":"androidx/core/app/AppLocalesStorageHelper.class","name":"androidx/core/app/AppLocalesStorageHelper.class","size":5093,"crc":1815682277},{"key":"androidx/core/app/AppOpsManagerCompat$Api23Impl.class","name":"androidx/core/app/AppOpsManagerCompat$Api23Impl.class","size":1679,"crc":-39919454},{"key":"androidx/core/app/AppOpsManagerCompat$Api29Impl.class","name":"androidx/core/app/AppOpsManagerCompat$Api29Impl.class","size":1581,"crc":1260595091},{"key":"androidx/core/app/AppOpsManagerCompat.class","name":"androidx/core/app/AppOpsManagerCompat.class","size":3146,"crc":-1004300355},{"key":"androidx/core/app/BundleCompat.class","name":"androidx/core/app/BundleCompat.class","size":1099,"crc":-1979466448},{"key":"androidx/core/app/CoreComponentFactory$CompatWrapped.class","name":"androidx/core/app/CoreComponentFactory$CompatWrapped.class","size":541,"crc":-1240361783},{"key":"androidx/core/app/CoreComponentFactory.class","name":"androidx/core/app/CoreComponentFactory.class","size":2957,"crc":-1634658571},{"key":"androidx/core/app/DialogCompat$Api28Impl.class","name":"androidx/core/app/DialogCompat$Api28Impl.class","size":849,"crc":-1446145350},{"key":"androidx/core/app/DialogCompat.class","name":"androidx/core/app/DialogCompat.class","size":1185,"crc":1507368120},{"key":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl$1.class","name":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl$1.class","size":1859,"crc":-1020155968},{"key":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl.class","name":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl.class","size":4121,"crc":-1535527374},{"key":"androidx/core/app/FrameMetricsAggregator$FrameMetricsBaseImpl.class","name":"androidx/core/app/FrameMetricsAggregator$FrameMetricsBaseImpl.class","size":981,"crc":-800692407},{"key":"androidx/core/app/FrameMetricsAggregator$MetricType.class","name":"androidx/core/app/FrameMetricsAggregator$MetricType.class","size":668,"crc":-1630363674},{"key":"androidx/core/app/FrameMetricsAggregator.class","name":"androidx/core/app/FrameMetricsAggregator.class","size":2570,"crc":-1426831642},{"key":"androidx/core/app/GrammaticalInflectionManagerCompat$Api34Impl.class","name":"androidx/core/app/GrammaticalInflectionManagerCompat$Api34Impl.class","size":1348,"crc":1546297438},{"key":"androidx/core/app/GrammaticalInflectionManagerCompat$GrammaticalGender.class","name":"androidx/core/app/GrammaticalInflectionManagerCompat$GrammaticalGender.class","size":705,"crc":-768123921},{"key":"androidx/core/app/GrammaticalInflectionManagerCompat.class","name":"androidx/core/app/GrammaticalInflectionManagerCompat.class","size":1739,"crc":1361943853},{"key":"androidx/core/app/JobIntentService$CommandProcessor.class","name":"androidx/core/app/JobIntentService$CommandProcessor.class","size":1825,"crc":44568175},{"key":"androidx/core/app/JobIntentService$CompatJobEngine.class","name":"androidx/core/app/JobIntentService$CompatJobEngine.class","size":448,"crc":1210592104},{"key":"androidx/core/app/JobIntentService$CompatWorkEnqueuer.class","name":"androidx/core/app/JobIntentService$CompatWorkEnqueuer.class","size":2923,"crc":373299418},{"key":"androidx/core/app/JobIntentService$CompatWorkItem.class","name":"androidx/core/app/JobIntentService$CompatWorkItem.class","size":1021,"crc":-287917668},{"key":"androidx/core/app/JobIntentService$GenericWorkItem.class","name":"androidx/core/app/JobIntentService$GenericWorkItem.class","size":310,"crc":683365043},{"key":"androidx/core/app/JobIntentService$JobServiceEngineImpl$WrapperWorkItem.class","name":"androidx/core/app/JobIntentService$JobServiceEngineImpl$WrapperWorkItem.class","size":1478,"crc":1773720750},{"key":"androidx/core/app/JobIntentService$JobServiceEngineImpl.class","name":"androidx/core/app/JobIntentService$JobServiceEngineImpl.class","size":2592,"crc":871330440},{"key":"androidx/core/app/JobIntentService$JobWorkEnqueuer.class","name":"androidx/core/app/JobIntentService$JobWorkEnqueuer.class","size":1852,"crc":-1663926146},{"key":"androidx/core/app/JobIntentService$WorkEnqueuer.class","name":"androidx/core/app/JobIntentService$WorkEnqueuer.class","size":1443,"crc":-862902624},{"key":"androidx/core/app/JobIntentService.class","name":"androidx/core/app/JobIntentService.class","size":7130,"crc":-1781495434},{"key":"androidx/core/app/LocaleManagerCompat$Api21Impl.class","name":"androidx/core/app/LocaleManagerCompat$Api21Impl.class","size":771,"crc":-1095698877},{"key":"androidx/core/app/LocaleManagerCompat$Api24Impl.class","name":"androidx/core/app/LocaleManagerCompat$Api24Impl.class","size":1056,"crc":-1768607198},{"key":"androidx/core/app/LocaleManagerCompat$Api33Impl.class","name":"androidx/core/app/LocaleManagerCompat$Api33Impl.class","size":1061,"crc":-1037654519},{"key":"androidx/core/app/LocaleManagerCompat.class","name":"androidx/core/app/LocaleManagerCompat.class","size":3026,"crc":-1458408911},{"key":"androidx/core/app/NavUtils.class","name":"androidx/core/app/NavUtils.class","size":5548,"crc":461358904},{"key":"androidx/core/app/NotificationBuilderWithBuilderAccessor.class","name":"androidx/core/app/NotificationBuilderWithBuilderAccessor.class","size":597,"crc":-1985100633},{"key":"androidx/core/app/NotificationChannelCompat$Api26Impl.class","name":"androidx/core/app/NotificationChannelCompat$Api26Impl.class","size":4350,"crc":1487899892},{"key":"androidx/core/app/NotificationChannelCompat$Api29Impl.class","name":"androidx/core/app/NotificationChannelCompat$Api29Impl.class","size":815,"crc":1721686020},{"key":"androidx/core/app/NotificationChannelCompat$Api30Impl.class","name":"androidx/core/app/NotificationChannelCompat$Api30Impl.class","size":1417,"crc":-1496769729},{"key":"androidx/core/app/NotificationChannelCompat$Builder.class","name":"androidx/core/app/NotificationChannelCompat$Builder.class","size":3517,"crc":-1458413883},{"key":"androidx/core/app/NotificationChannelCompat.class","name":"androidx/core/app/NotificationChannelCompat.class","size":6989,"crc":-268500644},{"key":"androidx/core/app/NotificationChannelGroupCompat$Api26Impl.class","name":"androidx/core/app/NotificationChannelGroupCompat$Api26Impl.class","size":1934,"crc":-347056883},{"key":"androidx/core/app/NotificationChannelGroupCompat$Api28Impl.class","name":"androidx/core/app/NotificationChannelGroupCompat$Api28Impl.class","size":1275,"crc":1629656438},{"key":"androidx/core/app/NotificationChannelGroupCompat$Builder.class","name":"androidx/core/app/NotificationChannelGroupCompat$Builder.class","size":1411,"crc":237511248},{"key":"androidx/core/app/NotificationChannelGroupCompat.class","name":"androidx/core/app/NotificationChannelGroupCompat.class","size":4884,"crc":-381039034},{"key":"androidx/core/app/NotificationCompat$1.class","name":"androidx/core/app/NotificationCompat$1.class","size":238,"crc":-598238096},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api20Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api20Impl.class","size":1215,"crc":-1553811797},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api23Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api23Impl.class","size":1043,"crc":-105329252},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api24Impl.class","size":998,"crc":-1351806817},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api28Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api28Impl.class","size":991,"crc":1971764136},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api29Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api29Impl.class","size":986,"crc":2089502195},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api31Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api31Impl.class","size":998,"crc":-930431610},{"key":"androidx/core/app/NotificationCompat$Action$Builder.class","name":"androidx/core/app/NotificationCompat$Action$Builder.class","size":9182,"crc":1199783656},{"key":"androidx/core/app/NotificationCompat$Action$Extender.class","name":"androidx/core/app/NotificationCompat$Action$Extender.class","size":630,"crc":258657630},{"key":"androidx/core/app/NotificationCompat$Action$SemanticAction.class","name":"androidx/core/app/NotificationCompat$Action$SemanticAction.class","size":492,"crc":271952193},{"key":"androidx/core/app/NotificationCompat$Action$WearableExtender.class","name":"androidx/core/app/NotificationCompat$Action$WearableExtender.class","size":5051,"crc":1991372877},{"key":"androidx/core/app/NotificationCompat$Action.class","name":"androidx/core/app/NotificationCompat$Action.class","size":5711,"crc":-860977567},{"key":"androidx/core/app/NotificationCompat$Api20Impl.class","name":"androidx/core/app/NotificationCompat$Api20Impl.class","size":2205,"crc":1623103492},{"key":"androidx/core/app/NotificationCompat$Api23Impl.class","name":"androidx/core/app/NotificationCompat$Api23Impl.class","size":881,"crc":-105154841},{"key":"androidx/core/app/NotificationCompat$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Api24Impl.class","size":836,"crc":2087362200},{"key":"androidx/core/app/NotificationCompat$Api26Impl.class","name":"androidx/core/app/NotificationCompat$Api26Impl.class","size":1466,"crc":-1784093548},{"key":"androidx/core/app/NotificationCompat$Api28Impl.class","name":"androidx/core/app/NotificationCompat$Api28Impl.class","size":829,"crc":-2064480395},{"key":"androidx/core/app/NotificationCompat$Api29Impl.class","name":"androidx/core/app/NotificationCompat$Api29Impl.class","size":1720,"crc":-810611577},{"key":"androidx/core/app/NotificationCompat$Api31Impl.class","name":"androidx/core/app/NotificationCompat$Api31Impl.class","size":836,"crc":1371883499},{"key":"androidx/core/app/NotificationCompat$BadgeIconType.class","name":"androidx/core/app/NotificationCompat$BadgeIconType.class","size":662,"crc":-1600074890},{"key":"androidx/core/app/NotificationCompat$BigPictureStyle$Api23Impl.class","name":"androidx/core/app/NotificationCompat$BigPictureStyle$Api23Impl.class","size":1111,"crc":-545779498},{"key":"androidx/core/app/NotificationCompat$BigPictureStyle$Api31Impl.class","name":"androidx/core/app/NotificationCompat$BigPictureStyle$Api31Impl.class","size":1668,"crc":-1409543419},{"key":"androidx/core/app/NotificationCompat$BigPictureStyle.class","name":"androidx/core/app/NotificationCompat$BigPictureStyle.class","size":7392,"crc":1060212417},{"key":"androidx/core/app/NotificationCompat$BigTextStyle.class","name":"androidx/core/app/NotificationCompat$BigTextStyle.class","size":3841,"crc":35028020},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata$Api29Impl.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata$Api29Impl.class","size":3541,"crc":29724948},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata$Api30Impl.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata$Api30Impl.class","size":3618,"crc":-1015334329},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata$Builder.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata$Builder.class","size":4716,"crc":1221311312},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata.class","size":4276,"crc":1740003656},{"key":"androidx/core/app/NotificationCompat$Builder$Api21Impl.class","name":"androidx/core/app/NotificationCompat$Builder$Api21Impl.class","size":1599,"crc":1606630562},{"key":"androidx/core/app/NotificationCompat$Builder$Api23Impl.class","name":"androidx/core/app/NotificationCompat$Builder$Api23Impl.class","size":1006,"crc":619308074},{"key":"androidx/core/app/NotificationCompat$Builder$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Builder$Api24Impl.class","size":1440,"crc":-129429433},{"key":"androidx/core/app/NotificationCompat$Builder.class","name":"androidx/core/app/NotificationCompat$Builder.class","size":28351,"crc":-1995864438},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api20Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api20Impl.class","size":2073,"crc":271968801},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api21Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api21Impl.class","size":1181,"crc":-594887630},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api23Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api23Impl.class","size":1759,"crc":1978332640},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api24Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api24Impl.class","size":1133,"crc":-378360914},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api28Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api28Impl.class","size":1208,"crc":933124670},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api31Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api31Impl.class","size":3467,"crc":-1624661680},{"key":"androidx/core/app/NotificationCompat$CallStyle$CallType.class","name":"androidx/core/app/NotificationCompat$CallStyle$CallType.class","size":734,"crc":2136238121},{"key":"androidx/core/app/NotificationCompat$CallStyle.class","name":"androidx/core/app/NotificationCompat$CallStyle.class","size":16289,"crc":-1422591520},{"key":"androidx/core/app/NotificationCompat$CarExtender$Api20Impl.class","name":"androidx/core/app/NotificationCompat$CarExtender$Api20Impl.class","size":3348,"crc":949638961},{"key":"androidx/core/app/NotificationCompat$CarExtender$Api29Impl.class","name":"androidx/core/app/NotificationCompat$CarExtender$Api29Impl.class","size":873,"crc":1097588543},{"key":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation$Builder.class","name":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation$Builder.class","size":2896,"crc":-2031915308},{"key":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation.class","name":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation.class","size":2343,"crc":14226975},{"key":"androidx/core/app/NotificationCompat$CarExtender.class","name":"androidx/core/app/NotificationCompat$CarExtender.class","size":9177,"crc":640580976},{"key":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle$Api24Impl.class","name":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle$Api24Impl.class","size":982,"crc":160216134},{"key":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle.class","name":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle.class","size":6895,"crc":-1497583667},{"key":"androidx/core/app/NotificationCompat$Extender.class","name":"androidx/core/app/NotificationCompat$Extender.class","size":536,"crc":-1922350891},{"key":"androidx/core/app/NotificationCompat$GroupAlertBehavior.class","name":"androidx/core/app/NotificationCompat$GroupAlertBehavior.class","size":672,"crc":900946520},{"key":"androidx/core/app/NotificationCompat$InboxStyle.class","name":"androidx/core/app/NotificationCompat$InboxStyle.class","size":4068,"crc":1516310261},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Api24Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Api24Impl.class","size":1782,"crc":686713718},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Api26Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Api26Impl.class","size":1287,"crc":1327479686},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Api28Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Api28Impl.class","size":1318,"crc":-1461609060},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api24Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api24Impl.class","size":1723,"crc":-1168865402},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api28Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api28Impl.class","size":1414,"crc":372162559},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Message.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Message.class","size":8027,"crc":-2114242576},{"key":"androidx/core/app/NotificationCompat$MessagingStyle.class","name":"androidx/core/app/NotificationCompat$MessagingStyle.class","size":14136,"crc":-1752017840},{"key":"androidx/core/app/NotificationCompat$NotificationVisibility.class","name":"androidx/core/app/NotificationCompat$NotificationVisibility.class","size":680,"crc":1088614023},{"key":"androidx/core/app/NotificationCompat$ServiceNotificationBehavior.class","name":"androidx/core/app/NotificationCompat$ServiceNotificationBehavior.class","size":690,"crc":1857766983},{"key":"androidx/core/app/NotificationCompat$StreamType.class","name":"androidx/core/app/NotificationCompat$StreamType.class","size":656,"crc":-1750087649},{"key":"androidx/core/app/NotificationCompat$Style$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Style$Api24Impl.class","size":915,"crc":-1535281602},{"key":"androidx/core/app/NotificationCompat$Style.class","name":"androidx/core/app/NotificationCompat$Style.class","size":16047,"crc":1834590369},{"key":"androidx/core/app/NotificationCompat$TvExtender.class","name":"androidx/core/app/NotificationCompat$TvExtender.class","size":4484,"crc":444127464},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api20Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api20Impl.class","size":2755,"crc":43986266},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api23Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api23Impl.class","size":1278,"crc":-1984401146},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api24Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api24Impl.class","size":1157,"crc":-641183678},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api31Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api31Impl.class","size":1159,"crc":879390559},{"key":"androidx/core/app/NotificationCompat$WearableExtender.class","name":"androidx/core/app/NotificationCompat$WearableExtender.class","size":18030,"crc":2054152028},{"key":"androidx/core/app/NotificationCompat.class","name":"androidx/core/app/NotificationCompat.class","size":24034,"crc":2037328436},{"key":"androidx/core/app/NotificationCompatBuilder$Api20Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api20Impl.class","size":3391,"crc":-1917359535},{"key":"androidx/core/app/NotificationCompatBuilder$Api21Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api21Impl.class","size":2192,"crc":731501090},{"key":"androidx/core/app/NotificationCompatBuilder$Api23Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api23Impl.class","size":1824,"crc":1677803318},{"key":"androidx/core/app/NotificationCompatBuilder$Api24Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api24Impl.class","size":2037,"crc":104739915},{"key":"androidx/core/app/NotificationCompatBuilder$Api26Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api26Impl.class","size":2464,"crc":636660597},{"key":"androidx/core/app/NotificationCompatBuilder$Api28Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api28Impl.class","size":1428,"crc":-1485297195},{"key":"androidx/core/app/NotificationCompatBuilder$Api29Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api29Impl.class","size":2143,"crc":130649086},{"key":"androidx/core/app/NotificationCompatBuilder$Api31Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api31Impl.class","size":1408,"crc":1504746645},{"key":"androidx/core/app/NotificationCompatBuilder.class","name":"androidx/core/app/NotificationCompatBuilder.class","size":20248,"crc":-1153364976},{"key":"androidx/core/app/NotificationCompatExtras.class","name":"androidx/core/app/NotificationCompatExtras.class","size":780,"crc":1230724101},{"key":"androidx/core/app/NotificationCompatJellybean.class","name":"androidx/core/app/NotificationCompatJellybean.class","size":12786,"crc":594665231},{"key":"androidx/core/app/NotificationCompatSideChannelService$NotificationSideChannelStub.class","name":"androidx/core/app/NotificationCompatSideChannelService$NotificationSideChannelStub.class","size":2066,"crc":-508684655},{"key":"androidx/core/app/NotificationCompatSideChannelService.class","name":"androidx/core/app/NotificationCompatSideChannelService.class","size":2299,"crc":-1251234116},{"key":"androidx/core/app/NotificationManagerCompat$Api23Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api23Impl.class","size":1430,"crc":1947225169},{"key":"androidx/core/app/NotificationManagerCompat$Api24Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api24Impl.class","size":973,"crc":1366002183},{"key":"androidx/core/app/NotificationManagerCompat$Api26Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api26Impl.class","size":3604,"crc":472936966},{"key":"androidx/core/app/NotificationManagerCompat$Api28Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api28Impl.class","size":992,"crc":527920353},{"key":"androidx/core/app/NotificationManagerCompat$Api30Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api30Impl.class","size":1314,"crc":1790838880},{"key":"androidx/core/app/NotificationManagerCompat$Api34Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api34Impl.class","size":828,"crc":1566259666},{"key":"androidx/core/app/NotificationManagerCompat$CancelTask.class","name":"androidx/core/app/NotificationManagerCompat$CancelTask.class","size":1902,"crc":-151764280},{"key":"androidx/core/app/NotificationManagerCompat$InterruptionFilter.class","name":"androidx/core/app/NotificationManagerCompat$InterruptionFilter.class","size":693,"crc":1507578914},{"key":"androidx/core/app/NotificationManagerCompat$NotificationWithIdAndTag.class","name":"androidx/core/app/NotificationManagerCompat$NotificationWithIdAndTag.class","size":1039,"crc":-931731844},{"key":"androidx/core/app/NotificationManagerCompat$NotifyTask.class","name":"androidx/core/app/NotificationManagerCompat$NotifyTask.class","size":1712,"crc":-1935245986},{"key":"androidx/core/app/NotificationManagerCompat$ServiceConnectedEvent.class","name":"androidx/core/app/NotificationManagerCompat$ServiceConnectedEvent.class","size":702,"crc":-258989536},{"key":"androidx/core/app/NotificationManagerCompat$SideChannelManager$ListenerRecord.class","name":"androidx/core/app/NotificationManagerCompat$SideChannelManager$ListenerRecord.class","size":1146,"crc":-464123942},{"key":"androidx/core/app/NotificationManagerCompat$SideChannelManager.class","name":"androidx/core/app/NotificationManagerCompat$SideChannelManager.class","size":10593,"crc":1145174528},{"key":"androidx/core/app/NotificationManagerCompat$Task.class","name":"androidx/core/app/NotificationManagerCompat$Task.class","size":366,"crc":1719925620},{"key":"androidx/core/app/NotificationManagerCompat.class","name":"androidx/core/app/NotificationManagerCompat.class","size":18781,"crc":550168496},{"key":"androidx/core/app/PendingIntentCompat$Api23Impl.class","name":"androidx/core/app/PendingIntentCompat$Api23Impl.class","size":1701,"crc":854341431},{"key":"androidx/core/app/PendingIntentCompat$Api26Impl.class","name":"androidx/core/app/PendingIntentCompat$Api26Impl.class","size":909,"crc":1718258872},{"key":"androidx/core/app/PendingIntentCompat$Flags.class","name":"androidx/core/app/PendingIntentCompat$Flags.class","size":636,"crc":-1100352364},{"key":"androidx/core/app/PendingIntentCompat$GatedCallback.class","name":"androidx/core/app/PendingIntentCompat$GatedCallback.class","size":2756,"crc":-1234978870},{"key":"androidx/core/app/PendingIntentCompat.class","name":"androidx/core/app/PendingIntentCompat.class","size":5860,"crc":-325982975},{"key":"androidx/core/app/Person$Api22Impl.class","name":"androidx/core/app/Person$Api22Impl.class","size":2091,"crc":-911462268},{"key":"androidx/core/app/Person$Api28Impl.class","name":"androidx/core/app/Person$Api28Impl.class","size":2483,"crc":1829068246},{"key":"androidx/core/app/Person$Builder.class","name":"androidx/core/app/Person$Builder.class","size":2157,"crc":741652667},{"key":"androidx/core/app/Person.class","name":"androidx/core/app/Person.class","size":6321,"crc":1677292418},{"key":"androidx/core/app/RemoteActionCompat$Api26Impl.class","name":"androidx/core/app/RemoteActionCompat$Api26Impl.class","size":2126,"crc":-1418873026},{"key":"androidx/core/app/RemoteActionCompat$Api28Impl.class","name":"androidx/core/app/RemoteActionCompat$Api28Impl.class","size":930,"crc":-235726249},{"key":"androidx/core/app/RemoteActionCompat.class","name":"androidx/core/app/RemoteActionCompat.class","size":4541,"crc":1001543440},{"key":"androidx/core/app/RemoteActionCompatParcelizer.class","name":"androidx/core/app/RemoteActionCompatParcelizer.class","size":2304,"crc":-505423669},{"key":"androidx/core/app/RemoteInput$Api20Impl.class","name":"androidx/core/app/RemoteInput$Api20Impl.class","size":4260,"crc":1111444981},{"key":"androidx/core/app/RemoteInput$Api26Impl.class","name":"androidx/core/app/RemoteInput$Api26Impl.class","size":2250,"crc":1022634827},{"key":"androidx/core/app/RemoteInput$Api28Impl.class","name":"androidx/core/app/RemoteInput$Api28Impl.class","size":886,"crc":-971979985},{"key":"androidx/core/app/RemoteInput$Api29Impl.class","name":"androidx/core/app/RemoteInput$Api29Impl.class","size":1105,"crc":1142187737},{"key":"androidx/core/app/RemoteInput$Builder.class","name":"androidx/core/app/RemoteInput$Builder.class","size":3002,"crc":703901060},{"key":"androidx/core/app/RemoteInput$EditChoicesBeforeSending.class","name":"androidx/core/app/RemoteInput$EditChoicesBeforeSending.class","size":663,"crc":137218255},{"key":"androidx/core/app/RemoteInput$Source.class","name":"androidx/core/app/RemoteInput$Source.class","size":627,"crc":1225634699},{"key":"androidx/core/app/RemoteInput.class","name":"androidx/core/app/RemoteInput.class","size":10690,"crc":100448154},{"key":"androidx/core/app/ServiceCompat$Api24Impl.class","name":"androidx/core/app/ServiceCompat$Api24Impl.class","size":757,"crc":1941199069},{"key":"androidx/core/app/ServiceCompat$Api29Impl.class","name":"androidx/core/app/ServiceCompat$Api29Impl.class","size":993,"crc":-1810633865},{"key":"androidx/core/app/ServiceCompat$Api34Impl.class","name":"androidx/core/app/ServiceCompat$Api34Impl.class","size":997,"crc":-1999402045},{"key":"androidx/core/app/ServiceCompat$StopForegroundFlags.class","name":"androidx/core/app/ServiceCompat$StopForegroundFlags.class","size":659,"crc":655432038},{"key":"androidx/core/app/ServiceCompat.class","name":"androidx/core/app/ServiceCompat.class","size":1777,"crc":-394635011},{"key":"androidx/core/app/ShareCompat$IntentBuilder.class","name":"androidx/core/app/ShareCompat$IntentBuilder.class","size":8678,"crc":1276398534},{"key":"androidx/core/app/ShareCompat$IntentReader.class","name":"androidx/core/app/ShareCompat$IntentReader.class","size":7016,"crc":-675110014},{"key":"androidx/core/app/ShareCompat.class","name":"androidx/core/app/ShareCompat.class","size":5904,"crc":54973738},{"key":"androidx/core/app/SharedElementCallback$OnSharedElementsReadyListener.class","name":"androidx/core/app/SharedElementCallback$OnSharedElementsReadyListener.class","size":317,"crc":1217450772},{"key":"androidx/core/app/SharedElementCallback.class","name":"androidx/core/app/SharedElementCallback.class","size":7188,"crc":376381531},{"key":"androidx/core/app/TaskStackBuilder$SupportParentable.class","name":"androidx/core/app/TaskStackBuilder$SupportParentable.class","size":385,"crc":2113967134},{"key":"androidx/core/app/TaskStackBuilder.class","name":"androidx/core/app/TaskStackBuilder.class","size":6556,"crc":1501909556},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Default.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Default.class","size":868,"crc":1227855709},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub$Proxy.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub$Proxy.class","size":1775,"crc":-1351993899},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub.class","size":2239,"crc":-900432979},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback.class","size":1116,"crc":1361675367},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Default.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Default.class","size":992,"crc":-957843627},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub$Proxy.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub$Proxy.class","size":1945,"crc":2040329353},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub.class","size":2617,"crc":216898320},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService.class","size":1181,"crc":-1811617304},{"key":"androidx/core/content/ContentProviderCompat.class","name":"androidx/core/content/ContentProviderCompat.class","size":986,"crc":-917373858},{"key":"androidx/core/content/ContentResolverCompat.class","name":"androidx/core/content/ContentResolverCompat.class","size":2351,"crc":825943966},{"key":"androidx/core/content/ContextCompat$Api21Impl.class","name":"androidx/core/content/ContextCompat$Api21Impl.class","size":1106,"crc":969564630},{"key":"androidx/core/content/ContextCompat$Api23Impl.class","name":"androidx/core/content/ContextCompat$Api23Impl.class","size":1521,"crc":817296793},{"key":"androidx/core/content/ContextCompat$Api24Impl.class","name":"androidx/core/content/ContextCompat$Api24Impl.class","size":1123,"crc":-384917672},{"key":"androidx/core/content/ContextCompat$Api26Impl.class","name":"androidx/core/content/ContextCompat$Api26Impl.class","size":1971,"crc":867798444},{"key":"androidx/core/content/ContextCompat$Api28Impl.class","name":"androidx/core/content/ContextCompat$Api28Impl.class","size":809,"crc":-241986563},{"key":"androidx/core/content/ContextCompat$Api30Impl.class","name":"androidx/core/content/ContextCompat$Api30Impl.class","size":2153,"crc":-1332801839},{"key":"androidx/core/content/ContextCompat$Api33Impl.class","name":"androidx/core/content/ContextCompat$Api33Impl.class","size":1337,"crc":132777324},{"key":"androidx/core/content/ContextCompat$LegacyServiceMapHolder.class","name":"androidx/core/content/ContextCompat$LegacyServiceMapHolder.class","size":4358,"crc":1373153750},{"key":"androidx/core/content/ContextCompat$RegisterReceiverFlags.class","name":"androidx/core/content/ContextCompat$RegisterReceiverFlags.class","size":658,"crc":794825751},{"key":"androidx/core/content/ContextCompat.class","name":"androidx/core/content/ContextCompat.class","size":12930,"crc":1483964766},{"key":"androidx/core/content/FileProvider$Api21Impl.class","name":"androidx/core/content/FileProvider$Api21Impl.class","size":782,"crc":1618441389},{"key":"androidx/core/content/FileProvider$PathStrategy.class","name":"androidx/core/content/FileProvider$PathStrategy.class","size":346,"crc":770878075},{"key":"androidx/core/content/FileProvider$SimplePathStrategy.class","name":"androidx/core/content/FileProvider$SimplePathStrategy.class","size":4719,"crc":-1509877584},{"key":"androidx/core/content/FileProvider.class","name":"androidx/core/content/FileProvider.class","size":13579,"crc":297337883},{"key":"androidx/core/content/IntentCompat$Api33Impl.class","name":"androidx/core/content/IntentCompat$Api33Impl.class","size":2558,"crc":-1463096764},{"key":"androidx/core/content/IntentCompat.class","name":"androidx/core/content/IntentCompat.class","size":5528,"crc":9042673},{"key":"androidx/core/content/IntentSanitizer$1.class","name":"androidx/core/content/IntentSanitizer$1.class","size":237,"crc":-61702665},{"key":"androidx/core/content/IntentSanitizer$Api29Impl.class","name":"androidx/core/content/IntentSanitizer$Api29Impl.class","size":1051,"crc":1431044490},{"key":"androidx/core/content/IntentSanitizer$Api31Impl.class","name":"androidx/core/content/IntentSanitizer$Api31Impl.class","size":1741,"crc":-1930944716},{"key":"androidx/core/content/IntentSanitizer$Builder.class","name":"androidx/core/content/IntentSanitizer$Builder.class","size":13691,"crc":-122430816},{"key":"androidx/core/content/IntentSanitizer.class","name":"androidx/core/content/IntentSanitizer.class","size":13153,"crc":-1377332162},{"key":"androidx/core/content/LocusIdCompat$Api29Impl.class","name":"androidx/core/content/LocusIdCompat$Api29Impl.class","size":1024,"crc":89574739},{"key":"androidx/core/content/LocusIdCompat.class","name":"androidx/core/content/LocusIdCompat.class","size":2782,"crc":412886872},{"key":"androidx/core/content/MimeTypeFilter.class","name":"androidx/core/content/MimeTypeFilter.class","size":2742,"crc":147689054},{"key":"androidx/core/content/PackageManagerCompat$Api30Impl.class","name":"androidx/core/content/PackageManagerCompat$Api30Impl.class","size":1002,"crc":-2001595271},{"key":"androidx/core/content/PackageManagerCompat$UnusedAppRestrictionsStatus.class","name":"androidx/core/content/PackageManagerCompat$UnusedAppRestrictionsStatus.class","size":691,"crc":2041315114},{"key":"androidx/core/content/PackageManagerCompat.class","name":"androidx/core/content/PackageManagerCompat.class","size":6194,"crc":1633769047},{"key":"androidx/core/content/PermissionChecker$PermissionResult.class","name":"androidx/core/content/PermissionChecker$PermissionResult.class","size":673,"crc":-666488629},{"key":"androidx/core/content/PermissionChecker.class","name":"androidx/core/content/PermissionChecker.class","size":2862,"crc":1940901641},{"key":"androidx/core/content/SharedPreferencesCompat$EditorCompat$Helper.class","name":"androidx/core/content/SharedPreferencesCompat$EditorCompat$Helper.class","size":1116,"crc":587673952},{"key":"androidx/core/content/SharedPreferencesCompat$EditorCompat.class","name":"androidx/core/content/SharedPreferencesCompat$EditorCompat.class","size":1381,"crc":-494629376},{"key":"androidx/core/content/SharedPreferencesCompat.class","name":"androidx/core/content/SharedPreferencesCompat.class","size":532,"crc":1567352910},{"key":"androidx/core/content/UnusedAppRestrictionsBackportCallback.class","name":"androidx/core/content/UnusedAppRestrictionsBackportCallback.class","size":1290,"crc":1695615859},{"key":"androidx/core/content/UnusedAppRestrictionsBackportService$1.class","name":"androidx/core/content/UnusedAppRestrictionsBackportService$1.class","size":1604,"crc":843169627},{"key":"androidx/core/content/UnusedAppRestrictionsBackportService.class","name":"androidx/core/content/UnusedAppRestrictionsBackportService.class","size":1591,"crc":-668859029},{"key":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection$1.class","name":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection$1.class","size":1862,"crc":1397470612},{"key":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection.class","name":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection.class","size":4184,"crc":-1517503401},{"key":"androidx/core/content/UnusedAppRestrictionsConstants.class","name":"androidx/core/content/UnusedAppRestrictionsConstants.class","size":588,"crc":-1244214169},{"key":"androidx/core/content/UriMatcherCompat.class","name":"androidx/core/content/UriMatcherCompat.class","size":1524,"crc":1164334199},{"key":"androidx/core/content/pm/ActivityInfoCompat.class","name":"androidx/core/content/pm/ActivityInfoCompat.class","size":493,"crc":-1364477614},{"key":"androidx/core/content/pm/PackageInfoCompat$Api28Impl.class","name":"androidx/core/content/pm/PackageInfoCompat$Api28Impl.class","size":1924,"crc":1118492697},{"key":"androidx/core/content/pm/PackageInfoCompat.class","name":"androidx/core/content/pm/PackageInfoCompat.class","size":6094,"crc":-587297962},{"key":"androidx/core/content/pm/PermissionInfoCompat$Api28Impl.class","name":"androidx/core/content/pm/PermissionInfoCompat$Api28Impl.class","size":929,"crc":-417971139},{"key":"androidx/core/content/pm/PermissionInfoCompat$Protection.class","name":"androidx/core/content/pm/PermissionInfoCompat$Protection.class","size":663,"crc":1629059509},{"key":"androidx/core/content/pm/PermissionInfoCompat$ProtectionFlags.class","name":"androidx/core/content/pm/PermissionInfoCompat$ProtectionFlags.class","size":739,"crc":1522065108},{"key":"androidx/core/content/pm/PermissionInfoCompat.class","name":"androidx/core/content/pm/PermissionInfoCompat.class","size":1364,"crc":1297374523},{"key":"androidx/core/content/pm/ShortcutInfoChangeListener.class","name":"androidx/core/content/pm/ShortcutInfoChangeListener.class","size":1703,"crc":427897560},{"key":"androidx/core/content/pm/ShortcutInfoCompat$Api33Impl.class","name":"androidx/core/content/pm/ShortcutInfoCompat$Api33Impl.class","size":1000,"crc":1878927332},{"key":"androidx/core/content/pm/ShortcutInfoCompat$Builder.class","name":"androidx/core/content/pm/ShortcutInfoCompat$Builder.class","size":12666,"crc":-1317622191},{"key":"androidx/core/content/pm/ShortcutInfoCompat$Surface.class","name":"androidx/core/content/pm/ShortcutInfoCompat$Surface.class","size":664,"crc":282044856},{"key":"androidx/core/content/pm/ShortcutInfoCompat.class","name":"androidx/core/content/pm/ShortcutInfoCompat.class","size":12893,"crc":-1893822061},{"key":"androidx/core/content/pm/ShortcutInfoCompatSaver$NoopImpl.class","name":"androidx/core/content/pm/ShortcutInfoCompatSaver$NoopImpl.class","size":1718,"crc":780394003},{"key":"androidx/core/content/pm/ShortcutInfoCompatSaver.class","name":"androidx/core/content/pm/ShortcutInfoCompatSaver.class","size":1544,"crc":-976705994},{"key":"androidx/core/content/pm/ShortcutManagerCompat$1.class","name":"androidx/core/content/pm/ShortcutManagerCompat$1.class","size":1316,"crc":2121141673},{"key":"androidx/core/content/pm/ShortcutManagerCompat$Api25Impl.class","name":"androidx/core/content/pm/ShortcutManagerCompat$Api25Impl.class","size":1498,"crc":-1798955755},{"key":"androidx/core/content/pm/ShortcutManagerCompat$ShortcutMatchFlags.class","name":"androidx/core/content/pm/ShortcutManagerCompat$ShortcutMatchFlags.class","size":695,"crc":856990973},{"key":"androidx/core/content/pm/ShortcutManagerCompat.class","name":"androidx/core/content/pm/ShortcutManagerCompat.class","size":20119,"crc":-583484979},{"key":"androidx/core/content/pm/ShortcutXmlParser.class","name":"androidx/core/content/pm/ShortcutXmlParser.class","size":5957,"crc":443382465},{"key":"androidx/core/content/res/CamColor.class","name":"androidx/core/content/res/CamColor.class","size":10209,"crc":707293299},{"key":"androidx/core/content/res/CamUtils.class","name":"androidx/core/content/res/CamUtils.class","size":3152,"crc":1105906618},{"key":"androidx/core/content/res/ColorStateListInflaterCompat.class","name":"androidx/core/content/res/ColorStateListInflaterCompat.class","size":8167,"crc":271679968},{"key":"androidx/core/content/res/ComplexColorCompat.class","name":"androidx/core/content/res/ComplexColorCompat.class","size":5222,"crc":-1398844043},{"key":"androidx/core/content/res/ConfigurationHelper.class","name":"androidx/core/content/res/ConfigurationHelper.class","size":755,"crc":-999867328},{"key":"androidx/core/content/res/FontResourcesParserCompat$Api21Impl.class","name":"androidx/core/content/res/FontResourcesParserCompat$Api21Impl.class","size":854,"crc":-1930670641},{"key":"androidx/core/content/res/FontResourcesParserCompat$FamilyResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$FamilyResourceEntry.class","size":287,"crc":-39793732},{"key":"androidx/core/content/res/FontResourcesParserCompat$FetchStrategy.class","name":"androidx/core/content/res/FontResourcesParserCompat$FetchStrategy.class","size":454,"crc":1823731370},{"key":"androidx/core/content/res/FontResourcesParserCompat$FontFamilyFilesResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$FontFamilyFilesResourceEntry.class","size":1265,"crc":-1265789084},{"key":"androidx/core/content/res/FontResourcesParserCompat$FontFileResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$FontFileResourceEntry.class","size":1652,"crc":2122907574},{"key":"androidx/core/content/res/FontResourcesParserCompat$ProviderResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$ProviderResourceEntry.class","size":1996,"crc":-537995543},{"key":"androidx/core/content/res/FontResourcesParserCompat.class","name":"androidx/core/content/res/FontResourcesParserCompat.class","size":8708,"crc":-346635419},{"key":"androidx/core/content/res/GradientColorInflaterCompat$ColorStops.class","name":"androidx/core/content/res/GradientColorInflaterCompat$ColorStops.class","size":1735,"crc":246697236},{"key":"androidx/core/content/res/GradientColorInflaterCompat.class","name":"androidx/core/content/res/GradientColorInflaterCompat.class","size":7737,"crc":594254899},{"key":"androidx/core/content/res/GrowingArrayUtils.class","name":"androidx/core/content/res/GrowingArrayUtils.class","size":2719,"crc":1934313134},{"key":"androidx/core/content/res/ResourcesCompat$Api21Impl.class","name":"androidx/core/content/res/ResourcesCompat$Api21Impl.class","size":1412,"crc":393460819},{"key":"androidx/core/content/res/ResourcesCompat$Api23Impl.class","name":"androidx/core/content/res/ResourcesCompat$Api23Impl.class","size":1484,"crc":1408796082},{"key":"androidx/core/content/res/ResourcesCompat$Api29Impl.class","name":"androidx/core/content/res/ResourcesCompat$Api29Impl.class","size":925,"crc":1307711375},{"key":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheEntry.class","name":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheEntry.class","size":1305,"crc":-1312155530},{"key":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheKey.class","name":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheKey.class","size":1493,"crc":-231062402},{"key":"androidx/core/content/res/ResourcesCompat$FontCallback.class","name":"androidx/core/content/res/ResourcesCompat$FontCallback.class","size":2653,"crc":-1835982375},{"key":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api23Impl.class","name":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api23Impl.class","size":2299,"crc":-2080577232},{"key":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api29Impl.class","name":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api29Impl.class","size":1036,"crc":626888944},{"key":"androidx/core/content/res/ResourcesCompat$ThemeCompat.class","name":"androidx/core/content/res/ResourcesCompat$ThemeCompat.class","size":1131,"crc":298456629},{"key":"androidx/core/content/res/ResourcesCompat.class","name":"androidx/core/content/res/ResourcesCompat.class","size":14294,"crc":1525920558},{"key":"androidx/core/content/res/TypedArrayUtils.class","name":"androidx/core/content/res/TypedArrayUtils.class","size":8994,"crc":743892670},{"key":"androidx/core/content/res/ViewingConditions.class","name":"androidx/core/content/res/ViewingConditions.class","size":3538,"crc":-131663576},{"key":"androidx/core/database/CursorWindowCompat$Api28Impl.class","name":"androidx/core/database/CursorWindowCompat$Api28Impl.class","size":855,"crc":50352982},{"key":"androidx/core/database/CursorWindowCompat.class","name":"androidx/core/database/CursorWindowCompat.class","size":1020,"crc":989448132},{"key":"androidx/core/database/DatabaseUtilsCompat.class","name":"androidx/core/database/DatabaseUtilsCompat.class","size":1371,"crc":-2044651927},{"key":"androidx/core/database/sqlite/SQLiteCursorCompat$Api28Impl.class","name":"androidx/core/database/sqlite/SQLiteCursorCompat$Api28Impl.class","size":889,"crc":-948675496},{"key":"androidx/core/database/sqlite/SQLiteCursorCompat.class","name":"androidx/core/database/sqlite/SQLiteCursorCompat.class","size":903,"crc":1059320687},{"key":"androidx/core/graphics/BitmapCompat$Api27Impl.class","name":"androidx/core/graphics/BitmapCompat$Api27Impl.class","size":2569,"crc":1909692832},{"key":"androidx/core/graphics/BitmapCompat$Api29Impl.class","name":"androidx/core/graphics/BitmapCompat$Api29Impl.class","size":878,"crc":676631431},{"key":"androidx/core/graphics/BitmapCompat$Api31Impl.class","name":"androidx/core/graphics/BitmapCompat$Api31Impl.class","size":1082,"crc":-1864651270},{"key":"androidx/core/graphics/BitmapCompat.class","name":"androidx/core/graphics/BitmapCompat.class","size":6017,"crc":-484315252},{"key":"androidx/core/graphics/BlendModeColorFilterCompat$Api29Impl.class","name":"androidx/core/graphics/BlendModeColorFilterCompat$Api29Impl.class","size":937,"crc":652344203},{"key":"androidx/core/graphics/BlendModeColorFilterCompat.class","name":"androidx/core/graphics/BlendModeColorFilterCompat.class","size":1837,"crc":-1703162937},{"key":"androidx/core/graphics/BlendModeCompat.class","name":"androidx/core/graphics/BlendModeCompat.class","size":2888,"crc":-645227784},{"key":"androidx/core/graphics/BlendModeUtils$1.class","name":"androidx/core/graphics/BlendModeUtils$1.class","size":2083,"crc":1721728409},{"key":"androidx/core/graphics/BlendModeUtils$Api29Impl.class","name":"androidx/core/graphics/BlendModeUtils$Api29Impl.class","size":2166,"crc":1973059920},{"key":"androidx/core/graphics/BlendModeUtils.class","name":"androidx/core/graphics/BlendModeUtils.class","size":1725,"crc":-1150213795},{"key":"androidx/core/graphics/ColorUtils$Api26Impl.class","name":"androidx/core/graphics/ColorUtils$Api26Impl.class","size":2133,"crc":-1767282957},{"key":"androidx/core/graphics/ColorUtils.class","name":"androidx/core/graphics/ColorUtils.class","size":11354,"crc":572223509},{"key":"androidx/core/graphics/Insets$Api29Impl.class","name":"androidx/core/graphics/Insets$Api29Impl.class","size":741,"crc":-861437350},{"key":"androidx/core/graphics/Insets.class","name":"androidx/core/graphics/Insets.class","size":3797,"crc":1611887429},{"key":"androidx/core/graphics/PaintCompat$Api23Impl.class","name":"androidx/core/graphics/PaintCompat$Api23Impl.class","size":813,"crc":-3322387},{"key":"androidx/core/graphics/PaintCompat$Api29Impl.class","name":"androidx/core/graphics/PaintCompat$Api29Impl.class","size":869,"crc":1376448595},{"key":"androidx/core/graphics/PaintCompat.class","name":"androidx/core/graphics/PaintCompat.class","size":4190,"crc":-1948255028},{"key":"androidx/core/graphics/PathParser$ExtractFloatResult.class","name":"androidx/core/graphics/PathParser$ExtractFloatResult.class","size":492,"crc":-1663845048},{"key":"androidx/core/graphics/PathParser$PathDataNode.class","name":"androidx/core/graphics/PathParser$PathDataNode.class","size":9633,"crc":-1245652526},{"key":"androidx/core/graphics/PathParser.class","name":"androidx/core/graphics/PathParser.class","size":8089,"crc":-1939474256},{"key":"androidx/core/graphics/PathSegment.class","name":"androidx/core/graphics/PathSegment.class","size":2433,"crc":1148524092},{"key":"androidx/core/graphics/PathUtils$Api26Impl.class","name":"androidx/core/graphics/PathUtils$Api26Impl.class","size":764,"crc":-635021751},{"key":"androidx/core/graphics/PathUtils.class","name":"androidx/core/graphics/PathUtils.class","size":2168,"crc":1645633006},{"key":"androidx/core/graphics/TypefaceCompat$ResourcesCallbackAdapter.class","name":"androidx/core/graphics/TypefaceCompat$ResourcesCallbackAdapter.class","size":1711,"crc":-323164186},{"key":"androidx/core/graphics/TypefaceCompat.class","name":"androidx/core/graphics/TypefaceCompat.class","size":10183,"crc":1966790811},{"key":"androidx/core/graphics/TypefaceCompatApi21Impl.class","name":"androidx/core/graphics/TypefaceCompatApi21Impl.class","size":9920,"crc":1427569578},{"key":"androidx/core/graphics/TypefaceCompatApi24Impl.class","name":"androidx/core/graphics/TypefaceCompatApi24Impl.class","size":8166,"crc":541108707},{"key":"androidx/core/graphics/TypefaceCompatApi26Impl.class","name":"androidx/core/graphics/TypefaceCompatApi26Impl.class","size":13353,"crc":-1021628},{"key":"androidx/core/graphics/TypefaceCompatApi28Impl.class","name":"androidx/core/graphics/TypefaceCompatApi28Impl.class","size":3170,"crc":1765335205},{"key":"androidx/core/graphics/TypefaceCompatApi29Impl.class","name":"androidx/core/graphics/TypefaceCompatApi29Impl.class","size":8266,"crc":-766524581},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$1.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$1.class","size":1680,"crc":2020885920},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$2.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$2.class","size":1989,"crc":992270278},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$3.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$3.class","size":1990,"crc":1646487761},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$StyleExtractor.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$StyleExtractor.class","size":446,"crc":1807309830},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl.class","size":10576,"crc":126501558},{"key":"androidx/core/graphics/TypefaceCompatUtil.class","name":"androidx/core/graphics/TypefaceCompatUtil.class","size":7720,"crc":-590393442},{"key":"androidx/core/graphics/WeightTypefaceApi14.class","name":"androidx/core/graphics/WeightTypefaceApi14.class","size":5229,"crc":-489331575},{"key":"androidx/core/graphics/WeightTypefaceApi21.class","name":"androidx/core/graphics/WeightTypefaceApi21.class","size":6056,"crc":458843757},{"key":"androidx/core/graphics/WeightTypefaceApi26.class","name":"androidx/core/graphics/WeightTypefaceApi26.class","size":5541,"crc":-1847966844},{"key":"androidx/core/graphics/drawable/DrawableCompat$Api21Impl.class","name":"androidx/core/graphics/drawable/DrawableCompat$Api21Impl.class","size":3290,"crc":-189709534},{"key":"androidx/core/graphics/drawable/DrawableCompat$Api23Impl.class","name":"androidx/core/graphics/drawable/DrawableCompat$Api23Impl.class","size":1011,"crc":274517592},{"key":"androidx/core/graphics/drawable/DrawableCompat.class","name":"androidx/core/graphics/drawable/DrawableCompat.class","size":8181,"crc":1830796176},{"key":"androidx/core/graphics/drawable/IconCompat$Api23Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api23Impl.class","size":7848,"crc":-1288128777},{"key":"androidx/core/graphics/drawable/IconCompat$Api26Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api26Impl.class","size":1260,"crc":1316781001},{"key":"androidx/core/graphics/drawable/IconCompat$Api28Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api28Impl.class","size":1176,"crc":1899525487},{"key":"androidx/core/graphics/drawable/IconCompat$Api30Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api30Impl.class","size":802,"crc":-2007874236},{"key":"androidx/core/graphics/drawable/IconCompat$IconType.class","name":"androidx/core/graphics/drawable/IconCompat$IconType.class","size":643,"crc":1843019074},{"key":"androidx/core/graphics/drawable/IconCompat.class","name":"androidx/core/graphics/drawable/IconCompat.class","size":23766,"crc":-1057666863},{"key":"androidx/core/graphics/drawable/IconCompatParcelizer.class","name":"androidx/core/graphics/drawable/IconCompatParcelizer.class","size":2391,"crc":-1370437693},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawable.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawable.class","size":7892,"crc":-626571484},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawable21.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawable21.class","size":1864,"crc":468816631},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory$DefaultRoundedBitmapDrawable.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory$DefaultRoundedBitmapDrawable.class","size":1631,"crc":1462706089},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.class","size":2653,"crc":1800860871},{"key":"androidx/core/graphics/drawable/TintAwareDrawable.class","name":"androidx/core/graphics/drawable/TintAwareDrawable.class","size":745,"crc":1348044187},{"key":"androidx/core/graphics/drawable/WrappedDrawable.class","name":"androidx/core/graphics/drawable/WrappedDrawable.class","size":560,"crc":-747113056},{"key":"androidx/core/graphics/drawable/WrappedDrawableApi14.class","name":"androidx/core/graphics/drawable/WrappedDrawableApi14.class","size":8945,"crc":-231972482},{"key":"androidx/core/graphics/drawable/WrappedDrawableApi21.class","name":"androidx/core/graphics/drawable/WrappedDrawableApi21.class","size":4146,"crc":-859088974},{"key":"androidx/core/graphics/drawable/WrappedDrawableState.class","name":"androidx/core/graphics/drawable/WrappedDrawableState.class","size":2151,"crc":1765756452},{"key":"androidx/core/hardware/display/DisplayManagerCompat.class","name":"androidx/core/hardware/display/DisplayManagerCompat.class","size":1636,"crc":989697280},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$1.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$1.class","size":2815,"crc":439340217},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$Api23Impl.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$Api23Impl.class","size":4151,"crc":-1917590039},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationCallback.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationCallback.class","size":1435,"crc":-68738431},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationResult.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationResult.class","size":1136,"crc":2102188991},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$CryptoObject.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$CryptoObject.class","size":1522,"crc":-1616160736},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat.class","size":5413,"crc":36992065},{"key":"androidx/core/internal/package-info.class","name":"androidx/core/internal/package-info.class","size":404,"crc":-1162714476},{"key":"androidx/core/internal/view/SupportMenu.class","name":"androidx/core/internal/view/SupportMenu.class","size":765,"crc":1726273822},{"key":"androidx/core/internal/view/SupportMenuItem.class","name":"androidx/core/internal/view/SupportMenuItem.class","size":2836,"crc":1950125442},{"key":"androidx/core/internal/view/SupportSubMenu.class","name":"androidx/core/internal/view/SupportSubMenu.class","size":488,"crc":341992331},{"key":"androidx/core/location/GnssStatusCompat$Callback.class","name":"androidx/core/location/GnssStatusCompat$Callback.class","size":1011,"crc":-106236767},{"key":"androidx/core/location/GnssStatusCompat$ConstellationType.class","name":"androidx/core/location/GnssStatusCompat$ConstellationType.class","size":661,"crc":600754332},{"key":"androidx/core/location/GnssStatusCompat.class","name":"androidx/core/location/GnssStatusCompat.class","size":2791,"crc":821246616},{"key":"androidx/core/location/GnssStatusWrapper$Api26Impl.class","name":"androidx/core/location/GnssStatusWrapper$Api26Impl.class","size":988,"crc":-2010772826},{"key":"androidx/core/location/GnssStatusWrapper$Api30Impl.class","name":"androidx/core/location/GnssStatusWrapper$Api30Impl.class","size":982,"crc":-494001482},{"key":"androidx/core/location/GnssStatusWrapper.class","name":"androidx/core/location/GnssStatusWrapper.class","size":3112,"crc":-197759893},{"key":"androidx/core/location/GpsStatusWrapper.class","name":"androidx/core/location/GpsStatusWrapper.class","size":4956,"crc":1004775428},{"key":"androidx/core/location/LocationCompat$Api26Impl.class","name":"androidx/core/location/LocationCompat$Api26Impl.class","size":3437,"crc":420740957},{"key":"androidx/core/location/LocationCompat$Api28Impl.class","name":"androidx/core/location/LocationCompat$Api28Impl.class","size":4116,"crc":1597269846},{"key":"androidx/core/location/LocationCompat$Api29Impl.class","name":"androidx/core/location/LocationCompat$Api29Impl.class","size":1476,"crc":-764363779},{"key":"androidx/core/location/LocationCompat$Api33Impl.class","name":"androidx/core/location/LocationCompat$Api33Impl.class","size":988,"crc":1243675708},{"key":"androidx/core/location/LocationCompat$Api34Impl.class","name":"androidx/core/location/LocationCompat$Api34Impl.class","size":1815,"crc":-122363606},{"key":"androidx/core/location/LocationCompat.class","name":"androidx/core/location/LocationCompat.class","size":9990,"crc":1409851656},{"key":"androidx/core/location/LocationListenerCompat.class","name":"androidx/core/location/LocationListenerCompat.class","size":1553,"crc":1096933018},{"key":"androidx/core/location/LocationManagerCompat$Api19Impl.class","name":"androidx/core/location/LocationManagerCompat$Api19Impl.class","size":3811,"crc":-1417582786},{"key":"androidx/core/location/LocationManagerCompat$Api24Impl.class","name":"androidx/core/location/LocationManagerCompat$Api24Impl.class","size":4045,"crc":1373829472},{"key":"androidx/core/location/LocationManagerCompat$Api28Impl.class","name":"androidx/core/location/LocationManagerCompat$Api28Impl.class","size":1168,"crc":-1209055492},{"key":"androidx/core/location/LocationManagerCompat$Api30Impl.class","name":"androidx/core/location/LocationManagerCompat$Api30Impl.class","size":5848,"crc":-1177795251},{"key":"androidx/core/location/LocationManagerCompat$Api31Impl.class","name":"androidx/core/location/LocationManagerCompat$Api31Impl.class","size":2316,"crc":-1081442992},{"key":"androidx/core/location/LocationManagerCompat$CancellableLocationListener.class","name":"androidx/core/location/LocationManagerCompat$CancellableLocationListener.class","size":4695,"crc":-1081223508},{"key":"androidx/core/location/LocationManagerCompat$GnssListenersHolder.class","name":"androidx/core/location/LocationManagerCompat$GnssListenersHolder.class","size":1188,"crc":1084022117},{"key":"androidx/core/location/LocationManagerCompat$GnssMeasurementsTransport.class","name":"androidx/core/location/LocationManagerCompat$GnssMeasurementsTransport.class","size":2936,"crc":1804067361},{"key":"androidx/core/location/LocationManagerCompat$GnssStatusTransport.class","name":"androidx/core/location/LocationManagerCompat$GnssStatusTransport.class","size":1738,"crc":1406909359},{"key":"androidx/core/location/LocationManagerCompat$GpsStatusTransport.class","name":"androidx/core/location/LocationManagerCompat$GpsStatusTransport.class","size":4297,"crc":790129699},{"key":"androidx/core/location/LocationManagerCompat$InlineHandlerExecutor.class","name":"androidx/core/location/LocationManagerCompat$InlineHandlerExecutor.class","size":1595,"crc":1528455965},{"key":"androidx/core/location/LocationManagerCompat$LocationListenerKey.class","name":"androidx/core/location/LocationManagerCompat$LocationListenerKey.class","size":1396,"crc":1322207943},{"key":"androidx/core/location/LocationManagerCompat$LocationListenerTransport.class","name":"androidx/core/location/LocationManagerCompat$LocationListenerTransport.class","size":5175,"crc":2059105653},{"key":"androidx/core/location/LocationManagerCompat$PreRGnssStatusTransport.class","name":"androidx/core/location/LocationManagerCompat$PreRGnssStatusTransport.class","size":4058,"crc":-1140549583},{"key":"androidx/core/location/LocationManagerCompat.class","name":"androidx/core/location/LocationManagerCompat.class","size":22671,"crc":-1643195235},{"key":"androidx/core/location/LocationRequestCompat$Api19Impl.class","name":"androidx/core/location/LocationRequestCompat$Api19Impl.class","size":3015,"crc":-408833996},{"key":"androidx/core/location/LocationRequestCompat$Api31Impl.class","name":"androidx/core/location/LocationRequestCompat$Api31Impl.class","size":1654,"crc":1110351924},{"key":"androidx/core/location/LocationRequestCompat$Builder.class","name":"androidx/core/location/LocationRequestCompat$Builder.class","size":3768,"crc":1236629499},{"key":"androidx/core/location/LocationRequestCompat$Quality.class","name":"androidx/core/location/LocationRequestCompat$Quality.class","size":656,"crc":-1304604809},{"key":"androidx/core/location/LocationRequestCompat.class","name":"androidx/core/location/LocationRequestCompat.class","size":4921,"crc":923753816},{"key":"androidx/core/math/MathUtils.class","name":"androidx/core/math/MathUtils.class","size":2973,"crc":-1763529000},{"key":"androidx/core/net/ConnectivityManagerCompat$Api24Impl.class","name":"androidx/core/net/ConnectivityManagerCompat$Api24Impl.class","size":837,"crc":2023157836},{"key":"androidx/core/net/ConnectivityManagerCompat$RestrictBackgroundStatus.class","name":"androidx/core/net/ConnectivityManagerCompat$RestrictBackgroundStatus.class","size":705,"crc":716344203},{"key":"androidx/core/net/ConnectivityManagerCompat.class","name":"androidx/core/net/ConnectivityManagerCompat.class","size":2169,"crc":-1440532548},{"key":"androidx/core/net/DatagramSocketWrapper$DatagramSocketImplWrapper.class","name":"androidx/core/net/DatagramSocketWrapper$DatagramSocketImplWrapper.class","size":2647,"crc":1217154937},{"key":"androidx/core/net/DatagramSocketWrapper.class","name":"androidx/core/net/DatagramSocketWrapper.class","size":694,"crc":1450467363},{"key":"androidx/core/net/MailTo.class","name":"androidx/core/net/MailTo.class","size":4777,"crc":716149100},{"key":"androidx/core/net/ParseException.class","name":"androidx/core/net/ParseException.class","size":531,"crc":-1332245760},{"key":"androidx/core/net/TrafficStatsCompat$Api24Impl.class","name":"androidx/core/net/TrafficStatsCompat$Api24Impl.class","size":933,"crc":-2134102274},{"key":"androidx/core/net/TrafficStatsCompat.class","name":"androidx/core/net/TrafficStatsCompat.class","size":2384,"crc":2031265214},{"key":"androidx/core/net/UriCompat.class","name":"androidx/core/net/UriCompat.class","size":1861,"crc":957459528},{"key":"androidx/core/os/BundleCompat$Api33Impl.class","name":"androidx/core/os/BundleCompat$Api33Impl.class","size":2924,"crc":610687349},{"key":"androidx/core/os/BundleCompat.class","name":"androidx/core/os/BundleCompat.class","size":4237,"crc":1020338323},{"key":"androidx/core/os/CancellationSignal$OnCancelListener.class","name":"androidx/core/os/CancellationSignal$OnCancelListener.class","size":267,"crc":1768443177},{"key":"androidx/core/os/CancellationSignal.class","name":"androidx/core/os/CancellationSignal.class","size":2560,"crc":-960380168},{"key":"androidx/core/os/ConfigurationCompat$Api24Impl.class","name":"androidx/core/os/ConfigurationCompat$Api24Impl.class","size":1305,"crc":-537722556},{"key":"androidx/core/os/ConfigurationCompat.class","name":"androidx/core/os/ConfigurationCompat.class","size":1671,"crc":885489852},{"key":"androidx/core/os/EnvironmentCompat$Api21Impl.class","name":"androidx/core/os/EnvironmentCompat$Api21Impl.class","size":747,"crc":2058380209},{"key":"androidx/core/os/EnvironmentCompat.class","name":"androidx/core/os/EnvironmentCompat.class","size":1053,"crc":1913180907},{"key":"androidx/core/os/ExecutorCompat$HandlerExecutor.class","name":"androidx/core/os/ExecutorCompat$HandlerExecutor.class","size":1394,"crc":817974452},{"key":"androidx/core/os/ExecutorCompat.class","name":"androidx/core/os/ExecutorCompat.class","size":732,"crc":813340522},{"key":"androidx/core/os/HandlerCompat$Api28Impl.class","name":"androidx/core/os/HandlerCompat$Api28Impl.class","size":1266,"crc":1188911207},{"key":"androidx/core/os/HandlerCompat$Api29Impl.class","name":"androidx/core/os/HandlerCompat$Api29Impl.class","size":750,"crc":-97291405},{"key":"androidx/core/os/HandlerCompat.class","name":"androidx/core/os/HandlerCompat.class","size":4962,"crc":-1897818136},{"key":"androidx/core/os/LocaleListCompat$Api21Impl.class","name":"androidx/core/os/LocaleListCompat$Api21Impl.class","size":1997,"crc":-1056214764},{"key":"androidx/core/os/LocaleListCompat$Api24Impl.class","name":"androidx/core/os/LocaleListCompat$Api24Impl.class","size":969,"crc":2114069988},{"key":"androidx/core/os/LocaleListCompat.class","name":"androidx/core/os/LocaleListCompat.class","size":5727,"crc":504905637},{"key":"androidx/core/os/LocaleListCompatWrapper$Api21Impl.class","name":"androidx/core/os/LocaleListCompatWrapper$Api21Impl.class","size":784,"crc":-803210832},{"key":"androidx/core/os/LocaleListCompatWrapper.class","name":"androidx/core/os/LocaleListCompatWrapper.class","size":6913,"crc":1732702063},{"key":"androidx/core/os/LocaleListInterface.class","name":"androidx/core/os/LocaleListInterface.class","size":673,"crc":-1204215516},{"key":"androidx/core/os/LocaleListPlatformWrapper.class","name":"androidx/core/os/LocaleListPlatformWrapper.class","size":1937,"crc":1832161889},{"key":"androidx/core/os/MessageCompat$Api22Impl.class","name":"androidx/core/os/MessageCompat$Api22Impl.class","size":884,"crc":1780742617},{"key":"androidx/core/os/MessageCompat.class","name":"androidx/core/os/MessageCompat.class","size":1393,"crc":1288633183},{"key":"androidx/core/os/OperationCanceledException.class","name":"androidx/core/os/OperationCanceledException.class","size":734,"crc":1084133341},{"key":"androidx/core/os/ParcelCompat$Api29Impl.class","name":"androidx/core/os/ParcelCompat$Api29Impl.class","size":1234,"crc":695637281},{"key":"androidx/core/os/ParcelCompat$Api30Impl.class","name":"androidx/core/os/ParcelCompat$Api30Impl.class","size":1173,"crc":-1581830279},{"key":"androidx/core/os/ParcelCompat$Api33Impl.class","name":"androidx/core/os/ParcelCompat$Api33Impl.class","size":5851,"crc":359949473},{"key":"androidx/core/os/ParcelCompat.class","name":"androidx/core/os/ParcelCompat.class","size":9011,"crc":1763807924},{"key":"androidx/core/os/ParcelableCompat$ParcelableCompatCreatorHoneycombMR2.class","name":"androidx/core/os/ParcelableCompat$ParcelableCompatCreatorHoneycombMR2.class","size":1865,"crc":-1411295453},{"key":"androidx/core/os/ParcelableCompat.class","name":"androidx/core/os/ParcelableCompat.class","size":1172,"crc":276111255},{"key":"androidx/core/os/ParcelableCompatCreatorCallbacks.class","name":"androidx/core/os/ParcelableCompatCreatorCallbacks.class","size":521,"crc":-1661855711},{"key":"androidx/core/os/ProcessCompat$Api19Impl.class","name":"androidx/core/os/ProcessCompat$Api19Impl.class","size":1688,"crc":-612991505},{"key":"androidx/core/os/ProcessCompat$Api24Impl.class","name":"androidx/core/os/ProcessCompat$Api24Impl.class","size":628,"crc":-36967095},{"key":"androidx/core/os/ProcessCompat.class","name":"androidx/core/os/ProcessCompat.class","size":705,"crc":1617640224},{"key":"androidx/core/os/TraceCompat$Api29Impl.class","name":"androidx/core/os/TraceCompat$Api29Impl.class","size":1104,"crc":527588178},{"key":"androidx/core/os/TraceCompat.class","name":"androidx/core/os/TraceCompat.class","size":3632,"crc":-126247558},{"key":"androidx/core/os/UserHandleCompat$Api24Impl.class","name":"androidx/core/os/UserHandleCompat$Api24Impl.class","size":712,"crc":376925078},{"key":"androidx/core/os/UserHandleCompat.class","name":"androidx/core/os/UserHandleCompat.class","size":2995,"crc":-1502779167},{"key":"androidx/core/os/UserManagerCompat$Api24Impl.class","name":"androidx/core/os/UserManagerCompat$Api24Impl.class","size":858,"crc":-689420772},{"key":"androidx/core/os/UserManagerCompat.class","name":"androidx/core/os/UserManagerCompat.class","size":785,"crc":-1480909048},{"key":"androidx/core/provider/CallbackWithHandler$1.class","name":"androidx/core/provider/CallbackWithHandler$1.class","size":1177,"crc":-2040524177},{"key":"androidx/core/provider/CallbackWithHandler$2.class","name":"androidx/core/provider/CallbackWithHandler$2.class","size":1101,"crc":-579370637},{"key":"androidx/core/provider/CallbackWithHandler.class","name":"androidx/core/provider/CallbackWithHandler.class","size":2578,"crc":-255845993},{"key":"androidx/core/provider/CalleeHandler.class","name":"androidx/core/provider/CalleeHandler.class","size":748,"crc":-356584081},{"key":"androidx/core/provider/DocumentsContractCompat$DocumentCompat.class","name":"androidx/core/provider/DocumentsContractCompat$DocumentCompat.class","size":539,"crc":-744260981},{"key":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi21Impl.class","name":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi21Impl.class","size":2243,"crc":-373053568},{"key":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi24Impl.class","name":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi24Impl.class","size":1243,"crc":-191673428},{"key":"androidx/core/provider/DocumentsContractCompat.class","name":"androidx/core/provider/DocumentsContractCompat.class","size":4223,"crc":-1658133800},{"key":"androidx/core/provider/FontProvider$ContentQueryWrapper.class","name":"androidx/core/provider/FontProvider$ContentQueryWrapper.class","size":1164,"crc":-1466501038},{"key":"androidx/core/provider/FontProvider$ContentQueryWrapperApi16Impl.class","name":"androidx/core/provider/FontProvider$ContentQueryWrapperApi16Impl.class","size":1965,"crc":-711959768},{"key":"androidx/core/provider/FontProvider$ContentQueryWrapperApi24Impl.class","name":"androidx/core/provider/FontProvider$ContentQueryWrapperApi24Impl.class","size":2044,"crc":-1155449205},{"key":"androidx/core/provider/FontProvider.class","name":"androidx/core/provider/FontProvider.class","size":9818,"crc":-1231708978},{"key":"androidx/core/provider/FontRequest.class","name":"androidx/core/provider/FontRequest.class","size":4062,"crc":-1210355946},{"key":"androidx/core/provider/FontRequestWorker$1.class","name":"androidx/core/provider/FontRequestWorker$1.class","size":1628,"crc":2143461990},{"key":"androidx/core/provider/FontRequestWorker$2.class","name":"androidx/core/provider/FontRequestWorker$2.class","size":1631,"crc":-1502917920},{"key":"androidx/core/provider/FontRequestWorker$3.class","name":"androidx/core/provider/FontRequestWorker$3.class","size":1940,"crc":129325094},{"key":"androidx/core/provider/FontRequestWorker$4.class","name":"androidx/core/provider/FontRequestWorker$4.class","size":2067,"crc":-757734499},{"key":"androidx/core/provider/FontRequestWorker$TypefaceResult.class","name":"androidx/core/provider/FontRequestWorker$TypefaceResult.class","size":1197,"crc":-1047860993},{"key":"androidx/core/provider/FontRequestWorker.class","name":"androidx/core/provider/FontRequestWorker.class","size":8149,"crc":1460471023},{"key":"androidx/core/provider/FontsContractCompat$Columns.class","name":"androidx/core/provider/FontsContractCompat$Columns.class","size":1073,"crc":-1071719159},{"key":"androidx/core/provider/FontsContractCompat$FontFamilyResult.class","name":"androidx/core/provider/FontsContractCompat$FontFamilyResult.class","size":1802,"crc":805654133},{"key":"androidx/core/provider/FontsContractCompat$FontInfo.class","name":"androidx/core/provider/FontsContractCompat$FontInfo.class","size":2142,"crc":-1008811028},{"key":"androidx/core/provider/FontsContractCompat$FontRequestCallback$FontRequestFailReason.class","name":"androidx/core/provider/FontsContractCompat$FontRequestCallback$FontRequestFailReason.class","size":809,"crc":-566122054},{"key":"androidx/core/provider/FontsContractCompat$FontRequestCallback.class","name":"androidx/core/provider/FontsContractCompat$FontRequestCallback.class","size":1726,"crc":-1767623116},{"key":"androidx/core/provider/FontsContractCompat.class","name":"androidx/core/provider/FontsContractCompat.class","size":6954,"crc":-837802792},{"key":"androidx/core/provider/RequestExecutor$DefaultThreadFactory$ProcessPriorityThread.class","name":"androidx/core/provider/RequestExecutor$DefaultThreadFactory$ProcessPriorityThread.class","size":989,"crc":-1308480722},{"key":"androidx/core/provider/RequestExecutor$DefaultThreadFactory.class","name":"androidx/core/provider/RequestExecutor$DefaultThreadFactory.class","size":1108,"crc":-1790522015},{"key":"androidx/core/provider/RequestExecutor$HandlerExecutor.class","name":"androidx/core/provider/RequestExecutor$HandlerExecutor.class","size":1416,"crc":2106277493},{"key":"androidx/core/provider/RequestExecutor$ReplyRunnable$1.class","name":"androidx/core/provider/RequestExecutor$ReplyRunnable$1.class","size":1134,"crc":-721637920},{"key":"androidx/core/provider/RequestExecutor$ReplyRunnable.class","name":"androidx/core/provider/RequestExecutor$ReplyRunnable.class","size":2086,"crc":-361715969},{"key":"androidx/core/provider/RequestExecutor.class","name":"androidx/core/provider/RequestExecutor.class","size":4032,"crc":45623863},{"key":"androidx/core/provider/SelfDestructiveThread$1.class","name":"androidx/core/provider/SelfDestructiveThread$1.class","size":1098,"crc":1265609470},{"key":"androidx/core/provider/SelfDestructiveThread$2$1.class","name":"androidx/core/provider/SelfDestructiveThread$2$1.class","size":1084,"crc":-1209436586},{"key":"androidx/core/provider/SelfDestructiveThread$2.class","name":"androidx/core/provider/SelfDestructiveThread$2.class","size":1835,"crc":-507995055},{"key":"androidx/core/provider/SelfDestructiveThread$3.class","name":"androidx/core/provider/SelfDestructiveThread$3.class","size":1943,"crc":1875388478},{"key":"androidx/core/provider/SelfDestructiveThread$ReplyCallback.class","name":"androidx/core/provider/SelfDestructiveThread$ReplyCallback.class","size":379,"crc":-538938372},{"key":"androidx/core/provider/SelfDestructiveThread.class","name":"androidx/core/provider/SelfDestructiveThread.class","size":6254,"crc":1157189871},{"key":"androidx/core/service/quicksettings/PendingIntentActivityWrapper.class","name":"androidx/core/service/quicksettings/PendingIntentActivityWrapper.class","size":2541,"crc":1624604},{"key":"androidx/core/service/quicksettings/TileServiceCompat$Api24Impl.class","name":"androidx/core/service/quicksettings/TileServiceCompat$Api24Impl.class","size":969,"crc":1524303968},{"key":"androidx/core/service/quicksettings/TileServiceCompat$Api34Impl.class","name":"androidx/core/service/quicksettings/TileServiceCompat$Api34Impl.class","size":985,"crc":-1163551186},{"key":"androidx/core/service/quicksettings/TileServiceCompat$TileServiceWrapper.class","name":"androidx/core/service/quicksettings/TileServiceCompat$TileServiceWrapper.class","size":387,"crc":-1087529465},{"key":"androidx/core/service/quicksettings/TileServiceCompat.class","name":"androidx/core/service/quicksettings/TileServiceCompat.class","size":2414,"crc":1757355155},{"key":"androidx/core/telephony/SubscriptionManagerCompat$Api29Impl.class","name":"androidx/core/telephony/SubscriptionManagerCompat$Api29Impl.class","size":758,"crc":1419660002},{"key":"androidx/core/telephony/SubscriptionManagerCompat.class","name":"androidx/core/telephony/SubscriptionManagerCompat.class","size":1698,"crc":1557138825},{"key":"androidx/core/telephony/TelephonyManagerCompat$Api23Impl.class","name":"androidx/core/telephony/TelephonyManagerCompat$Api23Impl.class","size":1087,"crc":1091714028},{"key":"androidx/core/telephony/TelephonyManagerCompat$Api26Impl.class","name":"androidx/core/telephony/TelephonyManagerCompat$Api26Impl.class","size":1054,"crc":-1566470395},{"key":"androidx/core/telephony/TelephonyManagerCompat$Api30Impl.class","name":"androidx/core/telephony/TelephonyManagerCompat$Api30Impl.class","size":835,"crc":1008375281},{"key":"androidx/core/telephony/TelephonyManagerCompat.class","name":"androidx/core/telephony/TelephonyManagerCompat.class","size":2906,"crc":1474125055},{"key":"androidx/core/telephony/mbms/MbmsHelper$Api28Impl.class","name":"androidx/core/telephony/mbms/MbmsHelper$Api28Impl.class","size":2186,"crc":-1878492408},{"key":"androidx/core/telephony/mbms/MbmsHelper.class","name":"androidx/core/telephony/mbms/MbmsHelper.class","size":1004,"crc":-1438195000},{"key":"androidx/core/text/BidiFormatter$Builder.class","name":"androidx/core/text/BidiFormatter$Builder.class","size":2036,"crc":1378760591},{"key":"androidx/core/text/BidiFormatter$DirectionalityEstimator.class","name":"androidx/core/text/BidiFormatter$DirectionalityEstimator.class","size":4094,"crc":-1902417185},{"key":"androidx/core/text/BidiFormatter.class","name":"androidx/core/text/BidiFormatter.class","size":5789,"crc":-838162369},{"key":"androidx/core/text/HtmlCompat$Api24Impl.class","name":"androidx/core/text/HtmlCompat$Api24Impl.class","size":1362,"crc":146217190},{"key":"androidx/core/text/HtmlCompat.class","name":"androidx/core/text/HtmlCompat.class","size":2554,"crc":-261951905},{"key":"androidx/core/text/ICUCompat$Api21Impl.class","name":"androidx/core/text/ICUCompat$Api21Impl.class","size":734,"crc":1318579150},{"key":"androidx/core/text/ICUCompat$Api24Impl.class","name":"androidx/core/text/ICUCompat$Api24Impl.class","size":1128,"crc":-209947284},{"key":"androidx/core/text/ICUCompat.class","name":"androidx/core/text/ICUCompat.class","size":3456,"crc":-1561930858},{"key":"androidx/core/text/PrecomputedTextCompat$Api28Impl.class","name":"androidx/core/text/PrecomputedTextCompat$Api28Impl.class","size":769,"crc":-1309899149},{"key":"androidx/core/text/PrecomputedTextCompat$Params$Builder.class","name":"androidx/core/text/PrecomputedTextCompat$Params$Builder.class","size":2092,"crc":896385675},{"key":"androidx/core/text/PrecomputedTextCompat$Params.class","name":"androidx/core/text/PrecomputedTextCompat$Params.class","size":6425,"crc":931090495},{"key":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask$PrecomputedTextCallback.class","name":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask$PrecomputedTextCallback.class","size":1631,"crc":1319644435},{"key":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask.class","name":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask.class","size":1136,"crc":1854164396},{"key":"androidx/core/text/PrecomputedTextCompat.class","name":"androidx/core/text/PrecomputedTextCompat.class","size":9184,"crc":-392844784},{"key":"androidx/core/text/TextDirectionHeuristicCompat.class","name":"androidx/core/text/TextDirectionHeuristicCompat.class","size":222,"crc":-118200751},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$AnyStrong.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$AnyStrong.class","size":1358,"crc":-116397953},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$FirstStrong.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$FirstStrong.class","size":1162,"crc":1465235069},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionAlgorithm.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionAlgorithm.class","size":342,"crc":964437877},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicImpl.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicImpl.class","size":1745,"crc":2136242730},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicInternal.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicInternal.class","size":1131,"crc":-1371447970},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicLocale.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicLocale.class","size":1258,"crc":1502971490},{"key":"androidx/core/text/TextDirectionHeuristicsCompat.class","name":"androidx/core/text/TextDirectionHeuristicsCompat.class","size":2235,"crc":1050206764},{"key":"androidx/core/text/TextUtilsCompat.class","name":"androidx/core/text/TextUtilsCompat.class","size":818,"crc":924146042},{"key":"androidx/core/text/method/LinkMovementMethodCompat.class","name":"androidx/core/text/method/LinkMovementMethodCompat.class","size":2369,"crc":-1733823913},{"key":"androidx/core/text/util/FindAddress$ZipRange.class","name":"androidx/core/text/util/FindAddress$ZipRange.class","size":1027,"crc":1759049123},{"key":"androidx/core/text/util/FindAddress.class","name":"androidx/core/text/util/FindAddress.class","size":11163,"crc":106913627},{"key":"androidx/core/text/util/LinkifyCompat$Api24Impl.class","name":"androidx/core/text/util/LinkifyCompat$Api24Impl.class","size":1668,"crc":818694512},{"key":"androidx/core/text/util/LinkifyCompat$LinkSpec.class","name":"androidx/core/text/util/LinkifyCompat$LinkSpec.class","size":548,"crc":978455525},{"key":"androidx/core/text/util/LinkifyCompat$LinkifyMask.class","name":"androidx/core/text/util/LinkifyCompat$LinkifyMask.class","size":655,"crc":-1830119234},{"key":"androidx/core/text/util/LinkifyCompat.class","name":"androidx/core/text/util/LinkifyCompat.class","size":12426,"crc":-1518519244},{"key":"androidx/core/text/util/LocalePreferences$1.class","name":"androidx/core/text/util/LocalePreferences$1.class","size":940,"crc":378637435},{"key":"androidx/core/text/util/LocalePreferences$Api24Impl.class","name":"androidx/core/text/util/LocalePreferences$Api24Impl.class","size":1260,"crc":1069784012},{"key":"androidx/core/text/util/LocalePreferences$Api33Impl.class","name":"androidx/core/text/util/LocalePreferences$Api33Impl.class","size":2948,"crc":1431973722},{"key":"androidx/core/text/util/LocalePreferences$CalendarType$CalendarTypes.class","name":"androidx/core/text/util/LocalePreferences$CalendarType$CalendarTypes.class","size":754,"crc":2111337730},{"key":"androidx/core/text/util/LocalePreferences$CalendarType.class","name":"androidx/core/text/util/LocalePreferences$CalendarType.class","size":1131,"crc":1121003693},{"key":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek$Days.class","name":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek$Days.class","size":742,"crc":-925039115},{"key":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek.class","name":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek.class","size":892,"crc":-1082602966},{"key":"androidx/core/text/util/LocalePreferences$HourCycle$HourCycleTypes.class","name":"androidx/core/text/util/LocalePreferences$HourCycle$HourCycleTypes.class","size":747,"crc":-1451601347},{"key":"androidx/core/text/util/LocalePreferences$HourCycle.class","name":"androidx/core/text/util/LocalePreferences$HourCycle.class","size":770,"crc":2050120332},{"key":"androidx/core/text/util/LocalePreferences$TemperatureUnit$TemperatureUnits.class","name":"androidx/core/text/util/LocalePreferences$TemperatureUnit$TemperatureUnits.class","size":769,"crc":372884259},{"key":"androidx/core/text/util/LocalePreferences$TemperatureUnit.class","name":"androidx/core/text/util/LocalePreferences$TemperatureUnit.class","size":793,"crc":-221813898},{"key":"androidx/core/text/util/LocalePreferences.class","name":"androidx/core/text/util/LocalePreferences.class","size":5452,"crc":518336472},{"key":"androidx/core/util/AtomicFile.class","name":"androidx/core/util/AtomicFile.class","size":4462,"crc":1282749343},{"key":"androidx/core/util/DebugUtils.class","name":"androidx/core/util/DebugUtils.class","size":1525,"crc":-788472052},{"key":"androidx/core/util/LogWriter.class","name":"androidx/core/util/LogWriter.class","size":1684,"crc":-707190681},{"key":"androidx/core/util/ObjectsCompat.class","name":"androidx/core/util/ObjectsCompat.class","size":1858,"crc":1955834765},{"key":"androidx/core/util/Pair.class","name":"androidx/core/util/Pair.class","size":1918,"crc":-1970849920},{"key":"androidx/core/util/PatternsCompat.class","name":"androidx/core/util/PatternsCompat.class","size":58674,"crc":176158261},{"key":"androidx/core/util/Preconditions.class","name":"androidx/core/util/Preconditions.class","size":6183,"crc":1496653811},{"key":"androidx/core/util/Predicate.class","name":"androidx/core/util/Predicate.class","size":3398,"crc":1789136790},{"key":"androidx/core/util/SizeFCompat$Api21Impl.class","name":"androidx/core/util/SizeFCompat$Api21Impl.class","size":1233,"crc":1355410199},{"key":"androidx/core/util/SizeFCompat.class","name":"androidx/core/util/SizeFCompat.class","size":1988,"crc":703664480},{"key":"androidx/core/util/TimeUtils.class","name":"androidx/core/util/TimeUtils.class","size":4432,"crc":943155114},{"key":"androidx/core/util/TypedValueCompat$Api34Impl.class","name":"androidx/core/util/TypedValueCompat$Api34Impl.class","size":817,"crc":1538916558},{"key":"androidx/core/util/TypedValueCompat$ComplexDimensionUnit.class","name":"androidx/core/util/TypedValueCompat$ComplexDimensionUnit.class","size":659,"crc":1797910148},{"key":"androidx/core/util/TypedValueCompat.class","name":"androidx/core/util/TypedValueCompat.class","size":2402,"crc":-1160262685},{"key":"androidx/core/view/AccessibilityDelegateCompat$AccessibilityDelegateAdapter.class","name":"androidx/core/view/AccessibilityDelegateCompat$AccessibilityDelegateAdapter.class","size":4776,"crc":922346686},{"key":"androidx/core/view/AccessibilityDelegateCompat.class","name":"androidx/core/view/AccessibilityDelegateCompat.class","size":7248,"crc":-861580143},{"key":"androidx/core/view/ActionProvider$SubUiVisibilityListener.class","name":"androidx/core/view/ActionProvider$SubUiVisibilityListener.class","size":543,"crc":-2113335858},{"key":"androidx/core/view/ActionProvider$VisibilityListener.class","name":"androidx/core/view/ActionProvider$VisibilityListener.class","size":289,"crc":-1665051689},{"key":"androidx/core/view/ActionProvider.class","name":"androidx/core/view/ActionProvider.class","size":3576,"crc":-1536760347},{"key":"androidx/core/view/ContentInfoCompat$Api31Impl.class","name":"androidx/core/view/ContentInfoCompat$Api31Impl.class","size":3079,"crc":1612628765},{"key":"androidx/core/view/ContentInfoCompat$Builder.class","name":"androidx/core/view/ContentInfoCompat$Builder.class","size":2697,"crc":1412119567},{"key":"androidx/core/view/ContentInfoCompat$BuilderCompat.class","name":"androidx/core/view/ContentInfoCompat$BuilderCompat.class","size":666,"crc":1696616790},{"key":"androidx/core/view/ContentInfoCompat$BuilderCompat31Impl.class","name":"androidx/core/view/ContentInfoCompat$BuilderCompat31Impl.class","size":2633,"crc":-413578322},{"key":"androidx/core/view/ContentInfoCompat$BuilderCompatImpl.class","name":"androidx/core/view/ContentInfoCompat$BuilderCompatImpl.class","size":2445,"crc":793814999},{"key":"androidx/core/view/ContentInfoCompat$Compat.class","name":"androidx/core/view/ContentInfoCompat$Compat.class","size":599,"crc":322977362},{"key":"androidx/core/view/ContentInfoCompat$Compat31Impl.class","name":"androidx/core/view/ContentInfoCompat$Compat31Impl.class","size":1978,"crc":-1656001563},{"key":"androidx/core/view/ContentInfoCompat$CompatImpl.class","name":"androidx/core/view/ContentInfoCompat$CompatImpl.class","size":2855,"crc":783683588},{"key":"androidx/core/view/ContentInfoCompat$Flags.class","name":"androidx/core/view/ContentInfoCompat$Flags.class","size":645,"crc":103647730},{"key":"androidx/core/view/ContentInfoCompat$Source.class","name":"androidx/core/view/ContentInfoCompat$Source.class","size":647,"crc":-1098283764},{"key":"androidx/core/view/ContentInfoCompat.class","name":"androidx/core/view/ContentInfoCompat.class","size":7544,"crc":-710995835},{"key":"androidx/core/view/DifferentialMotionFlingController$DifferentialVelocityProvider.class","name":"androidx/core/view/DifferentialMotionFlingController$DifferentialVelocityProvider.class","size":491,"crc":2019033606},{"key":"androidx/core/view/DifferentialMotionFlingController$FlingVelocityThresholdCalculator.class","name":"androidx/core/view/DifferentialMotionFlingController$FlingVelocityThresholdCalculator.class","size":510,"crc":573487127},{"key":"androidx/core/view/DifferentialMotionFlingController.class","name":"androidx/core/view/DifferentialMotionFlingController.class","size":5499,"crc":-1316155655},{"key":"androidx/core/view/DifferentialMotionFlingTarget.class","name":"androidx/core/view/DifferentialMotionFlingTarget.class","size":286,"crc":-504038964},{"key":"androidx/core/view/DisplayCompat$Api23Impl.class","name":"androidx/core/view/DisplayCompat$Api23Impl.class","size":3224,"crc":-1671962451},{"key":"androidx/core/view/DisplayCompat$ModeCompat$Api23Impl.class","name":"androidx/core/view/DisplayCompat$ModeCompat$Api23Impl.class","size":984,"crc":-1943172235},{"key":"androidx/core/view/DisplayCompat$ModeCompat.class","name":"androidx/core/view/DisplayCompat$ModeCompat.class","size":2226,"crc":1802698466},{"key":"androidx/core/view/DisplayCompat.class","name":"androidx/core/view/DisplayCompat.class","size":5311,"crc":426530620},{"key":"androidx/core/view/DisplayCutoutCompat$Api28Impl.class","name":"androidx/core/view/DisplayCutoutCompat$Api28Impl.class","size":1861,"crc":-2061863409},{"key":"androidx/core/view/DisplayCutoutCompat$Api29Impl.class","name":"androidx/core/view/DisplayCutoutCompat$Api29Impl.class","size":1139,"crc":2065672441},{"key":"androidx/core/view/DisplayCutoutCompat$Api30Impl.class","name":"androidx/core/view/DisplayCutoutCompat$Api30Impl.class","size":1458,"crc":-1323522111},{"key":"androidx/core/view/DisplayCutoutCompat.class","name":"androidx/core/view/DisplayCutoutCompat.class","size":5691,"crc":-278841617},{"key":"androidx/core/view/DragAndDropPermissionsCompat$Api24Impl.class","name":"androidx/core/view/DragAndDropPermissionsCompat$Api24Impl.class","size":1222,"crc":-1494528412},{"key":"androidx/core/view/DragAndDropPermissionsCompat.class","name":"androidx/core/view/DragAndDropPermissionsCompat.class","size":1686,"crc":-112841901},{"key":"androidx/core/view/DragStartHelper$OnDragStartListener.class","name":"androidx/core/view/DragStartHelper$OnDragStartListener.class","size":416,"crc":-2064185111},{"key":"androidx/core/view/DragStartHelper.class","name":"androidx/core/view/DragStartHelper.class","size":3436,"crc":-1050781143},{"key":"androidx/core/view/GestureDetectorCompat.class","name":"androidx/core/view/GestureDetectorCompat.class","size":2078,"crc":-590261000},{"key":"androidx/core/view/GravityCompat.class","name":"androidx/core/view/GravityCompat.class","size":1482,"crc":-1284594109},{"key":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackFlags.class","name":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackFlags.class","size":696,"crc":172944499},{"key":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackType.class","name":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackType.class","size":694,"crc":1352997797},{"key":"androidx/core/view/HapticFeedbackConstantsCompat.class","name":"androidx/core/view/HapticFeedbackConstantsCompat.class","size":2165,"crc":-233855463},{"key":"androidx/core/view/InputDeviceCompat.class","name":"androidx/core/view/InputDeviceCompat.class","size":1178,"crc":-1611156102},{"key":"androidx/core/view/KeyEventDispatcher$Component.class","name":"androidx/core/view/KeyEventDispatcher$Component.class","size":377,"crc":1819687057},{"key":"androidx/core/view/KeyEventDispatcher.class","name":"androidx/core/view/KeyEventDispatcher.class","size":5617,"crc":-251757181},{"key":"androidx/core/view/LayoutInflaterCompat$Factory2Wrapper.class","name":"androidx/core/view/LayoutInflaterCompat$Factory2Wrapper.class","size":1824,"crc":709925757},{"key":"androidx/core/view/LayoutInflaterCompat.class","name":"androidx/core/view/LayoutInflaterCompat.class","size":3446,"crc":1815067315},{"key":"androidx/core/view/LayoutInflaterFactory.class","name":"androidx/core/view/LayoutInflaterFactory.class","size":362,"crc":1217133356},{"key":"androidx/core/view/MarginLayoutParamsCompat.class","name":"androidx/core/view/MarginLayoutParamsCompat.class","size":2016,"crc":52886746},{"key":"androidx/core/view/MenuCompat$Api28Impl.class","name":"androidx/core/view/MenuCompat$Api28Impl.class","size":763,"crc":493244291},{"key":"androidx/core/view/MenuCompat.class","name":"androidx/core/view/MenuCompat.class","size":1173,"crc":-465812236},{"key":"androidx/core/view/MenuHost.class","name":"androidx/core/view/MenuHost.class","size":802,"crc":1764291970},{"key":"androidx/core/view/MenuHostHelper$LifecycleContainer.class","name":"androidx/core/view/MenuHostHelper$LifecycleContainer.class","size":1047,"crc":-2092317000},{"key":"androidx/core/view/MenuHostHelper.class","name":"androidx/core/view/MenuHostHelper.class","size":6015,"crc":1640962395},{"key":"androidx/core/view/MenuItemCompat$1.class","name":"androidx/core/view/MenuItemCompat$1.class","size":1202,"crc":-273191399},{"key":"androidx/core/view/MenuItemCompat$Api26Impl.class","name":"androidx/core/view/MenuItemCompat$Api26Impl.class","size":3334,"crc":-387095062},{"key":"androidx/core/view/MenuItemCompat$OnActionExpandListener.class","name":"androidx/core/view/MenuItemCompat$OnActionExpandListener.class","size":427,"crc":-1261053605},{"key":"androidx/core/view/MenuItemCompat.class","name":"androidx/core/view/MenuItemCompat.class","size":7928,"crc":1053196033},{"key":"androidx/core/view/MenuProvider.class","name":"androidx/core/view/MenuProvider.class","size":694,"crc":-168585429},{"key":"androidx/core/view/MotionEventCompat.class","name":"androidx/core/view/MotionEventCompat.class","size":5062,"crc":-1821794123},{"key":"androidx/core/view/NestedScrollingChild.class","name":"androidx/core/view/NestedScrollingChild.class","size":612,"crc":643083790},{"key":"androidx/core/view/NestedScrollingChild2.class","name":"androidx/core/view/NestedScrollingChild2.class","size":512,"crc":2063247085},{"key":"androidx/core/view/NestedScrollingChild3.class","name":"androidx/core/view/NestedScrollingChild3.class","size":369,"crc":538066002},{"key":"androidx/core/view/NestedScrollingChildHelper.class","name":"androidx/core/view/NestedScrollingChildHelper.class","size":5709,"crc":-1526045863},{"key":"androidx/core/view/NestedScrollingParent.class","name":"androidx/core/view/NestedScrollingParent.class","size":808,"crc":-1862965098},{"key":"androidx/core/view/NestedScrollingParent2.class","name":"androidx/core/view/NestedScrollingParent2.class","size":695,"crc":-892996660},{"key":"androidx/core/view/NestedScrollingParent3.class","name":"androidx/core/view/NestedScrollingParent3.class","size":350,"crc":-686595616},{"key":"androidx/core/view/NestedScrollingParentHelper.class","name":"androidx/core/view/NestedScrollingParentHelper.class","size":1541,"crc":461928738},{"key":"androidx/core/view/OnApplyWindowInsetsListener.class","name":"androidx/core/view/OnApplyWindowInsetsListener.class","size":418,"crc":821875535},{"key":"androidx/core/view/OnReceiveContentListener.class","name":"androidx/core/view/OnReceiveContentListener.class","size":440,"crc":-51731300},{"key":"androidx/core/view/OnReceiveContentViewBehavior.class","name":"androidx/core/view/OnReceiveContentViewBehavior.class","size":423,"crc":-1932407804},{"key":"androidx/core/view/OneShotPreDrawListener.class","name":"androidx/core/view/OneShotPreDrawListener.class","size":2307,"crc":-501338103},{"key":"androidx/core/view/PointerIconCompat$Api24Impl.class","name":"androidx/core/view/PointerIconCompat$Api24Impl.class","size":1259,"crc":-1765924208},{"key":"androidx/core/view/PointerIconCompat.class","name":"androidx/core/view/PointerIconCompat.class","size":3083,"crc":652835173},{"key":"androidx/core/view/ScaleGestureDetectorCompat.class","name":"androidx/core/view/ScaleGestureDetectorCompat.class","size":1187,"crc":1698678462},{"key":"androidx/core/view/ScrollingView.class","name":"androidx/core/view/ScrollingView.class","size":364,"crc":-218140119},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl.class","size":596,"crc":-596741455},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl20.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl20.class","size":2596,"crc":1848626303},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl30.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl30.class","size":4052,"crc":-820004648},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat.class","size":1685,"crc":-1955609034},{"key":"androidx/core/view/TintableBackgroundView.class","name":"androidx/core/view/TintableBackgroundView.class","size":723,"crc":1795767615},{"key":"androidx/core/view/VelocityTrackerCompat$Api34Impl.class","name":"androidx/core/view/VelocityTrackerCompat$Api34Impl.class","size":1135,"crc":-56836724},{"key":"androidx/core/view/VelocityTrackerCompat$VelocityTrackableMotionEventAxis.class","name":"androidx/core/view/VelocityTrackerCompat$VelocityTrackableMotionEventAxis.class","size":711,"crc":1429362118},{"key":"androidx/core/view/VelocityTrackerCompat.class","name":"androidx/core/view/VelocityTrackerCompat.class","size":4023,"crc":-1355891040},{"key":"androidx/core/view/VelocityTrackerFallback.class","name":"androidx/core/view/VelocityTrackerFallback.class","size":2833,"crc":1553350646},{"key":"androidx/core/view/ViewCompat$1.class","name":"androidx/core/view/ViewCompat$1.class","size":2347,"crc":2014484077},{"key":"androidx/core/view/ViewCompat$2.class","name":"androidx/core/view/ViewCompat$2.class","size":2160,"crc":1965995768},{"key":"androidx/core/view/ViewCompat$3.class","name":"androidx/core/view/ViewCompat$3.class","size":2155,"crc":1332965266},{"key":"androidx/core/view/ViewCompat$4.class","name":"androidx/core/view/ViewCompat$4.class","size":2217,"crc":-1634602532},{"key":"androidx/core/view/ViewCompat$AccessibilityPaneVisibilityManager.class","name":"androidx/core/view/ViewCompat$AccessibilityPaneVisibilityManager.class","size":3791,"crc":1632848381},{"key":"androidx/core/view/ViewCompat$AccessibilityViewProperty.class","name":"androidx/core/view/ViewCompat$AccessibilityViewProperty.class","size":3143,"crc":-1256677346},{"key":"androidx/core/view/ViewCompat$Api20Impl.class","name":"androidx/core/view/ViewCompat$Api20Impl.class","size":1126,"crc":-9984510},{"key":"androidx/core/view/ViewCompat$Api21Impl$1.class","name":"androidx/core/view/ViewCompat$Api21Impl$1.class","size":2038,"crc":-1553055455},{"key":"androidx/core/view/ViewCompat$Api21Impl.class","name":"androidx/core/view/ViewCompat$Api21Impl.class","size":7146,"crc":-1249325660},{"key":"androidx/core/view/ViewCompat$Api23Impl.class","name":"androidx/core/view/ViewCompat$Api23Impl.class","size":1943,"crc":-949989883},{"key":"androidx/core/view/ViewCompat$Api24Impl.class","name":"androidx/core/view/ViewCompat$Api24Impl.class","size":2146,"crc":-935460301},{"key":"androidx/core/view/ViewCompat$Api26Impl.class","name":"androidx/core/view/ViewCompat$Api26Impl.class","size":3597,"crc":-788702953},{"key":"androidx/core/view/ViewCompat$Api28Impl.class","name":"androidx/core/view/ViewCompat$Api28Impl.class","size":4705,"crc":592211972},{"key":"androidx/core/view/ViewCompat$Api29Impl.class","name":"androidx/core/view/ViewCompat$Api29Impl.class","size":3051,"crc":-128268501},{"key":"androidx/core/view/ViewCompat$Api30Impl.class","name":"androidx/core/view/ViewCompat$Api30Impl.class","size":2180,"crc":172388591},{"key":"androidx/core/view/ViewCompat$Api31Impl.class","name":"androidx/core/view/ViewCompat$Api31Impl.class","size":2229,"crc":923740304},{"key":"androidx/core/view/ViewCompat$FocusDirection.class","name":"androidx/core/view/ViewCompat$FocusDirection.class","size":642,"crc":1155425484},{"key":"androidx/core/view/ViewCompat$FocusRealDirection.class","name":"androidx/core/view/ViewCompat$FocusRealDirection.class","size":650,"crc":749280326},{"key":"androidx/core/view/ViewCompat$FocusRelativeDirection.class","name":"androidx/core/view/ViewCompat$FocusRelativeDirection.class","size":658,"crc":1576246077},{"key":"androidx/core/view/ViewCompat$NestedScrollType.class","name":"androidx/core/view/ViewCompat$NestedScrollType.class","size":646,"crc":1643799421},{"key":"androidx/core/view/ViewCompat$OnReceiveContentListenerAdapter.class","name":"androidx/core/view/ViewCompat$OnReceiveContentListenerAdapter.class","size":1714,"crc":750143101},{"key":"androidx/core/view/ViewCompat$OnUnhandledKeyEventListenerCompat.class","name":"androidx/core/view/ViewCompat$OnUnhandledKeyEventListenerCompat.class","size":424,"crc":-762508931},{"key":"androidx/core/view/ViewCompat$ScrollAxis.class","name":"androidx/core/view/ViewCompat$ScrollAxis.class","size":634,"crc":-1481000453},{"key":"androidx/core/view/ViewCompat$ScrollIndicators.class","name":"androidx/core/view/ViewCompat$ScrollIndicators.class","size":646,"crc":-1203320779},{"key":"androidx/core/view/ViewCompat$UnhandledKeyEventManager.class","name":"androidx/core/view/ViewCompat$UnhandledKeyEventManager.class","size":5914,"crc":-68237476},{"key":"androidx/core/view/ViewCompat.class","name":"androidx/core/view/ViewCompat.class","size":59370,"crc":1896916239},{"key":"androidx/core/view/ViewConfigurationCompat$Api26Impl.class","name":"androidx/core/view/ViewConfigurationCompat$Api26Impl.class","size":946,"crc":1784829614},{"key":"androidx/core/view/ViewConfigurationCompat$Api28Impl.class","name":"androidx/core/view/ViewConfigurationCompat$Api28Impl.class","size":990,"crc":-912023001},{"key":"androidx/core/view/ViewConfigurationCompat$Api34Impl.class","name":"androidx/core/view/ViewConfigurationCompat$Api34Impl.class","size":1161,"crc":-89677823},{"key":"androidx/core/view/ViewConfigurationCompat.class","name":"androidx/core/view/ViewConfigurationCompat.class","size":7481,"crc":-1797316171},{"key":"androidx/core/view/ViewGroupCompat$Api21Impl.class","name":"androidx/core/view/ViewGroupCompat$Api21Impl.class","size":1055,"crc":402402769},{"key":"androidx/core/view/ViewGroupCompat.class","name":"androidx/core/view/ViewGroupCompat.class","size":2808,"crc":756322627},{"key":"androidx/core/view/ViewParentCompat$Api21Impl.class","name":"androidx/core/view/ViewParentCompat$Api21Impl.class","size":2353,"crc":-585042330},{"key":"androidx/core/view/ViewParentCompat.class","name":"androidx/core/view/ViewParentCompat.class","size":7252,"crc":-895791330},{"key":"androidx/core/view/ViewPropertyAnimatorCompat$1.class","name":"androidx/core/view/ViewPropertyAnimatorCompat$1.class","size":1433,"crc":-1943472778},{"key":"androidx/core/view/ViewPropertyAnimatorCompat$Api21Impl.class","name":"androidx/core/view/ViewPropertyAnimatorCompat$Api21Impl.class","size":1230,"crc":-189188170},{"key":"androidx/core/view/ViewPropertyAnimatorCompat.class","name":"androidx/core/view/ViewPropertyAnimatorCompat.class","size":10340,"crc":-2110957819},{"key":"androidx/core/view/ViewPropertyAnimatorListener.class","name":"androidx/core/view/ViewPropertyAnimatorListener.class","size":371,"crc":1924827163},{"key":"androidx/core/view/ViewPropertyAnimatorListenerAdapter.class","name":"androidx/core/view/ViewPropertyAnimatorListenerAdapter.class","size":844,"crc":-799948790},{"key":"androidx/core/view/ViewPropertyAnimatorUpdateListener.class","name":"androidx/core/view/ViewPropertyAnimatorUpdateListener.class","size":305,"crc":1797357548},{"key":"androidx/core/view/ViewStructureCompat$Api23Impl.class","name":"androidx/core/view/ViewStructureCompat$Api23Impl.class","size":1495,"crc":1645219278},{"key":"androidx/core/view/ViewStructureCompat.class","name":"androidx/core/view/ViewStructureCompat.class","size":2193,"crc":-729643503},{"key":"androidx/core/view/WindowCompat$Api16Impl.class","name":"androidx/core/view/WindowCompat$Api16Impl.class","size":1077,"crc":-494859518},{"key":"androidx/core/view/WindowCompat$Api28Impl.class","name":"androidx/core/view/WindowCompat$Api28Impl.class","size":856,"crc":-841604914},{"key":"androidx/core/view/WindowCompat$Api30Impl.class","name":"androidx/core/view/WindowCompat$Api30Impl.class","size":869,"crc":-1462428972},{"key":"androidx/core/view/WindowCompat.class","name":"androidx/core/view/WindowCompat.class","size":2194,"crc":-1144865123},{"key":"androidx/core/view/WindowInsetsAnimationCompat$BoundsCompat.class","name":"androidx/core/view/WindowInsetsAnimationCompat$BoundsCompat.class","size":3016,"crc":-663239670},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Callback$DispatchMode.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Callback$DispatchMode.class","size":771,"crc":-19343690},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Callback.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Callback.class","size":2066,"crc":209494665},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl.class","size":1808,"crc":400888180},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$1.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$1.class","size":2587,"crc":430262637},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$2.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$2.class","size":1635,"crc":138536965},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$3.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$3.class","size":2016,"crc":-1061163575},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener.class","size":5763,"crc":-1045538398},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21.class","size":9225,"crc":-312622289},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl30$ProxyCallback.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl30$ProxyCallback.class","size":4827,"crc":21717133},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl30.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl30.class","size":3826,"crc":426416019},{"key":"androidx/core/view/WindowInsetsAnimationCompat.class","name":"androidx/core/view/WindowInsetsAnimationCompat.class","size":3503,"crc":-476679620},{"key":"androidx/core/view/WindowInsetsAnimationControlListenerCompat.class","name":"androidx/core/view/WindowInsetsAnimationControlListenerCompat.class","size":519,"crc":-1375959183},{"key":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl.class","name":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl.class","size":1814,"crc":1764069739},{"key":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl30.class","name":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl30.class","size":2580,"crc":-1670379821},{"key":"androidx/core/view/WindowInsetsAnimationControllerCompat.class","name":"androidx/core/view/WindowInsetsAnimationControllerCompat.class","size":2455,"crc":-1206962161},{"key":"androidx/core/view/WindowInsetsCompat$Api21ReflectionHolder.class","name":"androidx/core/view/WindowInsetsCompat$Api21ReflectionHolder.class","size":3507,"crc":-451676334},{"key":"androidx/core/view/WindowInsetsCompat$Builder.class","name":"androidx/core/view/WindowInsetsCompat$Builder.class","size":3668,"crc":873871434},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl.class","size":3188,"crc":952023470},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl20.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl20.class","size":3845,"crc":-1367789157},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl29.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl29.class","size":3157,"crc":-1700995255},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl30.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl30.class","size":1858,"crc":-362799567},{"key":"androidx/core/view/WindowInsetsCompat$Impl.class","name":"androidx/core/view/WindowInsetsCompat$Impl.class","size":4440,"crc":587911647},{"key":"androidx/core/view/WindowInsetsCompat$Impl20.class","name":"androidx/core/view/WindowInsetsCompat$Impl20.class","size":9787,"crc":-1633841618},{"key":"androidx/core/view/WindowInsetsCompat$Impl21.class","name":"androidx/core/view/WindowInsetsCompat$Impl21.class","size":2425,"crc":202908659},{"key":"androidx/core/view/WindowInsetsCompat$Impl28.class","name":"androidx/core/view/WindowInsetsCompat$Impl28.class","size":2327,"crc":-559644749},{"key":"androidx/core/view/WindowInsetsCompat$Impl29.class","name":"androidx/core/view/WindowInsetsCompat$Impl29.class","size":2617,"crc":-220432070},{"key":"androidx/core/view/WindowInsetsCompat$Impl30.class","name":"androidx/core/view/WindowInsetsCompat$Impl30.class","size":2255,"crc":2128860632},{"key":"androidx/core/view/WindowInsetsCompat$Type$InsetsType.class","name":"androidx/core/view/WindowInsetsCompat$Type$InsetsType.class","size":719,"crc":1917876408},{"key":"androidx/core/view/WindowInsetsCompat$Type.class","name":"androidx/core/view/WindowInsetsCompat$Type.class","size":2387,"crc":1816556379},{"key":"androidx/core/view/WindowInsetsCompat$TypeImpl30.class","name":"androidx/core/view/WindowInsetsCompat$TypeImpl30.class","size":1293,"crc":903114413},{"key":"androidx/core/view/WindowInsetsCompat.class","name":"androidx/core/view/WindowInsetsCompat.class","size":10735,"crc":1488646022},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl.class","size":2318,"crc":487295909},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl20.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl20.class","size":4149,"crc":740369200},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl23.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl23.class","size":1629,"crc":-135562880},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl26.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl26.class","size":1634,"crc":1693726333},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl30$1.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl30$1.class","size":2291,"crc":1968305723},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl30.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl30.class","size":7376,"crc":-2028220928},{"key":"androidx/core/view/WindowInsetsControllerCompat$OnControllableInsetsChangedListener.class","name":"androidx/core/view/WindowInsetsControllerCompat$OnControllableInsetsChangedListener.class","size":494,"crc":1407225033},{"key":"androidx/core/view/WindowInsetsControllerCompat.class","name":"androidx/core/view/WindowInsetsControllerCompat.class","size":5064,"crc":152015089},{"key":"androidx/core/view/accessibility/AccessibilityClickableSpanCompat.class","name":"androidx/core/view/accessibility/AccessibilityClickableSpanCompat.class","size":1703,"crc":566446454},{"key":"androidx/core/view/accessibility/AccessibilityEventCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityEventCompat$Api34Impl.class","size":1131,"crc":1836249342},{"key":"androidx/core/view/accessibility/AccessibilityEventCompat$ContentChangeType.class","name":"androidx/core/view/accessibility/AccessibilityEventCompat$ContentChangeType.class","size":718,"crc":701609424},{"key":"androidx/core/view/accessibility/AccessibilityEventCompat.class","name":"androidx/core/view/accessibility/AccessibilityEventCompat.class","size":5402,"crc":-1750471231},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListener.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListener.class","size":477,"crc":1509031422},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerCompat.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerCompat.class","size":811,"crc":1411476729},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerWrapper.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerWrapper.class","size":1686,"crc":575055372},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$Api34Impl.class","size":938,"crc":-1054095445},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListener.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListener.class","size":384,"crc":-1837815159},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListenerWrapper.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListenerWrapper.class","size":1713,"crc":1165713886},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat.class","size":4426,"crc":-1383485855},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$AccessibilityActionCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$AccessibilityActionCompat.class","size":11582,"crc":1273619610},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api21Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api21Impl.class","size":1399,"crc":-696913560},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api30Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api30Impl.class","size":1536,"crc":575269572},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api33Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api33Impl.class","size":4419,"crc":1345792111},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api34Impl.class","size":3590,"crc":1833340314},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionInfoCompat.class","size":2117,"crc":1385820584},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat$Builder.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat$Builder.class","size":3564,"crc":1295266963},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat.class","size":2985,"crc":2023102495},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$RangeInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$RangeInfoCompat.class","size":2028,"crc":1506044189},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$TouchDelegateInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$TouchDelegateInfoCompat.class","size":2545,"crc":-1621556349},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat.class","size":46148,"crc":126892516},{"key":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi19.class","name":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi19.class","size":2633,"crc":1280780439},{"key":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi26.class","name":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi26.class","size":1697,"crc":-251749915},{"key":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat.class","size":2621,"crc":188254524},{"key":"androidx/core/view/accessibility/AccessibilityRecordCompat.class","name":"androidx/core/view/accessibility/AccessibilityRecordCompat.class","size":8568,"crc":311434289},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$CommandArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$CommandArguments.class","size":1020,"crc":1383842063},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveAtGranularityArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveAtGranularityArguments.class","size":1120,"crc":1283304259},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveHtmlArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveHtmlArguments.class","size":1014,"crc":712771277},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveWindowArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveWindowArguments.class","size":1000,"crc":2123823754},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$ScrollToPositionArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$ScrollToPositionArguments.class","size":1070,"crc":-838097745},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$SetProgressArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$SetProgressArguments.class","size":932,"crc":1128765126},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$SetSelectionArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$SetSelectionArguments.class","size":1022,"crc":1087470567},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$SetTextArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$SetTextArguments.class","size":1024,"crc":637844774},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand.class","size":1347,"crc":-1100584727},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api21Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api21Impl.class","size":2788,"crc":917831218},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api24Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api24Impl.class","size":1224,"crc":-523677408},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api26Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api26Impl.class","size":937,"crc":855397755},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api30Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api30Impl.class","size":858,"crc":1761157054},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api33Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api33Impl.class","size":1687,"crc":-1238990567},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api34Impl.class","size":1140,"crc":-814534727},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat.class","size":8894,"crc":-1701157246},{"key":"androidx/core/view/animation/PathInterpolatorApi14.class","name":"androidx/core/view/animation/PathInterpolatorApi14.class","size":2333,"crc":1168129793},{"key":"androidx/core/view/animation/PathInterpolatorCompat$Api21Impl.class","name":"androidx/core/view/animation/PathInterpolatorCompat$Api21Impl.class","size":1289,"crc":1556389558},{"key":"androidx/core/view/animation/PathInterpolatorCompat.class","name":"androidx/core/view/animation/PathInterpolatorCompat.class","size":1515,"crc":-1645199051},{"key":"androidx/core/view/autofill/AutofillIdCompat.class","name":"androidx/core/view/autofill/AutofillIdCompat.class","size":1073,"crc":-867735316},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api23Impl.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api23Impl.class","size":890,"crc":-112680947},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api29Impl.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api29Impl.class","size":2720,"crc":-1799560617},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api34Impl.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api34Impl.class","size":1238,"crc":1545892060},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat.class","size":5395,"crc":-518664933},{"key":"androidx/core/view/inputmethod/EditorInfoCompat$Api30Impl.class","name":"androidx/core/view/inputmethod/EditorInfoCompat$Api30Impl.class","size":1627,"crc":725359131},{"key":"androidx/core/view/inputmethod/EditorInfoCompat.class","name":"androidx/core/view/inputmethod/EditorInfoCompat.class","size":8702,"crc":-386770413},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$1.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$1.class","size":1833,"crc":797796400},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$2.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$2.class","size":1649,"crc":2047863385},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$Api25Impl.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$Api25Impl.class","size":1134,"crc":1360607248},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$OnCommitContentListener.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$OnCommitContentListener.class","size":525,"crc":1476989102},{"key":"androidx/core/view/inputmethod/InputConnectionCompat.class","name":"androidx/core/view/inputmethod/InputConnectionCompat.class","size":11367,"crc":-1885061227},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatApi25Impl.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatApi25Impl.class","size":2094,"crc":1456256422},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatBaseImpl.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatBaseImpl.class","size":1773,"crc":1624196168},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatImpl.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatImpl.class","size":690,"crc":1074534587},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat.class","size":2707,"crc":877487393},{"key":"androidx/core/widget/AutoScrollHelper$ClampedScroller.class","name":"androidx/core/widget/AutoScrollHelper$ClampedScroller.class","size":3002,"crc":-1881276443},{"key":"androidx/core/widget/AutoScrollHelper$ScrollAnimationRunnable.class","name":"androidx/core/widget/AutoScrollHelper$ScrollAnimationRunnable.class","size":1582,"crc":1842928479},{"key":"androidx/core/widget/AutoScrollHelper.class","name":"androidx/core/widget/AutoScrollHelper.class","size":8621,"crc":1783212020},{"key":"androidx/core/widget/AutoSizeableTextView.class","name":"androidx/core/widget/AutoSizeableTextView.class","size":1312,"crc":383680365},{"key":"androidx/core/widget/CheckedTextViewCompat$Api21Impl.class","name":"androidx/core/widget/CheckedTextViewCompat$Api21Impl.class","size":1853,"crc":-283751687},{"key":"androidx/core/widget/CheckedTextViewCompat.class","name":"androidx/core/widget/CheckedTextViewCompat.class","size":2536,"crc":-801797701},{"key":"androidx/core/widget/CompoundButtonCompat$Api21Impl.class","name":"androidx/core/widget/CompoundButtonCompat$Api21Impl.class","size":1729,"crc":177035831},{"key":"androidx/core/widget/CompoundButtonCompat$Api23Impl.class","name":"androidx/core/widget/CompoundButtonCompat$Api23Impl.class","size":875,"crc":-1351051043},{"key":"androidx/core/widget/CompoundButtonCompat.class","name":"androidx/core/widget/CompoundButtonCompat.class","size":3549,"crc":-578277603},{"key":"androidx/core/widget/ContentLoadingProgressBar.class","name":"androidx/core/widget/ContentLoadingProgressBar.class","size":3255,"crc":-251890886},{"key":"androidx/core/widget/EdgeEffectCompat$Api21Impl.class","name":"androidx/core/widget/EdgeEffectCompat$Api21Impl.class","size":827,"crc":1024816863},{"key":"androidx/core/widget/EdgeEffectCompat$Api31Impl.class","name":"androidx/core/widget/EdgeEffectCompat$Api31Impl.class","size":1565,"crc":941125704},{"key":"androidx/core/widget/EdgeEffectCompat.class","name":"androidx/core/widget/EdgeEffectCompat.class","size":2939,"crc":-1785843503},{"key":"androidx/core/widget/ImageViewCompat$Api21Impl.class","name":"androidx/core/widget/ImageViewCompat$Api21Impl.class","size":1670,"crc":-1775682416},{"key":"androidx/core/widget/ImageViewCompat.class","name":"androidx/core/widget/ImageViewCompat.class","size":2780,"crc":-795067799},{"key":"androidx/core/widget/ListPopupWindowCompat.class","name":"androidx/core/widget/ListPopupWindowCompat.class","size":1253,"crc":1222268757},{"key":"androidx/core/widget/ListViewAutoScrollHelper.class","name":"androidx/core/widget/ListViewAutoScrollHelper.class","size":1611,"crc":1886614277},{"key":"androidx/core/widget/ListViewCompat.class","name":"androidx/core/widget/ListViewCompat.class","size":899,"crc":-1092787587},{"key":"androidx/core/widget/NestedScrollView$AccessibilityDelegate.class","name":"androidx/core/widget/NestedScrollView$AccessibilityDelegate.class","size":3675,"crc":-1158356231},{"key":"androidx/core/widget/NestedScrollView$Api21Impl.class","name":"androidx/core/widget/NestedScrollView$Api21Impl.class","size":762,"crc":1045126175},{"key":"androidx/core/widget/NestedScrollView$DifferentialMotionFlingTargetImpl.class","name":"androidx/core/widget/NestedScrollView$DifferentialMotionFlingTargetImpl.class","size":1290,"crc":-1836699415},{"key":"androidx/core/widget/NestedScrollView$OnScrollChangeListener.class","name":"androidx/core/widget/NestedScrollView$OnScrollChangeListener.class","size":422,"crc":-761668443},{"key":"androidx/core/widget/NestedScrollView$SavedState$1.class","name":"androidx/core/widget/NestedScrollView$SavedState$1.class","size":1315,"crc":2029700730},{"key":"androidx/core/widget/NestedScrollView$SavedState.class","name":"androidx/core/widget/NestedScrollView$SavedState.class","size":1969,"crc":-1634809784},{"key":"androidx/core/widget/NestedScrollView.class","name":"androidx/core/widget/NestedScrollView.class","size":41899,"crc":-1408253433},{"key":"androidx/core/widget/PopupMenuCompat.class","name":"androidx/core/widget/PopupMenuCompat.class","size":845,"crc":2027517968},{"key":"androidx/core/widget/PopupWindowCompat$Api23Impl.class","name":"androidx/core/widget/PopupWindowCompat$Api23Impl.class","size":1283,"crc":-1877238009},{"key":"androidx/core/widget/PopupWindowCompat.class","name":"androidx/core/widget/PopupWindowCompat.class","size":3936,"crc":-1990325588},{"key":"androidx/core/widget/ScrollerCompat.class","name":"androidx/core/widget/ScrollerCompat.class","size":3656,"crc":-54539407},{"key":"androidx/core/widget/TextViewCompat$Api23Impl.class","name":"androidx/core/widget/TextViewCompat$Api23Impl.class","size":2274,"crc":-1823767142},{"key":"androidx/core/widget/TextViewCompat$Api24Impl.class","name":"androidx/core/widget/TextViewCompat$Api24Impl.class","size":781,"crc":870517322},{"key":"androidx/core/widget/TextViewCompat$Api26Impl.class","name":"androidx/core/widget/TextViewCompat$Api26Impl.class","size":1950,"crc":1313675659},{"key":"androidx/core/widget/TextViewCompat$Api28Impl.class","name":"androidx/core/widget/TextViewCompat$Api28Impl.class","size":1619,"crc":775530023},{"key":"androidx/core/widget/TextViewCompat$Api34Impl.class","name":"androidx/core/widget/TextViewCompat$Api34Impl.class","size":959,"crc":1521316654},{"key":"androidx/core/widget/TextViewCompat$AutoSizeTextType.class","name":"androidx/core/widget/TextViewCompat$AutoSizeTextType.class","size":662,"crc":-1792362665},{"key":"androidx/core/widget/TextViewCompat$OreoCallback.class","name":"androidx/core/widget/TextViewCompat$OreoCallback.class","size":7346,"crc":-1591411371},{"key":"androidx/core/widget/TextViewCompat.class","name":"androidx/core/widget/TextViewCompat.class","size":15171,"crc":495483427},{"key":"androidx/core/widget/TextViewOnReceiveContentListener.class","name":"androidx/core/widget/TextViewOnReceiveContentListener.class","size":3894,"crc":-1743557502},{"key":"androidx/core/widget/TintableCheckedTextView.class","name":"androidx/core/widget/TintableCheckedTextView.class","size":946,"crc":-75470643},{"key":"androidx/core/widget/TintableCompoundButton.class","name":"androidx/core/widget/TintableCompoundButton.class","size":709,"crc":-546728220},{"key":"androidx/core/widget/TintableCompoundDrawablesView.class","name":"androidx/core/widget/TintableCompoundDrawablesView.class","size":767,"crc":-2060620041},{"key":"androidx/core/widget/TintableImageSourceView.class","name":"androidx/core/widget/TintableImageSourceView.class","size":930,"crc":-1647897496},{"key":"META-INF/androidx.core_core.version","name":"META-INF/androidx.core_core.version","size":7,"crc":-1000712479},{"key":"META-INF/core_release.kotlin_module","name":"META-INF/core_release.kotlin_module","size":24,"crc":1613429616}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/beHJJSAYkpmGXiWpiP3g6Q== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/beHJJSAYkpmGXiWpiP3g6Q== new file mode 100644 index 0000000..86f554c --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/beHJJSAYkpmGXiWpiP3g6Q== @@ -0,0 +1 @@ +[{"key":"androidx/arch/core/executor/ArchTaskExecutor.class","name":"androidx/arch/core/executor/ArchTaskExecutor.class","size":2950,"crc":-173664277},{"key":"androidx/arch/core/executor/DefaultTaskExecutor$1.class","name":"androidx/arch/core/executor/DefaultTaskExecutor$1.class","size":1445,"crc":-1550744660},{"key":"androidx/arch/core/executor/DefaultTaskExecutor$Api28Impl.class","name":"androidx/arch/core/executor/DefaultTaskExecutor$Api28Impl.class","size":834,"crc":1774766260},{"key":"androidx/arch/core/executor/DefaultTaskExecutor.class","name":"androidx/arch/core/executor/DefaultTaskExecutor.class","size":3293,"crc":-1256626107},{"key":"androidx/arch/core/executor/TaskExecutor.class","name":"androidx/arch/core/executor/TaskExecutor.class","size":1053,"crc":1399542030},{"key":"META-INF/androidx.arch.core_core-runtime.version","name":"META-INF/androidx.arch.core_core-runtime.version","size":67,"crc":1307063212}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fKjl5LoGXOsT1A8jRTh05Q== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fKjl5LoGXOsT1A8jRTh05Q== new file mode 100644 index 0000000..7f16fd7 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fKjl5LoGXOsT1A8jRTh05Q== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/arch/core/internal/FastSafeIterableMap.class","name":"androidx/arch/core/internal/FastSafeIterableMap.class","size":2907,"crc":2116950419},{"key":"androidx/arch/core/internal/SafeIterableMap$AscendingIterator.class","name":"androidx/arch/core/internal/SafeIterableMap$AscendingIterator.class","size":1775,"crc":-347866117},{"key":"androidx/arch/core/internal/SafeIterableMap$DescendingIterator.class","name":"androidx/arch/core/internal/SafeIterableMap$DescendingIterator.class","size":1779,"crc":1644932214},{"key":"androidx/arch/core/internal/SafeIterableMap$Entry.class","name":"androidx/arch/core/internal/SafeIterableMap$Entry.class","size":2378,"crc":1824924906},{"key":"androidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions.class","name":"androidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions.class","size":2551,"crc":1452189535},{"key":"androidx/arch/core/internal/SafeIterableMap$ListIterator.class","name":"androidx/arch/core/internal/SafeIterableMap$ListIterator.class","size":2977,"crc":-1002357144},{"key":"androidx/arch/core/internal/SafeIterableMap$SupportRemove.class","name":"androidx/arch/core/internal/SafeIterableMap$SupportRemove.class","size":1208,"crc":1494321347},{"key":"androidx/arch/core/internal/SafeIterableMap.class","name":"androidx/arch/core/internal/SafeIterableMap.class","size":7303,"crc":1636361416},{"key":"androidx/arch/core/util/Function.class","name":"androidx/arch/core/util/Function.class","size":280,"crc":896912248}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kVnRXNgN+vMYJNE4EAct9w== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kVnRXNgN+vMYJNE4EAct9w== new file mode 100644 index 0000000..e35500e --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kVnRXNgN+vMYJNE4EAct9w== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":225,"crc":1808098489},{"key":"META-INF/versions/9/module-info.class","name":"META-INF/versions/9/module-info.class","size":257,"crc":-1911524020}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m2K3W87_Q7IzTey3e9Fuwg== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m2K3W87_Q7IzTey3e9Fuwg== new file mode 100644 index 0000000..d7c9429 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m2K3W87_Q7IzTey3e9Fuwg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":108,"crc":1316044605},{"key":"com/google/common/util/concurrent/ListenableFuture.class","name":"com/google/common/util/concurrent/ListenableFuture.class","size":358,"crc":-1374437012},{"key":"META-INF/maven/com.google.guava/listenablefuture/pom.xml","name":"META-INF/maven/com.google.guava/listenablefuture/pom.xml","size":2226,"crc":65817035},{"key":"META-INF/maven/com.google.guava/listenablefuture/pom.properties","name":"META-INF/maven/com.google.guava/listenablefuture/pom.properties","size":96,"crc":1661854904}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/obv7dxiA6PjxHBXMHYeJgw== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/obv7dxiA6PjxHBXMHYeJgw== new file mode 100644 index 0000000..9af8d21 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/obv7dxiA6PjxHBXMHYeJgw== @@ -0,0 +1 @@ +[{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$1.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$1.class","size":1931,"crc":-1640808297},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$2.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$2.class","size":1977,"crc":-1225768483},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$3.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$3.class","size":1963,"crc":460228250},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$4.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$4.class","size":2482,"crc":-542943736},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$1.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$1.class","size":2151,"crc":-318782002},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$2.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$2.class","size":2183,"crc":1495941665},{"key":"androidx/activity/ActivityViewModelLazyKt.class","name":"androidx/activity/ActivityViewModelLazyKt.class","size":4396,"crc":-1784820198},{"key":"androidx/activity/Api26Impl.class","name":"androidx/activity/Api26Impl.class","size":1654,"crc":-1947708465},{"key":"androidx/activity/Api34Impl.class","name":"androidx/activity/Api34Impl.class","size":1990,"crc":-61264803},{"key":"androidx/activity/BackEventCompat$Companion.class","name":"androidx/activity/BackEventCompat$Companion.class","size":892,"crc":-358212213},{"key":"androidx/activity/BackEventCompat$SwipeEdge.class","name":"androidx/activity/BackEventCompat$SwipeEdge.class","size":1134,"crc":-662310490},{"key":"androidx/activity/BackEventCompat.class","name":"androidx/activity/BackEventCompat.class","size":3536,"crc":1190707418},{"key":"androidx/activity/Cancellable.class","name":"androidx/activity/Cancellable.class","size":421,"crc":-708940838},{"key":"androidx/activity/ComponentActivity$4.class","name":"androidx/activity/ComponentActivity$4.class","size":1739,"crc":-420230451},{"key":"androidx/activity/ComponentActivity$Api33Impl.class","name":"androidx/activity/ComponentActivity$Api33Impl.class","size":1546,"crc":1135160625},{"key":"androidx/activity/ComponentActivity$Companion.class","name":"androidx/activity/ComponentActivity$Companion.class","size":874,"crc":797283997},{"key":"androidx/activity/ComponentActivity$NonConfigurationInstances.class","name":"androidx/activity/ComponentActivity$NonConfigurationInstances.class","size":1556,"crc":1505560637},{"key":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutor.class","name":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutor.class","size":870,"crc":1636992715},{"key":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl.class","name":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl.class","size":4920,"crc":-695644619},{"key":"androidx/activity/ComponentActivity$activityResultRegistry$1.class","name":"androidx/activity/ComponentActivity$activityResultRegistry$1.class","size":7012,"crc":-1213863647},{"key":"androidx/activity/ComponentActivity$defaultViewModelProviderFactory$2.class","name":"androidx/activity/ComponentActivity$defaultViewModelProviderFactory$2.class","size":1909,"crc":-1486950132},{"key":"androidx/activity/ComponentActivity$fullyDrawnReporter$2$1.class","name":"androidx/activity/ComponentActivity$fullyDrawnReporter$2$1.class","size":1313,"crc":1684342183},{"key":"androidx/activity/ComponentActivity$fullyDrawnReporter$2.class","name":"androidx/activity/ComponentActivity$fullyDrawnReporter$2.class","size":1820,"crc":-1736975351},{"key":"androidx/activity/ComponentActivity$onBackPressedDispatcher$2.class","name":"androidx/activity/ComponentActivity$onBackPressedDispatcher$2.class","size":3564,"crc":1649118532},{"key":"androidx/activity/ComponentActivity.class","name":"androidx/activity/ComponentActivity.class","size":39269,"crc":1118014164},{"key":"androidx/activity/ComponentDialog.class","name":"androidx/activity/ComponentDialog.class","size":7578,"crc":-1729260339},{"key":"androidx/activity/EdgeToEdge.class","name":"androidx/activity/EdgeToEdge.class","size":5229,"crc":-873388881},{"key":"androidx/activity/EdgeToEdgeApi21.class","name":"androidx/activity/EdgeToEdgeApi21.class","size":1719,"crc":-1861298073},{"key":"androidx/activity/EdgeToEdgeApi23.class","name":"androidx/activity/EdgeToEdgeApi23.class","size":2154,"crc":-81204071},{"key":"androidx/activity/EdgeToEdgeApi26.class","name":"androidx/activity/EdgeToEdgeApi26.class","size":2399,"crc":-1401654137},{"key":"androidx/activity/EdgeToEdgeApi28.class","name":"androidx/activity/EdgeToEdgeApi28.class","size":1410,"crc":506896715},{"key":"androidx/activity/EdgeToEdgeApi29.class","name":"androidx/activity/EdgeToEdgeApi29.class","size":2634,"crc":1647525370},{"key":"androidx/activity/EdgeToEdgeApi30.class","name":"androidx/activity/EdgeToEdgeApi30.class","size":1410,"crc":-22811235},{"key":"androidx/activity/EdgeToEdgeBase.class","name":"androidx/activity/EdgeToEdgeBase.class","size":1571,"crc":972696176},{"key":"androidx/activity/EdgeToEdgeImpl.class","name":"androidx/activity/EdgeToEdgeImpl.class","size":1036,"crc":1336037494},{"key":"androidx/activity/FullyDrawnReporter.class","name":"androidx/activity/FullyDrawnReporter.class","size":6883,"crc":1058805723},{"key":"androidx/activity/FullyDrawnReporterKt$reportWhenComplete$1.class","name":"androidx/activity/FullyDrawnReporterKt$reportWhenComplete$1.class","size":2011,"crc":1693911518},{"key":"androidx/activity/FullyDrawnReporterKt.class","name":"androidx/activity/FullyDrawnReporterKt.class","size":3103,"crc":-428465878},{"key":"androidx/activity/FullyDrawnReporterOwner.class","name":"androidx/activity/FullyDrawnReporterOwner.class","size":670,"crc":339222718},{"key":"androidx/activity/ImmLeaksCleaner$Cleaner.class","name":"androidx/activity/ImmLeaksCleaner$Cleaner.class","size":1616,"crc":-2064949897},{"key":"androidx/activity/ImmLeaksCleaner$Companion$cleaner$2.class","name":"androidx/activity/ImmLeaksCleaner$Companion$cleaner$2.class","size":2866,"crc":-1227111391},{"key":"androidx/activity/ImmLeaksCleaner$Companion.class","name":"androidx/activity/ImmLeaksCleaner$Companion.class","size":1450,"crc":2030074279},{"key":"androidx/activity/ImmLeaksCleaner$FailedInitialization.class","name":"androidx/activity/ImmLeaksCleaner$FailedInitialization.class","size":1974,"crc":-2119668364},{"key":"androidx/activity/ImmLeaksCleaner$ValidCleaner.class","name":"androidx/activity/ImmLeaksCleaner$ValidCleaner.class","size":2898,"crc":-1985390139},{"key":"androidx/activity/ImmLeaksCleaner.class","name":"androidx/activity/ImmLeaksCleaner.class","size":4138,"crc":-683231182},{"key":"androidx/activity/OnBackPressedCallback.class","name":"androidx/activity/OnBackPressedCallback.class","size":4631,"crc":1259570835},{"key":"androidx/activity/OnBackPressedDispatcher$1.class","name":"androidx/activity/OnBackPressedDispatcher$1.class","size":1793,"crc":858506618},{"key":"androidx/activity/OnBackPressedDispatcher$2.class","name":"androidx/activity/OnBackPressedDispatcher$2.class","size":1796,"crc":912983702},{"key":"androidx/activity/OnBackPressedDispatcher$3.class","name":"androidx/activity/OnBackPressedDispatcher$3.class","size":1242,"crc":729229894},{"key":"androidx/activity/OnBackPressedDispatcher$4.class","name":"androidx/activity/OnBackPressedDispatcher$4.class","size":1251,"crc":-599734795},{"key":"androidx/activity/OnBackPressedDispatcher$5.class","name":"androidx/activity/OnBackPressedDispatcher$5.class","size":1242,"crc":657272376},{"key":"androidx/activity/OnBackPressedDispatcher$Api33Impl.class","name":"androidx/activity/OnBackPressedDispatcher$Api33Impl.class","size":3101,"crc":-2011792798},{"key":"androidx/activity/OnBackPressedDispatcher$Api34Impl$createOnBackAnimationCallback$1.class","name":"androidx/activity/OnBackPressedDispatcher$Api34Impl$createOnBackAnimationCallback$1.class","size":2959,"crc":-2008672857},{"key":"androidx/activity/OnBackPressedDispatcher$Api34Impl.class","name":"androidx/activity/OnBackPressedDispatcher$Api34Impl.class","size":2569,"crc":-1353833463},{"key":"androidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable.class","name":"androidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable.class","size":3083,"crc":165265846},{"key":"androidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable.class","name":"androidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable.class","size":2502,"crc":463905704},{"key":"androidx/activity/OnBackPressedDispatcher$addCallback$1.class","name":"androidx/activity/OnBackPressedDispatcher$addCallback$1.class","size":1391,"crc":-122303386},{"key":"androidx/activity/OnBackPressedDispatcher$addCancellableCallback$1.class","name":"androidx/activity/OnBackPressedDispatcher$addCancellableCallback$1.class","size":1436,"crc":1325878599},{"key":"androidx/activity/OnBackPressedDispatcher.class","name":"androidx/activity/OnBackPressedDispatcher.class","size":13164,"crc":-1064152180},{"key":"androidx/activity/OnBackPressedDispatcherKt$addCallback$callback$1.class","name":"androidx/activity/OnBackPressedDispatcherKt$addCallback$callback$1.class","size":1519,"crc":310623790},{"key":"androidx/activity/OnBackPressedDispatcherKt.class","name":"androidx/activity/OnBackPressedDispatcherKt.class","size":2481,"crc":-746442317},{"key":"androidx/activity/OnBackPressedDispatcherOwner.class","name":"androidx/activity/OnBackPressedDispatcherOwner.class","size":780,"crc":-1780134358},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$2.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$2.class","size":2073,"crc":-1500449956},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$1.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$1.class","size":2639,"crc":-292907574},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$attachStateChangeListener$1.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$attachStateChangeListener$1.class","size":3195,"crc":1284861015},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1.class","size":7149,"crc":-1852210835},{"key":"androidx/activity/PipHintTrackerKt.class","name":"androidx/activity/PipHintTrackerKt.class","size":2692,"crc":-1815415906},{"key":"androidx/activity/SystemBarStyle$Companion$auto$1.class","name":"androidx/activity/SystemBarStyle$Companion$auto$1.class","size":2022,"crc":1859324407},{"key":"androidx/activity/SystemBarStyle$Companion$dark$1.class","name":"androidx/activity/SystemBarStyle$Companion$dark$1.class","size":1737,"crc":2005757652},{"key":"androidx/activity/SystemBarStyle$Companion$light$1.class","name":"androidx/activity/SystemBarStyle$Companion$light$1.class","size":1741,"crc":1154515890},{"key":"androidx/activity/SystemBarStyle$Companion.class","name":"androidx/activity/SystemBarStyle$Companion.class","size":3172,"crc":2029813958},{"key":"androidx/activity/SystemBarStyle.class","name":"androidx/activity/SystemBarStyle.class","size":3699,"crc":-1762759932},{"key":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$1.class","name":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$1.class","size":1837,"crc":-1235656802},{"key":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$2.class","name":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$2.class","size":2002,"crc":1499649627},{"key":"androidx/activity/ViewTreeFullyDrawnReporterOwner.class","name":"androidx/activity/ViewTreeFullyDrawnReporterOwner.class","size":2521,"crc":-260827646},{"key":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1.class","name":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1.class","size":1871,"crc":-1858978807},{"key":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2.class","name":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2.class","size":2081,"crc":1066734303},{"key":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner.class","name":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner.class","size":2650,"crc":1480814886},{"key":"androidx/activity/contextaware/ContextAware.class","name":"androidx/activity/contextaware/ContextAware.class","size":989,"crc":-731652454},{"key":"androidx/activity/contextaware/ContextAwareHelper.class","name":"androidx/activity/contextaware/ContextAwareHelper.class","size":2642,"crc":-737783095},{"key":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$1.class","name":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$1.class","size":2889,"crc":-1657592583},{"key":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$listener$1.class","name":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$listener$1.class","size":3237,"crc":-977261674},{"key":"androidx/activity/contextaware/ContextAwareKt.class","name":"androidx/activity/contextaware/ContextAwareKt.class","size":5073,"crc":40845482},{"key":"androidx/activity/contextaware/OnContextAvailableListener.class","name":"androidx/activity/contextaware/OnContextAvailableListener.class","size":682,"crc":1640788270},{"key":"androidx/activity/result/ActivityResult$Companion$CREATOR$1.class","name":"androidx/activity/result/ActivityResult$Companion$CREATOR$1.class","size":1916,"crc":781918674},{"key":"androidx/activity/result/ActivityResult$Companion.class","name":"androidx/activity/result/ActivityResult$Companion.class","size":1498,"crc":1083210728},{"key":"androidx/activity/result/ActivityResult.class","name":"androidx/activity/result/ActivityResult.class","size":3504,"crc":-324203662},{"key":"androidx/activity/result/ActivityResultCallback.class","name":"androidx/activity/result/ActivityResultCallback.class","size":628,"crc":1970847939},{"key":"androidx/activity/result/ActivityResultCaller.class","name":"androidx/activity/result/ActivityResultCaller.class","size":1976,"crc":-1122410830},{"key":"androidx/activity/result/ActivityResultCallerKt.class","name":"androidx/activity/result/ActivityResultCallerKt.class","size":4465,"crc":-1768547991},{"key":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2$1.class","name":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2$1.class","size":2729,"crc":1084971498},{"key":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2.class","name":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2.class","size":1931,"crc":1985086368},{"key":"androidx/activity/result/ActivityResultCallerLauncher.class","name":"androidx/activity/result/ActivityResultCallerLauncher.class","size":4061,"crc":-1276556932},{"key":"androidx/activity/result/ActivityResultKt.class","name":"androidx/activity/result/ActivityResultKt.class","size":1252,"crc":-1320611944},{"key":"androidx/activity/result/ActivityResultLauncher.class","name":"androidx/activity/result/ActivityResultLauncher.class","size":1623,"crc":-432064838},{"key":"androidx/activity/result/ActivityResultLauncherKt.class","name":"androidx/activity/result/ActivityResultLauncherKt.class","size":2023,"crc":1093049900},{"key":"androidx/activity/result/ActivityResultRegistry$CallbackAndContract.class","name":"androidx/activity/result/ActivityResultRegistry$CallbackAndContract.class","size":2225,"crc":455773501},{"key":"androidx/activity/result/ActivityResultRegistry$Companion.class","name":"androidx/activity/result/ActivityResultRegistry$Companion.class","size":1214,"crc":-610986503},{"key":"androidx/activity/result/ActivityResultRegistry$LifecycleContainer.class","name":"androidx/activity/result/ActivityResultRegistry$LifecycleContainer.class","size":3491,"crc":1523179344},{"key":"androidx/activity/result/ActivityResultRegistry$generateRandomNumber$1.class","name":"androidx/activity/result/ActivityResultRegistry$generateRandomNumber$1.class","size":1490,"crc":1157358130},{"key":"androidx/activity/result/ActivityResultRegistry$register$2.class","name":"androidx/activity/result/ActivityResultRegistry$register$2.class","size":4284,"crc":-789259953},{"key":"androidx/activity/result/ActivityResultRegistry$register$3.class","name":"androidx/activity/result/ActivityResultRegistry$register$3.class","size":4249,"crc":-695057735},{"key":"androidx/activity/result/ActivityResultRegistry.class","name":"androidx/activity/result/ActivityResultRegistry.class","size":17352,"crc":-192716202},{"key":"androidx/activity/result/ActivityResultRegistryOwner.class","name":"androidx/activity/result/ActivityResultRegistryOwner.class","size":726,"crc":1586312733},{"key":"androidx/activity/result/IntentSenderRequest$Builder$Flag.class","name":"androidx/activity/result/IntentSenderRequest$Builder$Flag.class","size":816,"crc":812248084},{"key":"androidx/activity/result/IntentSenderRequest$Builder.class","name":"androidx/activity/result/IntentSenderRequest$Builder.class","size":2552,"crc":634140502},{"key":"androidx/activity/result/IntentSenderRequest$Companion$CREATOR$1.class","name":"androidx/activity/result/IntentSenderRequest$Companion$CREATOR$1.class","size":1958,"crc":-1695759292},{"key":"androidx/activity/result/IntentSenderRequest$Companion.class","name":"androidx/activity/result/IntentSenderRequest$Companion.class","size":1070,"crc":589185882},{"key":"androidx/activity/result/IntentSenderRequest.class","name":"androidx/activity/result/IntentSenderRequest.class","size":3926,"crc":179881267},{"key":"androidx/activity/result/PickVisualMediaRequest$Builder.class","name":"androidx/activity/result/PickVisualMediaRequest$Builder.class","size":2378,"crc":548726142},{"key":"androidx/activity/result/PickVisualMediaRequest.class","name":"androidx/activity/result/PickVisualMediaRequest.class","size":2042,"crc":1955974580},{"key":"androidx/activity/result/PickVisualMediaRequestKt.class","name":"androidx/activity/result/PickVisualMediaRequestKt.class","size":2319,"crc":531241200},{"key":"androidx/activity/result/contract/ActivityResultContract$SynchronousResult.class","name":"androidx/activity/result/contract/ActivityResultContract$SynchronousResult.class","size":1068,"crc":1193330250},{"key":"androidx/activity/result/contract/ActivityResultContract.class","name":"androidx/activity/result/contract/ActivityResultContract.class","size":2153,"crc":1301119215},{"key":"androidx/activity/result/contract/ActivityResultContracts$CaptureVideo.class","name":"androidx/activity/result/contract/ActivityResultContracts$CaptureVideo.class","size":3553,"crc":715800925},{"key":"androidx/activity/result/contract/ActivityResultContracts$CreateDocument.class","name":"androidx/activity/result/contract/ActivityResultContracts$CreateDocument.class","size":4968,"crc":-195241468},{"key":"androidx/activity/result/contract/ActivityResultContracts$GetContent.class","name":"androidx/activity/result/contract/ActivityResultContracts$GetContent.class","size":4248,"crc":1128495298},{"key":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents$Companion.class","size":2791,"crc":169508426},{"key":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents.class","name":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents.class","size":4623,"crc":-1122890859},{"key":"androidx/activity/result/contract/ActivityResultContracts$OpenDocument.class","name":"androidx/activity/result/contract/ActivityResultContracts$OpenDocument.class","size":4364,"crc":-1359341656},{"key":"androidx/activity/result/contract/ActivityResultContracts$OpenDocumentTree.class","name":"androidx/activity/result/contract/ActivityResultContracts$OpenDocumentTree.class","size":4333,"crc":1480534583},{"key":"androidx/activity/result/contract/ActivityResultContracts$OpenMultipleDocuments.class","name":"androidx/activity/result/contract/ActivityResultContracts$OpenMultipleDocuments.class","size":4698,"crc":-740738162},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickContact.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickContact.class","size":3280,"crc":-1744271070},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia$Companion.class","size":1822,"crc":83915716},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia.class","size":9194,"crc":937086656},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$Companion.class","size":5626,"crc":1679944831},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageAndVideo.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageAndVideo.class","size":1229,"crc":1211788680},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageOnly.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageOnly.class","size":1217,"crc":711356033},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$SingleMimeType.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$SingleMimeType.class","size":1567,"crc":-1904724917},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VideoOnly.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VideoOnly.class","size":1217,"crc":-1872246118},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VisualMediaType.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VisualMediaType.class","size":1121,"crc":-810064056},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia.class","size":9863,"crc":1159340003},{"key":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion.class","size":2161,"crc":-1887116569},{"key":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions.class","name":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions.class","size":8429,"crc":-616353483},{"key":"androidx/activity/result/contract/ActivityResultContracts$RequestPermission.class","name":"androidx/activity/result/contract/ActivityResultContracts$RequestPermission.class","size":5298,"crc":1898056814},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion.class","size":1121,"crc":-1011296392},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult.class","size":2895,"crc":-733491017},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult$Companion.class","size":1241,"crc":1993673346},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult.class","size":3601,"crc":-2089542287},{"key":"androidx/activity/result/contract/ActivityResultContracts$TakePicture.class","name":"androidx/activity/result/contract/ActivityResultContracts$TakePicture.class","size":3550,"crc":1431122998},{"key":"androidx/activity/result/contract/ActivityResultContracts$TakePicturePreview.class","name":"androidx/activity/result/contract/ActivityResultContracts$TakePicturePreview.class","size":4112,"crc":-932070601},{"key":"androidx/activity/result/contract/ActivityResultContracts$TakeVideo.class","name":"androidx/activity/result/contract/ActivityResultContracts$TakeVideo.class","size":4558,"crc":-61038197},{"key":"androidx/activity/result/contract/ActivityResultContracts.class","name":"androidx/activity/result/contract/ActivityResultContracts.class","size":2507,"crc":937485645},{"key":"META-INF/activity_release.kotlin_module","name":"META-INF/activity_release.kotlin_module","size":393,"crc":921419579},{"key":"META-INF/androidx.activity_activity.version","name":"META-INF/androidx.activity_activity.version","size":6,"crc":-2139691038}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/pBOqCO0ZxOLBNlwLcBkq_w== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/pBOqCO0ZxOLBNlwLcBkq_w== new file mode 100644 index 0000000..a84a1a2 --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/pBOqCO0ZxOLBNlwLcBkq_w== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/LifecycleRegistry$Companion.class","name":"androidx/lifecycle/LifecycleRegistry$Companion.class","size":2203,"crc":881149842},{"key":"androidx/lifecycle/LifecycleRegistry$ObserverWithState.class","name":"androidx/lifecycle/LifecycleRegistry$ObserverWithState.class","size":3221,"crc":577649636},{"key":"androidx/lifecycle/LifecycleRegistry.class","name":"androidx/lifecycle/LifecycleRegistry.class","size":11316,"crc":1825754494},{"key":"androidx/lifecycle/ReportFragment$ActivityInitializationListener.class","name":"androidx/lifecycle/ReportFragment$ActivityInitializationListener.class","size":672,"crc":137325557},{"key":"androidx/lifecycle/ReportFragment$Companion.class","name":"androidx/lifecycle/ReportFragment$Companion.class","size":3889,"crc":353864254},{"key":"androidx/lifecycle/ReportFragment$LifecycleCallbacks$Companion.class","name":"androidx/lifecycle/ReportFragment$LifecycleCallbacks$Companion.class","size":1657,"crc":-2035159275},{"key":"androidx/lifecycle/ReportFragment$LifecycleCallbacks.class","name":"androidx/lifecycle/ReportFragment$LifecycleCallbacks.class","size":4134,"crc":-1042517223},{"key":"androidx/lifecycle/ReportFragment.class","name":"androidx/lifecycle/ReportFragment.class","size":4770,"crc":-1685581092},{"key":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$1.class","name":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$1.class","size":1786,"crc":1189804573},{"key":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$2.class","name":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$2.class","size":1957,"crc":1482960673},{"key":"androidx/lifecycle/ViewTreeLifecycleOwner.class","name":"androidx/lifecycle/ViewTreeLifecycleOwner.class","size":2382,"crc":-1814616098},{"key":"androidx/lifecycle/LifecycleRegistryOwner.class","name":"androidx/lifecycle/LifecycleRegistryOwner.class","size":628,"crc":-858790333},{"key":"META-INF/androidx.lifecycle_lifecycle-runtime.version","name":"META-INF/androidx.lifecycle_lifecycle-runtime.version","size":72,"crc":1585985631},{"key":"META-INF/lifecycle-runtime_release.kotlin_module","name":"META-INF/lifecycle-runtime_release.kotlin_module","size":70,"crc":1413782649}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vhTIbA9a+oTs8hGAf+0uiw== b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vhTIbA9a+oTs8hGAf+0uiw== new file mode 100644 index 0000000..8a0df3a --- /dev/null +++ b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vhTIbA9a+oTs8hGAf+0uiw== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":110,"crc":507365977},{"key":"META-INF/kotlinx-coroutines-core.kotlin_module","name":"META-INF/kotlinx-coroutines-core.kotlin_module","size":2759,"crc":-760007769},{"key":"kotlinx/coroutines/BlockingEventLoop.class","name":"kotlinx/coroutines/BlockingEventLoop.class","size":971,"crc":-696097375},{"key":"kotlinx/coroutines/CoroutineContextKt$hasCopyableElements$1.class","name":"kotlinx/coroutines/CoroutineContextKt$hasCopyableElements$1.class","size":1861,"crc":-1090292545},{"key":"kotlinx/coroutines/AwaitAll.class","name":"kotlinx/coroutines/AwaitAll.class","size":5615,"crc":1766184771},{"key":"kotlinx/coroutines/CompletionHandlerKt.class","name":"kotlinx/coroutines/CompletionHandlerKt.class","size":2118,"crc":-1334012165},{"key":"kotlinx/coroutines/AwaitAll$AwaitAllNode.class","name":"kotlinx/coroutines/AwaitAll$AwaitAllNode.class","size":5036,"crc":-1656713446},{"key":"kotlinx/coroutines/JobSupport$Finishing.class","name":"kotlinx/coroutines/JobSupport$Finishing.class","size":5597,"crc":2025293751},{"key":"kotlinx/coroutines/ChildHandle.class","name":"kotlinx/coroutines/ChildHandle.class","size":1227,"crc":-1907314624},{"key":"kotlinx/coroutines/scheduling/TaskImpl.class","name":"kotlinx/coroutines/scheduling/TaskImpl.class","size":2122,"crc":-445108499},{"key":"kotlinx/coroutines/scheduling/SchedulerTimeSource.class","name":"kotlinx/coroutines/scheduling/SchedulerTimeSource.class","size":596,"crc":-428080241},{"key":"kotlinx/coroutines/scheduling/UnlimitedIoScheduler.class","name":"kotlinx/coroutines/scheduling/UnlimitedIoScheduler.class","size":1770,"crc":-155515436},{"key":"kotlinx/coroutines/scheduling/NanoTimeSource.class","name":"kotlinx/coroutines/scheduling/NanoTimeSource.class","size":922,"crc":-246161370},{"key":"kotlinx/coroutines/scheduling/TaskContext.class","name":"kotlinx/coroutines/scheduling/TaskContext.class","size":511,"crc":1070461374},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler.class","size":23174,"crc":-161143167},{"key":"kotlinx/coroutines/scheduling/Task.class","name":"kotlinx/coroutines/scheduling/Task.class","size":1476,"crc":-1144169771},{"key":"kotlinx/coroutines/scheduling/ExperimentalCoroutineDispatcher.class","name":"kotlinx/coroutines/scheduling/ExperimentalCoroutineDispatcher.class","size":7160,"crc":1451532986},{"key":"kotlinx/coroutines/scheduling/SchedulerCoroutineDispatcher.class","name":"kotlinx/coroutines/scheduling/SchedulerCoroutineDispatcher.class","size":4036,"crc":-713224338},{"key":"kotlinx/coroutines/scheduling/LimitingDispatcher.class","name":"kotlinx/coroutines/scheduling/LimitingDispatcher.class","size":4899,"crc":1775256756},{"key":"kotlinx/coroutines/scheduling/DefaultScheduler.class","name":"kotlinx/coroutines/scheduling/DefaultScheduler.class","size":1553,"crc":-1275149645},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$WorkerState.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$WorkerState.class","size":1825,"crc":1101809499},{"key":"kotlinx/coroutines/scheduling/CoroutineSchedulerKt.class","name":"kotlinx/coroutines/scheduling/CoroutineSchedulerKt.class","size":1145,"crc":1177728420},{"key":"kotlinx/coroutines/scheduling/GlobalQueue.class","name":"kotlinx/coroutines/scheduling/GlobalQueue.class","size":776,"crc":26911821},{"key":"kotlinx/coroutines/scheduling/WorkQueue.class","name":"kotlinx/coroutines/scheduling/WorkQueue.class","size":8082,"crc":-13143815},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$WhenMappings.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$WhenMappings.class","size":887,"crc":651200093},{"key":"kotlinx/coroutines/scheduling/DefaultIoScheduler.class","name":"kotlinx/coroutines/scheduling/DefaultIoScheduler.class","size":3248,"crc":-216539486},{"key":"kotlinx/coroutines/scheduling/WorkQueueKt.class","name":"kotlinx/coroutines/scheduling/WorkQueueKt.class","size":671,"crc":1119063975},{"key":"kotlinx/coroutines/scheduling/TaskContextImpl.class","name":"kotlinx/coroutines/scheduling/TaskContextImpl.class","size":914,"crc":-191034776},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$Worker.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$Worker.class","size":14304,"crc":-797856313},{"key":"kotlinx/coroutines/scheduling/TasksKt.class","name":"kotlinx/coroutines/scheduling/TasksKt.class","size":3023,"crc":921007332},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$Companion.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$Companion.class","size":1497,"crc":771515165},{"key":"kotlinx/coroutines/ThreadContextElement.class","name":"kotlinx/coroutines/ThreadContextElement.class","size":1263,"crc":-573590326},{"key":"kotlinx/coroutines/JobCancellingNode.class","name":"kotlinx/coroutines/JobCancellingNode.class","size":564,"crc":1007825873},{"key":"kotlinx/coroutines/ThreadState.class","name":"kotlinx/coroutines/ThreadState.class","size":4406,"crc":-985680404},{"key":"kotlinx/coroutines/ChildJob.class","name":"kotlinx/coroutines/ChildJob.class","size":1015,"crc":1474806209},{"key":"kotlinx/coroutines/NotCompleted.class","name":"kotlinx/coroutines/NotCompleted.class","size":383,"crc":851788003},{"key":"kotlinx/coroutines/CoroutineId$Key.class","name":"kotlinx/coroutines/CoroutineId$Key.class","size":1041,"crc":-1237181739},{"key":"kotlinx/coroutines/Job$DefaultImpls.class","name":"kotlinx/coroutines/Job$DefaultImpls.class","size":4465,"crc":-561797077},{"key":"kotlinx/coroutines/BlockingCoroutine.class","name":"kotlinx/coroutines/BlockingCoroutine.class","size":4111,"crc":-1374224114},{"key":"kotlinx/coroutines/ThreadContextElementKt.class","name":"kotlinx/coroutines/ThreadContextElementKt.class","size":4349,"crc":-912719937},{"key":"kotlinx/coroutines/JobKt__JobKt.class","name":"kotlinx/coroutines/JobKt__JobKt.class","size":10389,"crc":-1714412813},{"key":"kotlinx/coroutines/CoroutineDispatcher$Key.class","name":"kotlinx/coroutines/CoroutineDispatcher$Key.class","size":1666,"crc":1104601869},{"key":"kotlinx/coroutines/CoroutineDispatcher.class","name":"kotlinx/coroutines/CoroutineDispatcher.class","size":5422,"crc":1520798232},{"key":"kotlinx/coroutines/TimeoutKt.class","name":"kotlinx/coroutines/TimeoutKt.class","size":6419,"crc":-1089565792},{"key":"kotlinx/coroutines/Job.class","name":"kotlinx/coroutines/Job.class","size":3818,"crc":-942414257},{"key":"kotlinx/coroutines/InterruptibleKt$runInterruptible$2.class","name":"kotlinx/coroutines/InterruptibleKt$runInterruptible$2.class","size":3671,"crc":-1602413699},{"key":"kotlinx/coroutines/UndispatchedMarker.class","name":"kotlinx/coroutines/UndispatchedMarker.class","size":3165,"crc":-1086143584},{"key":"kotlinx/coroutines/InternalCoroutinesApi.class","name":"kotlinx/coroutines/InternalCoroutinesApi.class","size":1392,"crc":-606727820},{"key":"kotlinx/coroutines/CompletionHandlerException.class","name":"kotlinx/coroutines/CompletionHandlerException.class","size":980,"crc":934650121},{"key":"kotlinx/coroutines/JobSupport$children$1.class","name":"kotlinx/coroutines/JobSupport$children$1.class","size":5469,"crc":-2117161266},{"key":"kotlinx/coroutines/SupervisorCoroutine.class","name":"kotlinx/coroutines/SupervisorCoroutine.class","size":1343,"crc":52795980},{"key":"kotlinx/coroutines/InvokeOnCancelling.class","name":"kotlinx/coroutines/InvokeOnCancelling.class","size":2249,"crc":1779663314},{"key":"kotlinx/coroutines/CoroutineContextKt$foldCopies$folded$1.class","name":"kotlinx/coroutines/CoroutineContextKt$foldCopies$folded$1.class","size":3039,"crc":2007852724},{"key":"kotlinx/coroutines/DelayKt$awaitCancellation$1.class","name":"kotlinx/coroutines/DelayKt$awaitCancellation$1.class","size":1409,"crc":163241896},{"key":"kotlinx/coroutines/DelayKt.class","name":"kotlinx/coroutines/DelayKt.class","size":5419,"crc":-714909307},{"key":"kotlinx/coroutines/DefaultExecutorKt.class","name":"kotlinx/coroutines/DefaultExecutorKt.class","size":1595,"crc":1173233832},{"key":"kotlinx/coroutines/CompletableDeferredImpl.class","name":"kotlinx/coroutines/CompletableDeferredImpl.class","size":3715,"crc":1009206403},{"key":"kotlinx/coroutines/CompletableDeferred$DefaultImpls.class","name":"kotlinx/coroutines/CompletableDeferred$DefaultImpls.class","size":4027,"crc":957801701},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key$1.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key$1.class","size":1739,"crc":124375904},{"key":"kotlinx/coroutines/internal/OnUndeliveredElementKt.class","name":"kotlinx/coroutines/internal/OnUndeliveredElementKt.class","size":4633,"crc":-924084178},{"key":"kotlinx/coroutines/internal/InternalAnnotationsKt.class","name":"kotlinx/coroutines/internal/InternalAnnotationsKt.class","size":539,"crc":831584083},{"key":"kotlinx/coroutines/internal/WeakMapCtorCache.class","name":"kotlinx/coroutines/internal/WeakMapCtorCache.class","size":3729,"crc":-807551598},{"key":"kotlinx/coroutines/internal/ConcurrentKt.class","name":"kotlinx/coroutines/internal/ConcurrentKt.class","size":3633,"crc":1833924022},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$3.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$3.class","size":3212,"crc":1020037747},{"key":"kotlinx/coroutines/internal/ClassValueCtorCache$cache$1.class","name":"kotlinx/coroutines/internal/ClassValueCtorCache$cache$1.class","size":1876,"crc":-1150273468},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueCore.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueCore.class","size":11486,"crc":1549571242},{"key":"kotlinx/coroutines/internal/ThreadState.class","name":"kotlinx/coroutines/internal/ThreadState.class","size":2231,"crc":-2065411649},{"key":"kotlinx/coroutines/internal/AtomicDesc.class","name":"kotlinx/coroutines/internal/AtomicDesc.class","size":1902,"crc":-703052955},{"key":"kotlinx/coroutines/internal/DispatchedContinuation.class","name":"kotlinx/coroutines/internal/DispatchedContinuation.class","size":17181,"crc":538458844},{"key":"kotlinx/coroutines/internal/ArrayQueue.class","name":"kotlinx/coroutines/internal/ArrayQueue.class","size":2408,"crc":1907166009},{"key":"kotlinx/coroutines/internal/DispatchedContinuationKt.class","name":"kotlinx/coroutines/internal/DispatchedContinuationKt.class","size":11887,"crc":1978421437},{"key":"kotlinx/coroutines/internal/SystemPropsKt__SystemPropsKt.class","name":"kotlinx/coroutines/internal/SystemPropsKt__SystemPropsKt.class","size":1346,"crc":1365447964},{"key":"kotlinx/coroutines/internal/Removed.class","name":"kotlinx/coroutines/internal/Removed.class","size":1316,"crc":1693402665},{"key":"kotlinx/coroutines/internal/ThreadContextKt$findOne$1.class","name":"kotlinx/coroutines/internal/ThreadContextKt$findOne$1.class","size":2035,"crc":184197122},{"key":"kotlinx/coroutines/internal/MainDispatchersKt.class","name":"kotlinx/coroutines/internal/MainDispatchersKt.class","size":3773,"crc":746269773},{"key":"kotlinx/coroutines/internal/StackTraceRecoveryKt.class","name":"kotlinx/coroutines/internal/StackTraceRecoveryKt.class","size":13962,"crc":40387489},{"key":"kotlinx/coroutines/internal/ThreadLocalElement.class","name":"kotlinx/coroutines/internal/ThreadLocalElement.class","size":4976,"crc":296764247},{"key":"kotlinx/coroutines/internal/OpDescriptor.class","name":"kotlinx/coroutines/internal/OpDescriptor.class","size":1898,"crc":-634159287},{"key":"kotlinx/coroutines/internal/FastServiceLoader.class","name":"kotlinx/coroutines/internal/FastServiceLoader.class","size":13260,"crc":-719839065},{"key":"kotlinx/coroutines/internal/AtomicOp.class","name":"kotlinx/coroutines/internal/AtomicOp.class","size":3361,"crc":426338367},{"key":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcher.class","name":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcher.class","size":5241,"crc":-1452511009},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$makeCondAddOp$1.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$makeCondAddOp$1.class","size":2527,"crc":-1582901542},{"key":"kotlinx/coroutines/internal/ConcurrentLinkedListNode.class","name":"kotlinx/coroutines/internal/ConcurrentLinkedListNode.class","size":5555,"crc":1095592577},{"key":"kotlinx/coroutines/internal/SynchronizedKt.class","name":"kotlinx/coroutines/internal/SynchronizedKt.class","size":1569,"crc":-2107935133},{"key":"kotlinx/coroutines/internal/MainDispatcherFactory$DefaultImpls.class","name":"kotlinx/coroutines/internal/MainDispatcherFactory$DefaultImpls.class","size":810,"crc":1056042703},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueue.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueue.class","size":3906,"crc":-1066065202},{"key":"kotlinx/coroutines/internal/ContextScope.class","name":"kotlinx/coroutines/internal/ContextScope.class","size":1495,"crc":2041547333},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt.class","size":8307,"crc":-647017180},{"key":"kotlinx/coroutines/internal/ThreadContextKt.class","name":"kotlinx/coroutines/internal/ThreadContextKt.class","size":4093,"crc":1216513800},{"key":"kotlinx/coroutines/internal/Symbol.class","name":"kotlinx/coroutines/internal/Symbol.class","size":1491,"crc":-1704582009},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$2.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$2.class","size":3016,"crc":-10759348},{"key":"kotlinx/coroutines/internal/MainDispatcherFactory.class","name":"kotlinx/coroutines/internal/MainDispatcherFactory.class","size":1270,"crc":-1176821490},{"key":"kotlinx/coroutines/internal/ConcurrentLinkedListKt.class","name":"kotlinx/coroutines/internal/ConcurrentLinkedListKt.class","size":4565,"crc":1627817634},{"key":"kotlinx/coroutines/internal/FastServiceLoaderKt.class","name":"kotlinx/coroutines/internal/FastServiceLoaderKt.class","size":1391,"crc":-1130935643},{"key":"kotlinx/coroutines/internal/LockFreeLinkedList_commonKt.class","name":"kotlinx/coroutines/internal/LockFreeLinkedList_commonKt.class","size":823,"crc":-1073458923},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$$inlined$sortedByDescending$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$$inlined$sortedByDescending$1.class","size":2199,"crc":968235207},{"key":"kotlinx/coroutines/internal/SystemPropsKt__SystemProps_commonKt.class","name":"kotlinx/coroutines/internal/SystemPropsKt__SystemProps_commonKt.class","size":2563,"crc":-2141952487},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$1.class","size":3070,"crc":1162497321},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AddLastDesc.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AddLastDesc.class","size":4904,"crc":-1487961198},{"key":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcherFactory.class","name":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcherFactory.class","size":2078,"crc":-1757143835},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$4.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$4.class","size":3126,"crc":-285531946},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$nullResult$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$nullResult$1.class","size":1475,"crc":-627350356},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AbstractAtomicDesc.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AbstractAtomicDesc.class","size":6617,"crc":1311874585},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$toString$1.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$toString$1.class","size":1178,"crc":-844616956},{"key":"kotlinx/coroutines/internal/SegmentOrClosed.class","name":"kotlinx/coroutines/internal/SegmentOrClosed.class","size":3647,"crc":1825654056},{"key":"kotlinx/coroutines/internal/MainDispatcherLoader.class","name":"kotlinx/coroutines/internal/MainDispatcherLoader.class","size":3822,"crc":1493280752},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListHead.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListHead.class","size":2919,"crc":1231359252},{"key":"kotlinx/coroutines/internal/CtorCache.class","name":"kotlinx/coroutines/internal/CtorCache.class","size":1050,"crc":1825780299},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$RemoveFirstDesc.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$RemoveFirstDesc.class","size":5946,"crc":1286943442},{"key":"kotlinx/coroutines/internal/ScopeCoroutine.class","name":"kotlinx/coroutines/internal/ScopeCoroutine.class","size":3576,"crc":-2059862413},{"key":"kotlinx/coroutines/internal/ThreadSafeHeap.class","name":"kotlinx/coroutines/internal/ThreadSafeHeap.class","size":9704,"crc":734401709},{"key":"kotlinx/coroutines/internal/OnUndeliveredElementKt$bindCancellationFun$1.class","name":"kotlinx/coroutines/internal/OnUndeliveredElementKt$bindCancellationFun$1.class","size":2047,"crc":950849509},{"key":"kotlinx/coroutines/internal/ThreadLocalKey.class","name":"kotlinx/coroutines/internal/ThreadLocalKey.class","size":2787,"crc":497955001},{"key":"kotlinx/coroutines/internal/LocalAtomicsKt.class","name":"kotlinx/coroutines/internal/LocalAtomicsKt.class","size":501,"crc":-1339894872},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListKt.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListKt.class","size":2669,"crc":1932146073},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$CondAddOp.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$CondAddOp.class","size":2478,"crc":884694130},{"key":"kotlinx/coroutines/internal/Concurrent_commonKt.class","name":"kotlinx/coroutines/internal/Concurrent_commonKt.class","size":408,"crc":-1756661395},{"key":"kotlinx/coroutines/internal/SystemPropsKt.class","name":"kotlinx/coroutines/internal/SystemPropsKt.class","size":1531,"crc":-1819604373},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Placeholder.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Placeholder.class","size":845,"crc":137116209},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$safeCtor$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$safeCtor$1.class","size":2482,"crc":-2059390419},{"key":"kotlinx/coroutines/internal/InlineList.class","name":"kotlinx/coroutines/internal/InlineList.class","size":4728,"crc":-1322128889},{"key":"kotlinx/coroutines/internal/ResizableAtomicArray.class","name":"kotlinx/coroutines/internal/ResizableAtomicArray.class","size":2028,"crc":-2095457278},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Companion.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Companion.class","size":3132,"crc":-741314195},{"key":"kotlinx/coroutines/internal/UndeliveredElementException.class","name":"kotlinx/coroutines/internal/UndeliveredElementException.class","size":917,"crc":-846038072},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode.class","size":14469,"crc":1486998549},{"key":"kotlinx/coroutines/internal/Segment.class","name":"kotlinx/coroutines/internal/Segment.class","size":3306,"crc":824787712},{"key":"kotlinx/coroutines/internal/ThreadContextKt$countAll$1.class","name":"kotlinx/coroutines/internal/ThreadContextKt$countAll$1.class","size":1947,"crc":1777859163},{"key":"kotlinx/coroutines/internal/ThreadSafeHeapNode.class","name":"kotlinx/coroutines/internal/ThreadSafeHeapNode.class","size":1085,"crc":1457693813},{"key":"kotlinx/coroutines/internal/ThreadContextKt$updateState$1.class","name":"kotlinx/coroutines/internal/ThreadContextKt$updateState$1.class","size":2127,"crc":-1821787518},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$PrepareOp.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$PrepareOp.class","size":5081,"crc":-409851808},{"key":"kotlinx/coroutines/internal/LimitedDispatcher.class","name":"kotlinx/coroutines/internal/LimitedDispatcher.class","size":7243,"crc":-2085062363},{"key":"kotlinx/coroutines/internal/LimitedDispatcherKt.class","name":"kotlinx/coroutines/internal/LimitedDispatcherKt.class","size":1231,"crc":-1828768816},{"key":"kotlinx/coroutines/internal/ProbesSupportKt.class","name":"kotlinx/coroutines/internal/ProbesSupportKt.class","size":994,"crc":284462051},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueKt.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueKt.class","size":447,"crc":-30561500},{"key":"kotlinx/coroutines/internal/AtomicKt.class","name":"kotlinx/coroutines/internal/AtomicKt.class","size":942,"crc":-151798316},{"key":"kotlinx/coroutines/internal/ClassValueCtorCache.class","name":"kotlinx/coroutines/internal/ClassValueCtorCache.class","size":1712,"crc":-24217249},{"key":"kotlinx/coroutines/internal/LocalAtomics_commonKt.class","name":"kotlinx/coroutines/internal/LocalAtomics_commonKt.class","size":1104,"crc":-2031219583},{"key":"kotlinx/coroutines/internal/ThreadLocalKt.class","name":"kotlinx/coroutines/internal/ThreadLocalKt.class","size":512,"crc":-351302426},{"key":"kotlinx/coroutines/ThreadLocalEventLoop.class","name":"kotlinx/coroutines/ThreadLocalEventLoop.class","size":2377,"crc":-1738846729},{"key":"kotlinx/coroutines/AbstractCoroutine.class","name":"kotlinx/coroutines/AbstractCoroutine.class","size":6093,"crc":500524761},{"key":"kotlinx/coroutines/StandaloneCoroutine.class","name":"kotlinx/coroutines/StandaloneCoroutine.class","size":1422,"crc":1814851551},{"key":"kotlinx/coroutines/NonCancellable.class","name":"kotlinx/coroutines/NonCancellable.class","size":6536,"crc":-2141250695},{"key":"kotlinx/coroutines/ExperimentalCoroutinesApi.class","name":"kotlinx/coroutines/ExperimentalCoroutinesApi.class","size":1390,"crc":-1264958816},{"key":"kotlinx/coroutines/CompletedContinuation.class","name":"kotlinx/coroutines/CompletedContinuation.class","size":6568,"crc":-665622920},{"key":"kotlinx/coroutines/CancelHandler.class","name":"kotlinx/coroutines/CancelHandler.class","size":679,"crc":211607540},{"key":"kotlinx/coroutines/YieldKt.class","name":"kotlinx/coroutines/YieldKt.class","size":2718,"crc":-1067428563},{"key":"kotlinx/coroutines/ObsoleteCoroutinesApi.class","name":"kotlinx/coroutines/ObsoleteCoroutinesApi.class","size":928,"crc":-1627944829},{"key":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc$PrepareOp.class","name":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc$PrepareOp.class","size":2517,"crc":707018921},{"key":"kotlinx/coroutines/sync/MutexImpl$UnlockOp.class","name":"kotlinx/coroutines/sync/MutexImpl$UnlockOp.class","size":2601,"crc":1365583186},{"key":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc.class","name":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc.class","size":2895,"crc":-1038533472},{"key":"kotlinx/coroutines/sync/Mutex.class","name":"kotlinx/coroutines/sync/Mutex.class","size":1532,"crc":1688282973},{"key":"kotlinx/coroutines/sync/SemaphoreKt.class","name":"kotlinx/coroutines/sync/SemaphoreKt.class","size":5538,"crc":-380370973},{"key":"kotlinx/coroutines/sync/SemaphoreImpl.class","name":"kotlinx/coroutines/sync/SemaphoreImpl.class","size":15709,"crc":2053920610},{"key":"kotlinx/coroutines/sync/Mutex$DefaultImpls.class","name":"kotlinx/coroutines/sync/Mutex$DefaultImpls.class","size":1723,"crc":1443050998},{"key":"kotlinx/coroutines/sync/MutexKt$withLock$1.class","name":"kotlinx/coroutines/sync/MutexKt$withLock$1.class","size":1802,"crc":1792798761},{"key":"kotlinx/coroutines/sync/MutexKt.class","name":"kotlinx/coroutines/sync/MutexKt.class","size":5486,"crc":-389369958},{"key":"kotlinx/coroutines/sync/CancelSemaphoreAcquisitionHandler.class","name":"kotlinx/coroutines/sync/CancelSemaphoreAcquisitionHandler.class","size":2048,"crc":-738594572},{"key":"kotlinx/coroutines/sync/Semaphore.class","name":"kotlinx/coroutines/sync/Semaphore.class","size":936,"crc":1006464878},{"key":"kotlinx/coroutines/sync/MutexImpl$LockCont.class","name":"kotlinx/coroutines/sync/MutexImpl$LockCont.class","size":2815,"crc":-1481058305},{"key":"kotlinx/coroutines/sync/Empty.class","name":"kotlinx/coroutines/sync/Empty.class","size":1170,"crc":-813433960},{"key":"kotlinx/coroutines/sync/MutexImpl$LockedQueue.class","name":"kotlinx/coroutines/sync/MutexImpl$LockedQueue.class","size":1392,"crc":-1625935044},{"key":"kotlinx/coroutines/sync/SemaphoreKt$withPermit$1.class","name":"kotlinx/coroutines/sync/SemaphoreKt$withPermit$1.class","size":1804,"crc":1910462372},{"key":"kotlinx/coroutines/sync/MutexImpl.class","name":"kotlinx/coroutines/sync/MutexImpl.class","size":12815,"crc":300065842},{"key":"kotlinx/coroutines/sync/MutexImpl$LockCont$tryResumeLockWaiter$1.class","name":"kotlinx/coroutines/sync/MutexImpl$LockCont$tryResumeLockWaiter$1.class","size":1736,"crc":-1210905959},{"key":"kotlinx/coroutines/sync/MutexImpl$LockSelect$completeResumeLockWaiter$1.class","name":"kotlinx/coroutines/sync/MutexImpl$LockSelect$completeResumeLockWaiter$1.class","size":1940,"crc":-2107906764},{"key":"kotlinx/coroutines/sync/MutexImpl$lockSuspend$2$1$1.class","name":"kotlinx/coroutines/sync/MutexImpl$lockSuspend$2$1$1.class","size":1604,"crc":1715399374},{"key":"kotlinx/coroutines/sync/SemaphoreSegment.class","name":"kotlinx/coroutines/sync/SemaphoreSegment.class","size":3537,"crc":1440045778},{"key":"kotlinx/coroutines/sync/MutexImpl$LockWaiter.class","name":"kotlinx/coroutines/sync/MutexImpl$LockWaiter.class","size":2082,"crc":-1778310076},{"key":"kotlinx/coroutines/sync/MutexImpl$LockSelect.class","name":"kotlinx/coroutines/sync/MutexImpl$LockSelect.class","size":3514,"crc":-910389636},{"key":"kotlinx/coroutines/sync/SemaphoreImpl$onCancellationRelease$1.class","name":"kotlinx/coroutines/sync/SemaphoreImpl$onCancellationRelease$1.class","size":1467,"crc":-2019237248},{"key":"kotlinx/coroutines/CoroutineExceptionHandler$Key.class","name":"kotlinx/coroutines/CoroutineExceptionHandler$Key.class","size":1017,"crc":-1288288886},{"key":"kotlinx/coroutines/MainCoroutineDispatcher.class","name":"kotlinx/coroutines/MainCoroutineDispatcher.class","size":2189,"crc":-336463853},{"key":"kotlinx/coroutines/IncompleteStateBox.class","name":"kotlinx/coroutines/IncompleteStateBox.class","size":843,"crc":-922767742},{"key":"kotlinx/coroutines/CopyableThreadContextElement$DefaultImpls.class","name":"kotlinx/coroutines/CopyableThreadContextElement$DefaultImpls.class","size":3150,"crc":-538743595},{"key":"kotlinx/coroutines/BuildersKt__BuildersKt.class","name":"kotlinx/coroutines/BuildersKt__BuildersKt.class","size":4084,"crc":410138800},{"key":"kotlinx/coroutines/SelectJoinOnCompletion.class","name":"kotlinx/coroutines/SelectJoinOnCompletion.class","size":2447,"crc":1830123532},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedTask.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedTask.class","size":5858,"crc":2129700531},{"key":"kotlinx/coroutines/InvokeOnCompletion.class","name":"kotlinx/coroutines/InvokeOnCompletion.class","size":1742,"crc":180078025},{"key":"kotlinx/coroutines/SupervisorJobImpl.class","name":"kotlinx/coroutines/SupervisorJobImpl.class","size":991,"crc":79491680},{"key":"kotlinx/coroutines/InvokeOnCancel.class","name":"kotlinx/coroutines/InvokeOnCancel.class","size":2245,"crc":-77048997},{"key":"kotlinx/coroutines/CompletionHandler_commonKt.class","name":"kotlinx/coroutines/CompletionHandler_commonKt.class","size":1136,"crc":1135284800},{"key":"kotlinx/coroutines/NodeList.class","name":"kotlinx/coroutines/NodeList.class","size":3104,"crc":1063184151},{"key":"kotlinx/coroutines/ChildHandle$DefaultImpls.class","name":"kotlinx/coroutines/ChildHandle$DefaultImpls.class","size":500,"crc":1234363492},{"key":"kotlinx/coroutines/NonDisposableHandle.class","name":"kotlinx/coroutines/NonDisposableHandle.class","size":1628,"crc":-383516079},{"key":"kotlinx/coroutines/UndispatchedCoroutine.class","name":"kotlinx/coroutines/UndispatchedCoroutine.class","size":5082,"crc":-351582573},{"key":"kotlinx/coroutines/DelicateCoroutinesApi.class","name":"kotlinx/coroutines/DelicateCoroutinesApi.class","size":1102,"crc":-2003119530},{"key":"kotlinx/coroutines/BuildersKt__Builders_commonKt.class","name":"kotlinx/coroutines/BuildersKt__Builders_commonKt.class","size":9294,"crc":734169821},{"key":"kotlinx/coroutines/CoroutineExceptionHandlerKt$CoroutineExceptionHandler$1.class","name":"kotlinx/coroutines/CoroutineExceptionHandlerKt$CoroutineExceptionHandler$1.class","size":2408,"crc":1977756254},{"key":"kotlinx/coroutines/SelectAwaitOnCompletion.class","name":"kotlinx/coroutines/SelectAwaitOnCompletion.class","size":2427,"crc":846896595},{"key":"kotlinx/coroutines/EventLoop.class","name":"kotlinx/coroutines/EventLoop.class","size":4716,"crc":160399577},{"key":"kotlinx/coroutines/CompletableJob.class","name":"kotlinx/coroutines/CompletableJob.class","size":772,"crc":-1355626754},{"key":"kotlinx/coroutines/CancelFutureOnCancel.class","name":"kotlinx/coroutines/CancelFutureOnCancel.class","size":1933,"crc":-1313407064},{"key":"kotlinx/coroutines/TimeoutCancellationException.class","name":"kotlinx/coroutines/TimeoutCancellationException.class","size":2299,"crc":-1389594442},{"key":"kotlinx/coroutines/CancellableContinuationKt.class","name":"kotlinx/coroutines/CancellableContinuationKt.class","size":6063,"crc":-735059939},{"key":"kotlinx/coroutines/CancellableContinuationImpl.class","name":"kotlinx/coroutines/CancellableContinuationImpl.class","size":27381,"crc":1574460388},{"key":"kotlinx/coroutines/JobNode.class","name":"kotlinx/coroutines/JobNode.class","size":2442,"crc":-547940579},{"key":"kotlinx/coroutines/ParentJob$DefaultImpls.class","name":"kotlinx/coroutines/ParentJob$DefaultImpls.class","size":3494,"crc":403864456},{"key":"kotlinx/coroutines/AwaitAll$DisposeHandlersOnCancel.class","name":"kotlinx/coroutines/AwaitAll$DisposeHandlersOnCancel.class","size":3118,"crc":-202775036},{"key":"kotlinx/coroutines/FlowPreview.class","name":"kotlinx/coroutines/FlowPreview.class","size":1470,"crc":-2050041154},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedResumeTask.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedResumeTask.class","size":2437,"crc":-1047277770},{"key":"kotlinx/coroutines/LazyStandaloneCoroutine.class","name":"kotlinx/coroutines/LazyStandaloneCoroutine.class","size":2070,"crc":-2018171866},{"key":"kotlinx/coroutines/BuildersKt.class","name":"kotlinx/coroutines/BuildersKt.class","size":4313,"crc":-1176186617},{"key":"kotlinx/coroutines/EventLoopKt.class","name":"kotlinx/coroutines/EventLoopKt.class","size":1691,"crc":1782633077},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$startWeakRefCleanerThread$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$startWeakRefCleanerThread$1.class","size":1398,"crc":1562350824},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core.class","size":7892,"crc":-331037494},{"key":"kotlinx/coroutines/debug/internal/Marked.class","name":"kotlinx/coroutines/debug/internal/Marked.class","size":823,"crc":-1706396840},{"key":"kotlinx/coroutines/debug/internal/StackTraceFrame.class","name":"kotlinx/coroutines/debug/internal/StackTraceFrame.class","size":1465,"crc":1903785437},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$creationStackTrace$1.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$creationStackTrace$1.class","size":4293,"crc":1769855814},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$entries$1.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$entries$1.class","size":1730,"crc":980109752},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$CoroutineOwner.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$CoroutineOwner.class","size":3375,"crc":-864841958},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap.class","size":7269,"crc":-261775327},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$keys$1.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$keys$1.class","size":1343,"crc":-139422760},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$SequenceNumberRefVolatile.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$SequenceNumberRefVolatile.class","size":241,"crc":535976931},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfo.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfo.class","size":3322,"crc":-334210659},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Entry.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Entry.class","size":1770,"crc":-1085186537},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$yieldFrames$1.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$yieldFrames$1.class","size":2164,"crc":719032877},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMapKt.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMapKt.class","size":2048,"crc":902897934},{"key":"kotlinx/coroutines/debug/internal/DebugProbesKt.class","name":"kotlinx/coroutines/debug/internal/DebugProbesKt.class","size":1575,"crc":-125814240},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpDebuggerInfo$$inlined$dumpCoroutinesInfoImpl$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpDebuggerInfo$$inlined$dumpCoroutinesInfoImpl$1.class","size":3329,"crc":2047296063},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core$KeyValueIterator.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core$KeyValueIterator.class","size":4056,"crc":-1599849854},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImplKt.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImplKt.class","size":658,"crc":-2062644350},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$lambda-19$$inlined$sortedBy$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$lambda-19$$inlined$sortedBy$1.class","size":2322,"crc":1357418801},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl.class","size":41217,"crc":935026194},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$1$3.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$1$3.class","size":3259,"crc":2018304127},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl.class","size":8910,"crc":-1938518447},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$1$2.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$1$2.class","size":2136,"crc":-332946333},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$lambda-12$$inlined$sortedBy$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$lambda-12$$inlined$sortedBy$1.class","size":2332,"crc":87670401},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfo$$inlined$dumpCoroutinesInfoImpl$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfo$$inlined$dumpCoroutinesInfoImpl$1.class","size":3355,"crc":1941047373},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$KeyValueSet.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$KeyValueSet.class","size":2409,"crc":-297667691},{"key":"kotlinx/coroutines/debug/internal/DebuggerInfo.class","name":"kotlinx/coroutines/debug/internal/DebuggerInfo.class","size":4055,"crc":1214310617},{"key":"kotlinx/coroutines/debug/internal/HashedWeakRef.class","name":"kotlinx/coroutines/debug/internal/HashedWeakRef.class","size":1334,"crc":-1180678584},{"key":"kotlinx/coroutines/debug/internal/AgentInstallationType.class","name":"kotlinx/coroutines/debug/internal/AgentInstallationType.class","size":1096,"crc":-109991897},{"key":"kotlinx/coroutines/debug/AgentPremain$DebugProbesTransformer.class","name":"kotlinx/coroutines/debug/AgentPremain$DebugProbesTransformer.class","size":2334,"crc":686459517},{"key":"kotlinx/coroutines/debug/AgentPremain.class","name":"kotlinx/coroutines/debug/AgentPremain.class","size":4326,"crc":-632720496},{"key":"kotlinx/coroutines/CopyableThreadContextElement.class","name":"kotlinx/coroutines/CopyableThreadContextElement.class","size":1419,"crc":-1702582766},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcherImpl.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcherImpl.class","size":7315,"crc":1341591640},{"key":"kotlinx/coroutines/EventLoop_commonKt.class","name":"kotlinx/coroutines/EventLoop_commonKt.class","size":1982,"crc":599502017},{"key":"kotlinx/coroutines/CoroutineName.class","name":"kotlinx/coroutines/CoroutineName.class","size":2629,"crc":-1876877377},{"key":"kotlinx/coroutines/Empty.class","name":"kotlinx/coroutines/Empty.class","size":1474,"crc":1804070017},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3$2.class","size":4462,"crc":-662959493},{"key":"kotlinx/coroutines/flow/SubscribedSharedFlow$collect$1.class","name":"kotlinx/coroutines/flow/SubscribedSharedFlow$collect$1.class","size":1791,"crc":1216002977},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$2.class","size":4249,"crc":-2073441410},{"key":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$1.class","name":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$1.class","size":4519,"crc":-1138365930},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1$1.class","size":1980,"crc":-1594580476},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$$inlined$unsafeFlow$1.class","size":3294,"crc":-44918616},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1$emit$1.class","size":1803,"crc":882280756},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2.class","size":3759,"crc":1641391340},{"key":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2$emit$1.class","name":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2$emit$1.class","size":1824,"crc":1933111334},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1.class","size":3878,"crc":-1964147231},{"key":"kotlinx/coroutines/flow/FlowKt__ContextKt.class","name":"kotlinx/coroutines/flow/FlowKt__ContextKt.class","size":5561,"crc":-1491320637},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$1.class","size":1792,"crc":1319993606},{"key":"kotlinx/coroutines/flow/FlowKt__ChannelsKt.class","name":"kotlinx/coroutines/flow/FlowKt__ChannelsKt.class","size":7847,"crc":-581636503},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1$emit$1.class","size":1811,"crc":1652815276},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$3.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$3.class","size":1631,"crc":1090696690},{"key":"kotlinx/coroutines/flow/SafeFlow.class","name":"kotlinx/coroutines/flow/SafeFlow.class","size":2367,"crc":1354479174},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt.class","size":22140,"crc":856366523},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$2.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$2.class","size":2687,"crc":1378975438},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1.class","size":2950,"crc":-589807012},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$1$1.class","size":3858,"crc":1291496123},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1$1.class","size":3966,"crc":-7263859},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1.class","size":3503,"crc":-2120074592},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1.class","size":4642,"crc":-1227882423},{"key":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$2.class","name":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$2.class","size":1755,"crc":-1793682528},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1.class","size":3365,"crc":-934331670},{"key":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultKeySelector$1.class","name":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultKeySelector$1.class","size":1213,"crc":-135672263},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt.class","size":8456,"crc":-1795869858},{"key":"kotlinx/coroutines/flow/StateFlowKt.class","name":"kotlinx/coroutines/flow/StateFlowKt.class","size":5049,"crc":1905278456},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5$1.class","size":2012,"crc":-914244902},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.class","size":4200,"crc":1874605700},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2.class","size":4022,"crc":-1665829227},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2$emit$1.class","size":1827,"crc":-1341274173},{"key":"kotlinx/coroutines/flow/CancellableFlowImpl.class","name":"kotlinx/coroutines/flow/CancellableFlowImpl.class","size":2161,"crc":-707424329},{"key":"kotlinx/coroutines/flow/SharingStarted.class","name":"kotlinx/coroutines/flow/SharingStarted.class","size":1234,"crc":812177547},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$1.class","size":3225,"crc":1957096301},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1.class","size":3955,"crc":-1172781798},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.class","size":5092,"crc":-881778178},{"key":"kotlinx/coroutines/flow/StartedWhileSubscribed.class","name":"kotlinx/coroutines/flow/StartedWhileSubscribed.class","size":4906,"crc":1452964570},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$1.class","size":1600,"crc":153201299},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3.class","size":4085,"crc":1605936426},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3.class","size":3957,"crc":981439157},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2$1.class","size":1912,"crc":89691461},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2.class","size":3349,"crc":1257642341},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$2.class","size":2372,"crc":1110779927},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10$1.class","size":2019,"crc":-125366843},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$3.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$3.class","size":1802,"crc":926070896},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1.class","size":4878,"crc":1400655779},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1.class","size":3552,"crc":-1042747201},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1.class","size":3505,"crc":-915657004},{"key":"kotlinx/coroutines/flow/FlowKt__CollectionKt.class","name":"kotlinx/coroutines/flow/FlowKt__CollectionKt.class","size":4003,"crc":1366896806},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9$1.class","size":2013,"crc":-694286030},{"key":"kotlinx/coroutines/flow/StartedLazily.class","name":"kotlinx/coroutines/flow/StartedLazily.class","size":1754,"crc":1658386360},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2$emit$1.class","size":1958,"crc":1278622704},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1.class","size":3511,"crc":2133860932},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$2.class","size":1768,"crc":-221655274},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4.class","size":3062,"crc":-1021603433},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$1.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$1.class","size":1598,"crc":-978449146},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2.class","size":3871,"crc":370899595},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1$emit$1.class","size":1896,"crc":-2010345789},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1$1.class","size":2167,"crc":-464027958},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2$1.class","size":1967,"crc":720888532},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1.class","size":3017,"crc":715439684},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$$inlined$unsafeFlow$1.class","size":3026,"crc":1348267160},{"key":"kotlinx/coroutines/flow/internal/AbstractSharedFlowSlot.class","name":"kotlinx/coroutines/flow/internal/AbstractSharedFlowSlot.class","size":1097,"crc":-1108333568},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1.class","size":7286,"crc":-1666483307},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1$emit$1.class","size":2103,"crc":-1388967129},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1.class","size":3007,"crc":1198681700},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1.class","size":3929,"crc":-2002898482},{"key":"kotlinx/coroutines/flow/internal/SafeCollectorKt$emitFun$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollectorKt$emitFun$1.class","size":2262,"crc":-129544059},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutineKt.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutineKt.class","size":3700,"crc":1618185436},{"key":"kotlinx/coroutines/flow/internal/AbortFlowException.class","name":"kotlinx/coroutines/flow/internal/AbortFlowException.class","size":2035,"crc":-1330897461},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$1.class","size":2152,"crc":-877375462},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$emit$1.class","size":2033,"crc":-1863203383},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1$emit$1.class","size":2107,"crc":-632667902},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$checkContext$result$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$checkContext$result$1.class","size":3671,"crc":-715288913},{"key":"kotlinx/coroutines/flow/internal/SafeCollector.class","name":"kotlinx/coroutines/flow/internal/SafeCollector.class","size":8320,"crc":-1622786479},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1.class","size":3045,"crc":51312606},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3.class","size":4584,"crc":-557180954},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$1$1.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$1$1.class","size":4213,"crc":791744545},{"key":"kotlinx/coroutines/flow/internal/DownstreamExceptionContext.class","name":"kotlinx/coroutines/flow/internal/DownstreamExceptionContext.class","size":2637,"crc":1264024905},{"key":"kotlinx/coroutines/flow/internal/StackFrameContinuation.class","name":"kotlinx/coroutines/flow/internal/StackFrameContinuation.class","size":2516,"crc":-136017429},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutine.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutine.class","size":1534,"crc":1219146097},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$1.class","size":4300,"crc":-2055495092},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2.class","size":4367,"crc":966286400},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$emit$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$emit$1.class","size":1986,"crc":-1470959163},{"key":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector$emitRef$1.class","name":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector$emitRef$1.class","size":3508,"crc":-1962499072},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1.class","size":4789,"crc":-2026185076},{"key":"kotlinx/coroutines/flow/internal/SendingCollector.class","name":"kotlinx/coroutines/flow/internal/SendingCollector.class","size":1993,"crc":608623739},{"key":"kotlinx/coroutines/flow/internal/NopCollector.class","name":"kotlinx/coroutines/flow/internal/NopCollector.class","size":1463,"crc":253057547},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1.class","size":4021,"crc":-1937016084},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2.class","size":8401,"crc":-1279229255},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1.class","size":4822,"crc":1484362954},{"key":"kotlinx/coroutines/flow/internal/SubscriptionCountStateFlow.class","name":"kotlinx/coroutines/flow/internal/SubscriptionCountStateFlow.class","size":2600,"crc":1043561147},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2.class","size":4842,"crc":300418194},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowOperator.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowOperator.class","size":6632,"crc":-1472769548},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest.class","size":5440,"crc":-1946120047},{"key":"kotlinx/coroutines/flow/internal/FusibleFlow.class","name":"kotlinx/coroutines/flow/internal/FusibleFlow.class","size":1364,"crc":-1065877425},{"key":"kotlinx/coroutines/flow/internal/NullSurrogateKt.class","name":"kotlinx/coroutines/flow/internal/NullSurrogateKt.class","size":1112,"crc":-393079039},{"key":"kotlinx/coroutines/flow/internal/SafeCollector$collectContextSize$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector$collectContextSize$1.class","size":1848,"crc":138113103},{"key":"kotlinx/coroutines/flow/internal/AbstractSharedFlowKt.class","name":"kotlinx/coroutines/flow/internal/AbstractSharedFlowKt.class","size":907,"crc":1885195784},{"key":"kotlinx/coroutines/flow/internal/CombineKt.class","name":"kotlinx/coroutines/flow/internal/CombineKt.class","size":4098,"crc":514903453},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge.class","size":6128,"crc":-310361549},{"key":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge$collectTo$2$1.class","name":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge$collectTo$2$1.class","size":4007,"crc":248573676},{"key":"kotlinx/coroutines/flow/internal/ChildCancelledException.class","name":"kotlinx/coroutines/flow/internal/ChildCancelledException.class","size":1659,"crc":-2142483679},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$1.class","size":6202,"crc":-1129896976},{"key":"kotlinx/coroutines/flow/internal/AbstractSharedFlow.class","name":"kotlinx/coroutines/flow/internal/AbstractSharedFlow.class","size":7170,"crc":519152849},{"key":"kotlinx/coroutines/flow/internal/SafeCollectorKt.class","name":"kotlinx/coroutines/flow/internal/SafeCollectorKt.class","size":1497,"crc":-1121802874},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$emit$1.class","size":2201,"crc":-2059140144},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowOperator$collectWithContextUndispatched$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowOperator$collectWithContextUndispatched$2.class","size":3897,"crc":255046340},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$2.class","size":4440,"crc":1052114},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowKt.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowKt.class","size":5578,"crc":772203618},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt.class","size":3875,"crc":-83574629},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1$collect$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1$collect$1.class","size":1945,"crc":-1195479950},{"key":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge.class","name":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge.class","size":5810,"crc":1740364340},{"key":"kotlinx/coroutines/flow/internal/NoOpContinuation.class","name":"kotlinx/coroutines/flow/internal/NoOpContinuation.class","size":1592,"crc":-866532069},{"key":"kotlinx/coroutines/flow/internal/ChannelFlow$collect$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlow$collect$2.class","size":4201,"crc":-134410741},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowOperatorImpl.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowOperatorImpl.class","size":3619,"crc":1080055282},{"key":"kotlinx/coroutines/flow/internal/ChannelFlow.class","name":"kotlinx/coroutines/flow/internal/ChannelFlow.class","size":9090,"crc":-797380023},{"key":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector.class","name":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector.class","size":2962,"crc":-1730372899},{"key":"kotlinx/coroutines/flow/internal/ChannelFlow$collectToFun$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlow$collectToFun$1.class","size":3668,"crc":-154425940},{"key":"kotlinx/coroutines/flow/internal/FusibleFlow$DefaultImpls.class","name":"kotlinx/coroutines/flow/internal/FusibleFlow$DefaultImpls.class","size":1308,"crc":-578076658},{"key":"kotlinx/coroutines/flow/internal/FlowExceptions_commonKt.class","name":"kotlinx/coroutines/flow/internal/FlowExceptions_commonKt.class","size":1472,"crc":1765264195},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$$inlined$unsafeFlow$1.class","size":3291,"crc":-1358928152},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$1.class","size":1666,"crc":680565332},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$switchMap$$inlined$flatMapLatest$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$switchMap$$inlined$flatMapLatest$1.class","size":3983,"crc":2077217265},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt.class","size":6164,"crc":-1883938087},{"key":"kotlinx/coroutines/flow/SharedFlowSlot.class","name":"kotlinx/coroutines/flow/SharedFlowSlot.class","size":2880,"crc":-1167652652},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2.class","size":3354,"crc":77249684},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10.class","size":4337,"crc":-79297357},{"key":"kotlinx/coroutines/flow/Flow.class","name":"kotlinx/coroutines/flow/Flow.class","size":979,"crc":-2015230820},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2.class","size":4630,"crc":2091697507},{"key":"kotlinx/coroutines/flow/CallbackFlowBuilder.class","name":"kotlinx/coroutines/flow/CallbackFlowBuilder.class","size":4847,"crc":1555046101},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2.class","size":3592,"crc":-418490640},{"key":"kotlinx/coroutines/flow/StartedEagerly.class","name":"kotlinx/coroutines/flow/StartedEagerly.class","size":1591,"crc":609066346},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1.class","size":3469,"crc":-516386375},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1.class","size":2891,"crc":423090531},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2.class","size":3027,"crc":-36066895},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1$1.class","size":1992,"crc":-1639961993},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$1.class","size":1782,"crc":1323445968},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1$emit$1.class","size":1918,"crc":955278562},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1.class","size":2989,"crc":1072978613},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1.class","size":4013,"crc":340448812},{"key":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2$emit$1.class","name":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2$emit$1.class","size":1850,"crc":-713266439},{"key":"kotlinx/coroutines/flow/FlowKt__DistinctKt.class","name":"kotlinx/coroutines/flow/FlowKt__DistinctKt.class","size":4366,"crc":96755728},{"key":"kotlinx/coroutines/flow/SharingStartedKt.class","name":"kotlinx/coroutines/flow/SharingStartedKt.class","size":1671,"crc":-986936157},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt.class","size":11388,"crc":-1089933560},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1$1.class","size":1778,"crc":-1502847376},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1$1.class","size":4119,"crc":799475135},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2$1.class","size":1924,"crc":1552965522},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$2.class","size":1756,"crc":-823073723},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$1.class","size":4202,"crc":-1317284166},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4.class","size":4690,"crc":-220860756},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$1$1.class","size":4299,"crc":2070967633},{"key":"kotlinx/coroutines/flow/SharedFlowImpl$collect$1.class","name":"kotlinx/coroutines/flow/SharedFlowImpl$collect$1.class","size":2004,"crc":318348221},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$2.class","size":4349,"crc":-1540471128},{"key":"kotlinx/coroutines/flow/ThrowingCollector.class","name":"kotlinx/coroutines/flow/ThrowingCollector.class","size":1495,"crc":-2131934527},{"key":"kotlinx/coroutines/flow/CancellableFlow.class","name":"kotlinx/coroutines/flow/CancellableFlow.class","size":567,"crc":1291270034},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2$1.class","size":1959,"crc":123521167},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2.class","size":6865,"crc":-1873453678},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2.class","size":3716,"crc":316023179},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$3.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$3.class","size":4121,"crc":222956011},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9.class","size":4297,"crc":749174194},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1$1.class","size":2108,"crc":2098540140},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1.class","size":3870,"crc":-870223914},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt.class","size":7752,"crc":47261541},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$fixedPeriodTicker$3.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$fixedPeriodTicker$3.class","size":4153,"crc":-1949739642},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1$emit$1.class","size":2145,"crc":174892289},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7$1.class","size":2069,"crc":1050867389},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8.class","size":4107,"crc":1110183065},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4$1.class","size":2012,"crc":-1162580396},{"key":"kotlinx/coroutines/flow/SharedFlowKt.class","name":"kotlinx/coroutines/flow/SharedFlowKt.class","size":4905,"crc":322256075},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2$1.class","size":2014,"crc":2015848375},{"key":"kotlinx/coroutines/flow/SharingStarted$Companion.class","name":"kotlinx/coroutines/flow/SharingStarted$Companion.class","size":1942,"crc":-568761924},{"key":"kotlinx/coroutines/flow/StartedLazily$command$1$1$emit$1.class","name":"kotlinx/coroutines/flow/StartedLazily$command$1$1$emit$1.class","size":1865,"crc":-543481351},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1.class","size":4535,"crc":1020472489},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4$emit$1.class","size":1817,"crc":-741199708},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$3.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$3.class","size":1699,"crc":1110360403},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5.class","size":4720,"crc":-463098388},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1$emit$1.class","size":2108,"crc":1221563486},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1.class","size":3716,"crc":-1405607897},{"key":"kotlinx/coroutines/flow/SharedFlowImpl$WhenMappings.class","name":"kotlinx/coroutines/flow/SharedFlowImpl$WhenMappings.class","size":746,"crc":2043499674},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$emitAbort$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$emitAbort$1.class","size":1680,"crc":-600315767},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$nullArrayFactory$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$nullArrayFactory$1.class","size":1129,"crc":728550750},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3$1.class","size":4146,"crc":1562382625},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2.class","size":3728,"crc":1623259027},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$1.class","size":2566,"crc":-587214034},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1.class","size":2964,"crc":-875625009},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2.class","size":3395,"crc":-898027026},{"key":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$1.class","size":1724,"crc":-466549340},{"key":"kotlinx/coroutines/flow/MutableStateFlow.class","name":"kotlinx/coroutines/flow/MutableStateFlow.class","size":1079,"crc":2126590480},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2.class","size":3325,"crc":826091689},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8$1.class","size":2069,"crc":-848443396},{"key":"kotlinx/coroutines/flow/SharedFlowImpl.class","name":"kotlinx/coroutines/flow/SharedFlowImpl.class","size":27791,"crc":-1217568401},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$$inlined$unsafeFlow$1.class","size":2897,"crc":-1514283639},{"key":"kotlinx/coroutines/flow/MutableSharedFlow.class","name":"kotlinx/coroutines/flow/MutableSharedFlow.class","size":1625,"crc":1606009941},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1$emit$1.class","size":2046,"crc":1114439626},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2$emit$1.class","size":1863,"crc":-1566535580},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$1.class","size":1778,"crc":548790248},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7.class","size":4077,"crc":-1161688932},{"key":"kotlinx/coroutines/flow/FlowKt.class","name":"kotlinx/coroutines/flow/FlowKt.class","size":55622,"crc":-468511551},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1$1.class","size":1963,"crc":-1012221237},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$1.class","size":1685,"crc":-1001211130},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1$emit$1.class","size":2100,"crc":971072871},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3.class","size":2731,"crc":618889793},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$1.class","size":2541,"crc":-754985577},{"key":"kotlinx/coroutines/flow/FlowCollector.class","name":"kotlinx/coroutines/flow/FlowCollector.class","size":879,"crc":-2054101661},{"key":"kotlinx/coroutines/flow/StateFlow.class","name":"kotlinx/coroutines/flow/StateFlow.class","size":674,"crc":498814204},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2$1.class","size":1884,"crc":640331377},{"key":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$2.class","name":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$2.class","size":3386,"crc":-1860854036},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6$1.class","size":2069,"crc":949972651},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3.class","size":4660,"crc":-918750717},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6.class","size":5139,"crc":-13137035},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2.class","size":4121,"crc":12610553},{"key":"kotlinx/coroutines/flow/SubscribedFlowCollector$onSubscription$1.class","name":"kotlinx/coroutines/flow/SubscribedFlowCollector$onSubscription$1.class","size":1876,"crc":-412453472},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1.class","size":5083,"crc":-530153741},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1.class","size":3948,"crc":-1924620403},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1.class","size":5704,"crc":-2079807779},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$mapLatest$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$mapLatest$1.class","size":3811,"crc":2050986435},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapLatest$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapLatest$1.class","size":4426,"crc":1161528239},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4$1.class","size":4172,"crc":407327793},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1$1.class","size":2075,"crc":-1559501961},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7.class","size":5131,"crc":-398992485},{"key":"kotlinx/coroutines/flow/StartedLazily$command$1.class","name":"kotlinx/coroutines/flow/StartedLazily$command$1.class","size":4075,"crc":605738608},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$1.class","size":1783,"crc":-1556811357},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1$1.class","size":2049,"crc":-1056374928},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2.class","size":4100,"crc":-261338899},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt.class","size":3722,"crc":-1710652384},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2$1.class","size":2017,"crc":136357262},{"key":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$asFlow$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$asFlow$$inlined$unsafeFlow$1.class","size":3012,"crc":1353539657},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1.class","size":2831,"crc":1486354420},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$2.class","size":4238,"crc":-994070094},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2$1.class","size":1713,"crc":803763768},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$1.class","size":1677,"crc":1538686210},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1$1.class","size":2111,"crc":1945517181},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$1.class","size":1642,"crc":-2050492905},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$$inlined$collectWhile$1.class","size":2726,"crc":821043198},{"key":"kotlinx/coroutines/flow/StateFlowImpl$collect$1.class","name":"kotlinx/coroutines/flow/StateFlowImpl$collect$1.class","size":1996,"crc":-635385941},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$1.class","size":1670,"crc":1619568918},{"key":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2.class","name":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2.class","size":3091,"crc":1412020480},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1$1.class","size":2016,"crc":-1614047760},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2.class","size":3697,"crc":-1848290840},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1.class","size":4634,"crc":-312204449},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1$1.class","size":2008,"crc":1897171026},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$1.class","size":1768,"crc":1864315693},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1$emit$1.class","size":2035,"crc":862797843},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$2.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$2.class","size":1638,"crc":-2091719219},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2$1.class","size":2012,"crc":-1044773919},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2$1.class","size":4120,"crc":-1358042652},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3$1.class","size":1713,"crc":-123213319},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$1.class","size":1691,"crc":-469225837},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1.class","size":3467,"crc":1246444137},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$1.class","size":1653,"crc":-2077668657},{"key":"kotlinx/coroutines/flow/ReadonlyStateFlow.class","name":"kotlinx/coroutines/flow/ReadonlyStateFlow.class","size":3359,"crc":-1614700171},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1$emit$1.class","size":1951,"crc":1636161094},{"key":"kotlinx/coroutines/flow/ReadonlySharedFlow.class","name":"kotlinx/coroutines/flow/ReadonlySharedFlow.class","size":3216,"crc":-2007838424},{"key":"kotlinx/coroutines/flow/LintKt$retry$1.class","name":"kotlinx/coroutines/flow/LintKt$retry$1.class","size":3308,"crc":1119166152},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1.class","size":4693,"crc":-918919913},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$$inlined$unsafeFlow$1.class","size":2767,"crc":-213797189},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2$1.class","size":1948,"crc":1407072493},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$1.class","size":1763,"crc":-1354510566},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayEach$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayEach$1.class","size":3242,"crc":-1213156227},{"key":"kotlinx/coroutines/flow/ChannelFlowBuilder.class","name":"kotlinx/coroutines/flow/ChannelFlowBuilder.class","size":4506,"crc":817093489},{"key":"kotlinx/coroutines/flow/SharingCommand.class","name":"kotlinx/coroutines/flow/SharingCommand.class","size":1474,"crc":29234571},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$1.class","size":2794,"crc":1159919825},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$invokeSafely$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$invokeSafely$1.class","size":1745,"crc":-273567470},{"key":"kotlinx/coroutines/flow/CallbackFlowBuilder$collectTo$1.class","name":"kotlinx/coroutines/flow/CallbackFlowBuilder$collectTo$1.class","size":1828,"crc":354760578},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$2.class","size":5941,"crc":210305515},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3.class","size":3425,"crc":1129933382},{"key":"kotlinx/coroutines/flow/SharedFlow.class","name":"kotlinx/coroutines/flow/SharedFlow.class","size":1248,"crc":2135657676},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$$inlined$unsafeFlow$1.class","size":2983,"crc":1945463570},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1$1.class","size":2090,"crc":-1423981452},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1.class","size":8929,"crc":-1260278072},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1$emit$1.class","size":1860,"crc":613915448},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$$inlined$unsafeFlow$1.class","size":3077,"crc":-581579079},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1.class","size":2816,"crc":-1480540407},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt.class","size":6265,"crc":1566501130},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt.class","size":18718,"crc":-1615214284},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$1.class","size":3412,"crc":-212288863},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt.class","size":8496,"crc":597235154},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3$1.class","size":2012,"crc":-1176013870},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2$1.class","size":2033,"crc":1852451719},{"key":"kotlinx/coroutines/flow/DistinctFlowImpl.class","name":"kotlinx/coroutines/flow/DistinctFlowImpl.class","size":3426,"crc":-1889673208},{"key":"kotlinx/coroutines/flow/ChannelAsFlow.class","name":"kotlinx/coroutines/flow/ChannelAsFlow.class","size":6764,"crc":-771293790},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1.class","size":4732,"crc":-480520779},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2.class","size":3348,"crc":-1143238936},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayFlow$1.class","size":3439,"crc":696319481},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1.class","size":3557,"crc":-52107807},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2.class","size":4566,"crc":-441470071},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2$emit$1.class","size":1790,"crc":1602472941},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3$emit$1.class","size":1734,"crc":201049043},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2.class","size":3537,"crc":-1998917906},{"key":"kotlinx/coroutines/flow/SubscribedFlowCollector.class","name":"kotlinx/coroutines/flow/SubscribedFlowCollector.class","size":4602,"crc":430835549},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1.class","size":3532,"crc":-466698686},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt.class","size":13393,"crc":-1449899860},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$1.class","size":1677,"crc":2126687486},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1$emit$1.class","size":1888,"crc":381123400},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt.class","size":8877,"crc":1065100257},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$1.class","size":5474,"crc":-207850230},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt.class","size":8831,"crc":-1470104302},{"key":"kotlinx/coroutines/flow/StartedLazily$command$1$1.class","name":"kotlinx/coroutines/flow/StartedLazily$command$1$1.class","size":3130,"crc":1855206383},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$1.class","size":1624,"crc":414331905},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5.class","size":4110,"crc":281905670},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1$emit$1.class","size":1969,"crc":-972666949},{"key":"kotlinx/coroutines/flow/AbstractFlow$collect$1.class","name":"kotlinx/coroutines/flow/AbstractFlow$collect$1.class","size":1757,"crc":-1029244249},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$launchIn$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$launchIn$1.class","size":3601,"crc":23399412},{"key":"kotlinx/coroutines/flow/EmptyFlow.class","name":"kotlinx/coroutines/flow/EmptyFlow.class","size":1413,"crc":1237828880},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1.class","size":4379,"crc":-2048840641},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$1.class","size":3241,"crc":-1213817800},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5$1.class","size":4198,"crc":-1624649338},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1.class","size":3709,"crc":-1424023897},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1.class","size":3917,"crc":-431918844},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2$1.class","size":1878,"crc":1513354789},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1$1.class","size":1743,"crc":-552515265},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1.class","size":2773,"crc":-1374029294},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$3.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$3.class","size":1710,"crc":-1552726715},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1.class","size":3540,"crc":-1884904850},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1.class","size":3608,"crc":1564003978},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2.class","size":3947,"crc":1200714951},{"key":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2.class","name":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2.class","size":3745,"crc":1219266739},{"key":"kotlinx/coroutines/flow/SubscribedSharedFlow.class","name":"kotlinx/coroutines/flow/SubscribedSharedFlow.class","size":3609,"crc":1390335156},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2$2.class","size":4436,"crc":2094957155},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1.class","size":3433,"crc":1291373569},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1.class","size":3009,"crc":1598697104},{"key":"kotlinx/coroutines/flow/LintKt.class","name":"kotlinx/coroutines/flow/LintKt.class","size":10681,"crc":-13054809},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1$2.class","size":4410,"crc":-992111192},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2.class","size":3680,"crc":-2037579641},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$1.class","size":1748,"crc":1627885281},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1.class","size":2785,"crc":169346238},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$2.class","size":1401,"crc":-1993047535},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$2.class","size":3930,"crc":-29266504},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1.class","size":3485,"crc":575182277},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt.class","size":9477,"crc":439975920},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6.class","size":4006,"crc":-196382056},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2$WhenMappings.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2$WhenMappings.class","size":851,"crc":1386498319},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4.class","size":4009,"crc":-254714324},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1.class","size":3044,"crc":1463922117},{"key":"kotlinx/coroutines/flow/SharingConfig.class","name":"kotlinx/coroutines/flow/SharingConfig.class","size":1636,"crc":2121009094},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$1.class","size":1608,"crc":-1953786219},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$1.class","size":1688,"crc":1509455720},{"key":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultAreEquivalent$1.class","name":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultAreEquivalent$1.class","size":1678,"crc":1695098240},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$2.class","size":3930,"crc":-689061022},{"key":"kotlinx/coroutines/flow/AbstractFlow.class","name":"kotlinx/coroutines/flow/AbstractFlow.class","size":3159,"crc":-1284495285},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1.class","size":3525,"crc":240285415},{"key":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$emitAllImpl$1.class","name":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$emitAllImpl$1.class","size":1849,"crc":552795142},{"key":"kotlinx/coroutines/flow/StateFlowImpl.class","name":"kotlinx/coroutines/flow/StateFlowImpl.class","size":11222,"crc":1953618475},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$2.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$2.class","size":3951,"crc":1265475708},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$1.class","size":1661,"crc":420492905},{"key":"kotlinx/coroutines/flow/SharedFlowImpl$Emitter.class","name":"kotlinx/coroutines/flow/SharedFlowImpl$Emitter.class","size":2020,"crc":1327701042},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1$1.class","size":3734,"crc":-1415350274},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2$1.class","size":1962,"crc":-793927257},{"key":"kotlinx/coroutines/flow/StateFlowSlot.class","name":"kotlinx/coroutines/flow/StateFlowSlot.class","size":6049,"crc":-704149459},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1.class","size":5324,"crc":-204583194},{"key":"kotlinx/coroutines/DisposeOnCancel.class","name":"kotlinx/coroutines/DisposeOnCancel.class","size":1809,"crc":732268543},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key.class","size":1700,"crc":368684412},{"key":"kotlinx/coroutines/Deferred.class","name":"kotlinx/coroutines/Deferred.class","size":1455,"crc":-1360442875},{"key":"kotlinx/coroutines/DisposeOnCompletion.class","name":"kotlinx/coroutines/DisposeOnCompletion.class","size":1416,"crc":-372842674},{"key":"kotlinx/coroutines/RunnableKt$Runnable$1.class","name":"kotlinx/coroutines/RunnableKt$Runnable$1.class","size":1230,"crc":1753011103},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcher.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcher.class","size":1230,"crc":1634011348},{"key":"kotlinx/coroutines/JobImpl.class","name":"kotlinx/coroutines/JobImpl.class","size":2430,"crc":940896491},{"key":"kotlinx/coroutines/YieldContext.class","name":"kotlinx/coroutines/YieldContext.class","size":1181,"crc":245877953},{"key":"kotlinx/coroutines/AwaitKt.class","name":"kotlinx/coroutines/AwaitKt.class","size":5715,"crc":-900574499},{"key":"kotlinx/coroutines/CoroutineScope.class","name":"kotlinx/coroutines/CoroutineScope.class","size":625,"crc":92126250},{"key":"kotlinx/coroutines/JobCancellationException.class","name":"kotlinx/coroutines/JobCancellationException.class","size":3721,"crc":-1506509831},{"key":"kotlinx/coroutines/CoroutineId.class","name":"kotlinx/coroutines/CoroutineId.class","size":5008,"crc":-131509926},{"key":"kotlinx/coroutines/CoroutineName$Key.class","name":"kotlinx/coroutines/CoroutineName$Key.class","size":1048,"crc":-846792829},{"key":"kotlinx/coroutines/JobKt.class","name":"kotlinx/coroutines/JobKt.class","size":6133,"crc":103469669},{"key":"kotlinx/coroutines/CompletionHandlerBase.class","name":"kotlinx/coroutines/CompletionHandlerBase.class","size":1156,"crc":-467376288},{"key":"kotlinx/coroutines/Deferred$DefaultImpls.class","name":"kotlinx/coroutines/Deferred$DefaultImpls.class","size":3827,"crc":779693838},{"key":"kotlinx/coroutines/ResumeAwaitOnCompletion.class","name":"kotlinx/coroutines/ResumeAwaitOnCompletion.class","size":2773,"crc":1979742846},{"key":"kotlinx/coroutines/AwaitKt$joinAll$1.class","name":"kotlinx/coroutines/AwaitKt$joinAll$1.class","size":1465,"crc":-1807626051},{"key":"kotlinx/coroutines/Active.class","name":"kotlinx/coroutines/Active.class","size":902,"crc":1368958330},{"key":"kotlinx/coroutines/CoroutineStart$WhenMappings.class","name":"kotlinx/coroutines/CoroutineStart$WhenMappings.class","size":696,"crc":-322758076},{"key":"kotlinx/coroutines/DiagnosticCoroutineContextException.class","name":"kotlinx/coroutines/DiagnosticCoroutineContextException.class","size":1897,"crc":581838207},{"key":"kotlinx/coroutines/Job$Key.class","name":"kotlinx/coroutines/Job$Key.class","size":885,"crc":1588266140},{"key":"kotlinx/coroutines/ChildContinuation.class","name":"kotlinx/coroutines/ChildContinuation.class","size":1867,"crc":-1676998315},{"key":"kotlinx/coroutines/CoroutineExceptionHandlerKt.class","name":"kotlinx/coroutines/CoroutineExceptionHandlerKt.class","size":3579,"crc":669627325},{"key":"kotlinx/coroutines/DispatchedCoroutine.class","name":"kotlinx/coroutines/DispatchedCoroutine.class","size":4240,"crc":-535106305},{"key":"kotlinx/coroutines/AwaitKt$joinAll$3.class","name":"kotlinx/coroutines/AwaitKt$joinAll$3.class","size":1406,"crc":1030454751},{"key":"kotlinx/coroutines/DebugStringsKt.class","name":"kotlinx/coroutines/DebugStringsKt.class","size":2861,"crc":1615672593},{"key":"kotlinx/coroutines/CoroutineScopeKt.class","name":"kotlinx/coroutines/CoroutineScopeKt.class","size":6712,"crc":2087896032},{"key":"kotlinx/coroutines/DisposableFutureHandle.class","name":"kotlinx/coroutines/DisposableFutureHandle.class","size":1564,"crc":-1551165029},{"key":"kotlinx/coroutines/CompletedExceptionally.class","name":"kotlinx/coroutines/CompletedExceptionally.class","size":2200,"crc":234794842},{"key":"kotlinx/coroutines/CancelFutureOnCompletion.class","name":"kotlinx/coroutines/CancelFutureOnCompletion.class","size":1547,"crc":-1984817589},{"key":"kotlinx/coroutines/ParentJob.class","name":"kotlinx/coroutines/ParentJob.class","size":1030,"crc":-486969955},{"key":"kotlinx/coroutines/LazyDeferredCoroutine.class","name":"kotlinx/coroutines/LazyDeferredCoroutine.class","size":2156,"crc":740058240},{"key":"kotlinx/coroutines/Incomplete.class","name":"kotlinx/coroutines/Incomplete.class","size":642,"crc":-1224083286},{"key":"kotlinx/coroutines/CoroutinesInternalError.class","name":"kotlinx/coroutines/CoroutinesInternalError.class","size":855,"crc":1172606776},{"key":"kotlinx/coroutines/CoroutineContextKt.class","name":"kotlinx/coroutines/CoroutineContextKt.class","size":8901,"crc":1848854320},{"key":"kotlinx/coroutines/CancellableContinuation$DefaultImpls.class","name":"kotlinx/coroutines/CancellableContinuation$DefaultImpls.class","size":1214,"crc":1861733685},{"key":"kotlinx/coroutines/RunnableKt.class","name":"kotlinx/coroutines/RunnableKt.class","size":1108,"crc":2032056737},{"key":"kotlinx/coroutines/DebugKt.class","name":"kotlinx/coroutines/DebugKt.class","size":3422,"crc":-1315452998},{"key":"kotlinx/coroutines/CompletionStateKt.class","name":"kotlinx/coroutines/CompletionStateKt.class","size":4464,"crc":-117603660},{"key":"kotlinx/coroutines/TimeoutCoroutine.class","name":"kotlinx/coroutines/TimeoutCoroutine.class","size":2284,"crc":-500362956},{"key":"kotlinx/coroutines/CoroutineExceptionHandlerImplKt.class","name":"kotlinx/coroutines/CoroutineExceptionHandlerImplKt.class","size":3453,"crc":435064895},{"key":"kotlinx/coroutines/ChildHandleNode.class","name":"kotlinx/coroutines/ChildHandleNode.class","size":2093,"crc":431156052},{"key":"kotlinx/coroutines/CancelHandlerBase.class","name":"kotlinx/coroutines/CancelHandlerBase.class","size":1014,"crc":-1840819903},{"key":"kotlinx/coroutines/Delay.class","name":"kotlinx/coroutines/Delay.class","size":1808,"crc":-693053735},{"key":"kotlinx/coroutines/JobSupportKt.class","name":"kotlinx/coroutines/JobSupportKt.class","size":3272,"crc":2014317998},{"key":"kotlinx/coroutines/ThreadContextElement$DefaultImpls.class","name":"kotlinx/coroutines/ThreadContextElement$DefaultImpls.class","size":3080,"crc":1390402691},{"key":"kotlinx/coroutines/CompletedWithCancellation.class","name":"kotlinx/coroutines/CompletedWithCancellation.class","size":3362,"crc":1948476848},{"key":"kotlinx/coroutines/ChildJob$DefaultImpls.class","name":"kotlinx/coroutines/ChildJob$DefaultImpls.class","size":3482,"crc":-1091624664},{"key":"kotlinx/coroutines/SchedulerTaskKt.class","name":"kotlinx/coroutines/SchedulerTaskKt.class","size":1501,"crc":114100850},{"key":"kotlinx/coroutines/DisposableHandle.class","name":"kotlinx/coroutines/DisposableHandle.class","size":418,"crc":-1848736747},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedTaskQueue.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedTaskQueue.class","size":1089,"crc":-1973769157},{"key":"kotlinx/coroutines/EventLoopImplPlatform.class","name":"kotlinx/coroutines/EventLoopImplPlatform.class","size":1776,"crc":-1168424299},{"key":"kotlinx/coroutines/TimeoutKt$withTimeoutOrNull$1.class","name":"kotlinx/coroutines/TimeoutKt$withTimeoutOrNull$1.class","size":1644,"crc":1927484381},{"key":"kotlinx/coroutines/DispatchersKt.class","name":"kotlinx/coroutines/DispatchersKt.class","size":549,"crc":924074478},{"key":"kotlinx/coroutines/CompletableJob$DefaultImpls.class","name":"kotlinx/coroutines/CompletableJob$DefaultImpls.class","size":3565,"crc":1245119123},{"key":"kotlinx/coroutines/intrinsics/CancellableKt.class","name":"kotlinx/coroutines/intrinsics/CancellableKt.class","size":5589,"crc":1685699922},{"key":"kotlinx/coroutines/intrinsics/UndispatchedKt.class","name":"kotlinx/coroutines/intrinsics/UndispatchedKt.class","size":12616,"crc":-225996307},{"key":"kotlinx/coroutines/ExceptionsKt.class","name":"kotlinx/coroutines/ExceptionsKt.class","size":1793,"crc":-2027420945},{"key":"kotlinx/coroutines/CoroutineContextKt$foldCopies$1.class","name":"kotlinx/coroutines/CoroutineContextKt$foldCopies$1.class","size":2160,"crc":-1181767972},{"key":"kotlinx/coroutines/CancellableContinuation.class","name":"kotlinx/coroutines/CancellableContinuation.class","size":3172,"crc":-490611146},{"key":"kotlinx/coroutines/CoroutineExceptionHandler.class","name":"kotlinx/coroutines/CoroutineExceptionHandler.class","size":1193,"crc":1617063336},{"key":"kotlinx/coroutines/CoroutineExceptionHandler$DefaultImpls.class","name":"kotlinx/coroutines/CoroutineExceptionHandler$DefaultImpls.class","size":2905,"crc":-1391844390},{"key":"kotlinx/coroutines/CompletableDeferred.class","name":"kotlinx/coroutines/CompletableDeferred.class","size":986,"crc":-2044329642},{"key":"kotlinx/coroutines/GlobalScope.class","name":"kotlinx/coroutines/GlobalScope.class","size":1196,"crc":-213318019},{"key":"kotlinx/coroutines/EventLoopImplBase.class","name":"kotlinx/coroutines/EventLoopImplBase.class","size":13951,"crc":2006481204},{"key":"kotlinx/coroutines/JobSupport$AwaitContinuation.class","name":"kotlinx/coroutines/JobSupport$AwaitContinuation.class","size":2624,"crc":-2038097548},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl.class","size":7352,"crc":-981963950},{"key":"kotlinx/coroutines/selects/SelectClause1.class","name":"kotlinx/coroutines/selects/SelectClause1.class","size":1202,"crc":34058934},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$1.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$1.class","size":2241,"crc":-2058518463},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$2.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$2.class","size":2325,"crc":-675861665},{"key":"kotlinx/coroutines/selects/SelectInstance.class","name":"kotlinx/coroutines/selects/SelectInstance.class","size":1797,"crc":-1496653830},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$onTimeout$1.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$onTimeout$1.class","size":1937,"crc":-28608411},{"key":"kotlinx/coroutines/selects/SeqNumber.class","name":"kotlinx/coroutines/selects/SeqNumber.class","size":1123,"crc":-236379160},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$DisposeNode.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$DisposeNode.class","size":1078,"crc":-974213804},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$onTimeout$$inlined$Runnable$1.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$onTimeout$$inlined$Runnable$1.class","size":1814,"crc":-830863451},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$AtomicSelectOp.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$AtomicSelectOp.class","size":4989,"crc":-1287642699},{"key":"kotlinx/coroutines/selects/SelectClause2.class","name":"kotlinx/coroutines/selects/SelectClause2.class","size":1282,"crc":-1089555230},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$SelectOnCancelling.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$SelectOnCancelling.class","size":1776,"crc":1582934493},{"key":"kotlinx/coroutines/selects/WhileSelectKt$whileSelect$1.class","name":"kotlinx/coroutines/selects/WhileSelectKt$whileSelect$1.class","size":1685,"crc":584877765},{"key":"kotlinx/coroutines/selects/SelectBuilder$DefaultImpls.class","name":"kotlinx/coroutines/selects/SelectBuilder$DefaultImpls.class","size":1261,"crc":799605812},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$PairSelectOp.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$PairSelectOp.class","size":2663,"crc":-2119743431},{"key":"kotlinx/coroutines/selects/WhileSelectKt.class","name":"kotlinx/coroutines/selects/WhileSelectKt.class","size":3851,"crc":1053095965},{"key":"kotlinx/coroutines/selects/SelectUnbiasedKt.class","name":"kotlinx/coroutines/selects/SelectUnbiasedKt.class","size":2549,"crc":-222689099},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl.class","size":20257,"crc":1638021679},{"key":"kotlinx/coroutines/selects/SelectBuilder.class","name":"kotlinx/coroutines/selects/SelectBuilder.class","size":2864,"crc":-135997452},{"key":"kotlinx/coroutines/selects/SelectClause0.class","name":"kotlinx/coroutines/selects/SelectClause0.class","size":1122,"crc":522217324},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$3.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$3.class","size":2484,"crc":-622864117},{"key":"kotlinx/coroutines/selects/SelectKt.class","name":"kotlinx/coroutines/selects/SelectKt.class","size":4837,"crc":918791984},{"key":"kotlinx/coroutines/InactiveNodeList.class","name":"kotlinx/coroutines/InactiveNodeList.class","size":1505,"crc":1529896678},{"key":"kotlinx/coroutines/BeforeResumeCancelHandler.class","name":"kotlinx/coroutines/BeforeResumeCancelHandler.class","size":609,"crc":-288960833},{"key":"kotlinx/coroutines/JobKt__FutureKt.class","name":"kotlinx/coroutines/JobKt__FutureKt.class","size":1980,"crc":2118760778},{"key":"kotlinx/coroutines/InterruptibleKt.class","name":"kotlinx/coroutines/InterruptibleKt.class","size":3650,"crc":41791879},{"key":"kotlinx/coroutines/Dispatchers.class","name":"kotlinx/coroutines/Dispatchers.class","size":2549,"crc":455212629},{"key":"kotlinx/coroutines/DeferredCoroutine.class","name":"kotlinx/coroutines/DeferredCoroutine.class","size":3201,"crc":1111760964},{"key":"kotlinx/coroutines/JobSupport$ChildCompletion.class","name":"kotlinx/coroutines/JobSupport$ChildCompletion.class","size":1994,"crc":-1870059567},{"key":"kotlinx/coroutines/RemoveOnCancel.class","name":"kotlinx/coroutines/RemoveOnCancel.class","size":1877,"crc":-471519885},{"key":"kotlinx/coroutines/ResumeOnCompletion.class","name":"kotlinx/coroutines/ResumeOnCompletion.class","size":1684,"crc":414982253},{"key":"kotlinx/coroutines/AbstractTimeSourceKt.class","name":"kotlinx/coroutines/AbstractTimeSourceKt.class","size":2747,"crc":710259852},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterIndexed$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterIndexed$1.class","size":5531,"crc":1651287980},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveSelect.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveSelect.class","size":6680,"crc":78200878},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$toList$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$toList$1.class","size":1827,"crc":749967314},{"key":"kotlinx/coroutines/channels/ActorCoroutine.class","name":"kotlinx/coroutines/channels/ActorCoroutine.class","size":3373,"crc":958153753},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$map$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$map$1.class","size":6960,"crc":-155619609},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$drop$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$drop$1.class","size":5589,"crc":2134521579},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Subscriber.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Subscriber.class","size":2222,"crc":-1200340265},{"key":"kotlinx/coroutines/channels/ProducerCoroutine.class","name":"kotlinx/coroutines/channels/ProducerCoroutine.class","size":2923,"crc":-1518996615},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$State.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$State.class","size":1604,"crc":1041006091},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$1.class","size":1982,"crc":218971029},{"key":"kotlinx/coroutines/channels/BroadcastKt$broadcast$2.class","name":"kotlinx/coroutines/channels/BroadcastKt$broadcast$2.class","size":4438,"crc":-1386887273},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3$WhenMappings.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3$WhenMappings.class","size":748,"crc":381664387},{"key":"kotlinx/coroutines/channels/Send.class","name":"kotlinx/coroutines/channels/Send.class","size":1567,"crc":-99852693},{"key":"kotlinx/coroutines/channels/BroadcastChannel.class","name":"kotlinx/coroutines/channels/BroadcastChannel.class","size":1619,"crc":1708406772},{"key":"kotlinx/coroutines/channels/BroadcastChannel$DefaultImpls.class","name":"kotlinx/coroutines/channels/BroadcastChannel$DefaultImpls.class","size":1988,"crc":1886885143},{"key":"kotlinx/coroutines/channels/SendElement.class","name":"kotlinx/coroutines/channels/SendElement.class","size":4375,"crc":1378182755},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Companion.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Companion.class","size":1198,"crc":-1816529445},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$any$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$any$1.class","size":1701,"crc":-224463549},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinct$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinct$1.class","size":3077,"crc":-262525825},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAtOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAtOrNull$1.class","size":1827,"crc":455548811},{"key":"kotlinx/coroutines/channels/ReceiveChannel.class","name":"kotlinx/coroutines/channels/ReceiveChannel.class","size":3802,"crc":1242433884},{"key":"kotlinx/coroutines/channels/ChannelIterator$next0$1.class","name":"kotlinx/coroutines/channels/ChannelIterator$next0$1.class","size":1696,"crc":-1553615833},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$takeWhile$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$takeWhile$1.class","size":5127,"crc":729629450},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$1.class","size":1857,"crc":-1915826772},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$2.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$2.class","size":7458,"crc":-827468812},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Closed.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Closed.class","size":1589,"crc":-231386016},{"key":"kotlinx/coroutines/channels/ProducerScope$DefaultImpls.class","name":"kotlinx/coroutines/channels/ProducerScope$DefaultImpls.class","size":1282,"crc":-1562759662},{"key":"kotlinx/coroutines/channels/LazyBroadcastCoroutine.class","name":"kotlinx/coroutines/channels/LazyBroadcastCoroutine.class","size":2965,"crc":339013171},{"key":"kotlinx/coroutines/channels/SendChannel.class","name":"kotlinx/coroutines/channels/SendChannel.class","size":2467,"crc":508915076},{"key":"kotlinx/coroutines/channels/RendezvousChannel.class","name":"kotlinx/coroutines/channels/RendezvousChannel.class","size":1572,"crc":-1936420265},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$mapIndexed$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$mapIndexed$1.class","size":5477,"crc":-797670885},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$indexOf$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$indexOf$1.class","size":1817,"crc":-765448289},{"key":"kotlinx/coroutines/channels/AbstractSendChannel.class","name":"kotlinx/coroutines/channels/AbstractSendChannel.class","size":26686,"crc":-1322932153},{"key":"kotlinx/coroutines/channels/ProduceKt.class","name":"kotlinx/coroutines/channels/ProduceKt.class","size":11061,"crc":711733303},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$first$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$first$1.class","size":1743,"crc":1244233227},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filter$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filter$1.class","size":5090,"crc":217840694},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$maxWith$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$maxWith$1.class","size":1874,"crc":812371237},{"key":"kotlinx/coroutines/channels/AbstractChannelKt.class","name":"kotlinx/coroutines/channels/AbstractChannelKt.class","size":3079,"crc":1996256651},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$enqueueSend$$inlined$addLastIfPrevAndIf$1.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$enqueueSend$$inlined$addLastIfPrevAndIf$1.class","size":2680,"crc":-839170932},{"key":"kotlinx/coroutines/channels/AbstractChannel.class","name":"kotlinx/coroutines/channels/AbstractChannel.class","size":24434,"crc":-1362120636},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$3.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$3.class","size":1978,"crc":-983000658},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$none$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$none$1.class","size":1705,"crc":891216341},{"key":"kotlinx/coroutines/channels/ChannelResult$Failed.class","name":"kotlinx/coroutines/channels/ChannelResult$Failed.class","size":834,"crc":1819096401},{"key":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt.class","name":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt.class","size":3476,"crc":1167498935},{"key":"kotlinx/coroutines/channels/Channel$Factory.class","name":"kotlinx/coroutines/channels/Channel$Factory.class","size":1578,"crc":2106114359},{"key":"kotlinx/coroutines/channels/SendElementWithUndeliveredHandler.class","name":"kotlinx/coroutines/channels/SendElementWithUndeliveredHandler.class","size":2347,"crc":-153783235},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$fixedPeriodTicker$1.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$fixedPeriodTicker$1.class","size":1814,"crc":-904174359},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$onSend$1.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$onSend$1.class","size":2421,"crc":1996822384},{"key":"kotlinx/coroutines/channels/BroadcastKt$broadcast$$inlined$CoroutineExceptionHandler$1.class","name":"kotlinx/coroutines/channels/BroadcastKt$broadcast$$inlined$CoroutineExceptionHandler$1.class","size":2324,"crc":1908456684},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNull$1.class","size":3301,"crc":1676565888},{"key":"kotlinx/coroutines/channels/TickerMode.class","name":"kotlinx/coroutines/channels/TickerMode.class","size":1498,"crc":-731133691},{"key":"kotlinx/coroutines/channels/AbstractChannel$onReceiveCatching$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$onReceiveCatching$1.class","size":2343,"crc":-1913771265},{"key":"kotlinx/coroutines/channels/BroadcastCoroutine.class","name":"kotlinx/coroutines/channels/BroadcastCoroutine.class","size":8275,"crc":-604198760},{"key":"kotlinx/coroutines/channels/ProduceKt$awaitClose$1.class","name":"kotlinx/coroutines/channels/ProduceKt$awaitClose$1.class","size":1588,"crc":840921706},{"key":"kotlinx/coroutines/channels/Channel$DefaultImpls.class","name":"kotlinx/coroutines/channels/Channel$DefaultImpls.class","size":3604,"crc":-978504223},{"key":"kotlinx/coroutines/channels/ProduceKt$awaitClose$4$1.class","name":"kotlinx/coroutines/channels/ProduceKt$awaitClose$4$1.class","size":1913,"crc":-646956303},{"key":"kotlinx/coroutines/channels/ChannelResult$Companion.class","name":"kotlinx/coroutines/channels/ChannelResult$Companion.class","size":2333,"crc":-895513092},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumes$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumes$1.class","size":1848,"crc":304518944},{"key":"kotlinx/coroutines/channels/ChannelCoroutine.class","name":"kotlinx/coroutines/channels/ChannelCoroutine.class","size":9434,"crc":208633307},{"key":"kotlinx/coroutines/channels/ChannelIterator.class","name":"kotlinx/coroutines/channels/ChannelIterator.class","size":1304,"crc":687859850},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$TryOfferDesc.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$TryOfferDesc.class","size":3826,"crc":1977896537},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumesAll$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumesAll$1.class","size":2895,"crc":1022514476},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toMap$2.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toMap$2.class","size":1827,"crc":511289852},{"key":"kotlinx/coroutines/channels/AbstractChannel$enqueueReceiveInternal$$inlined$addLastIfPrevAndIf$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$enqueueReceiveInternal$$inlined$addLastIfPrevAndIf$1.class","size":2683,"crc":-1248158543},{"key":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$sendBlocking$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$sendBlocking$1.class","size":3769,"crc":-1470954701},{"key":"kotlinx/coroutines/channels/ProduceKt$awaitClose$2.class","name":"kotlinx/coroutines/channels/ProduceKt$awaitClose$2.class","size":1245,"crc":-1364103200},{"key":"kotlinx/coroutines/channels/SendChannel$DefaultImpls.class","name":"kotlinx/coroutines/channels/SendChannel$DefaultImpls.class","size":2134,"crc":1587296967},{"key":"kotlinx/coroutines/channels/ReceiveChannel$DefaultImpls.class","name":"kotlinx/coroutines/channels/ReceiveChannel$DefaultImpls.class","size":5145,"crc":-869562481},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$firstOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$firstOrNull$1.class","size":1767,"crc":-1395858236},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toChannel$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toChannel$1.class","size":1897,"crc":817500285},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$onSend$1.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$onSend$1.class","size":2479,"crc":-1669344532},{"key":"kotlinx/coroutines/channels/LazyActorCoroutine.class","name":"kotlinx/coroutines/channels/LazyActorCoroutine.class","size":5034,"crc":334560314},{"key":"kotlinx/coroutines/channels/Channel.class","name":"kotlinx/coroutines/channels/Channel.class","size":1469,"crc":1518937623},{"key":"kotlinx/coroutines/channels/AbstractChannel$RemoveReceiveOnCancel.class","name":"kotlinx/coroutines/channels/AbstractChannel$RemoveReceiveOnCancel.class","size":2397,"crc":754614124},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$3.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$3.class","size":1921,"crc":1855505061},{"key":"kotlinx/coroutines/channels/LinkedListChannel.class","name":"kotlinx/coroutines/channels/LinkedListChannel.class","size":6655,"crc":1803367822},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElementWithUndeliveredHandler.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElementWithUndeliveredHandler.class","size":2610,"crc":-2127084230},{"key":"kotlinx/coroutines/channels/ChannelKt.class","name":"kotlinx/coroutines/channels/ChannelKt.class","size":5683,"crc":-1235548551},{"key":"kotlinx/coroutines/channels/ActorKt.class","name":"kotlinx/coroutines/channels/ActorKt.class","size":4181,"crc":-1248837919},{"key":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1.class","name":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1.class","size":2524,"crc":803105920},{"key":"kotlinx/coroutines/channels/ArrayBroadcastChannel$Subscriber.class","name":"kotlinx/coroutines/channels/ArrayBroadcastChannel$Subscriber.class","size":8863,"crc":891384156},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toCollection$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toCollection$1.class","size":1845,"crc":432242902},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$requireNoNulls$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$requireNoNulls$1.class","size":3815,"crc":971708969},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$withIndex$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$withIndex$1.class","size":4824,"crc":-541992702},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveHasNext.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveHasNext.class","size":5898,"crc":-934192042},{"key":"kotlinx/coroutines/channels/Receive.class","name":"kotlinx/coroutines/channels/Receive.class","size":2037,"crc":-61168777},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$minWith$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$minWith$1.class","size":1874,"crc":-1772906507},{"key":"kotlinx/coroutines/channels/TickerChannelsKt.class","name":"kotlinx/coroutines/channels/TickerChannelsKt.class","size":7524,"crc":-1901098315},{"key":"kotlinx/coroutines/channels/ChannelResult.class","name":"kotlinx/coroutines/channels/ChannelResult.class","size":4760,"crc":180300630},{"key":"kotlinx/coroutines/channels/ActorScope$DefaultImpls.class","name":"kotlinx/coroutines/channels/ActorScope$DefaultImpls.class","size":3056,"crc":1657257971},{"key":"kotlinx/coroutines/channels/AbstractChannel$onReceive$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$onReceive$1.class","size":2152,"crc":458214447},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinctBy$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinctBy$1.class","size":5538,"crc":-22265331},{"key":"kotlinx/coroutines/channels/ChannelResult$Closed.class","name":"kotlinx/coroutines/channels/ChannelResult$Closed.class","size":1967,"crc":-594679674},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$fixedDelayTicker$1.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$fixedDelayTicker$1.class","size":1712,"crc":451225309},{"key":"kotlinx/coroutines/channels/BroadcastKt.class","name":"kotlinx/coroutines/channels/BroadcastKt.class","size":6440,"crc":-1428910003},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$singleOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$singleOrNull$1.class","size":1806,"crc":63048849},{"key":"kotlinx/coroutines/channels/ChannelsKt.class","name":"kotlinx/coroutines/channels/ChannelsKt.class","size":19013,"crc":917364759},{"key":"kotlinx/coroutines/channels/AbstractChannel$Itr.class","name":"kotlinx/coroutines/channels/AbstractChannel$Itr.class","size":7238,"crc":412988841},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastIndexOf$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastIndexOf$1.class","size":1868,"crc":1070769703},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$single$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$single$1.class","size":1773,"crc":979284159},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$SendBuffered.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$SendBuffered.class","size":3440,"crc":-787345040},{"key":"kotlinx/coroutines/channels/ProducerScope.class","name":"kotlinx/coroutines/channels/ProducerScope.class","size":1091,"crc":480912477},{"key":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1$registerSelectClause1$1.class","name":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1$registerSelectClause1$1.class","size":4606,"crc":-611066317},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$take$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$take$1.class","size":5393,"crc":1927924320},{"key":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$trySendBlocking$2.class","name":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$trySendBlocking$2.class","size":5245,"crc":-1799450732},{"key":"kotlinx/coroutines/channels/ReceiveChannel$receiveOrNull$1.class","name":"kotlinx/coroutines/channels/ReceiveChannel$receiveOrNull$1.class","size":1699,"crc":307160940},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel.class","size":16535,"crc":2108675102},{"key":"kotlinx/coroutines/channels/ActorScope.class","name":"kotlinx/coroutines/channels/ActorScope.class","size":1185,"crc":-2060279663},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$SendSelect.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$SendSelect.class","size":5551,"crc":-1396225292},{"key":"kotlinx/coroutines/channels/ArrayBroadcastChannel.class","name":"kotlinx/coroutines/channels/ArrayBroadcastChannel.class","size":13104,"crc":180826361},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3.class","size":4359,"crc":1410339322},{"key":"kotlinx/coroutines/channels/Closed.class","name":"kotlinx/coroutines/channels/Closed.class","size":5025,"crc":1738038493},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNot$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNot$1.class","size":3799,"crc":299215704},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt.class","size":51178,"crc":1007382374},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$last$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$last$1.class","size":1788,"crc":2063160994},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$count$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$count$1.class","size":1749,"crc":-1241197118},{"key":"kotlinx/coroutines/channels/BufferOverflow.class","name":"kotlinx/coroutines/channels/BufferOverflow.class","size":1491,"crc":1252654038},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAt$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAt$1.class","size":1803,"crc":-975641155},{"key":"kotlinx/coroutines/channels/BroadcastChannelKt.class","name":"kotlinx/coroutines/channels/BroadcastChannelKt.class","size":1642,"crc":-1537654397},{"key":"kotlinx/coroutines/channels/ReceiveOrClosed.class","name":"kotlinx/coroutines/channels/ReceiveOrClosed.class","size":1381,"crc":-1126968294},{"key":"kotlinx/coroutines/channels/AbstractChannel$TryPollDesc.class","name":"kotlinx/coroutines/channels/AbstractChannel$TryPollDesc.class","size":3660,"crc":-1692410089},{"key":"kotlinx/coroutines/channels/ArrayChannel$WhenMappings.class","name":"kotlinx/coroutines/channels/ArrayChannel$WhenMappings.class","size":752,"crc":687303467},{"key":"kotlinx/coroutines/channels/ChannelIterator$DefaultImpls.class","name":"kotlinx/coroutines/channels/ChannelIterator$DefaultImpls.class","size":1980,"crc":-2035120000},{"key":"kotlinx/coroutines/channels/ClosedSendChannelException.class","name":"kotlinx/coroutines/channels/ClosedSendChannelException.class","size":826,"crc":-1763797345},{"key":"kotlinx/coroutines/channels/ConflatedChannel.class","name":"kotlinx/coroutines/channels/ConflatedChannel.class","size":11387,"crc":-324438631},{"key":"kotlinx/coroutines/channels/AbstractChannel$receiveCatching$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$receiveCatching$1.class","size":2092,"crc":1610448838},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastOrNull$1.class","size":1819,"crc":264606312},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt.class","size":12990,"crc":796861983},{"key":"kotlinx/coroutines/channels/ArrayChannel.class","name":"kotlinx/coroutines/channels/ArrayChannel.class","size":16476,"crc":-1078335344},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElement.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElement.class","size":5646,"crc":1085963497},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$1.class","size":1636,"crc":-302362492},{"key":"kotlinx/coroutines/channels/BroadcastKt$broadcast$1.class","name":"kotlinx/coroutines/channels/BroadcastKt$broadcast$1.class","size":1875,"crc":-47967219},{"key":"kotlinx/coroutines/channels/ClosedReceiveChannelException.class","name":"kotlinx/coroutines/channels/ClosedReceiveChannelException.class","size":835,"crc":1645190014},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$SendBufferedDesc.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$SendBufferedDesc.class","size":2474,"crc":-1831327389},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$flatMap$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$flatMap$1.class","size":5259,"crc":-1422537467},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$dropWhile$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$dropWhile$1.class","size":5475,"crc":-1358759934},{"key":"kotlinx/coroutines/SupervisorKt.class","name":"kotlinx/coroutines/SupervisorKt.class","size":3471,"crc":-485202909},{"key":"kotlinx/coroutines/JobSupport.class","name":"kotlinx/coroutines/JobSupport.class","size":54473,"crc":-250952274},{"key":"kotlinx/coroutines/ResumeUndispatchedRunnable.class","name":"kotlinx/coroutines/ResumeUndispatchedRunnable.class","size":1966,"crc":1428917907},{"key":"kotlinx/coroutines/DispatcherExecutor.class","name":"kotlinx/coroutines/DispatcherExecutor.class","size":1603,"crc":-13366299},{"key":"kotlinx/coroutines/DefaultExecutor.class","name":"kotlinx/coroutines/DefaultExecutor.class","size":8305,"crc":1543979234},{"key":"kotlinx/coroutines/Delay$DefaultImpls.class","name":"kotlinx/coroutines/Delay$DefaultImpls.class","size":3304,"crc":1758101404},{"key":"kotlinx/coroutines/Unconfined.class","name":"kotlinx/coroutines/Unconfined.class","size":2543,"crc":1213235409},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedRunnableTask.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedRunnableTask.class","size":1584,"crc":1844290249},{"key":"kotlinx/coroutines/DispatchedTaskKt.class","name":"kotlinx/coroutines/DispatchedTaskKt.class","size":9066,"crc":-2053335748},{"key":"kotlinx/coroutines/CancelledContinuation.class","name":"kotlinx/coroutines/CancelledContinuation.class","size":2166,"crc":-2142906901},{"key":"kotlinx/coroutines/CompletableDeferredKt.class","name":"kotlinx/coroutines/CompletableDeferredKt.class","size":2931,"crc":1440113957},{"key":"kotlinx/coroutines/CancellableContinuationImplKt.class","name":"kotlinx/coroutines/CancellableContinuationImplKt.class","size":1007,"crc":-892839573},{"key":"kotlinx/coroutines/CopyableThrowable.class","name":"kotlinx/coroutines/CopyableThrowable.class","size":758,"crc":-2141716476},{"key":"kotlinx/coroutines/JobSupport$addLastAtomic$$inlined$addLastIf$1.class","name":"kotlinx/coroutines/JobSupport$addLastAtomic$$inlined$addLastIf$1.class","size":2651,"crc":-420923278},{"key":"kotlinx/coroutines/YieldContext$Key.class","name":"kotlinx/coroutines/YieldContext$Key.class","size":1040,"crc":1146657988},{"key":"kotlinx/coroutines/ThreadPoolDispatcherKt.class","name":"kotlinx/coroutines/ThreadPoolDispatcherKt.class","size":3578,"crc":-1937167736},{"key":"kotlinx/coroutines/ExecutorsKt.class","name":"kotlinx/coroutines/ExecutorsKt.class","size":2147,"crc":-1650460488},{"key":"kotlinx/coroutines/CoroutineStart.class","name":"kotlinx/coroutines/CoroutineStart.class","size":4086,"crc":1545828684},{"key":"kotlinx/coroutines/CoroutineDispatcher$Key$1.class","name":"kotlinx/coroutines/CoroutineDispatcher$Key$1.class","size":1693,"crc":-2036888570},{"key":"kotlinx/coroutines/AbstractTimeSource.class","name":"kotlinx/coroutines/AbstractTimeSource.class","size":1341,"crc":-524179290},{"key":"kotlinx/coroutines/DispatchedTask.class","name":"kotlinx/coroutines/DispatchedTask.class","size":9100,"crc":-1725602664},{"key":"META-INF/com.android.tools/r8/coroutines.pro","name":"META-INF/com.android.tools/r8/coroutines.pro","size":1190,"crc":-1302300043},{"key":"META-INF/com.android.tools/proguard/coroutines.pro","name":"META-INF/com.android.tools/proguard/coroutines.pro","size":1345,"crc":-571694184},{"key":"META-INF/proguard/coroutines.pro","name":"META-INF/proguard/coroutines.pro","size":1363,"crc":1916402070},{"key":"DebugProbesKt.bin","name":"DebugProbesKt.bin","size":1738,"crc":2094978271},{"key":"META-INF/kotlinx_coroutines_core.version","name":"META-INF/kotlinx_coroutines_core.version","size":5,"crc":282843805}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties new file mode 100644 index 0000000..0df3be5 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties @@ -0,0 +1,17 @@ +#Sun May 10 10:16:07 CST 2026 +blog.wiwi.hoops.app-main-19\:/drawable/ic_launcher_foreground.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_foreground.xml.flat +blog.wiwi.hoops.app-main-19\:/drawable/splash_icon.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_splash_icon.xml.flat +blog.wiwi.hoops.app-main-19\:/mipmap-anydpi-v26/ic_launcher.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher.xml.flat +blog.wiwi.hoops.app-main-19\:/mipmap-anydpi-v26/ic_launcher_round.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat +blog.wiwi.hoops.app-main-19\:/mipmap-hdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-hdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-mdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-mdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-xhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-xhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-xxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-xxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-xxxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-19\:/mipmap-xxxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-19\:/xml/backup_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat +blog.wiwi.hoops.app-main-19\:/xml/data_extraction_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000..ae95348 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,11 @@ + + + "Antwoord" + "Video" + "Wys af" + "Lui af" + "Inkomende oproep" + "Oproep aan die gang" + "Keur tans \'n inkomende oproep" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000..9d9afe3 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,11 @@ + + + "መልስ" + "ቪዲዮ" + "አትቀበል" + "ስልኩን ዝጋ" + "ገቢ ጥሪ" + "እየተካሄደ ያለ ጥሪ" + "ገቢ ጥሪ ማጣራት" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000..5dc236b --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,11 @@ + + + "ردّ" + "فيديو" + "رفض" + "قطع الاتصال" + "مكالمة واردة" + "مكالمة جارية" + "يتم فحص المكالمة الواردة" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-as/values-as.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-as/values-as.xml new file mode 100644 index 0000000..1a02846 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-as/values-as.xml @@ -0,0 +1,11 @@ + + + "উত্তৰ দিয়ক" + "ভিডিঅ’" + "প্ৰত্যাখ্যান কৰক" + "কল কাটি দিয়ক" + "অন্তৰ্গামী কল" + "চলি থকা কল" + "এটা অন্তৰ্গামী কলৰ পৰীক্ষা কৰি থকা হৈছে" + "৯৯৯+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-az/values-az.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-az/values-az.xml new file mode 100644 index 0000000..6091e61 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-az/values-az.xml @@ -0,0 +1,11 @@ + + + "Cavab verin" + "Video" + "İmtina edin" + "Dəstəyi asın" + "Gələn zəng" + "Davam edən zəng" + "Gələn zəng göstərilir" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000..459d678 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,11 @@ + + + "Odgovori" + "Video" + "Odbij" + "Prekini vezu" + "Dolazni poziv" + "Poziv je u toku" + "Proverava se dolazni poziv" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-be/values-be.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-be/values-be.xml new file mode 100644 index 0000000..b1a983d --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-be/values-be.xml @@ -0,0 +1,11 @@ + + + "Адказаць" + "Відэа" + "Адхіліць" + "Завяршыць" + "Уваходны выклік" + "Бягучы выклік" + "Фільтраванне ўваходнага выкліку" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000..f4ebc6b --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,11 @@ + + + "Отговор" + "Видеообаждане" + "Отхвърляне" + "Затваряне" + "Входящо обаждане" + "Текущо обаждане" + "Преглежда се входящо обаждане" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn/values-bn.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn/values-bn.xml new file mode 100644 index 0000000..11ca786 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn/values-bn.xml @@ -0,0 +1,11 @@ + + + "উত্তর দিন" + "ভিডিও" + "বাতিল করুন" + "কল কেটে দিন" + "ইনকামিং কল" + "চালু থাকা কল" + "ইনকামিং কল স্ক্রিনিং করা হচ্ছে" + "৯৯৯+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bs/values-bs.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bs/values-bs.xml new file mode 100644 index 0000000..bb86d53 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bs/values-bs.xml @@ -0,0 +1,11 @@ + + + "Odgovori" + "Video" + "Odbaci" + "Prekini vezu" + "Dolazni poziv" + "Poziv u toku" + "Filtriranje dolaznog poziva" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000..eb5f138 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,11 @@ + + + "Respon" + "Vídeo" + "Rebutja" + "Penja" + "Trucada entrant" + "Trucada en curs" + "S\'està filtrant una trucada entrant" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000..ddd6a04 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,11 @@ + + + "Přijmout" + "Video" + "Odmítnout" + "Zavěsit" + "Příchozí hovor" + "Probíhající hovor" + "Prověřování příchozího hovoru" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000..0b781c2 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,11 @@ + + + "Besvar" + "Video" + "Afvis" + "Læg på" + "Indgående opkald" + "Igangværende opkald" + "Et indgående opkald screenes" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000..f177880 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,11 @@ + + + "Annehmen" + "Video" + "Ablehnen" + "Auflegen" + "Eingehender Anruf" + "Aktueller Anruf" + "Filter für eingehenden Anruf" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000..fcf0d3a --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,11 @@ + + + "Απάντηση" + "Βίντεο" + "Απόρριψη" + "Τερματισμός" + "Εισερχόμενη κλήση" + "Κλήση σε εξέλιξη" + "Διαλογή εισερχόμενης κλήσης" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000..0c59a73 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang up" + "Incoming call" + "On-going call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000..c55e620 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang Up" + "Incoming call" + "Ongoing call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000..0c59a73 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang up" + "Incoming call" + "On-going call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000..0c59a73 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang up" + "Incoming call" + "On-going call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000..ff291e4 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,11 @@ + + + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‎‏‏‏‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‎‏‎‏‎‎‎Answer‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‏‎‎‏‏‏‎‎‎‏‎‎‎‏‎‏‎‏‎‎‏‏‎‎‏‏‎‎‏‎‎‎‎‏‎‏‎‏‎‎‏‏‎‏‎‎‏‎‎‎‎‎‎Video‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‏‎‎‎‏‏‎‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‏‎‎‏‎‎Decline‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‏‎‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‎‏‏‎‏‏‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‏‎‏‏‏‎Hang Up‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‎‏‎‎‎‎‏‎‎‎‎‏‎‏‏‎‎‎‏‏‏‎‏‏‎‎‎‏‎‎‎‏‏‎‏‎‎‎‏‎‏‏‎‏‏‏‎Incoming call‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‎‏‏‏‏‏‏‏‎‏‎‎‎‏‎‏‏‎‎‏‏‏‏‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‏‎‎‏‎‏‏‏‏‏‎‎Ongoing call‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎‎‏‎‏‎‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎Screening an incoming call‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000..4617964 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,11 @@ + + + "Responder" + "Video" + "Rechazar" + "Colgar" + "Llamada entrante" + "Llamada en curso" + "Filtrando una llamada entrante" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000..1eefca1 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,11 @@ + + + "Responder" + "Vídeo" + "Rechazar" + "Colgar" + "Llamada entrante" + "Llamada en curso" + "Filtrando una llamada entrante" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et/values-et.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et/values-et.xml new file mode 100644 index 0000000..474fa34 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et/values-et.xml @@ -0,0 +1,11 @@ + + + "Vasta" + "Video" + "Keeldu" + "Lõpeta kõne" + "Sissetulev kõne" + "Käimasolev kõne" + "Sissetuleva kõne filtreerimine" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu/values-eu.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu/values-eu.xml new file mode 100644 index 0000000..0e99bd1 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu/values-eu.xml @@ -0,0 +1,11 @@ + + + "Erantzun" + "Bideoa" + "Baztertu" + "Amaitu deia" + "Sarrerako deia" + "Deia abian da" + "Sarrerako dei bat bistaratzen" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000..2e7c01f --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,11 @@ + + + "پاسخ دادن" + "ویدیو" + "رد کردن" + "قطع تماس" + "تماس ورودی" + "تماس درحال انجام" + "درحال غربال کردن تماس ورودی" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000..8019b82 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,11 @@ + + + "Vastaa" + "Video" + "Hylkää" + "Lopeta puhelu" + "Saapuva puhelu" + "Käynnissä oleva puhelu" + "Seulotaan saapuvaa puhelua" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000..ba18c39 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,11 @@ + + + "Répondre" + "Vidéo" + "Refuser" + "Raccrocher" + "Appel entrant" + "Appel en cours" + "Filtrer un appel entrant" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000..5ef64cd --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,11 @@ + + + "Répondre" + "Vidéo" + "Refuser" + "Raccrocher" + "Appel entrant" + "Appel en cours" + "Filtrage d\'un appel entrant" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl/values-gl.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl/values-gl.xml new file mode 100644 index 0000000..3f27ff2 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl/values-gl.xml @@ -0,0 +1,11 @@ + + + "Contestar" + "Vídeo" + "Rexeitar" + "Colgar" + "Chamada entrante" + "Chamada en curso" + "Filtrando chamada entrante" + ">999" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gu/values-gu.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gu/values-gu.xml new file mode 100644 index 0000000..9749808 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gu/values-gu.xml @@ -0,0 +1,11 @@ + + + "જવાબ" + "વીડિયો" + "નકારો" + "સમાપ્ત કરો" + "ઇનકમિંગ કૉલ" + "ચાલુ કૉલ" + "ઇનકમિંગ કૉલનું સ્ક્રીનિંગ થાય છે" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000..f019f8f --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,11 @@ + + + "जवाब दें" + "वीडियो" + "अस्वीकार करें" + "कॉल काटें" + "आने वाला (इनकमिंग) कॉल" + "पहले से जारी कॉल" + "इनकमिंग कॉल को स्क्रीन किया जा रहा है" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000..e6750e6 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,11 @@ + + + "Odgovori" + "Videozapis" + "Odbij" + "Prekini" + "Dolazni poziv" + "Poziv u tijeku" + "Filtriranje dolaznog poziva" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000..ead6317 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,11 @@ + + + "Fogadás" + "Videó" + "Elutasítás" + "Befejezés" + "Bejövő hívás" + "Hívás folyamatban" + "Bejövő hívás szűrése" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy/values-hy.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy/values-hy.xml new file mode 100644 index 0000000..8629a55 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy/values-hy.xml @@ -0,0 +1,11 @@ + + + "Պատասխանել" + "Տեսազանգ" + "Մերժել" + "Ավարտել" + "Մուտքային զանգ" + "Ընթացիկ զանգ" + "Մուտքային զանգի զտում" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000..e61f5d4 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,11 @@ + + + "Jawab" + "Video" + "Tolak" + "Tutup" + "Panggilan masuk" + "Panggilan sedang berlangsung" + "Menyaring panggilan masuk" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is/values-is.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is/values-is.xml new file mode 100644 index 0000000..60be2ec --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is/values-is.xml @@ -0,0 +1,11 @@ + + + "Svara" + "Myndsímtal" + "Hafna" + "Leggja á" + "Símtal berst" + "Símtal í gangi" + "Síar símtal sem berst" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000..715fa29 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,11 @@ + + + "Rispondi" + "Video" + "Rifiuta" + "Riaggancia" + "Chiamata in arrivo" + "Chiamata in corso" + "Applicazione filtro a chiamata in arrivo" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000..91cbb13 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,11 @@ + + + "מענה" + "וידאו" + "דחייה" + "ניתוק" + "שיחה נכנסת" + "שיחה פעילה" + "סינון שיחה נכנסת" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000..8f05d3d --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,11 @@ + + + "応答" + "ビデオ" + "拒否" + "通話終了" + "着信" + "通話中" + "着信をスクリーニング中" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka/values-ka.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka/values-ka.xml new file mode 100644 index 0000000..9c11251 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka/values-ka.xml @@ -0,0 +1,11 @@ + + + "პასუხი" + "ვიდეო" + "უარყოფა" + "გათიშვა" + "შემომავალი ზარი" + "მიმდინარე ზარი" + "შემომავალი ზარების გაცხრილვა" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk/values-kk.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk/values-kk.xml new file mode 100644 index 0000000..7462e07 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk/values-kk.xml @@ -0,0 +1,11 @@ + + + "Жауап" + "Бейне" + "Қабылдамау" + "Тұтқаны қою" + "Кіріс қоңырау" + "Қоңырау" + "Келген қоңырауды сүзу" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km/values-km.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km/values-km.xml new file mode 100644 index 0000000..78aa9f2 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km/values-km.xml @@ -0,0 +1,11 @@ + + + "ឆ្លើយ" + "វីដេអូ" + "បដិសេធ" + "ដាក់​ចុះ" + "ការ​ហៅ​ចូល" + "ការ​ហៅដែលកំពុងដំណើរការ" + "កំពុងពិនិត្យការ​ហៅ​ចូល" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn/values-kn.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn/values-kn.xml new file mode 100644 index 0000000..08ec938 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn/values-kn.xml @@ -0,0 +1,11 @@ + + + "ಉತ್ತರಿಸಿ" + "ವೀಡಿಯೊ" + "ನಿರಾಕರಿಸಿ" + "ಕರೆ ಕೊನೆಗೊಳಿಸಿ" + "ಒಳಬರುವ ಕರೆ" + "ಚಾಲ್ತಿಯಲ್ಲಿರುವ ಕರೆ" + "ಒಳಬರುವ ಕರೆಯನ್ನು ಸ್ಕ್ರೀನ್ ಮಾಡಲಾಗುತ್ತಿದೆ" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000..adabc72 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,11 @@ + + + "통화" + "동영상" + "거절" + "전화 끊기" + "수신 전화" + "진행 중인 통화" + "수신 전화 검사 중" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky/values-ky.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky/values-ky.xml new file mode 100644 index 0000000..dff8410 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky/values-ky.xml @@ -0,0 +1,11 @@ + + + "Жооп берүү" + "Видео" + "Четке кагуу" + "Чалууну бүтүрүү" + "Кирүүчү чалуу" + "Учурдагы чалуу" + "Кирүүчү чалууну иргөө" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo/values-lo.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo/values-lo.xml new file mode 100644 index 0000000..180f20b --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo/values-lo.xml @@ -0,0 +1,11 @@ + + + "ຮັບສາຍ" + "ວິດີໂອ" + "ປະຕິເສດ" + "ວາງສາຍ" + "ສາຍໂທເຂົ້າ" + "ສາຍໂທອອກ" + "ກຳລັງກວດສອບສາຍໂທເຂົ້າ" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml new file mode 100644 index 0000000..5cf8025 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml @@ -0,0 +1,11 @@ + + + "Atsakyti" + "Vaizdo įrašas" + "Atmesti" + "Baigti pok." + "Gaunamasis skambutis" + "Vykstantis skambutis" + "Gaunamojo skambučio tikrinimas" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml new file mode 100644 index 0000000..8726095 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml @@ -0,0 +1,11 @@ + + + "Atbildēt" + "Video" + "Noraidīt" + "Pārtraukt" + "Ienākošais zvans" + "Pašreizējais zvans" + "Ienākošā zvana filtrēšana" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk/values-mk.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk/values-mk.xml new file mode 100644 index 0000000..8b0854d --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk/values-mk.xml @@ -0,0 +1,11 @@ + + + "Одговори" + "Видео" + "Одбиј" + "Спушти" + "Дојдовен повик" + "Тековен повик" + "Проверка на дојдовен повик" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml/values-ml.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml/values-ml.xml new file mode 100644 index 0000000..82eddad --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml/values-ml.xml @@ -0,0 +1,11 @@ + + + "മറുപടി നൽകുക" + "വീഡിയോ" + "നിരസിക്കുക" + "കോൾ നിർത്തുക" + "ഇൻകമിംഗ് കോൾ" + "സജീവമായ കോൾ" + "ഇൻകമിംഗ് കോൾ സ്‌ക്രീൻ ചെയ്യുന്നു" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn/values-mn.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn/values-mn.xml new file mode 100644 index 0000000..6e948b5 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn/values-mn.xml @@ -0,0 +1,11 @@ + + + "Хариулах" + "Видео" + "Татгалзах" + "Таслах" + "Ирсэн дуудлага" + "Дуудлага хийгдэж байна" + "Ирсэн дуудлагыг харуулж байна" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr/values-mr.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr/values-mr.xml new file mode 100644 index 0000000..c9cd0ec --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr/values-mr.xml @@ -0,0 +1,11 @@ + + + "उत्तर द्या" + "व्हिडिओ" + "नकार द्या" + "कॉल बंद करा" + "इनकमिंग कॉल" + "सुरू असलेला कॉल" + "इनकमिंग कॉल स्क्रीन करत आहे" + "९९९+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms/values-ms.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms/values-ms.xml new file mode 100644 index 0000000..82f4359 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms/values-ms.xml @@ -0,0 +1,11 @@ + + + "Jawab" + "Video" + "Tolak" + "Tamatkan Panggilan" + "Panggilan masuk" + "Panggilan sedang berlangsung" + "Menyaring panggilan masuk" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my/values-my.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my/values-my.xml new file mode 100644 index 0000000..0194115 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my/values-my.xml @@ -0,0 +1,11 @@ + + + "ဖုန်းကိုင်ရန်" + "ဗီဒီယို" + "ငြင်းပယ်ရန်" + "ဖုန်းချရန်" + "အဝင်ခေါ်ဆိုမှု" + "လက်ရှိခေါ်ဆိုမှု" + "အဝင်ခေါ်ဆိုမှုကို စစ်ဆေးနေသည်" + "၉၉၉+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml new file mode 100644 index 0000000..4297d80 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml @@ -0,0 +1,11 @@ + + + "Svar" + "Video" + "Avvis" + "Legg på" + "Innkommende anrop" + "Pågående samtale" + "Filtrerer et innkommende anrop" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne/values-ne.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne/values-ne.xml new file mode 100644 index 0000000..19328ff --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne/values-ne.xml @@ -0,0 +1,11 @@ + + + "जवाफ दिनुहोस्" + "भिडियो" + "काट्नुहोस्" + "फोन राख्नुहोस्" + "आगमन कल" + "भइरहेको कल" + "आगमन कल जाँचिँदै छ" + "९९९+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml new file mode 100644 index 0000000..78f9680 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml @@ -0,0 +1,4 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v27/values-v27.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v27/values-v27.xml new file mode 100644 index 0000000..a4534f6 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v27/values-v27.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v29/values-v29.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v29/values-v29.xml new file mode 100644 index 0000000..230cb2b --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v29/values-v29.xml @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v31/values-v31.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v31/values-v31.xml new file mode 100644 index 0000000..7150959 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v31/values-v31.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000..f906ef6 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,11 @@ + + + "Trả lời" + "Video" + "Từ chối" + "Kết thúc" + "Cuộc gọi đến" + "Cuộc gọi đang thực hiện" + "Đang sàng lọc cuộc gọi đến" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml new file mode 100644 index 0000000..95e2f7b --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml @@ -0,0 +1,11 @@ + + + 128dp + 103dp + 34dp + 28dp + ?splashScreenIconSize + 90dp + 72dp + 10000 + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000..194e4f9 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,11 @@ + + + "接听" + "视频通话" + "拒接" + "挂断" + "来电" + "正在通话" + "正在过滤来电" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000..3dfd5d5 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,11 @@ + + + "接聽" + "視像" + "拒接" + "掛斷" + "來電" + "通話中" + "正在過濾來電" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000..0bc44e2 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,11 @@ + + + "接聽" + "視訊" + "拒接" + "掛斷" + "來電" + "通話中" + "正在過濾來電" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000..b07042b --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,11 @@ + + + "Phendula" + "Ividiyo" + "Yenqaba" + "Vala Ucingo" + "Ikholi engenayo" + "Ikholi eqhubekayo" + "Ukuveza ikholi engenayo" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..ab9440d --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml @@ -0,0 +1,289 @@ + + + + + + + + + + #1f000000 + #8a000000 + #C2410C + #1d873b + #d93025 + #FAFAF7 + #1A1A1A + #ffffffff + #ff9e9e9e + #FAFAF7 + 4dp + 6dp + 8dp + 4dp + 2dp + 320dp + 320dp + 32dp + 13sp + 12dp + 8dp + 64dp + 64dp + 10dp + @dimen/notification_content_margin_start + 16dp + 4dp + 3dp + 24dp + 13sp + 10dp + 5dp + 410dp + 342dp + 109dp + 92dp + ?splashScreenIconSize + 288dp + 240dp + #3333B5E5 + #0cffffff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10000 + 999 + androidx.startup + Hoops + Answer + Video + Decline + Hang Up + Incoming call + Ongoing call + Screening an incoming call + 999+ + + + + + + + + + + 128dp103dp34dp28dp?splashScreenIconSize90dp72dp10000410dp342dp109dp92dp?splashScreenIconSize288dp240dp10000"Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""Sagutin""Video""Tanggihan""Ibaba""Papasok na tawag""Kasalukuyang tawag""Nagsi-screen ng papasok na tawag""999+""Odbierz""Wideo""Odrzuć""Rozłącz""Połączenie przychodzące""Trwa połączenie""Filtruję połączenie przychodzące""999+""Одговори""Видео""Одбиј""Прекини везу""Долазни позив""Позив је у току""Проверава се долазни позив""999+""উত্তর দিন""ভিডিও""বাতিল করুন""কল কেটে দিন""ইনকামিং কল""চালু থাকা কল""ইনকামিং কল স্ক্রিনিং করা হচ্ছে""৯৯৯+""Svara""Video""Avvisa""Lägg på""Inkommande samtal""Pågående samtal""Ett inkommande samtal filtreras""999+""Responder""Vídeo""Rechazar""Colgar""Llamada entrante""Llamada en curso""Filtrando una llamada entrante""999+""જવાબ""વીડિયો""નકારો""સમાપ્ત કરો""ઇનકમિંગ કૉલ""ચાલુ કૉલ""ઇનકમિંગ કૉલનું સ્ક્રીનિંગ થાય છે""999+""Répondre""Vidéo""Refuser""Raccrocher""Appel entrant""Appel en cours""Filtrage d\'un appel entrant""999+""پاسخ دادن""ویدیو""رد کردن""قطع تماس""تماس ورودی""تماس درحال انجام""درحال غربال کردن تماس ورودی""999+""जवाब दें""वीडियो""अस्वीकार करें""कॉल काटें""आने वाला (इनकमिंग) कॉल""पहले से जारी कॉल""इनकमिंग कॉल को स्क्रीन किया जा रहा है""999+""Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""Vasta""Video""Keeldu""Lõpeta kõne""Sissetulev kõne""Käimasolev kõne""Sissetuleva kõne filtreerimine""999+""Ответить""Видео""Отклонить""Завершить""Входящий вызов""Текущий вызов""Фильтрация входящего вызова"">999""Annehmen""Video""Ablehnen""Auflegen""Eingehender Anruf""Aktueller Anruf""Filter für eingehenden Anruf""999+""Svar""Video""Avvis""Legg på""Innkommende anrop""Pågående samtale""Filtrerer et innkommende anrop""999+""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‎‏‏‏‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‎‏‎‏‎‎‎Answer‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‏‎‎‏‏‏‎‎‎‏‎‎‎‏‎‏‎‏‎‎‏‏‎‎‏‏‎‎‏‎‎‎‎‏‎‏‎‏‎‎‏‏‎‏‎‎‏‎‎‎‎‎‎Video‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‏‎‎‎‏‏‎‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‏‎‎‏‎‎Decline‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‏‎‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‎‏‏‎‏‏‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‏‎‏‏‏‎Hang Up‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‎‏‎‎‎‎‏‎‎‎‎‏‎‏‏‎‎‎‏‏‏‎‏‏‎‎‎‏‎‎‎‏‏‎‏‎‎‎‏‎‏‏‎‏‏‏‎Incoming call‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‎‏‏‏‏‏‏‏‎‏‎‎‎‏‎‏‏‎‎‏‏‏‏‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‏‎‎‏‎‏‏‏‏‏‎‎Ongoing call‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎‎‏‎‏‎‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎Screening an incoming call‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎""Răspunde""Video""Respinge""Închide""Apel primit""Apel în desfășurare""Se filtrează un apel primit""999+""ဖုန်းကိုင်ရန်""ဗီဒီယို""ငြင်းပယ်ရန်""ဖုန်းချရန်""အဝင်ခေါ်ဆိုမှု""လက်ရှိခေါ်ဆိုမှု""အဝင်ခေါ်ဆိုမှုကို စစ်ဆေးနေသည်""၉၉၉+""Përgjigju""Video""Refuzo""Mbyll""Telefonatë hyrëse""Telefonatë në vazhdim""Po filtron një telefonatë hyrëse""999+""Одговори""Видео""Одбиј""Спушти""Дојдовен повик""Тековен повик""Проверка на дојдовен повик""999+""Respon""Vídeo""Rebutja""Penja""Trucada entrant""Trucada en curs""S\'està filtrant una trucada entrant""999+""Պատասխանել""Տեսազանգ""Մերժել""Ավարտել""Մուտքային զանգ""Ընթացիկ զանգ""Մուտքային զանգի զտում""999+""Atbildēt""Video""Noraidīt""Pārtraukt""Ienākošais zvans""Pašreizējais zvans""Ienākošā zvana filtrēšana""999+""応答""ビデオ""拒否""通話終了""着信""通話中""着信をスクリーニング中""999+"#1f000000#8a000000#1d873b#d93025#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp4dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999AnswerVideoDeclineHang UpIncoming callOngoing callScreening an incoming call999+#FAFAF7#1A1A1A#C2410C + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000..9a31194 --- /dev/null +++ b/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties @@ -0,0 +1,17 @@ +#Sun May 10 10:16:07 CST 2026 +blog.wiwi.hoops.app-main-5\:/drawable/ic_launcher_foreground.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_foreground.xml +blog.wiwi.hoops.app-main-5\:/drawable/splash_icon.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/splash_icon.xml +blog.wiwi.hoops.app-main-5\:/mipmap-anydpi-v26/ic_launcher.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher.xml +blog.wiwi.hoops.app-main-5\:/mipmap-anydpi-v26/ic_launcher_round.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher_round.xml +blog.wiwi.hoops.app-main-5\:/mipmap-hdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-5\:/mipmap-hdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-5\:/mipmap-mdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-5\:/mipmap-mdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-5\:/mipmap-xhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-5\:/mipmap-xhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-5\:/mipmap-xxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-5\:/mipmap-xxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-5\:/mipmap-xxxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-5\:/mipmap-xxxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-5\:/xml/backup_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml +blog.wiwi.hoops.app-main-5\:/xml/data_extraction_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..6855cdf --- /dev/null +++ b/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,23 @@ + + + #C2410C + #FAFAF7 + #1A1A1A + #FAFAF7 + Hoops + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml new file mode 100644 index 0000000..ef6eef4 --- /dev/null +++ b/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml @@ -0,0 +1,15 @@ + +#FAFAF7Hoops#FAFAF7#1A1A1A#C2410C \ No newline at end of file diff --git a/app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state b/app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state new file mode 100644 index 0000000..1c983fc Binary files /dev/null and b/app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state differ diff --git a/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties b/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties new file mode 100644 index 0000000..a5897d9 --- /dev/null +++ b/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties @@ -0,0 +1 @@ +#Sun May 10 10:36:31 CST 2026 diff --git a/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml b/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml new file mode 100644 index 0000000..11f4e61 --- /dev/null +++ b/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/lintVitalAnalyzeRelease/module.xml b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/module.xml new file mode 100644 index 0000000..83c2833 --- /dev/null +++ b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/module.xml @@ -0,0 +1,19 @@ + + + + diff --git a/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml new file mode 100644 index 0000000..e3480d4 --- /dev/null +++ b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml new file mode 100644 index 0000000..56cbd0b --- /dev/null +++ b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release.xml b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release.xml new file mode 100644 index 0000000..558174d --- /dev/null +++ b/app/build/intermediates/incremental/lintVitalAnalyzeRelease/release.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + diff --git a/app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml b/app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml new file mode 100644 index 0000000..e19d801 --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml b/app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml new file mode 100644 index 0000000..9ae50fa --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml b/app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml new file mode 100644 index 0000000..4716a43 --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugAssets/merger.xml b/app/build/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..27ed4a7 --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000..91e22ea --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugShaders/merger.xml b/app/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..991cb58 --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeReleaseAssets/merger.xml b/app/build/intermediates/incremental/mergeReleaseAssets/merger.xml new file mode 100644 index 0000000..d0c017e --- /dev/null +++ b/app/build/intermediates/incremental/mergeReleaseAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/app/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml new file mode 100644 index 0000000..8e0e71f --- /dev/null +++ b/app/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/app/build/intermediates/incremental/mergeReleaseShaders/merger.xml new file mode 100644 index 0000000..9a20ee3 --- /dev/null +++ b/app/build/intermediates/incremental/mergeReleaseShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt new file mode 100644 index 0000000..2c4fe0d --- /dev/null +++ b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt @@ -0,0 +1,10 @@ +#Sun May 10 10:36:31 CST 2026 +base.0=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex +base.1=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex +base.2=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/dex/debug/mergeProjectDexDebug/7/classes.dex +path.0=classes.dex +path.1=0/classes.dex +path.2=7/classes.dex +renamed.0=classes.dex +renamed.1=classes2.dex +renamed.2=classes3.dex diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources new file mode 100644 index 0000000..754fe2c --- /dev/null +++ b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources @@ -0,0 +1 @@ +[{"key":"AndroidManifest.xml","name":"AndroidManifest.xml","size":5180,"crc":-71305468},{"key":"res/drawable-v23/compat_splash_screen.xml","name":"res/drawable-v23/compat_splash_screen.xml","size":1216,"crc":343607660},{"key":"res/drawable-v23/compat_splash_screen_no_icon_background.xml","name":"res/drawable-v23/compat_splash_screen_no_icon_background.xml","size":1076,"crc":1168983536},{"key":"res/drawable/ic_launcher_foreground.xml","name":"res/drawable/ic_launcher_foreground.xml","size":600,"crc":1177652902},{"key":"res/drawable/icon_background.xml","name":"res/drawable/icon_background.xml","size":372,"crc":1268571022},{"key":"res/drawable-v21/notification_action_background.xml","name":"res/drawable-v21/notification_action_background.xml","size":1180,"crc":1921271335},{"key":"res/drawable/notification_bg.xml","name":"res/drawable/notification_bg.xml","size":532,"crc":668849812},{"key":"res/drawable/notification_bg_low.xml","name":"res/drawable/notification_bg_low.xml","size":532,"crc":862524204},{"key":"res/drawable/notification_icon_background.xml","name":"res/drawable/notification_icon_background.xml","size":372,"crc":1110277482},{"key":"res/drawable/notification_tile_bg.xml","name":"res/drawable/notification_tile_bg.xml","size":304,"crc":1837628655},{"key":"res/drawable/splash_icon.xml","name":"res/drawable/splash_icon.xml","size":600,"crc":-2110408755},{"key":"res/drawable-ldpi-v4/ic_call_answer.png","name":"res/drawable-ldpi-v4/ic_call_answer.png","size":270,"crc":-1111551484},{"key":"res/drawable-ldpi-v4/ic_call_answer_low.png","name":"res/drawable-ldpi-v4/ic_call_answer_low.png","size":270,"crc":-1111551484},{"key":"res/drawable-ldpi-v4/ic_call_answer_video.png","name":"res/drawable-ldpi-v4/ic_call_answer_video.png","size":199,"crc":480365690},{"key":"res/drawable-ldpi-v4/ic_call_answer_video_low.png","name":"res/drawable-ldpi-v4/ic_call_answer_video_low.png","size":199,"crc":480365690},{"key":"res/drawable-ldpi-v4/ic_call_decline.png","name":"res/drawable-ldpi-v4/ic_call_decline.png","size":201,"crc":-1653259046},{"key":"res/drawable-ldpi-v4/ic_call_decline_low.png","name":"res/drawable-ldpi-v4/ic_call_decline_low.png","size":201,"crc":-1653259046},{"key":"res/drawable-mdpi-v4/ic_call_answer.png","name":"res/drawable-mdpi-v4/ic_call_answer.png","size":317,"crc":-1572159854},{"key":"res/drawable-mdpi-v4/ic_call_answer_low.png","name":"res/drawable-mdpi-v4/ic_call_answer_low.png","size":317,"crc":-1572159854},{"key":"res/drawable-mdpi-v4/ic_call_answer_video.png","name":"res/drawable-mdpi-v4/ic_call_answer_video.png","size":206,"crc":-702766687},{"key":"res/drawable-mdpi-v4/ic_call_answer_video_low.png","name":"res/drawable-mdpi-v4/ic_call_answer_video_low.png","size":206,"crc":-702766687},{"key":"res/drawable-mdpi-v4/ic_call_decline.png","name":"res/drawable-mdpi-v4/ic_call_decline.png","size":264,"crc":-1114293200},{"key":"res/drawable-mdpi-v4/ic_call_decline_low.png","name":"res/drawable-mdpi-v4/ic_call_decline_low.png","size":264,"crc":-1114293200},{"key":"res/drawable-mdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-mdpi-v4/notification_bg_low_normal.9.png","size":215,"crc":-637905481},{"key":"res/drawable-mdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-mdpi-v4/notification_bg_low_pressed.9.png","size":223,"crc":-1206985160},{"key":"res/drawable-mdpi-v4/notification_bg_normal.9.png","name":"res/drawable-mdpi-v4/notification_bg_normal.9.png","size":215,"crc":-1053437548},{"key":"res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png","size":223,"crc":-316674454},{"key":"res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png","size":98,"crc":782467851},{"key":"res/drawable-hdpi-v4/ic_call_answer.png","name":"res/drawable-hdpi-v4/ic_call_answer.png","size":472,"crc":54480522},{"key":"res/drawable-hdpi-v4/ic_call_answer_low.png","name":"res/drawable-hdpi-v4/ic_call_answer_low.png","size":472,"crc":54480522},{"key":"res/drawable-hdpi-v4/ic_call_answer_video.png","name":"res/drawable-hdpi-v4/ic_call_answer_video.png","size":254,"crc":-1411185258},{"key":"res/drawable-hdpi-v4/ic_call_answer_video_low.png","name":"res/drawable-hdpi-v4/ic_call_answer_video_low.png","size":254,"crc":-1411185258},{"key":"res/drawable-hdpi-v4/ic_call_decline.png","name":"res/drawable-hdpi-v4/ic_call_decline.png","size":375,"crc":-1481215084},{"key":"res/drawable-hdpi-v4/ic_call_decline_low.png","name":"res/drawable-hdpi-v4/ic_call_decline_low.png","size":375,"crc":-1481215084},{"key":"res/drawable-hdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-hdpi-v4/notification_bg_low_normal.9.png","size":212,"crc":931926398},{"key":"res/drawable-hdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-hdpi-v4/notification_bg_low_pressed.9.png","size":225,"crc":1348069157},{"key":"res/drawable-hdpi-v4/notification_bg_normal.9.png","name":"res/drawable-hdpi-v4/notification_bg_normal.9.png","size":212,"crc":-1037255009},{"key":"res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png","size":225,"crc":-1579774768},{"key":"res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png","name":"res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png","size":909,"crc":-883619049},{"key":"res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png","size":107,"crc":1859699185},{"key":"res/drawable-xhdpi-v4/ic_call_answer.png","name":"res/drawable-xhdpi-v4/ic_call_answer.png","size":623,"crc":-862780344},{"key":"res/drawable-xhdpi-v4/ic_call_answer_low.png","name":"res/drawable-xhdpi-v4/ic_call_answer_low.png","size":623,"crc":-862780344},{"key":"res/drawable-xhdpi-v4/ic_call_answer_video.png","name":"res/drawable-xhdpi-v4/ic_call_answer_video.png","size":290,"crc":-467299563},{"key":"res/drawable-xhdpi-v4/ic_call_answer_video_low.png","name":"res/drawable-xhdpi-v4/ic_call_answer_video_low.png","size":290,"crc":-467299563},{"key":"res/drawable-xhdpi-v4/ic_call_decline.png","name":"res/drawable-xhdpi-v4/ic_call_decline.png","size":452,"crc":-329617338},{"key":"res/drawable-xhdpi-v4/ic_call_decline_low.png","name":"res/drawable-xhdpi-v4/ic_call_decline_low.png","size":452,"crc":-329617338},{"key":"res/drawable-xhdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-xhdpi-v4/notification_bg_low_normal.9.png","size":221,"crc":986722933},{"key":"res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png","size":252,"crc":-930084210},{"key":"res/drawable-xhdpi-v4/notification_bg_normal.9.png","name":"res/drawable-xhdpi-v4/notification_bg_normal.9.png","size":221,"crc":-1723534566},{"key":"res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png","size":247,"crc":-1030044328},{"key":"res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png","size":138,"crc":72836353},{"key":"res/drawable-xxhdpi-v4/ic_call_answer.png","name":"res/drawable-xxhdpi-v4/ic_call_answer.png","size":884,"crc":250722604},{"key":"res/drawable-xxhdpi-v4/ic_call_answer_low.png","name":"res/drawable-xxhdpi-v4/ic_call_answer_low.png","size":884,"crc":250722604},{"key":"res/drawable-xxhdpi-v4/ic_call_answer_video.png","name":"res/drawable-xxhdpi-v4/ic_call_answer_video.png","size":384,"crc":1929539317},{"key":"res/drawable-xxhdpi-v4/ic_call_answer_video_low.png","name":"res/drawable-xxhdpi-v4/ic_call_answer_video_low.png","size":384,"crc":1929539317},{"key":"res/drawable-xxhdpi-v4/ic_call_decline.png","name":"res/drawable-xxhdpi-v4/ic_call_decline.png","size":628,"crc":2135501436},{"key":"res/drawable-xxhdpi-v4/ic_call_decline_low.png","name":"res/drawable-xxhdpi-v4/ic_call_decline_low.png","size":628,"crc":2135501436},{"key":"res/drawable-xxxhdpi-v4/ic_call_answer.png","name":"res/drawable-xxxhdpi-v4/ic_call_answer.png","size":1171,"crc":220143978},{"key":"res/drawable-xxxhdpi-v4/ic_call_answer_low.png","name":"res/drawable-xxxhdpi-v4/ic_call_answer_low.png","size":1171,"crc":220143978},{"key":"res/drawable-xxxhdpi-v4/ic_call_answer_video.png","name":"res/drawable-xxxhdpi-v4/ic_call_answer_video.png","size":465,"crc":-129832852},{"key":"res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png","name":"res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png","size":465,"crc":-129832852},{"key":"res/drawable-xxxhdpi-v4/ic_call_decline.png","name":"res/drawable-xxxhdpi-v4/ic_call_decline.png","size":823,"crc":-1259742515},{"key":"res/drawable-xxxhdpi-v4/ic_call_decline_low.png","name":"res/drawable-xxxhdpi-v4/ic_call_decline_low.png","size":823,"crc":-1259742515},{"key":"res/drawable-anydpi-v21/ic_call_answer.xml","name":"res/drawable-anydpi-v21/ic_call_answer.xml","size":1356,"crc":-417851860},{"key":"res/drawable-anydpi-v21/ic_call_answer_low.xml","name":"res/drawable-anydpi-v21/ic_call_answer_low.xml","size":1320,"crc":-2078588160},{"key":"res/drawable-anydpi-v21/ic_call_answer_video.xml","name":"res/drawable-anydpi-v21/ic_call_answer_video.xml","size":772,"crc":1837259622},{"key":"res/drawable-anydpi-v21/ic_call_answer_video_low.xml","name":"res/drawable-anydpi-v21/ic_call_answer_video_low.xml","size":736,"crc":1149510206},{"key":"res/drawable-anydpi-v21/ic_call_decline.xml","name":"res/drawable-anydpi-v21/ic_call_decline.xml","size":1528,"crc":-1902206380},{"key":"res/drawable-anydpi-v21/ic_call_decline_low.xml","name":"res/drawable-anydpi-v21/ic_call_decline_low.xml","size":1492,"crc":-593934670},{"key":"res/layout/custom_dialog.xml","name":"res/layout/custom_dialog.xml","size":612,"crc":131229495},{"key":"res/layout/ime_base_split_test_activity.xml","name":"res/layout/ime_base_split_test_activity.xml","size":364,"crc":1066515116},{"key":"res/layout/ime_secondary_split_test_activity.xml","name":"res/layout/ime_secondary_split_test_activity.xml","size":876,"crc":-242559952},{"key":"res/layout-v21/notification_action.xml","name":"res/layout-v21/notification_action.xml","size":1052,"crc":-1929485984},{"key":"res/layout-v21/notification_action_tombstone.xml","name":"res/layout-v21/notification_action_tombstone.xml","size":1228,"crc":2009022568},{"key":"res/layout-v21/notification_template_custom_big.xml","name":"res/layout-v21/notification_template_custom_big.xml","size":2456,"crc":-613915968},{"key":"res/layout-v21/notification_template_icon_group.xml","name":"res/layout-v21/notification_template_icon_group.xml","size":988,"crc":625918280},{"key":"res/layout/notification_template_part_chronometer.xml","name":"res/layout/notification_template_part_chronometer.xml","size":440,"crc":-606944524},{"key":"res/layout/notification_template_part_time.xml","name":"res/layout/notification_template_part_time.xml","size":440,"crc":1190278507},{"key":"res/layout/splash_screen_view.xml","name":"res/layout/splash_screen_view.xml","size":616,"crc":-257501208},{"key":"res/mipmap-mdpi-v4/ic_launcher.png","name":"res/mipmap-mdpi-v4/ic_launcher.png","size":1590,"crc":783457518},{"key":"res/mipmap-mdpi-v4/ic_launcher_round.png","name":"res/mipmap-mdpi-v4/ic_launcher_round.png","size":2595,"crc":-767334847},{"key":"res/mipmap-hdpi-v4/ic_launcher.png","name":"res/mipmap-hdpi-v4/ic_launcher.png","size":2360,"crc":577028574},{"key":"res/mipmap-hdpi-v4/ic_launcher_round.png","name":"res/mipmap-hdpi-v4/ic_launcher_round.png","size":3859,"crc":-117995430},{"key":"res/mipmap-xhdpi-v4/ic_launcher.png","name":"res/mipmap-xhdpi-v4/ic_launcher.png","size":3392,"crc":1797958942},{"key":"res/mipmap-xhdpi-v4/ic_launcher_round.png","name":"res/mipmap-xhdpi-v4/ic_launcher_round.png","size":5222,"crc":1498913252},{"key":"res/mipmap-xxhdpi-v4/ic_launcher.png","name":"res/mipmap-xxhdpi-v4/ic_launcher.png","size":5033,"crc":-375979866},{"key":"res/mipmap-xxhdpi-v4/ic_launcher_round.png","name":"res/mipmap-xxhdpi-v4/ic_launcher_round.png","size":7612,"crc":-1799419091},{"key":"res/mipmap-xxxhdpi-v4/ic_launcher.png","name":"res/mipmap-xxxhdpi-v4/ic_launcher.png","size":6885,"crc":1187971930},{"key":"res/mipmap-xxxhdpi-v4/ic_launcher_round.png","name":"res/mipmap-xxxhdpi-v4/ic_launcher_round.png","size":10499,"crc":1627917445},{"key":"res/mipmap-anydpi-v26/ic_launcher.xml","name":"res/mipmap-anydpi-v26/ic_launcher.xml","size":548,"crc":-1287677739},{"key":"res/mipmap-anydpi-v26/ic_launcher_round.xml","name":"res/mipmap-anydpi-v26/ic_launcher_round.xml","size":548,"crc":-1287677739},{"key":"res/xml/backup_rules.xml","name":"res/xml/backup_rules.xml","size":132,"crc":-1826818449},{"key":"res/xml/data_extraction_rules.xml","name":"res/xml/data_extraction_rules.xml","size":296,"crc":-479570485},{"key":"resources.arsc","name":"resources.arsc","size":60928,"crc":-121629586}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 new file mode 100644 index 0000000..e069fd2 --- /dev/null +++ b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 @@ -0,0 +1 @@ +[{"key":"DebugProbesKt.bin","name":"DebugProbesKt.bin","size":1738,"crc":2094978271},{"key":"META-INF/androidx.activity_activity.version","name":"META-INF/androidx.activity_activity.version","size":6,"crc":-2139691038},{"key":"META-INF/androidx.annotation_annotation-experimental.version","name":"META-INF/androidx.annotation_annotation-experimental.version","size":6,"crc":1914453823},{"key":"META-INF/androidx.arch.core_core-runtime.version","name":"META-INF/androidx.arch.core_core-runtime.version","size":67,"crc":1307063212},{"key":"META-INF/androidx.core_core-ktx.version","name":"META-INF/androidx.core_core-ktx.version","size":7,"crc":-1000712479},{"key":"META-INF/androidx.core_core-splashscreen.version","name":"META-INF/androidx.core_core-splashscreen.version","size":6,"crc":-463103703},{"key":"META-INF/androidx.core_core.version","name":"META-INF/androidx.core_core.version","size":7,"crc":-1000712479},{"key":"META-INF/androidx.interpolator_interpolator.version","name":"META-INF/androidx.interpolator_interpolator.version","size":6,"crc":-42031000},{"key":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","name":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","size":78,"crc":1772768774},{"key":"META-INF/androidx.lifecycle_lifecycle-runtime.version","name":"META-INF/androidx.lifecycle_lifecycle-runtime.version","size":72,"crc":1585985631},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","size":85,"crc":-1370551005},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","size":74,"crc":-1068237017},{"key":"META-INF/androidx.profileinstaller_profileinstaller.version","name":"META-INF/androidx.profileinstaller_profileinstaller.version","size":6,"crc":-154126649},{"key":"META-INF/androidx.savedstate_savedstate.version","name":"META-INF/androidx.savedstate_savedstate.version","size":6,"crc":1315721634},{"key":"META-INF/androidx.startup_startup-runtime.version","name":"META-INF/androidx.startup_startup-runtime.version","size":6,"crc":1557790284},{"key":"META-INF/androidx.tracing_tracing.version","name":"META-INF/androidx.tracing_tracing.version","size":6,"crc":-42031000},{"key":"META-INF/androidx.versionedparcelable_versionedparcelable.version","name":"META-INF/androidx.versionedparcelable_versionedparcelable.version","size":6,"crc":1557790284},{"key":"META-INF/kotlinx_coroutines_android.version","name":"META-INF/kotlinx_coroutines_android.version","size":5,"crc":282843805},{"key":"META-INF/kotlinx_coroutines_core.version","name":"META-INF/kotlinx_coroutines_core.version","size":5,"crc":282843805},{"key":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","name":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","size":54,"crc":-1889973424},{"key":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","name":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","size":52,"crc":1268078975},{"key":"kotlin/annotation/annotation.kotlin_builtins","name":"kotlin/annotation/annotation.kotlin_builtins","size":928,"crc":-1904709562},{"key":"kotlin/collections/collections.kotlin_builtins","name":"kotlin/collections/collections.kotlin_builtins","size":3685,"crc":-199479089},{"key":"kotlin/coroutines/coroutines.kotlin_builtins","name":"kotlin/coroutines/coroutines.kotlin_builtins","size":200,"crc":-962600637},{"key":"kotlin/internal/internal.kotlin_builtins","name":"kotlin/internal/internal.kotlin_builtins","size":646,"crc":-657313011},{"key":"kotlin/kotlin.kotlin_builtins","name":"kotlin/kotlin.kotlin_builtins","size":18640,"crc":-142636579},{"key":"kotlin/ranges/ranges.kotlin_builtins","name":"kotlin/ranges/ranges.kotlin_builtins","size":3399,"crc":-885290259},{"key":"kotlin/reflect/reflect.kotlin_builtins","name":"kotlin/reflect/reflect.kotlin_builtins","size":2426,"crc":2118008088}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt b/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt new file mode 100644 index 0000000..0515509 --- /dev/null +++ b/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt @@ -0,0 +1,4 @@ +#Sun May 10 10:36:31 CST 2026 +base.0=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex +path.0=0/classes.dex +renamed.0=classes.dex diff --git a/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources b/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources new file mode 100644 index 0000000..f42fd6e --- /dev/null +++ b/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources @@ -0,0 +1 @@ +[{"key":"AndroidManifest.xml","name":"AndroidManifest.xml","size":1804,"crc":-439967596},{"key":"resources.arsc","name":"resources.arsc","size":40,"crc":322326539}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 b/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/app/build/intermediates/incremental/packageRelease/tmp/release/dex-renamer-state.txt b/app/build/intermediates/incremental/packageRelease/tmp/release/dex-renamer-state.txt new file mode 100644 index 0000000..07dd90a --- /dev/null +++ b/app/build/intermediates/incremental/packageRelease/tmp/release/dex-renamer-state.txt @@ -0,0 +1,4 @@ +#Sun May 10 10:40:38 CST 2026 +base.0=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/dex/release/mergeDexRelease/classes.dex +path.0=classes.dex +renamed.0=classes.dex diff --git a/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/androidResources b/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/androidResources new file mode 100644 index 0000000..6dc918c --- /dev/null +++ b/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/androidResources @@ -0,0 +1 @@ +[{"key":"res/Ag.png","name":"res/Ag.png","size":465,"crc":-129832852},{"key":"AndroidManifest.xml","name":"AndroidManifest.xml","size":5128,"crc":1893050029},{"key":"res/Ck.png","name":"res/Ck.png","size":823,"crc":-1259742515},{"key":"res/Ac.xml","name":"res/Ac.xml","size":772,"crc":1837259622},{"key":"res/Ec.png","name":"res/Ec.png","size":206,"crc":-702766687},{"key":"res/D-.xml","name":"res/D-.xml","size":1528,"crc":-1902206380},{"key":"res/GY.png","name":"res/GY.png","size":290,"crc":-467299563},{"key":"res/G2.xml","name":"res/G2.xml","size":736,"crc":1149510206},{"key":"res/II.xml","name":"res/II.xml","size":1076,"crc":1168983536},{"key":"res/_H.xml","name":"res/_H.xml","size":1492,"crc":-593934670},{"key":"res/FS.png","name":"res/FS.png","size":3392,"crc":1797958942},{"key":"res/LO.png","name":"res/LO.png","size":264,"crc":-1114293200},{"key":"res/Ma.9.png","name":"res/Ma.9.png","size":247,"crc":-1030044328},{"key":"res/wb.png","name":"res/wb.png","size":5219,"crc":1723112911},{"key":"res/OM.png","name":"res/OM.png","size":384,"crc":1929539317},{"key":"res/Gc.png","name":"res/Gc.png","size":10499,"crc":1627917445},{"key":"res/Q-.png","name":"res/Q-.png","size":270,"crc":-1111551484},{"key":"res/BW.xml","name":"res/BW.xml","size":548,"crc":-1287677739},{"key":"res/S8.xml","name":"res/S8.xml","size":1052,"crc":-1929485984},{"key":"res/Qq.xml","name":"res/Qq.xml","size":132,"crc":-1826818449},{"key":"res/U-.9.png","name":"res/U-.9.png","size":223,"crc":-1206985160},{"key":"res/VW.png","name":"res/VW.png","size":452,"crc":-329617338},{"key":"res/Ws.xml","name":"res/Ws.xml","size":1180,"crc":1921271335},{"key":"res/4j.xml","name":"res/4j.xml","size":296,"crc":-479570485},{"key":"res/Yy.xml","name":"res/Yy.xml","size":600,"crc":-2110408755},{"key":"res/aU.png","name":"res/aU.png","size":628,"crc":2135501436},{"key":"res/bi.png","name":"res/bi.png","size":317,"crc":-1572159854},{"key":"res/c6.xml","name":"res/c6.xml","size":372,"crc":1110277482},{"key":"res/a0.xml","name":"res/a0.xml","size":1228,"crc":2009022568},{"key":"res/fO.png","name":"res/fO.png","size":7612,"crc":-1799419091},{"key":"res/gK.9.png","name":"res/gK.9.png","size":215,"crc":-637905481},{"key":"res/hQ.xml","name":"res/hQ.xml","size":1216,"crc":343607660},{"key":"res/iQ.xml","name":"res/iQ.xml","size":988,"crc":625918280},{"key":"res/je.9.png","name":"res/je.9.png","size":212,"crc":931926398},{"key":"res/kS.png","name":"res/kS.png","size":375,"crc":-1481215084},{"key":"res/o-.png","name":"res/o-.png","size":6885,"crc":1187971930},{"key":"res/pu.png","name":"res/pu.png","size":909,"crc":-883619049},{"key":"res/pY.png","name":"res/pY.png","size":107,"crc":1859699185},{"key":"res/p8.png","name":"res/p8.png","size":823,"crc":-1259742515},{"key":"res/s4.png","name":"res/s4.png","size":98,"crc":782467851},{"key":"res/sA.9.png","name":"res/sA.9.png","size":212,"crc":-1037255009},{"key":"res/xa.9.png","name":"res/xa.9.png","size":221,"crc":986722933},{"key":"res/z-.9.png","name":"res/z-.9.png","size":221,"crc":-1723534566},{"key":"res/0K.xml","name":"res/0K.xml","size":548,"crc":-1287677739},{"key":"res/2K.9.png","name":"res/2K.9.png","size":225,"crc":1348069157},{"key":"res/5c.png","name":"res/5c.png","size":138,"crc":72836353},{"key":"res/7m.png","name":"res/7m.png","size":884,"crc":250722604},{"key":"res/8c.png","name":"res/8c.png","size":3859,"crc":-117995430},{"key":"res/9m.xml","name":"res/9m.xml","size":304,"crc":1837628655},{"key":"res/9w.png","name":"res/9w.png","size":1590,"crc":1820601171},{"key":"res/_y.xml","name":"res/_y.xml","size":612,"crc":131229495},{"key":"res/BT.png","name":"res/BT.png","size":264,"crc":-1114293200},{"key":"res/C_.9.png","name":"res/C_.9.png","size":215,"crc":-1053437548},{"key":"res/Bb.xml","name":"res/Bb.xml","size":616,"crc":-257501208},{"key":"res/Ff.png","name":"res/Ff.png","size":317,"crc":-1572159854},{"key":"res/MD.png","name":"res/MD.png","size":1171,"crc":220143978},{"key":"res/OX.png","name":"res/OX.png","size":375,"crc":-1481215084},{"key":"res/OX1.png","name":"res/OX1.png","size":465,"crc":-129832852},{"key":"res/Qr.xml","name":"res/Qr.xml","size":600,"crc":1177652902},{"key":"res/RJ.png","name":"res/RJ.png","size":5033,"crc":-1316748312},{"key":"resources.arsc","name":"resources.arsc","size":57764,"crc":-2090676078},{"key":"res/Tr.png","name":"res/Tr.png","size":254,"crc":-1411185258},{"key":"res/Tl.xml","name":"res/Tl.xml","size":1320,"crc":-2078588160},{"key":"res/W5.png","name":"res/W5.png","size":472,"crc":54480522},{"key":"res/YD.png","name":"res/YD.png","size":201,"crc":-1653259046},{"key":"res/Y9.png","name":"res/Y9.png","size":623,"crc":-862780344},{"key":"res/aR.png","name":"res/aR.png","size":623,"crc":-862780344},{"key":"res/Y3.png","name":"res/Y3.png","size":384,"crc":1929539317},{"key":"res/cr.xml","name":"res/cr.xml","size":364,"crc":1066515116},{"key":"res/df.xml","name":"res/df.xml","size":532,"crc":862524204},{"key":"res/cV.xml","name":"res/cV.xml","size":440,"crc":1190278507},{"key":"res/gr.png","name":"res/gr.png","size":472,"crc":54480522},{"key":"res/jB.xml","name":"res/jB.xml","size":372,"crc":1268571022},{"key":"res/lR.xml","name":"res/lR.xml","size":440,"crc":-606944524},{"key":"res/nz.xml","name":"res/nz.xml","size":532,"crc":668849812},{"key":"res/o_.9.png","name":"res/o_.9.png","size":252,"crc":-930084210},{"key":"res/td.png","name":"res/td.png","size":199,"crc":480365690},{"key":"res/vL.9.png","name":"res/vL.9.png","size":223,"crc":-316674454},{"key":"res/w7.png","name":"res/w7.png","size":270,"crc":-1111551484},{"key":"res/wN.9.png","name":"res/wN.9.png","size":225,"crc":-1579774768},{"key":"res/xN.xml","name":"res/xN.xml","size":2456,"crc":-613915968},{"key":"res/zL.png","name":"res/zL.png","size":206,"crc":-702766687},{"key":"res/zz.png","name":"res/zz.png","size":884,"crc":250722604},{"key":"res/0Z.png","name":"res/0Z.png","size":1171,"crc":220143978},{"key":"res/zR.png","name":"res/zR.png","size":2595,"crc":756742406},{"key":"res/yn.png","name":"res/yn.png","size":1665,"crc":1716787306},{"key":"res/4z.xml","name":"res/4z.xml","size":876,"crc":-242559952},{"key":"res/5v.png","name":"res/5v.png","size":201,"crc":-1653259046},{"key":"res/6P.png","name":"res/6P.png","size":199,"crc":480365690},{"key":"res/7V.png","name":"res/7V.png","size":254,"crc":-1411185258},{"key":"res/71.png","name":"res/71.png","size":290,"crc":-467299563},{"key":"res/6d.png","name":"res/6d.png","size":452,"crc":-329617338},{"key":"res/5P.png","name":"res/5P.png","size":628,"crc":2135501436},{"key":"res/8t.xml","name":"res/8t.xml","size":1356,"crc":-417851860}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/javaResources0 b/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/javaResources0 new file mode 100644 index 0000000..e069fd2 --- /dev/null +++ b/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/javaResources0 @@ -0,0 +1 @@ +[{"key":"DebugProbesKt.bin","name":"DebugProbesKt.bin","size":1738,"crc":2094978271},{"key":"META-INF/androidx.activity_activity.version","name":"META-INF/androidx.activity_activity.version","size":6,"crc":-2139691038},{"key":"META-INF/androidx.annotation_annotation-experimental.version","name":"META-INF/androidx.annotation_annotation-experimental.version","size":6,"crc":1914453823},{"key":"META-INF/androidx.arch.core_core-runtime.version","name":"META-INF/androidx.arch.core_core-runtime.version","size":67,"crc":1307063212},{"key":"META-INF/androidx.core_core-ktx.version","name":"META-INF/androidx.core_core-ktx.version","size":7,"crc":-1000712479},{"key":"META-INF/androidx.core_core-splashscreen.version","name":"META-INF/androidx.core_core-splashscreen.version","size":6,"crc":-463103703},{"key":"META-INF/androidx.core_core.version","name":"META-INF/androidx.core_core.version","size":7,"crc":-1000712479},{"key":"META-INF/androidx.interpolator_interpolator.version","name":"META-INF/androidx.interpolator_interpolator.version","size":6,"crc":-42031000},{"key":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","name":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","size":78,"crc":1772768774},{"key":"META-INF/androidx.lifecycle_lifecycle-runtime.version","name":"META-INF/androidx.lifecycle_lifecycle-runtime.version","size":72,"crc":1585985631},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","size":85,"crc":-1370551005},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","size":74,"crc":-1068237017},{"key":"META-INF/androidx.profileinstaller_profileinstaller.version","name":"META-INF/androidx.profileinstaller_profileinstaller.version","size":6,"crc":-154126649},{"key":"META-INF/androidx.savedstate_savedstate.version","name":"META-INF/androidx.savedstate_savedstate.version","size":6,"crc":1315721634},{"key":"META-INF/androidx.startup_startup-runtime.version","name":"META-INF/androidx.startup_startup-runtime.version","size":6,"crc":1557790284},{"key":"META-INF/androidx.tracing_tracing.version","name":"META-INF/androidx.tracing_tracing.version","size":6,"crc":-42031000},{"key":"META-INF/androidx.versionedparcelable_versionedparcelable.version","name":"META-INF/androidx.versionedparcelable_versionedparcelable.version","size":6,"crc":1557790284},{"key":"META-INF/kotlinx_coroutines_android.version","name":"META-INF/kotlinx_coroutines_android.version","size":5,"crc":282843805},{"key":"META-INF/kotlinx_coroutines_core.version","name":"META-INF/kotlinx_coroutines_core.version","size":5,"crc":282843805},{"key":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","name":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","size":54,"crc":-1889973424},{"key":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","name":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","size":52,"crc":1268078975},{"key":"kotlin/annotation/annotation.kotlin_builtins","name":"kotlin/annotation/annotation.kotlin_builtins","size":928,"crc":-1904709562},{"key":"kotlin/collections/collections.kotlin_builtins","name":"kotlin/collections/collections.kotlin_builtins","size":3685,"crc":-199479089},{"key":"kotlin/coroutines/coroutines.kotlin_builtins","name":"kotlin/coroutines/coroutines.kotlin_builtins","size":200,"crc":-962600637},{"key":"kotlin/internal/internal.kotlin_builtins","name":"kotlin/internal/internal.kotlin_builtins","size":646,"crc":-657313011},{"key":"kotlin/kotlin.kotlin_builtins","name":"kotlin/kotlin.kotlin_builtins","size":18640,"crc":-142636579},{"key":"kotlin/ranges/ranges.kotlin_builtins","name":"kotlin/ranges/ranges.kotlin_builtins","size":3399,"crc":-885290259},{"key":"kotlin/reflect/reflect.kotlin_builtins","name":"kotlin/reflect/reflect.kotlin_builtins","size":2426,"crc":2118008088}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/merge-state b/app/build/intermediates/incremental/release-mergeJavaRes/merge-state new file mode 100644 index 0000000..5d7bfc2 Binary files /dev/null and b/app/build/intermediates/incremental/release-mergeJavaRes/merge-state differ diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/+Z1AHbvUq5rCVbdWeZ91xA== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/+Z1AHbvUq5rCVbdWeZ91xA== new file mode 100644 index 0000000..bf919d5 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/+Z1AHbvUq5rCVbdWeZ91xA== @@ -0,0 +1 @@ +[{"key":"androidx/startup/AppInitializer.class","name":"androidx/startup/AppInitializer.class","size":7553,"crc":870624420},{"key":"androidx/startup/InitializationProvider.class","name":"androidx/startup/InitializationProvider.class","size":2530,"crc":-159478496},{"key":"androidx/startup/Initializer.class","name":"androidx/startup/Initializer.class","size":555,"crc":-1348991370},{"key":"androidx/startup/StartupException.class","name":"androidx/startup/StartupException.class","size":1051,"crc":-464023827},{"key":"androidx/startup/StartupLogger.class","name":"androidx/startup/StartupLogger.class","size":1324,"crc":1793103804},{"key":"META-INF/androidx.startup_startup-runtime.version","name":"META-INF/androidx.startup_startup-runtime.version","size":6,"crc":1557790284}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/5GHouVg53Ysl9Z88GRlewg== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/5GHouVg53Ysl9Z88GRlewg== new file mode 100644 index 0000000..79b2efd --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/5GHouVg53Ysl9Z88GRlewg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"META-INF/kotlinx-coroutines-android.kotlin_module","name":"META-INF/kotlinx-coroutines-android.kotlin_module","size":75,"crc":284142387},{"key":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$$inlined$Runnable$1.class","name":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$$inlined$Runnable$1.class","size":2078,"crc":-395684579},{"key":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$1.class","name":"kotlinx/coroutines/android/HandlerContext$scheduleResumeAfterDelay$1.class","size":1831,"crc":804274569},{"key":"kotlinx/coroutines/android/HandlerDispatcherKt.class","name":"kotlinx/coroutines/android/HandlerDispatcherKt.class","size":9480,"crc":245039586},{"key":"kotlinx/coroutines/android/HandlerDispatcherKt$awaitFrame$lambda-3$$inlined$Runnable$1.class","name":"kotlinx/coroutines/android/HandlerDispatcherKt$awaitFrame$lambda-3$$inlined$Runnable$1.class","size":1526,"crc":1247786088},{"key":"kotlinx/coroutines/android/AndroidDispatcherFactory.class","name":"kotlinx/coroutines/android/AndroidDispatcherFactory.class","size":2203,"crc":-1412015008},{"key":"kotlinx/coroutines/android/HandlerDispatcher.class","name":"kotlinx/coroutines/android/HandlerDispatcher.class","size":2358,"crc":-1159760937},{"key":"kotlinx/coroutines/android/AndroidExceptionPreHandler.class","name":"kotlinx/coroutines/android/AndroidExceptionPreHandler.class","size":2871,"crc":-227947537},{"key":"kotlinx/coroutines/android/HandlerContext.class","name":"kotlinx/coroutines/android/HandlerContext.class","size":7940,"crc":800098068},{"key":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","name":"META-INF/services/kotlinx.coroutines.CoroutineExceptionHandler","size":54,"crc":-1889973424},{"key":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","name":"META-INF/services/kotlinx.coroutines.internal.MainDispatcherFactory","size":52,"crc":1268078975},{"key":"META-INF/com.android.tools/r8-from-1.6.0/coroutines.pro","name":"META-INF/com.android.tools/r8-from-1.6.0/coroutines.pro","size":899,"crc":2032253094},{"key":"META-INF/com.android.tools/r8-upto-3.0.0/coroutines.pro","name":"META-INF/com.android.tools/r8-upto-3.0.0/coroutines.pro","size":558,"crc":1737114335},{"key":"META-INF/com.android.tools/proguard/coroutines.pro","name":"META-INF/com.android.tools/proguard/coroutines.pro","size":300,"crc":-477435061},{"key":"META-INF/proguard/coroutines.pro","name":"META-INF/proguard/coroutines.pro","size":419,"crc":77044690},{"key":"META-INF/kotlinx_coroutines_android.version","name":"META-INF/kotlinx_coroutines_android.version","size":5,"crc":282843805}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/77FS4VEaE6KRg3fr6XtHuQ== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/77FS4VEaE6KRg3fr6XtHuQ== new file mode 100644 index 0000000..0bc88e8 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/77FS4VEaE6KRg3fr6XtHuQ== @@ -0,0 +1 @@ +[{"key":"androidx/profileinstaller/BenchmarkOperation$Api21ContextHelper.class","name":"androidx/profileinstaller/BenchmarkOperation$Api21ContextHelper.class","size":784,"crc":910408423},{"key":"androidx/profileinstaller/BenchmarkOperation$Api24ContextHelper.class","name":"androidx/profileinstaller/BenchmarkOperation$Api24ContextHelper.class","size":898,"crc":-1846908175},{"key":"androidx/profileinstaller/BenchmarkOperation.class","name":"androidx/profileinstaller/BenchmarkOperation.class","size":2217,"crc":-235143906},{"key":"androidx/profileinstaller/DeviceProfileWriter.class","name":"androidx/profileinstaller/DeviceProfileWriter.class","size":9901,"crc":1761970309},{"key":"androidx/profileinstaller/DexProfileData.class","name":"androidx/profileinstaller/DexProfileData.class","size":1352,"crc":-447897183},{"key":"androidx/profileinstaller/Encoding.class","name":"androidx/profileinstaller/Encoding.class","size":6317,"crc":-122203374},{"key":"androidx/profileinstaller/FileSectionType.class","name":"androidx/profileinstaller/FileSectionType.class","size":2112,"crc":-2058888424},{"key":"androidx/profileinstaller/ProfileInstallReceiver$ResultDiagnostics.class","name":"androidx/profileinstaller/ProfileInstallReceiver$ResultDiagnostics.class","size":1333,"crc":1824621369},{"key":"androidx/profileinstaller/ProfileInstallReceiver.class","name":"androidx/profileinstaller/ProfileInstallReceiver.class","size":4379,"crc":882371370},{"key":"androidx/profileinstaller/ProfileInstaller$1.class","name":"androidx/profileinstaller/ProfileInstaller$1.class","size":898,"crc":2051655691},{"key":"androidx/profileinstaller/ProfileInstaller$2.class","name":"androidx/profileinstaller/ProfileInstaller$2.class","size":2193,"crc":-26531924},{"key":"androidx/profileinstaller/ProfileInstaller$DiagnosticCode.class","name":"androidx/profileinstaller/ProfileInstaller$DiagnosticCode.class","size":661,"crc":936946104},{"key":"androidx/profileinstaller/ProfileInstaller$DiagnosticsCallback.class","name":"androidx/profileinstaller/ProfileInstaller$DiagnosticsCallback.class","size":445,"crc":-1798863824},{"key":"androidx/profileinstaller/ProfileInstaller$ResultCode.class","name":"androidx/profileinstaller/ProfileInstaller$ResultCode.class","size":653,"crc":1328959836},{"key":"androidx/profileinstaller/ProfileInstaller.class","name":"androidx/profileinstaller/ProfileInstaller.class","size":11365,"crc":-1864137789},{"key":"androidx/profileinstaller/ProfileInstallerInitializer$Choreographer16Impl.class","name":"androidx/profileinstaller/ProfileInstallerInitializer$Choreographer16Impl.class","size":1730,"crc":893634560},{"key":"androidx/profileinstaller/ProfileInstallerInitializer$Handler28Impl.class","name":"androidx/profileinstaller/ProfileInstallerInitializer$Handler28Impl.class","size":824,"crc":-353792601},{"key":"androidx/profileinstaller/ProfileInstallerInitializer$Result.class","name":"androidx/profileinstaller/ProfileInstallerInitializer$Result.class","size":471,"crc":-146462361},{"key":"androidx/profileinstaller/ProfileInstallerInitializer.class","name":"androidx/profileinstaller/ProfileInstallerInitializer.class","size":4426,"crc":-941791835},{"key":"androidx/profileinstaller/ProfileTranscoder.class","name":"androidx/profileinstaller/ProfileTranscoder.class","size":21736,"crc":-141864366},{"key":"androidx/profileinstaller/ProfileVerifier$Api33Impl.class","name":"androidx/profileinstaller/ProfileVerifier$Api33Impl.class","size":1385,"crc":-36032257},{"key":"androidx/profileinstaller/ProfileVerifier$Cache.class","name":"androidx/profileinstaller/ProfileVerifier$Cache.class","size":2936,"crc":431451052},{"key":"androidx/profileinstaller/ProfileVerifier$CompilationStatus$ResultCode.class","name":"androidx/profileinstaller/ProfileVerifier$CompilationStatus$ResultCode.class","size":761,"crc":-438192104},{"key":"androidx/profileinstaller/ProfileVerifier$CompilationStatus.class","name":"androidx/profileinstaller/ProfileVerifier$CompilationStatus.class","size":1698,"crc":2010065732},{"key":"androidx/profileinstaller/ProfileVerifier.class","name":"androidx/profileinstaller/ProfileVerifier.class","size":5863,"crc":-1786324660},{"key":"androidx/profileinstaller/ProfileVersion.class","name":"androidx/profileinstaller/ProfileVersion.class","size":1474,"crc":-1261108376},{"key":"androidx/profileinstaller/WritableFileSection.class","name":"androidx/profileinstaller/WritableFileSection.class","size":815,"crc":984045749},{"key":"META-INF/androidx.profileinstaller_profileinstaller.version","name":"META-INF/androidx.profileinstaller_profileinstaller.version","size":6,"crc":-154126649}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/AHCdN3DPgBdN6r6xiMKG9Q== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/AHCdN3DPgBdN6r6xiMKG9Q== new file mode 100644 index 0000000..04542b7 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/AHCdN3DPgBdN6r6xiMKG9Q== @@ -0,0 +1 @@ +[{"key":"androidx/core/splashscreen/MaskedDrawable.class","name":"androidx/core/splashscreen/MaskedDrawable.class","size":2773,"crc":-1354262820},{"key":"androidx/core/splashscreen/SplashScreen$Companion.class","name":"androidx/core/splashscreen/SplashScreen$Companion.class","size":1675,"crc":-2140462775},{"key":"androidx/core/splashscreen/SplashScreen$Impl$setKeepOnScreenCondition$1.class","name":"androidx/core/splashscreen/SplashScreen$Impl$setKeepOnScreenCondition$1.class","size":2545,"crc":-741237898},{"key":"androidx/core/splashscreen/SplashScreen$Impl$setOnExitAnimationListener$2.class","name":"androidx/core/splashscreen/SplashScreen$Impl$setOnExitAnimationListener$2.class","size":2567,"crc":-807334360},{"key":"androidx/core/splashscreen/SplashScreen$Impl.class","name":"androidx/core/splashscreen/SplashScreen$Impl.class","size":10669,"crc":-2114397847},{"key":"androidx/core/splashscreen/SplashScreen$Impl31$hierarchyListener$1.class","name":"androidx/core/splashscreen/SplashScreen$Impl31$hierarchyListener$1.class","size":2140,"crc":-1883408448},{"key":"androidx/core/splashscreen/SplashScreen$Impl31$setKeepOnScreenCondition$1.class","name":"androidx/core/splashscreen/SplashScreen$Impl31$setKeepOnScreenCondition$1.class","size":1815,"crc":71590791},{"key":"androidx/core/splashscreen/SplashScreen$Impl31.class","name":"androidx/core/splashscreen/SplashScreen$Impl31.class","size":8184,"crc":-201717473},{"key":"androidx/core/splashscreen/SplashScreen$KeepOnScreenCondition.class","name":"androidx/core/splashscreen/SplashScreen$KeepOnScreenCondition.class","size":669,"crc":-1257153274},{"key":"androidx/core/splashscreen/SplashScreen$OnExitAnimationListener.class","name":"androidx/core/splashscreen/SplashScreen$OnExitAnimationListener.class","size":922,"crc":-2077345969},{"key":"androidx/core/splashscreen/SplashScreen.class","name":"androidx/core/splashscreen/SplashScreen.class","size":3325,"crc":1433295160},{"key":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl$_splashScreenView$2.class","name":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl$_splashScreenView$2.class","size":2014,"crc":-66962808},{"key":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl.class","name":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl.class","size":3428,"crc":-1844359143},{"key":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl31.class","name":"androidx/core/splashscreen/SplashScreenViewProvider$ViewImpl31.class","size":3701,"crc":-1166735816},{"key":"androidx/core/splashscreen/SplashScreenViewProvider.class","name":"androidx/core/splashscreen/SplashScreenViewProvider.class","size":2972,"crc":-18991217},{"key":"androidx/core/splashscreen/ThemeUtils$Api31.class","name":"androidx/core/splashscreen/ThemeUtils$Api31.class","size":2566,"crc":490424245},{"key":"androidx/core/splashscreen/ThemeUtils.class","name":"androidx/core/splashscreen/ThemeUtils.class","size":857,"crc":1948239097},{"key":"META-INF/androidx.core_core-splashscreen.version","name":"META-INF/androidx.core_core-splashscreen.version","size":6,"crc":-463103703},{"key":"META-INF/core-splashscreen_release.kotlin_module","name":"META-INF/core-splashscreen_release.kotlin_module","size":24,"crc":-1697843264}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/CH8hJNYXQojq7ZKEZWh7yg== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/CH8hJNYXQojq7ZKEZWh7yg== new file mode 100644 index 0000000..c10bcaa --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/CH8hJNYXQojq7ZKEZWh7yg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":214,"crc":37686798},{"key":"META-INF/kotlin-stdlib.kotlin_module","name":"META-INF/kotlin-stdlib.kotlin_module","size":7167,"crc":-363369352},{"key":"kotlin/ArrayIntrinsicsKt.class","name":"kotlin/ArrayIntrinsicsKt.class","size":785,"crc":914748749},{"key":"kotlin/BuilderInference.class","name":"kotlin/BuilderInference.class","size":977,"crc":706377218},{"key":"kotlin/CharCodeJVMKt.class","name":"kotlin/CharCodeJVMKt.class","size":735,"crc":-834163445},{"key":"kotlin/CharCodeKt.class","name":"kotlin/CharCodeKt.class","size":1373,"crc":-362076706},{"key":"kotlin/CompareToKt.class","name":"kotlin/CompareToKt.class","size":1008,"crc":1014189559},{"key":"kotlin/ContextFunctionTypeParams.class","name":"kotlin/ContextFunctionTypeParams.class","size":887,"crc":1300046260},{"key":"kotlin/DeepRecursiveFunction.class","name":"kotlin/DeepRecursiveFunction.class","size":2000,"crc":183395445},{"key":"kotlin/DeepRecursiveKt.class","name":"kotlin/DeepRecursiveKt.class","size":2283,"crc":182419245},{"key":"kotlin/DeepRecursiveScope.class","name":"kotlin/DeepRecursiveScope.class","size":2810,"crc":-1490081228},{"key":"kotlin/DeepRecursiveScopeImpl$crossFunctionCompletion$$inlined$Continuation$1.class","name":"kotlin/DeepRecursiveScopeImpl$crossFunctionCompletion$$inlined$Continuation$1.class","size":3054,"crc":-1984899911},{"key":"kotlin/DeepRecursiveScopeImpl.class","name":"kotlin/DeepRecursiveScopeImpl.class","size":7716,"crc":788715753},{"key":"kotlin/Deprecated.class","name":"kotlin/Deprecated.class","size":1337,"crc":-1201605646},{"key":"kotlin/DeprecatedSinceKotlin.class","name":"kotlin/DeprecatedSinceKotlin.class","size":1287,"crc":-2071432846},{"key":"kotlin/DeprecationLevel.class","name":"kotlin/DeprecationLevel.class","size":1772,"crc":74896219},{"key":"kotlin/DslMarker.class","name":"kotlin/DslMarker.class","size":955,"crc":1223372526},{"key":"kotlin/ExceptionsKt.class","name":"kotlin/ExceptionsKt.class","size":424,"crc":-360740149},{"key":"kotlin/ExceptionsKt__ExceptionsKt.class","name":"kotlin/ExceptionsKt__ExceptionsKt.class","size":3598,"crc":1512281902},{"key":"kotlin/ExperimentalMultiplatform.class","name":"kotlin/ExperimentalMultiplatform.class","size":1205,"crc":-1258383849},{"key":"kotlin/ExperimentalStdlibApi.class","name":"kotlin/ExperimentalStdlibApi.class","size":1404,"crc":381744534},{"key":"kotlin/ExperimentalSubclassOptIn.class","name":"kotlin/ExperimentalSubclassOptIn.class","size":868,"crc":-496404057},{"key":"kotlin/ExperimentalUnsignedTypes.class","name":"kotlin/ExperimentalUnsignedTypes.class","size":1353,"crc":1802434339},{"key":"kotlin/ExtensionFunctionType.class","name":"kotlin/ExtensionFunctionType.class","size":729,"crc":483944746},{"key":"kotlin/Function.class","name":"kotlin/Function.class","size":404,"crc":1636709163},{"key":"kotlin/HashCodeKt.class","name":"kotlin/HashCodeKt.class","size":681,"crc":-1272145878},{"key":"kotlin/InitializedLazyImpl.class","name":"kotlin/InitializedLazyImpl.class","size":1429,"crc":242515045},{"key":"kotlin/KotlinNothingValueException.class","name":"kotlin/KotlinNothingValueException.class","size":1355,"crc":1814023035},{"key":"kotlin/KotlinNullPointerException.class","name":"kotlin/KotlinNullPointerException.class","size":885,"crc":386831069},{"key":"kotlin/KotlinVersion$Companion.class","name":"kotlin/KotlinVersion$Companion.class","size":891,"crc":-24097414},{"key":"kotlin/KotlinVersion.class","name":"kotlin/KotlinVersion.class","size":4034,"crc":-956949712},{"key":"kotlin/KotlinVersionCurrentValue.class","name":"kotlin/KotlinVersionCurrentValue.class","size":904,"crc":-978496797},{"key":"kotlin/LateinitKt.class","name":"kotlin/LateinitKt.class","size":1276,"crc":487649905},{"key":"kotlin/Lazy.class","name":"kotlin/Lazy.class","size":544,"crc":662721225},{"key":"kotlin/LazyKt.class","name":"kotlin/LazyKt.class","size":393,"crc":1649881116},{"key":"kotlin/LazyKt__LazyJVMKt$WhenMappings.class","name":"kotlin/LazyKt__LazyJVMKt$WhenMappings.class","size":790,"crc":1245994275},{"key":"kotlin/LazyKt__LazyJVMKt.class","name":"kotlin/LazyKt__LazyJVMKt.class","size":2655,"crc":346227144},{"key":"kotlin/LazyKt__LazyKt.class","name":"kotlin/LazyKt__LazyKt.class","size":1575,"crc":-139274343},{"key":"kotlin/LazyThreadSafetyMode.class","name":"kotlin/LazyThreadSafetyMode.class","size":1802,"crc":1883090374},{"key":"kotlin/Metadata$DefaultImpls.class","name":"kotlin/Metadata$DefaultImpls.class","size":797,"crc":390750371},{"key":"kotlin/Metadata.class","name":"kotlin/Metadata.class","size":1881,"crc":343290002},{"key":"kotlin/NoWhenBranchMatchedException.class","name":"kotlin/NoWhenBranchMatchedException.class","size":1260,"crc":-1891244361},{"key":"kotlin/NotImplementedError.class","name":"kotlin/NotImplementedError.class","size":1093,"crc":-982128132},{"key":"kotlin/NumbersKt.class","name":"kotlin/NumbersKt.class","size":522,"crc":-2128736509},{"key":"kotlin/NumbersKt__BigDecimalsKt.class","name":"kotlin/NumbersKt__BigDecimalsKt.class","size":4215,"crc":669371495},{"key":"kotlin/NumbersKt__BigIntegersKt.class","name":"kotlin/NumbersKt__BigIntegersKt.class","size":4920,"crc":-1546874729},{"key":"kotlin/NumbersKt__FloorDivModKt.class","name":"kotlin/NumbersKt__FloorDivModKt.class","size":6955,"crc":-69125695},{"key":"kotlin/NumbersKt__NumbersJVMKt.class","name":"kotlin/NumbersKt__NumbersJVMKt.class","size":5134,"crc":-1948028998},{"key":"kotlin/NumbersKt__NumbersKt.class","name":"kotlin/NumbersKt__NumbersKt.class","size":2992,"crc":-567553779},{"key":"kotlin/OptIn.class","name":"kotlin/OptIn.class","size":1301,"crc":448776656},{"key":"kotlin/OptionalExpectation.class","name":"kotlin/OptionalExpectation.class","size":887,"crc":1603884937},{"key":"kotlin/OverloadResolutionByLambdaReturnType.class","name":"kotlin/OverloadResolutionByLambdaReturnType.class","size":961,"crc":366046341},{"key":"kotlin/Pair.class","name":"kotlin/Pair.class","size":2869,"crc":-481155759},{"key":"kotlin/ParameterName.class","name":"kotlin/ParameterName.class","size":879,"crc":2129995980},{"key":"kotlin/PreconditionsKt.class","name":"kotlin/PreconditionsKt.class","size":444,"crc":-1710428196},{"key":"kotlin/PreconditionsKt__AssertionsJVMKt.class","name":"kotlin/PreconditionsKt__AssertionsJVMKt.class","size":2046,"crc":-1408320684},{"key":"kotlin/PreconditionsKt__PreconditionsKt.class","name":"kotlin/PreconditionsKt__PreconditionsKt.class","size":4107,"crc":487195474},{"key":"kotlin/PropertyReferenceDelegatesKt.class","name":"kotlin/PropertyReferenceDelegatesKt.class","size":2965,"crc":-2089053008},{"key":"kotlin/PublishedApi.class","name":"kotlin/PublishedApi.class","size":1001,"crc":928675357},{"key":"kotlin/ReplaceWith.class","name":"kotlin/ReplaceWith.class","size":940,"crc":-637321760},{"key":"kotlin/RequiresOptIn$Level.class","name":"kotlin/RequiresOptIn$Level.class","size":1792,"crc":-1440925158},{"key":"kotlin/RequiresOptIn.class","name":"kotlin/RequiresOptIn.class","size":1208,"crc":1130552518},{"key":"kotlin/Result$Companion.class","name":"kotlin/Result$Companion.class","size":1668,"crc":877218917},{"key":"kotlin/Result$Failure.class","name":"kotlin/Result$Failure.class","size":1926,"crc":2131698496},{"key":"kotlin/Result.class","name":"kotlin/Result.class","size":4029,"crc":-1276351598},{"key":"kotlin/ResultKt.class","name":"kotlin/ResultKt.class","size":7633,"crc":596261931},{"key":"kotlin/SafePublicationLazyImpl$Companion.class","name":"kotlin/SafePublicationLazyImpl$Companion.class","size":1051,"crc":-1171578767},{"key":"kotlin/SafePublicationLazyImpl.class","name":"kotlin/SafePublicationLazyImpl.class","size":3424,"crc":344087991},{"key":"kotlin/SinceKotlin.class","name":"kotlin/SinceKotlin.class","size":1077,"crc":-1444250120},{"key":"kotlin/StandardKt.class","name":"kotlin/StandardKt.class","size":418,"crc":-375652852},{"key":"kotlin/StandardKt__StandardKt.class","name":"kotlin/StandardKt__StandardKt.class","size":4615,"crc":-624785843},{"key":"kotlin/StandardKt__SynchronizedKt.class","name":"kotlin/StandardKt__SynchronizedKt.class","size":1554,"crc":-1873556033},{"key":"kotlin/SubclassOptInRequired.class","name":"kotlin/SubclassOptInRequired.class","size":1107,"crc":488960892},{"key":"kotlin/Suppress.class","name":"kotlin/Suppress.class","size":1185,"crc":-1544838911},{"key":"kotlin/SuspendKt.class","name":"kotlin/SuspendKt.class","size":1161,"crc":-1154143876},{"key":"kotlin/SynchronizedLazyImpl.class","name":"kotlin/SynchronizedLazyImpl.class","size":3123,"crc":769531998},{"key":"kotlin/ThrowsKt.class","name":"kotlin/ThrowsKt.class","size":531,"crc":-885728156},{"key":"kotlin/Triple.class","name":"kotlin/Triple.class","size":3364,"crc":261809510},{"key":"kotlin/TuplesKt.class","name":"kotlin/TuplesKt.class","size":1908,"crc":519406435},{"key":"kotlin/TypeAliasesKt.class","name":"kotlin/TypeAliasesKt.class","size":3147,"crc":774154999},{"key":"kotlin/TypeCastException.class","name":"kotlin/TypeCastException.class","size":852,"crc":166380516},{"key":"kotlin/UByte$Companion.class","name":"kotlin/UByte$Companion.class","size":939,"crc":1378003750},{"key":"kotlin/UByte.class","name":"kotlin/UByte.class","size":11391,"crc":-2119902337},{"key":"kotlin/UByteArray$Iterator.class","name":"kotlin/UByteArray$Iterator.class","size":2041,"crc":-780843091},{"key":"kotlin/UByteArray.class","name":"kotlin/UByteArray.class","size":7347,"crc":1671752935},{"key":"kotlin/UByteArrayKt.class","name":"kotlin/UByteArrayKt.class","size":1607,"crc":1134093883},{"key":"kotlin/UByteKt.class","name":"kotlin/UByteKt.class","size":1172,"crc":896005121},{"key":"kotlin/UInt$Companion.class","name":"kotlin/UInt$Companion.class","size":934,"crc":2139174565},{"key":"kotlin/UInt.class","name":"kotlin/UInt.class","size":11337,"crc":787110182},{"key":"kotlin/UIntArray$Iterator.class","name":"kotlin/UIntArray$Iterator.class","size":2033,"crc":-1591050015},{"key":"kotlin/UIntArray.class","name":"kotlin/UIntArray.class","size":7313,"crc":1415075496},{"key":"kotlin/UIntArrayKt.class","name":"kotlin/UIntArrayKt.class","size":1597,"crc":1019670834},{"key":"kotlin/UIntKt.class","name":"kotlin/UIntKt.class","size":1494,"crc":-1855076938},{"key":"kotlin/ULong$Companion.class","name":"kotlin/ULong$Companion.class","size":939,"crc":-256607455},{"key":"kotlin/ULong.class","name":"kotlin/ULong.class","size":11333,"crc":-1404786034},{"key":"kotlin/ULongArray$Iterator.class","name":"kotlin/ULongArray$Iterator.class","size":2041,"crc":-1183911022},{"key":"kotlin/ULongArray.class","name":"kotlin/ULongArray.class","size":7347,"crc":-1931373646},{"key":"kotlin/ULongArrayKt.class","name":"kotlin/ULongArrayKt.class","size":1607,"crc":-1343995727},{"key":"kotlin/ULongKt.class","name":"kotlin/ULongKt.class","size":1503,"crc":423811029},{"key":"kotlin/UNINITIALIZED_VALUE.class","name":"kotlin/UNINITIALIZED_VALUE.class","size":657,"crc":924648883},{"key":"kotlin/UNumbersKt.class","name":"kotlin/UNumbersKt.class","size":7237,"crc":256139198},{"key":"kotlin/UShort$Companion.class","name":"kotlin/UShort$Companion.class","size":944,"crc":-1927299755},{"key":"kotlin/UShort.class","name":"kotlin/UShort.class","size":11347,"crc":-1434215815},{"key":"kotlin/UShortArray$Iterator.class","name":"kotlin/UShortArray$Iterator.class","size":2049,"crc":387103634},{"key":"kotlin/UShortArray.class","name":"kotlin/UShortArray.class","size":7371,"crc":-185891184},{"key":"kotlin/UShortArrayKt.class","name":"kotlin/UShortArrayKt.class","size":1617,"crc":1407060527},{"key":"kotlin/UShortKt.class","name":"kotlin/UShortKt.class","size":1178,"crc":1933015597},{"key":"kotlin/UninitializedPropertyAccessException.class","name":"kotlin/UninitializedPropertyAccessException.class","size":1282,"crc":1752551459},{"key":"kotlin/Unit.class","name":"kotlin/Unit.class","size":762,"crc":2051516890},{"key":"kotlin/UnsafeLazyImpl.class","name":"kotlin/UnsafeLazyImpl.class","size":2426,"crc":1936700530},{"key":"kotlin/UnsafeVariance.class","name":"kotlin/UnsafeVariance.class","size":799,"crc":-1782364917},{"key":"kotlin/UnsignedKt.class","name":"kotlin/UnsignedKt.class","size":3998,"crc":2096622554},{"key":"kotlin/WasExperimental.class","name":"kotlin/WasExperimental.class","size":1102,"crc":1347694942},{"key":"kotlin/_Assertions.class","name":"kotlin/_Assertions.class","size":1011,"crc":-1052087833},{"key":"kotlin/annotation/AnnotationRetention.class","name":"kotlin/annotation/AnnotationRetention.class","size":1871,"crc":933944101},{"key":"kotlin/annotation/AnnotationTarget.class","name":"kotlin/annotation/AnnotationTarget.class","size":2707,"crc":494561129},{"key":"kotlin/annotation/MustBeDocumented.class","name":"kotlin/annotation/MustBeDocumented.class","size":730,"crc":1727257736},{"key":"kotlin/annotation/Repeatable.class","name":"kotlin/annotation/Repeatable.class","size":718,"crc":1835623651},{"key":"kotlin/annotation/Retention.class","name":"kotlin/annotation/Retention.class","size":885,"crc":1885255077},{"key":"kotlin/annotation/Target.class","name":"kotlin/annotation/Target.class","size":883,"crc":258039429},{"key":"kotlin/collections/AbstractCollection$toString$1.class","name":"kotlin/collections/AbstractCollection$toString$1.class","size":1702,"crc":-1428066360},{"key":"kotlin/collections/AbstractCollection.class","name":"kotlin/collections/AbstractCollection.class","size":5315,"crc":412829516},{"key":"kotlin/collections/AbstractIterator$WhenMappings.class","name":"kotlin/collections/AbstractIterator$WhenMappings.class","size":754,"crc":1583326656},{"key":"kotlin/collections/AbstractIterator.class","name":"kotlin/collections/AbstractIterator.class","size":2585,"crc":1583013796},{"key":"kotlin/collections/AbstractList$Companion.class","name":"kotlin/collections/AbstractList$Companion.class","size":4256,"crc":1826133861},{"key":"kotlin/collections/AbstractList$IteratorImpl.class","name":"kotlin/collections/AbstractList$IteratorImpl.class","size":1879,"crc":1909400214},{"key":"kotlin/collections/AbstractList$ListIteratorImpl.class","name":"kotlin/collections/AbstractList$ListIteratorImpl.class","size":2490,"crc":-256326536},{"key":"kotlin/collections/AbstractList$SubList.class","name":"kotlin/collections/AbstractList$SubList.class","size":2115,"crc":1752271979},{"key":"kotlin/collections/AbstractList.class","name":"kotlin/collections/AbstractList.class","size":5888,"crc":-453398702},{"key":"kotlin/collections/AbstractMap$Companion.class","name":"kotlin/collections/AbstractMap$Companion.class","size":3310,"crc":148575770},{"key":"kotlin/collections/AbstractMap$keys$1$iterator$1.class","name":"kotlin/collections/AbstractMap$keys$1$iterator$1.class","size":1654,"crc":36863119},{"key":"kotlin/collections/AbstractMap$keys$1.class","name":"kotlin/collections/AbstractMap$keys$1.class","size":1834,"crc":1569237681},{"key":"kotlin/collections/AbstractMap$toString$1.class","name":"kotlin/collections/AbstractMap$toString$1.class","size":1958,"crc":1631770727},{"key":"kotlin/collections/AbstractMap$values$1$iterator$1.class","name":"kotlin/collections/AbstractMap$values$1$iterator$1.class","size":1662,"crc":2061876154},{"key":"kotlin/collections/AbstractMap$values$1.class","name":"kotlin/collections/AbstractMap$values$1.class","size":1892,"crc":700120353},{"key":"kotlin/collections/AbstractMap.class","name":"kotlin/collections/AbstractMap.class","size":8706,"crc":19329880},{"key":"kotlin/collections/AbstractMutableCollection.class","name":"kotlin/collections/AbstractMutableCollection.class","size":1169,"crc":447994912},{"key":"kotlin/collections/AbstractMutableList.class","name":"kotlin/collections/AbstractMutableList.class","size":1452,"crc":40709550},{"key":"kotlin/collections/AbstractMutableMap.class","name":"kotlin/collections/AbstractMutableMap.class","size":2084,"crc":193765958},{"key":"kotlin/collections/AbstractMutableSet.class","name":"kotlin/collections/AbstractMutableSet.class","size":1099,"crc":43982856},{"key":"kotlin/collections/AbstractSet$Companion.class","name":"kotlin/collections/AbstractSet$Companion.class","size":2142,"crc":383581200},{"key":"kotlin/collections/AbstractSet.class","name":"kotlin/collections/AbstractSet.class","size":2116,"crc":828120771},{"key":"kotlin/collections/ArrayAsCollection.class","name":"kotlin/collections/ArrayAsCollection.class","size":4876,"crc":445846277},{"key":"kotlin/collections/ArrayDeque$Companion.class","name":"kotlin/collections/ArrayDeque$Companion.class","size":931,"crc":339487782},{"key":"kotlin/collections/ArrayDeque.class","name":"kotlin/collections/ArrayDeque.class","size":18542,"crc":-225223282},{"key":"kotlin/collections/ArraysKt.class","name":"kotlin/collections/ArraysKt.class","size":544,"crc":-226832428},{"key":"kotlin/collections/ArraysKt__ArraysJVMKt.class","name":"kotlin/collections/ArraysKt__ArraysJVMKt.class","size":4303,"crc":-1457268929},{"key":"kotlin/collections/ArraysKt__ArraysKt.class","name":"kotlin/collections/ArraysKt__ArraysKt.class","size":8751,"crc":-1163159009},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$1.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$1.class","size":2571,"crc":51809286},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$2.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$2.class","size":2576,"crc":-1295774147},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$3.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$3.class","size":2537,"crc":1562853834},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$4.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$4.class","size":2571,"crc":-2086233170},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$5.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$5.class","size":4195,"crc":1159948618},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$6.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$6.class","size":4215,"crc":-397178826},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$7.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$7.class","size":2547,"crc":-724994554},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$8.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt$asList$8.class","size":2569,"crc":885129269},{"key":"kotlin/collections/ArraysKt___ArraysJvmKt.class","name":"kotlin/collections/ArraysKt___ArraysJvmKt.class","size":79744,"crc":-349645253},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$1.class","size":2121,"crc":1959006123},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$2.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$2.class","size":2120,"crc":317606727},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$3.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$3.class","size":2123,"crc":-1640575222},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$4.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$4.class","size":2125,"crc":116097491},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$5.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$5.class","size":2120,"crc":170222800},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$6.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$6.class","size":2123,"crc":-1381485661},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$7.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$7.class","size":2126,"crc":1952337550},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$8.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$8.class","size":2129,"crc":828705706},{"key":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$9.class","name":"kotlin/collections/ArraysKt___ArraysKt$asIterable$$inlined$Iterable$9.class","size":2130,"crc":-748252136},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$1.class","size":2075,"crc":1078615245},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$2.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$2.class","size":2074,"crc":726896821},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$3.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$3.class","size":2077,"crc":43508242},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$4.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$4.class","size":2079,"crc":1753668720},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$5.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$5.class","size":2074,"crc":-1069548140},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$6.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$6.class","size":2077,"crc":-1391841492},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$7.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$7.class","size":2080,"crc":-941022576},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$8.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$8.class","size":2083,"crc":931889295},{"key":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$9.class","name":"kotlin/collections/ArraysKt___ArraysKt$asSequence$$inlined$Sequence$9.class","size":2084,"crc":-944313988},{"key":"kotlin/collections/ArraysKt___ArraysKt$groupingBy$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$groupingBy$1.class","size":2223,"crc":-1311375014},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$1.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$1.class","size":1426,"crc":-1800550072},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$2.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$2.class","size":1384,"crc":2101694897},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$3.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$3.class","size":1387,"crc":-911986},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$4.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$4.class","size":1389,"crc":-304311061},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$5.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$5.class","size":1384,"crc":-745529752},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$6.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$6.class","size":1387,"crc":-718287488},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$7.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$7.class","size":1390,"crc":1051355167},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$8.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$8.class","size":1393,"crc":588397494},{"key":"kotlin/collections/ArraysKt___ArraysKt$withIndex$9.class","name":"kotlin/collections/ArraysKt___ArraysKt$withIndex$9.class","size":1394,"crc":1381962539},{"key":"kotlin/collections/ArraysKt___ArraysKt.class","name":"kotlin/collections/ArraysKt___ArraysKt.class","size":673669,"crc":1992121713},{"key":"kotlin/collections/BooleanIterator.class","name":"kotlin/collections/BooleanIterator.class","size":1337,"crc":-2136362495},{"key":"kotlin/collections/ByteIterator.class","name":"kotlin/collections/ByteIterator.class","size":1316,"crc":-1734721638},{"key":"kotlin/collections/CharIterator.class","name":"kotlin/collections/CharIterator.class","size":1336,"crc":-1284759072},{"key":"kotlin/collections/CollectionsKt.class","name":"kotlin/collections/CollectionsKt.class","size":928,"crc":-399351980},{"key":"kotlin/collections/CollectionsKt__CollectionsJVMKt.class","name":"kotlin/collections/CollectionsKt__CollectionsJVMKt.class","size":7460,"crc":577539800},{"key":"kotlin/collections/CollectionsKt__CollectionsKt$binarySearchBy$1.class","name":"kotlin/collections/CollectionsKt__CollectionsKt$binarySearchBy$1.class","size":2329,"crc":-1413388820},{"key":"kotlin/collections/CollectionsKt__CollectionsKt.class","name":"kotlin/collections/CollectionsKt__CollectionsKt.class","size":16631,"crc":-640090207},{"key":"kotlin/collections/CollectionsKt__IterablesKt$Iterable$1.class","name":"kotlin/collections/CollectionsKt__IterablesKt$Iterable$1.class","size":1899,"crc":1047870628},{"key":"kotlin/collections/CollectionsKt__IterablesKt.class","name":"kotlin/collections/CollectionsKt__IterablesKt.class","size":3909,"crc":407819054},{"key":"kotlin/collections/CollectionsKt__IteratorsJVMKt$iterator$1.class","name":"kotlin/collections/CollectionsKt__IteratorsJVMKt$iterator$1.class","size":1644,"crc":-171621508},{"key":"kotlin/collections/CollectionsKt__IteratorsJVMKt.class","name":"kotlin/collections/CollectionsKt__IteratorsJVMKt.class","size":1335,"crc":1178061839},{"key":"kotlin/collections/CollectionsKt__IteratorsKt.class","name":"kotlin/collections/CollectionsKt__IteratorsKt.class","size":2357,"crc":2141603096},{"key":"kotlin/collections/CollectionsKt__MutableCollectionsJVMKt.class","name":"kotlin/collections/CollectionsKt__MutableCollectionsJVMKt.class","size":3715,"crc":-1930519529},{"key":"kotlin/collections/CollectionsKt__MutableCollectionsKt.class","name":"kotlin/collections/CollectionsKt__MutableCollectionsKt.class","size":12811,"crc":-535399372},{"key":"kotlin/collections/CollectionsKt__ReversedViewsKt.class","name":"kotlin/collections/CollectionsKt__ReversedViewsKt.class","size":3400,"crc":-1675935350},{"key":"kotlin/collections/CollectionsKt___CollectionsJvmKt.class","name":"kotlin/collections/CollectionsKt___CollectionsJvmKt.class","size":10367,"crc":877633345},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$asSequence$$inlined$Sequence$1.class","size":2087,"crc":-972801769},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$elementAt$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$elementAt$1.class","size":1678,"crc":1134871135},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$groupingBy$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$groupingBy$1.class","size":2283,"crc":-857892687},{"key":"kotlin/collections/CollectionsKt___CollectionsKt$withIndex$1.class","name":"kotlin/collections/CollectionsKt___CollectionsKt$withIndex$1.class","size":1448,"crc":-839803886},{"key":"kotlin/collections/CollectionsKt___CollectionsKt.class","name":"kotlin/collections/CollectionsKt___CollectionsKt.class","size":130225,"crc":830408082},{"key":"kotlin/collections/DoubleIterator.class","name":"kotlin/collections/DoubleIterator.class","size":1330,"crc":662992200},{"key":"kotlin/collections/EmptyIterator.class","name":"kotlin/collections/EmptyIterator.class","size":2129,"crc":-1437025087},{"key":"kotlin/collections/EmptyList.class","name":"kotlin/collections/EmptyList.class","size":6384,"crc":2128661276},{"key":"kotlin/collections/EmptyMap.class","name":"kotlin/collections/EmptyMap.class","size":4568,"crc":945217483},{"key":"kotlin/collections/EmptySet.class","name":"kotlin/collections/EmptySet.class","size":3882,"crc":207943678},{"key":"kotlin/collections/FloatIterator.class","name":"kotlin/collections/FloatIterator.class","size":1323,"crc":1320238133},{"key":"kotlin/collections/Grouping.class","name":"kotlin/collections/Grouping.class","size":837,"crc":655873736},{"key":"kotlin/collections/GroupingKt.class","name":"kotlin/collections/GroupingKt.class","size":465,"crc":-2036176059},{"key":"kotlin/collections/GroupingKt__GroupingJVMKt.class","name":"kotlin/collections/GroupingKt__GroupingJVMKt.class","size":6035,"crc":-279017986},{"key":"kotlin/collections/GroupingKt__GroupingKt.class","name":"kotlin/collections/GroupingKt__GroupingKt.class","size":14401,"crc":1229889088},{"key":"kotlin/collections/IndexedValue.class","name":"kotlin/collections/IndexedValue.class","size":2802,"crc":1342510738},{"key":"kotlin/collections/IndexingIterable.class","name":"kotlin/collections/IndexingIterable.class","size":1853,"crc":825401620},{"key":"kotlin/collections/IndexingIterator.class","name":"kotlin/collections/IndexingIterator.class","size":2190,"crc":-844613135},{"key":"kotlin/collections/IntIterator.class","name":"kotlin/collections/IntIterator.class","size":1325,"crc":489979873},{"key":"kotlin/collections/LongIterator.class","name":"kotlin/collections/LongIterator.class","size":1316,"crc":1721542277},{"key":"kotlin/collections/MapAccessorsKt.class","name":"kotlin/collections/MapAccessorsKt.class","size":2244,"crc":1371982810},{"key":"kotlin/collections/MapWithDefault.class","name":"kotlin/collections/MapWithDefault.class","size":962,"crc":1623959559},{"key":"kotlin/collections/MapWithDefaultImpl.class","name":"kotlin/collections/MapWithDefaultImpl.class","size":5799,"crc":-1972097377},{"key":"kotlin/collections/MapsKt.class","name":"kotlin/collections/MapsKt.class","size":573,"crc":-575621667},{"key":"kotlin/collections/MapsKt__MapWithDefaultKt.class","name":"kotlin/collections/MapsKt__MapWithDefaultKt.class","size":4135,"crc":-1201746970},{"key":"kotlin/collections/MapsKt__MapsJVMKt.class","name":"kotlin/collections/MapsKt__MapsJVMKt.class","size":9144,"crc":1982366243},{"key":"kotlin/collections/MapsKt__MapsKt.class","name":"kotlin/collections/MapsKt__MapsKt.class","size":33483,"crc":-796985209},{"key":"kotlin/collections/MapsKt___MapsJvmKt.class","name":"kotlin/collections/MapsKt___MapsJvmKt.class","size":4141,"crc":-1450591339},{"key":"kotlin/collections/MapsKt___MapsKt.class","name":"kotlin/collections/MapsKt___MapsKt.class","size":29119,"crc":-1595953868},{"key":"kotlin/collections/MovingSubList.class","name":"kotlin/collections/MovingSubList.class","size":2153,"crc":44607288},{"key":"kotlin/collections/MutableMapWithDefault.class","name":"kotlin/collections/MutableMapWithDefault.class","size":984,"crc":909094730},{"key":"kotlin/collections/MutableMapWithDefaultImpl.class","name":"kotlin/collections/MutableMapWithDefaultImpl.class","size":6014,"crc":8551959},{"key":"kotlin/collections/ReversedList$listIterator$1.class","name":"kotlin/collections/ReversedList$listIterator$1.class","size":3012,"crc":-1910864434},{"key":"kotlin/collections/ReversedList.class","name":"kotlin/collections/ReversedList.class","size":3267,"crc":-1943953868},{"key":"kotlin/collections/ReversedListReadOnly$listIterator$1.class","name":"kotlin/collections/ReversedListReadOnly$listIterator$1.class","size":3027,"crc":-1469558624},{"key":"kotlin/collections/ReversedListReadOnly.class","name":"kotlin/collections/ReversedListReadOnly.class","size":2544,"crc":1146851822},{"key":"kotlin/collections/RingBuffer$iterator$1.class","name":"kotlin/collections/RingBuffer$iterator$1.class","size":2412,"crc":579025793},{"key":"kotlin/collections/RingBuffer.class","name":"kotlin/collections/RingBuffer.class","size":7053,"crc":-1109652082},{"key":"kotlin/collections/SetsKt.class","name":"kotlin/collections/SetsKt.class","size":481,"crc":1020848140},{"key":"kotlin/collections/SetsKt__SetsJVMKt.class","name":"kotlin/collections/SetsKt__SetsJVMKt.class","size":4092,"crc":1886343417},{"key":"kotlin/collections/SetsKt__SetsKt.class","name":"kotlin/collections/SetsKt__SetsKt.class","size":5880,"crc":1286800867},{"key":"kotlin/collections/SetsKt___SetsKt.class","name":"kotlin/collections/SetsKt___SetsKt.class","size":6693,"crc":789464032},{"key":"kotlin/collections/ShortIterator.class","name":"kotlin/collections/ShortIterator.class","size":1323,"crc":-1969046658},{"key":"kotlin/collections/SlidingWindowKt$windowedIterator$1.class","name":"kotlin/collections/SlidingWindowKt$windowedIterator$1.class","size":6257,"crc":-207977163},{"key":"kotlin/collections/SlidingWindowKt$windowedSequence$$inlined$Sequence$1.class","name":"kotlin/collections/SlidingWindowKt$windowedSequence$$inlined$Sequence$1.class","size":2320,"crc":-502475565},{"key":"kotlin/collections/SlidingWindowKt.class","name":"kotlin/collections/SlidingWindowKt.class","size":3054,"crc":346070121},{"key":"kotlin/collections/State.class","name":"kotlin/collections/State.class","size":1843,"crc":-1049585528},{"key":"kotlin/collections/TypeAliasesKt.class","name":"kotlin/collections/TypeAliasesKt.class","size":1490,"crc":-980516392},{"key":"kotlin/collections/UArraySortingKt.class","name":"kotlin/collections/UArraySortingKt.class","size":4800,"crc":-1322290976},{"key":"kotlin/collections/UCollectionsKt.class","name":"kotlin/collections/UCollectionsKt.class","size":472,"crc":-1510629429},{"key":"kotlin/collections/UCollectionsKt___UCollectionsKt.class","name":"kotlin/collections/UCollectionsKt___UCollectionsKt.class","size":4849,"crc":608557602},{"key":"kotlin/collections/builders/AbstractMapBuilderEntrySet.class","name":"kotlin/collections/builders/AbstractMapBuilderEntrySet.class","size":1858,"crc":-57714870},{"key":"kotlin/collections/builders/ListBuilder$Companion.class","name":"kotlin/collections/builders/ListBuilder$Companion.class","size":920,"crc":1508863899},{"key":"kotlin/collections/builders/ListBuilder$Itr.class","name":"kotlin/collections/builders/ListBuilder$Itr.class","size":4527,"crc":-1592649838},{"key":"kotlin/collections/builders/ListBuilder.class","name":"kotlin/collections/builders/ListBuilder.class","size":14699,"crc":-683150615},{"key":"kotlin/collections/builders/ListBuilderKt.class","name":"kotlin/collections/builders/ListBuilderKt.class","size":5098,"crc":-1694029465},{"key":"kotlin/collections/builders/MapBuilder$Companion.class","name":"kotlin/collections/builders/MapBuilder$Companion.class","size":2034,"crc":154379890},{"key":"kotlin/collections/builders/MapBuilder$EntriesItr.class","name":"kotlin/collections/builders/MapBuilder$EntriesItr.class","size":3932,"crc":-972088827},{"key":"kotlin/collections/builders/MapBuilder$EntryRef.class","name":"kotlin/collections/builders/MapBuilder$EntryRef.class","size":3354,"crc":-1395487142},{"key":"kotlin/collections/builders/MapBuilder$Itr.class","name":"kotlin/collections/builders/MapBuilder$Itr.class","size":3920,"crc":-1266420236},{"key":"kotlin/collections/builders/MapBuilder$KeysItr.class","name":"kotlin/collections/builders/MapBuilder$KeysItr.class","size":2265,"crc":918809074},{"key":"kotlin/collections/builders/MapBuilder$ValuesItr.class","name":"kotlin/collections/builders/MapBuilder$ValuesItr.class","size":2326,"crc":47377105},{"key":"kotlin/collections/builders/MapBuilder.class","name":"kotlin/collections/builders/MapBuilder.class","size":20144,"crc":303775641},{"key":"kotlin/collections/builders/MapBuilderEntries.class","name":"kotlin/collections/builders/MapBuilderEntries.class","size":4314,"crc":-1107642348},{"key":"kotlin/collections/builders/MapBuilderKeys.class","name":"kotlin/collections/builders/MapBuilderKeys.class","size":3470,"crc":-1151575340},{"key":"kotlin/collections/builders/MapBuilderValues.class","name":"kotlin/collections/builders/MapBuilderValues.class","size":3674,"crc":1831334250},{"key":"kotlin/collections/builders/SerializedCollection$Companion.class","name":"kotlin/collections/builders/SerializedCollection$Companion.class","size":975,"crc":596178204},{"key":"kotlin/collections/builders/SerializedCollection.class","name":"kotlin/collections/builders/SerializedCollection.class","size":5025,"crc":1825690600},{"key":"kotlin/collections/builders/SerializedMap$Companion.class","name":"kotlin/collections/builders/SerializedMap$Companion.class","size":879,"crc":1162081046},{"key":"kotlin/collections/builders/SerializedMap.class","name":"kotlin/collections/builders/SerializedMap.class","size":3867,"crc":-2129362891},{"key":"kotlin/collections/builders/SetBuilder$Companion.class","name":"kotlin/collections/builders/SetBuilder$Companion.class","size":915,"crc":1511327319},{"key":"kotlin/collections/builders/SetBuilder.class","name":"kotlin/collections/builders/SetBuilder.class","size":5095,"crc":654995642},{"key":"kotlin/collections/unsigned/UArraysKt.class","name":"kotlin/collections/unsigned/UArraysKt.class","size":528,"crc":1164291945},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$1.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$1.class","size":2704,"crc":45704206},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$2.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$2.class","size":2738,"crc":528480706},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$3.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$3.class","size":2738,"crc":292429636},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$4.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt$asList$4.class","size":2743,"crc":1896214284},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysJvmKt.class","size":22059,"crc":-2087365097},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$1.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$1.class","size":1381,"crc":-1119412604},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$2.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$2.class","size":1385,"crc":-1360770574},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$3.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$3.class","size":1385,"crc":-2101763271},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$4.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt$withIndex$4.class","size":1389,"crc":-248392812},{"key":"kotlin/collections/unsigned/UArraysKt___UArraysKt.class","name":"kotlin/collections/unsigned/UArraysKt___UArraysKt.class","size":307397,"crc":931509025},{"key":"kotlin/comparisons/ComparisonsKt.class","name":"kotlin/comparisons/ComparisonsKt.class","size":538,"crc":2140344418},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$2.class","size":2051,"crc":1259970767},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$3.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareBy$3.class","size":2078,"crc":33849803},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$1.class","size":2101,"crc":1890859729},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$compareByDescending$2.class","size":2128,"crc":-1851035345},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$1.class","size":2329,"crc":-567441521},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenBy$2.class","size":2320,"crc":-2106552422},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$1.class","size":2389,"crc":947165556},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$2.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenByDescending$2.class","size":2380,"crc":-1169006856},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenComparator$1.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt$thenComparator$1.class","size":2282,"crc":1032142794},{"key":"kotlin/comparisons/ComparisonsKt__ComparisonsKt.class","name":"kotlin/comparisons/ComparisonsKt__ComparisonsKt.class","size":13367,"crc":725795358},{"key":"kotlin/comparisons/ComparisonsKt___ComparisonsJvmKt.class","name":"kotlin/comparisons/ComparisonsKt___ComparisonsJvmKt.class","size":9184,"crc":1011038488},{"key":"kotlin/comparisons/ComparisonsKt___ComparisonsKt.class","name":"kotlin/comparisons/ComparisonsKt___ComparisonsKt.class","size":3216,"crc":-109938691},{"key":"kotlin/comparisons/NaturalOrderComparator.class","name":"kotlin/comparisons/NaturalOrderComparator.class","size":2025,"crc":590916352},{"key":"kotlin/comparisons/ReverseOrderComparator.class","name":"kotlin/comparisons/ReverseOrderComparator.class","size":2025,"crc":-1427608736},{"key":"kotlin/comparisons/ReversedComparator.class","name":"kotlin/comparisons/ReversedComparator.class","size":1737,"crc":-1796753622},{"key":"kotlin/comparisons/UComparisonsKt.class","name":"kotlin/comparisons/UComparisonsKt.class","size":472,"crc":932404807},{"key":"kotlin/comparisons/UComparisonsKt___UComparisonsKt.class","name":"kotlin/comparisons/UComparisonsKt___UComparisonsKt.class","size":6810,"crc":420367867},{"key":"kotlin/concurrent/LocksKt.class","name":"kotlin/concurrent/LocksKt.class","size":3811,"crc":-1221257463},{"key":"kotlin/concurrent/ThreadsKt$thread$thread$1.class","name":"kotlin/concurrent/ThreadsKt$thread$thread$1.class","size":1167,"crc":-1249446432},{"key":"kotlin/concurrent/ThreadsKt.class","name":"kotlin/concurrent/ThreadsKt.class","size":3426,"crc":1935299403},{"key":"kotlin/concurrent/TimersKt$timerTask$1.class","name":"kotlin/concurrent/TimersKt$timerTask$1.class","size":1521,"crc":861764870},{"key":"kotlin/concurrent/TimersKt.class","name":"kotlin/concurrent/TimersKt.class","size":6889,"crc":671541535},{"key":"kotlin/concurrent/VolatileKt.class","name":"kotlin/concurrent/VolatileKt.class","size":552,"crc":1917291917},{"key":"kotlin/contracts/CallsInPlace.class","name":"kotlin/contracts/CallsInPlace.class","size":573,"crc":-435486496},{"key":"kotlin/contracts/ConditionalEffect.class","name":"kotlin/contracts/ConditionalEffect.class","size":583,"crc":695956468},{"key":"kotlin/contracts/ContractBuilder$DefaultImpls.class","name":"kotlin/contracts/ContractBuilder$DefaultImpls.class","size":1016,"crc":611702168},{"key":"kotlin/contracts/ContractBuilder.class","name":"kotlin/contracts/ContractBuilder.class","size":1591,"crc":-310543849},{"key":"kotlin/contracts/ContractBuilderKt.class","name":"kotlin/contracts/ContractBuilderKt.class","size":1127,"crc":1688302817},{"key":"kotlin/contracts/Effect.class","name":"kotlin/contracts/Effect.class","size":506,"crc":1496566889},{"key":"kotlin/contracts/ExperimentalContracts.class","name":"kotlin/contracts/ExperimentalContracts.class","size":813,"crc":409405595},{"key":"kotlin/contracts/InvocationKind.class","name":"kotlin/contracts/InvocationKind.class","size":2104,"crc":125711993},{"key":"kotlin/contracts/Returns.class","name":"kotlin/contracts/Returns.class","size":575,"crc":-1505381929},{"key":"kotlin/contracts/ReturnsNotNull.class","name":"kotlin/contracts/ReturnsNotNull.class","size":589,"crc":1387623790},{"key":"kotlin/contracts/SimpleEffect.class","name":"kotlin/contracts/SimpleEffect.class","size":799,"crc":-736547963},{"key":"kotlin/coroutines/AbstractCoroutineContextElement.class","name":"kotlin/coroutines/AbstractCoroutineContextElement.class","size":3448,"crc":-423380029},{"key":"kotlin/coroutines/AbstractCoroutineContextKey.class","name":"kotlin/coroutines/AbstractCoroutineContextKey.class","size":2994,"crc":1120813119},{"key":"kotlin/coroutines/CombinedContext$Serialized$Companion.class","name":"kotlin/coroutines/CombinedContext$Serialized$Companion.class","size":958,"crc":-1682206842},{"key":"kotlin/coroutines/CombinedContext$Serialized.class","name":"kotlin/coroutines/CombinedContext$Serialized.class","size":3182,"crc":938082246},{"key":"kotlin/coroutines/CombinedContext$toString$1.class","name":"kotlin/coroutines/CombinedContext$toString$1.class","size":2178,"crc":-345279751},{"key":"kotlin/coroutines/CombinedContext$writeReplace$1.class","name":"kotlin/coroutines/CombinedContext$writeReplace$1.class","size":2073,"crc":1353004527},{"key":"kotlin/coroutines/CombinedContext.class","name":"kotlin/coroutines/CombinedContext.class","size":6931,"crc":-261250255},{"key":"kotlin/coroutines/Continuation.class","name":"kotlin/coroutines/Continuation.class","size":913,"crc":-1120241580},{"key":"kotlin/coroutines/ContinuationInterceptor$DefaultImpls.class","name":"kotlin/coroutines/ContinuationInterceptor$DefaultImpls.class","size":4084,"crc":1683869132},{"key":"kotlin/coroutines/ContinuationInterceptor$Key.class","name":"kotlin/coroutines/ContinuationInterceptor$Key.class","size":1038,"crc":1210631834},{"key":"kotlin/coroutines/ContinuationInterceptor.class","name":"kotlin/coroutines/ContinuationInterceptor.class","size":2323,"crc":-1207345493},{"key":"kotlin/coroutines/ContinuationKt$Continuation$1.class","name":"kotlin/coroutines/ContinuationKt$Continuation$1.class","size":2405,"crc":-1625800894},{"key":"kotlin/coroutines/ContinuationKt.class","name":"kotlin/coroutines/ContinuationKt.class","size":6820,"crc":-204309542},{"key":"kotlin/coroutines/CoroutineContext$DefaultImpls.class","name":"kotlin/coroutines/CoroutineContext$DefaultImpls.class","size":1311,"crc":943102766},{"key":"kotlin/coroutines/CoroutineContext$Element$DefaultImpls.class","name":"kotlin/coroutines/CoroutineContext$Element$DefaultImpls.class","size":3210,"crc":-1710519820},{"key":"kotlin/coroutines/CoroutineContext$Element.class","name":"kotlin/coroutines/CoroutineContext$Element.class","size":1928,"crc":-1972277159},{"key":"kotlin/coroutines/CoroutineContext$Key.class","name":"kotlin/coroutines/CoroutineContext$Key.class","size":684,"crc":174149647},{"key":"kotlin/coroutines/CoroutineContext$plus$1.class","name":"kotlin/coroutines/CoroutineContext$plus$1.class","size":3101,"crc":106110687},{"key":"kotlin/coroutines/CoroutineContext.class","name":"kotlin/coroutines/CoroutineContext.class","size":1988,"crc":1131594419},{"key":"kotlin/coroutines/CoroutineContextImplKt.class","name":"kotlin/coroutines/CoroutineContextImplKt.class","size":2711,"crc":1377495188},{"key":"kotlin/coroutines/EmptyCoroutineContext.class","name":"kotlin/coroutines/EmptyCoroutineContext.class","size":3269,"crc":1682240233},{"key":"kotlin/coroutines/RestrictsSuspension.class","name":"kotlin/coroutines/RestrictsSuspension.class","size":885,"crc":158984251},{"key":"kotlin/coroutines/SafeContinuation$Companion.class","name":"kotlin/coroutines/SafeContinuation$Companion.class","size":1152,"crc":1344268190},{"key":"kotlin/coroutines/SafeContinuation.class","name":"kotlin/coroutines/SafeContinuation.class","size":4782,"crc":-1521873190},{"key":"kotlin/coroutines/cancellation/CancellationExceptionKt.class","name":"kotlin/coroutines/cancellation/CancellationExceptionKt.class","size":2318,"crc":-1589862015},{"key":"kotlin/coroutines/intrinsics/CoroutineSingletons.class","name":"kotlin/coroutines/intrinsics/CoroutineSingletons.class","size":2043,"crc":-2045290494},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt.class","size":517,"crc":1661074142},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$1.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$1.class","size":3103,"crc":-1752927005},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$2.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineFromSuspendFunction$2.class","size":3252,"crc":710224689},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$1.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$1.class","size":3956,"crc":94828228},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$2.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$2.class","size":4069,"crc":-630652525},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$3.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$3.class","size":4201,"crc":156100178},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$4.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createCoroutineUnintercepted$$inlined$createCoroutineFromSuspendFunction$IntrinsicsKt__IntrinsicsJvmKt$4.class","size":4315,"crc":-50021501},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$1.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$1.class","size":1852,"crc":-6134372},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$2.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt$createSimpleCoroutineForSuspendFunction$2.class","size":1965,"crc":337899718},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsJvmKt.class","size":10625,"crc":-1544318921},{"key":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsKt.class","name":"kotlin/coroutines/intrinsics/IntrinsicsKt__IntrinsicsKt.class","size":1954,"crc":-1145292913},{"key":"kotlin/coroutines/jvm/internal/BaseContinuationImpl.class","name":"kotlin/coroutines/jvm/internal/BaseContinuationImpl.class","size":5416,"crc":652345835},{"key":"kotlin/coroutines/jvm/internal/Boxing.class","name":"kotlin/coroutines/jvm/internal/Boxing.class","size":2363,"crc":509565252},{"key":"kotlin/coroutines/jvm/internal/CompletedContinuation.class","name":"kotlin/coroutines/jvm/internal/CompletedContinuation.class","size":1660,"crc":219428893},{"key":"kotlin/coroutines/jvm/internal/ContinuationImpl.class","name":"kotlin/coroutines/jvm/internal/ContinuationImpl.class","size":3754,"crc":-633052385},{"key":"kotlin/coroutines/jvm/internal/CoroutineStackFrame.class","name":"kotlin/coroutines/jvm/internal/CoroutineStackFrame.class","size":805,"crc":1465629375},{"key":"kotlin/coroutines/jvm/internal/DebugMetadata.class","name":"kotlin/coroutines/jvm/internal/DebugMetadata.class","size":1684,"crc":-2040427531},{"key":"kotlin/coroutines/jvm/internal/DebugMetadataKt.class","name":"kotlin/coroutines/jvm/internal/DebugMetadataKt.class","size":5614,"crc":-1052535827},{"key":"kotlin/coroutines/jvm/internal/DebugProbesKt.class","name":"kotlin/coroutines/jvm/internal/DebugProbesKt.class","size":1451,"crc":-2117355756},{"key":"kotlin/coroutines/jvm/internal/ModuleNameRetriever$Cache.class","name":"kotlin/coroutines/jvm/internal/ModuleNameRetriever$Cache.class","size":1259,"crc":-1752469634},{"key":"kotlin/coroutines/jvm/internal/ModuleNameRetriever.class","name":"kotlin/coroutines/jvm/internal/ModuleNameRetriever.class","size":3891,"crc":-441175355},{"key":"kotlin/coroutines/jvm/internal/RestrictedContinuationImpl.class","name":"kotlin/coroutines/jvm/internal/RestrictedContinuationImpl.class","size":2008,"crc":-1284384493},{"key":"kotlin/coroutines/jvm/internal/RestrictedSuspendLambda.class","name":"kotlin/coroutines/jvm/internal/RestrictedSuspendLambda.class","size":2365,"crc":452140700},{"key":"kotlin/coroutines/jvm/internal/RunSuspend.class","name":"kotlin/coroutines/jvm/internal/RunSuspend.class","size":2789,"crc":2052918701},{"key":"kotlin/coroutines/jvm/internal/RunSuspendKt.class","name":"kotlin/coroutines/jvm/internal/RunSuspendKt.class","size":1438,"crc":-977187061},{"key":"kotlin/coroutines/jvm/internal/SuspendFunction.class","name":"kotlin/coroutines/jvm/internal/SuspendFunction.class","size":478,"crc":639516507},{"key":"kotlin/coroutines/jvm/internal/SuspendLambda.class","name":"kotlin/coroutines/jvm/internal/SuspendLambda.class","size":2315,"crc":1439096700},{"key":"kotlin/enums/EnumEntries.class","name":"kotlin/enums/EnumEntries.class","size":800,"crc":-896832478},{"key":"kotlin/enums/EnumEntriesJVMKt.class","name":"kotlin/enums/EnumEntriesJVMKt.class","size":1059,"crc":-687293350},{"key":"kotlin/enums/EnumEntriesKt.class","name":"kotlin/enums/EnumEntriesKt.class","size":2684,"crc":423460520},{"key":"kotlin/enums/EnumEntriesList.class","name":"kotlin/enums/EnumEntriesList.class","size":3422,"crc":-811996100},{"key":"kotlin/enums/EnumEntriesSerializationProxy$Companion.class","name":"kotlin/enums/EnumEntriesSerializationProxy$Companion.class","size":901,"crc":1451853094},{"key":"kotlin/enums/EnumEntriesSerializationProxy.class","name":"kotlin/enums/EnumEntriesSerializationProxy.class","size":2138,"crc":765468858},{"key":"kotlin/experimental/BitwiseOperationsKt.class","name":"kotlin/experimental/BitwiseOperationsKt.class","size":1508,"crc":-235398090},{"key":"kotlin/experimental/ExperimentalNativeApi.class","name":"kotlin/experimental/ExperimentalNativeApi.class","size":1430,"crc":-130773746},{"key":"kotlin/experimental/ExperimentalObjCName.class","name":"kotlin/experimental/ExperimentalObjCName.class","size":1041,"crc":-1610923018},{"key":"kotlin/experimental/ExperimentalObjCRefinement.class","name":"kotlin/experimental/ExperimentalObjCRefinement.class","size":1059,"crc":-1537317411},{"key":"kotlin/experimental/ExperimentalTypeInference.class","name":"kotlin/experimental/ExperimentalTypeInference.class","size":1197,"crc":2040029542},{"key":"kotlin/internal/AccessibleLateinitPropertyLiteral.class","name":"kotlin/internal/AccessibleLateinitPropertyLiteral.class","size":931,"crc":537382718},{"key":"kotlin/internal/ContractsDsl.class","name":"kotlin/internal/ContractsDsl.class","size":677,"crc":-1622441649},{"key":"kotlin/internal/DynamicExtension.class","name":"kotlin/internal/DynamicExtension.class","size":817,"crc":1283871041},{"key":"kotlin/internal/Exact.class","name":"kotlin/internal/Exact.class","size":724,"crc":1937309538},{"key":"kotlin/internal/HidesMembers.class","name":"kotlin/internal/HidesMembers.class","size":809,"crc":1043804348},{"key":"kotlin/internal/InlineOnly.class","name":"kotlin/internal/InlineOnly.class","size":851,"crc":-1129162316},{"key":"kotlin/internal/IntrinsicConstEvaluation.class","name":"kotlin/internal/IntrinsicConstEvaluation.class","size":951,"crc":2106596098},{"key":"kotlin/internal/LowPriorityInOverloadResolution.class","name":"kotlin/internal/LowPriorityInOverloadResolution.class","size":871,"crc":988902805},{"key":"kotlin/internal/NoInfer.class","name":"kotlin/internal/NoInfer.class","size":728,"crc":-2135110351},{"key":"kotlin/internal/OnlyInputTypes.class","name":"kotlin/internal/OnlyInputTypes.class","size":752,"crc":915397554},{"key":"kotlin/internal/PlatformDependent.class","name":"kotlin/internal/PlatformDependent.class","size":811,"crc":-1526537696},{"key":"kotlin/internal/PlatformImplementations$ReflectThrowable.class","name":"kotlin/internal/PlatformImplementations$ReflectThrowable.class","size":2779,"crc":65562786},{"key":"kotlin/internal/PlatformImplementations.class","name":"kotlin/internal/PlatformImplementations.class","size":3368,"crc":-1753269538},{"key":"kotlin/internal/PlatformImplementationsKt.class","name":"kotlin/internal/PlatformImplementationsKt.class","size":2660,"crc":-964337367},{"key":"kotlin/internal/ProgressionUtilKt.class","name":"kotlin/internal/ProgressionUtilKt.class","size":1714,"crc":-409225869},{"key":"kotlin/internal/PureReifiable.class","name":"kotlin/internal/PureReifiable.class","size":758,"crc":1345178402},{"key":"kotlin/internal/RequireKotlin$Container.class","name":"kotlin/internal/RequireKotlin$Container.class","size":935,"crc":-1063676858},{"key":"kotlin/internal/RequireKotlin.class","name":"kotlin/internal/RequireKotlin.class","size":1730,"crc":-1294212214},{"key":"kotlin/internal/RequireKotlinVersionKind.class","name":"kotlin/internal/RequireKotlinVersionKind.class","size":1976,"crc":1952872647},{"key":"kotlin/internal/UProgressionUtilKt.class","name":"kotlin/internal/UProgressionUtilKt.class","size":2147,"crc":2024212222},{"key":"kotlin/io/AccessDeniedException.class","name":"kotlin/io/AccessDeniedException.class","size":1234,"crc":227190511},{"key":"kotlin/io/ByteStreamsKt$iterator$1.class","name":"kotlin/io/ByteStreamsKt$iterator$1.class","size":2283,"crc":820478245},{"key":"kotlin/io/ByteStreamsKt.class","name":"kotlin/io/ByteStreamsKt.class","size":8217,"crc":2049191648},{"key":"kotlin/io/CloseableKt.class","name":"kotlin/io/CloseableKt.class","size":2410,"crc":-127060267},{"key":"kotlin/io/ConsoleKt.class","name":"kotlin/io/ConsoleKt.class","size":4298,"crc":1628739225},{"key":"kotlin/io/ConstantsKt.class","name":"kotlin/io/ConstantsKt.class","size":606,"crc":2117026884},{"key":"kotlin/io/ExceptionsKt.class","name":"kotlin/io/ExceptionsKt.class","size":1363,"crc":1571864551},{"key":"kotlin/io/ExposingBufferByteArrayOutputStream.class","name":"kotlin/io/ExposingBufferByteArrayOutputStream.class","size":985,"crc":-1330676948},{"key":"kotlin/io/FileAlreadyExistsException.class","name":"kotlin/io/FileAlreadyExistsException.class","size":1244,"crc":-2054698936},{"key":"kotlin/io/FilePathComponents.class","name":"kotlin/io/FilePathComponents.class","size":4372,"crc":1963806951},{"key":"kotlin/io/FileSystemException.class","name":"kotlin/io/FileSystemException.class","size":1900,"crc":1442021606},{"key":"kotlin/io/FileTreeWalk$DirectoryState.class","name":"kotlin/io/FileTreeWalk$DirectoryState.class","size":1792,"crc":-1325553207},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$BottomUpDirectoryState.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$BottomUpDirectoryState.class","size":2896,"crc":1532611359},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$SingleFileState.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$SingleFileState.class","size":2426,"crc":-496394119},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$TopDownDirectoryState.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$TopDownDirectoryState.class","size":2899,"crc":2110876839},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$WhenMappings.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator$WhenMappings.class","size":842,"crc":1978710697},{"key":"kotlin/io/FileTreeWalk$FileTreeWalkIterator.class","name":"kotlin/io/FileTreeWalk$FileTreeWalkIterator.class","size":3501,"crc":-621707946},{"key":"kotlin/io/FileTreeWalk$WalkState.class","name":"kotlin/io/FileTreeWalk$WalkState.class","size":1143,"crc":1105107333},{"key":"kotlin/io/FileTreeWalk.class","name":"kotlin/io/FileTreeWalk.class","size":6105,"crc":296366671},{"key":"kotlin/io/FileWalkDirection.class","name":"kotlin/io/FileWalkDirection.class","size":1746,"crc":-233356171},{"key":"kotlin/io/FilesKt.class","name":"kotlin/io/FilesKt.class","size":500,"crc":-1292473319},{"key":"kotlin/io/FilesKt__FilePathComponentsKt.class","name":"kotlin/io/FilesKt__FilePathComponentsKt.class","size":5233,"crc":538980239},{"key":"kotlin/io/FilesKt__FileReadWriteKt$readLines$1.class","name":"kotlin/io/FilesKt__FileReadWriteKt$readLines$1.class","size":1726,"crc":973217240},{"key":"kotlin/io/FilesKt__FileReadWriteKt.class","name":"kotlin/io/FilesKt__FileReadWriteKt.class","size":15877,"crc":-134723506},{"key":"kotlin/io/FilesKt__FileTreeWalkKt.class","name":"kotlin/io/FilesKt__FileTreeWalkKt.class","size":1799,"crc":1675044352},{"key":"kotlin/io/FilesKt__UtilsKt$copyRecursively$1.class","name":"kotlin/io/FilesKt__UtilsKt$copyRecursively$1.class","size":1612,"crc":588321209},{"key":"kotlin/io/FilesKt__UtilsKt$copyRecursively$2.class","name":"kotlin/io/FilesKt__UtilsKt$copyRecursively$2.class","size":2141,"crc":-266864910},{"key":"kotlin/io/FilesKt__UtilsKt.class","name":"kotlin/io/FilesKt__UtilsKt.class","size":16836,"crc":-1104781288},{"key":"kotlin/io/LineReader.class","name":"kotlin/io/LineReader.class","size":5960,"crc":-672957175},{"key":"kotlin/io/LinesSequence$iterator$1.class","name":"kotlin/io/LinesSequence$iterator$1.class","size":2145,"crc":513590345},{"key":"kotlin/io/LinesSequence.class","name":"kotlin/io/LinesSequence.class","size":1525,"crc":1307884124},{"key":"kotlin/io/NoSuchFileException.class","name":"kotlin/io/NoSuchFileException.class","size":1230,"crc":1485785339},{"key":"kotlin/io/OnErrorAction.class","name":"kotlin/io/OnErrorAction.class","size":1707,"crc":201315114},{"key":"kotlin/io/ReadAfterEOFException.class","name":"kotlin/io/ReadAfterEOFException.class","size":754,"crc":863840860},{"key":"kotlin/io/SerializableKt.class","name":"kotlin/io/SerializableKt.class","size":448,"crc":-1216600242},{"key":"kotlin/io/TerminateException.class","name":"kotlin/io/TerminateException.class","size":924,"crc":-1178535396},{"key":"kotlin/io/TextStreamsKt$readLines$1.class","name":"kotlin/io/TextStreamsKt$readLines$1.class","size":1665,"crc":1083965957},{"key":"kotlin/io/TextStreamsKt.class","name":"kotlin/io/TextStreamsKt.class","size":8810,"crc":25805800},{"key":"kotlin/io/encoding/Base64$Default.class","name":"kotlin/io/encoding/Base64$Default.class","size":1777,"crc":-1283377667},{"key":"kotlin/io/encoding/Base64.class","name":"kotlin/io/encoding/Base64.class","size":15178,"crc":971005045},{"key":"kotlin/io/encoding/Base64JVMKt.class","name":"kotlin/io/encoding/Base64JVMKt.class","size":2904,"crc":1209305563},{"key":"kotlin/io/encoding/Base64Kt.class","name":"kotlin/io/encoding/Base64Kt.class","size":4749,"crc":-1677149066},{"key":"kotlin/io/encoding/DecodeInputStream.class","name":"kotlin/io/encoding/DecodeInputStream.class","size":5329,"crc":-1122565338},{"key":"kotlin/io/encoding/EncodeOutputStream.class","name":"kotlin/io/encoding/EncodeOutputStream.class","size":4679,"crc":-1623836776},{"key":"kotlin/io/encoding/ExperimentalEncodingApi.class","name":"kotlin/io/encoding/ExperimentalEncodingApi.class","size":1434,"crc":647943232},{"key":"kotlin/io/encoding/StreamEncodingKt.class","name":"kotlin/io/encoding/StreamEncodingKt.class","size":480,"crc":-1073408436},{"key":"kotlin/io/encoding/StreamEncodingKt__Base64IOStreamKt.class","name":"kotlin/io/encoding/StreamEncodingKt__Base64IOStreamKt.class","size":1806,"crc":974887480},{"key":"kotlin/js/ExperimentalJsExport.class","name":"kotlin/js/ExperimentalJsExport.class","size":949,"crc":-1053284241},{"key":"kotlin/js/ExperimentalJsFileName.class","name":"kotlin/js/ExperimentalJsFileName.class","size":953,"crc":-2097952026},{"key":"kotlin/js/ExperimentalJsReflectionCreateInstance.class","name":"kotlin/js/ExperimentalJsReflectionCreateInstance.class","size":1439,"crc":-2141626407},{"key":"kotlin/jvm/ImplicitlyActualizedByJvmDeclaration.class","name":"kotlin/jvm/ImplicitlyActualizedByJvmDeclaration.class","size":1039,"crc":-2136889168},{"key":"kotlin/jvm/JvmClassMappingKt.class","name":"kotlin/jvm/JvmClassMappingKt.class","size":7168,"crc":1011152709},{"key":"kotlin/jvm/JvmDefault.class","name":"kotlin/jvm/JvmDefault.class","size":965,"crc":-1497896027},{"key":"kotlin/jvm/JvmDefaultWithCompatibility.class","name":"kotlin/jvm/JvmDefaultWithCompatibility.class","size":900,"crc":2061592004},{"key":"kotlin/jvm/JvmDefaultWithoutCompatibility.class","name":"kotlin/jvm/JvmDefaultWithoutCompatibility.class","size":891,"crc":-1538422422},{"key":"kotlin/jvm/JvmField.class","name":"kotlin/jvm/JvmField.class","size":857,"crc":441782847},{"key":"kotlin/jvm/JvmInline.class","name":"kotlin/jvm/JvmInline.class","size":945,"crc":906305351},{"key":"kotlin/jvm/JvmMultifileClass.class","name":"kotlin/jvm/JvmMultifileClass.class","size":824,"crc":1147139065},{"key":"kotlin/jvm/JvmName.class","name":"kotlin/jvm/JvmName.class","size":1005,"crc":865165738},{"key":"kotlin/jvm/JvmOverloads.class","name":"kotlin/jvm/JvmOverloads.class","size":901,"crc":-302911517},{"key":"kotlin/jvm/JvmPackageName.class","name":"kotlin/jvm/JvmPackageName.class","size":984,"crc":-1170927781},{"key":"kotlin/jvm/JvmRecord.class","name":"kotlin/jvm/JvmRecord.class","size":944,"crc":1705738379},{"key":"kotlin/jvm/JvmSerializableLambda.class","name":"kotlin/jvm/JvmSerializableLambda.class","size":837,"crc":-81358833},{"key":"kotlin/jvm/JvmStatic.class","name":"kotlin/jvm/JvmStatic.class","size":926,"crc":465241126},{"key":"kotlin/jvm/JvmSuppressWildcards.class","name":"kotlin/jvm/JvmSuppressWildcards.class","size":1029,"crc":-1748683121},{"key":"kotlin/jvm/JvmSynthetic.class","name":"kotlin/jvm/JvmSynthetic.class","size":862,"crc":-1451426540},{"key":"kotlin/jvm/JvmWildcard.class","name":"kotlin/jvm/JvmWildcard.class","size":820,"crc":738466343},{"key":"kotlin/jvm/KotlinReflectionNotSupportedError.class","name":"kotlin/jvm/KotlinReflectionNotSupportedError.class","size":1332,"crc":1923609602},{"key":"kotlin/jvm/PurelyImplements.class","name":"kotlin/jvm/PurelyImplements.class","size":940,"crc":-260409503},{"key":"kotlin/jvm/Strictfp.class","name":"kotlin/jvm/Strictfp.class","size":952,"crc":110649944},{"key":"kotlin/jvm/Synchronized.class","name":"kotlin/jvm/Synchronized.class","size":911,"crc":1122271982},{"key":"kotlin/jvm/Throws.class","name":"kotlin/jvm/Throws.class","size":1087,"crc":-1567643716},{"key":"kotlin/jvm/Transient.class","name":"kotlin/jvm/Transient.class","size":847,"crc":-2079134763},{"key":"kotlin/jvm/Volatile.class","name":"kotlin/jvm/Volatile.class","size":845,"crc":-888361923},{"key":"kotlin/jvm/functions/Function0.class","name":"kotlin/jvm/functions/Function0.class","size":584,"crc":-909373440},{"key":"kotlin/jvm/functions/Function1.class","name":"kotlin/jvm/functions/Function1.class","size":661,"crc":922677424},{"key":"kotlin/jvm/functions/Function10.class","name":"kotlin/jvm/functions/Function10.class","size":1351,"crc":470156020},{"key":"kotlin/jvm/functions/Function11.class","name":"kotlin/jvm/functions/Function11.class","size":1431,"crc":-1769343939},{"key":"kotlin/jvm/functions/Function12.class","name":"kotlin/jvm/functions/Function12.class","size":1511,"crc":2121955041},{"key":"kotlin/jvm/functions/Function13.class","name":"kotlin/jvm/functions/Function13.class","size":1591,"crc":-88986153},{"key":"kotlin/jvm/functions/Function14.class","name":"kotlin/jvm/functions/Function14.class","size":1671,"crc":-727615517},{"key":"kotlin/jvm/functions/Function15.class","name":"kotlin/jvm/functions/Function15.class","size":1753,"crc":-755344073},{"key":"kotlin/jvm/functions/Function16.class","name":"kotlin/jvm/functions/Function16.class","size":1833,"crc":-440676244},{"key":"kotlin/jvm/functions/Function17.class","name":"kotlin/jvm/functions/Function17.class","size":1913,"crc":1566142966},{"key":"kotlin/jvm/functions/Function18.class","name":"kotlin/jvm/functions/Function18.class","size":1993,"crc":1363447016},{"key":"kotlin/jvm/functions/Function19.class","name":"kotlin/jvm/functions/Function19.class","size":2073,"crc":564255108},{"key":"kotlin/jvm/functions/Function2.class","name":"kotlin/jvm/functions/Function2.class","size":737,"crc":-1331267189},{"key":"kotlin/jvm/functions/Function20.class","name":"kotlin/jvm/functions/Function20.class","size":2153,"crc":169038817},{"key":"kotlin/jvm/functions/Function21.class","name":"kotlin/jvm/functions/Function21.class","size":2233,"crc":-1762499913},{"key":"kotlin/jvm/functions/Function22.class","name":"kotlin/jvm/functions/Function22.class","size":2313,"crc":1364071103},{"key":"kotlin/jvm/functions/Function3.class","name":"kotlin/jvm/functions/Function3.class","size":813,"crc":-756278940},{"key":"kotlin/jvm/functions/Function4.class","name":"kotlin/jvm/functions/Function4.class","size":889,"crc":1638232334},{"key":"kotlin/jvm/functions/Function5.class","name":"kotlin/jvm/functions/Function5.class","size":965,"crc":598414095},{"key":"kotlin/jvm/functions/Function6.class","name":"kotlin/jvm/functions/Function6.class","size":1041,"crc":-343278714},{"key":"kotlin/jvm/functions/Function7.class","name":"kotlin/jvm/functions/Function7.class","size":1117,"crc":-597218157},{"key":"kotlin/jvm/functions/Function8.class","name":"kotlin/jvm/functions/Function8.class","size":1193,"crc":-1418717722},{"key":"kotlin/jvm/functions/Function9.class","name":"kotlin/jvm/functions/Function9.class","size":1269,"crc":-1749645506},{"key":"kotlin/jvm/functions/FunctionN.class","name":"kotlin/jvm/functions/FunctionN.class","size":1061,"crc":-1536285221},{"key":"kotlin/jvm/internal/ArrayBooleanIterator.class","name":"kotlin/jvm/internal/ArrayBooleanIterator.class","size":1515,"crc":778217530},{"key":"kotlin/jvm/internal/ArrayByteIterator.class","name":"kotlin/jvm/internal/ArrayByteIterator.class","size":1515,"crc":-256114036},{"key":"kotlin/jvm/internal/ArrayCharIterator.class","name":"kotlin/jvm/internal/ArrayCharIterator.class","size":1515,"crc":-763297858},{"key":"kotlin/jvm/internal/ArrayDoubleIterator.class","name":"kotlin/jvm/internal/ArrayDoubleIterator.class","size":1525,"crc":1464987663},{"key":"kotlin/jvm/internal/ArrayFloatIterator.class","name":"kotlin/jvm/internal/ArrayFloatIterator.class","size":1520,"crc":-64944472},{"key":"kotlin/jvm/internal/ArrayIntIterator.class","name":"kotlin/jvm/internal/ArrayIntIterator.class","size":1501,"crc":-1677935995},{"key":"kotlin/jvm/internal/ArrayIterator.class","name":"kotlin/jvm/internal/ArrayIterator.class","size":2106,"crc":1687851062},{"key":"kotlin/jvm/internal/ArrayIteratorKt.class","name":"kotlin/jvm/internal/ArrayIteratorKt.class","size":1023,"crc":1440653645},{"key":"kotlin/jvm/internal/ArrayIteratorsKt.class","name":"kotlin/jvm/internal/ArrayIteratorsKt.class","size":3114,"crc":-1342272618},{"key":"kotlin/jvm/internal/ArrayLongIterator.class","name":"kotlin/jvm/internal/ArrayLongIterator.class","size":1515,"crc":-1231845849},{"key":"kotlin/jvm/internal/ArrayShortIterator.class","name":"kotlin/jvm/internal/ArrayShortIterator.class","size":1520,"crc":-434393845},{"key":"kotlin/jvm/internal/BooleanCompanionObject.class","name":"kotlin/jvm/internal/BooleanCompanionObject.class","size":766,"crc":1111651632},{"key":"kotlin/jvm/internal/BooleanSpreadBuilder.class","name":"kotlin/jvm/internal/BooleanSpreadBuilder.class","size":1725,"crc":2063761744},{"key":"kotlin/jvm/internal/ByteCompanionObject.class","name":"kotlin/jvm/internal/ByteCompanionObject.class","size":1195,"crc":-396125422},{"key":"kotlin/jvm/internal/ByteSpreadBuilder.class","name":"kotlin/jvm/internal/ByteSpreadBuilder.class","size":1719,"crc":-219929107},{"key":"kotlin/jvm/internal/CharCompanionObject.class","name":"kotlin/jvm/internal/CharCompanionObject.class","size":1733,"crc":832403686},{"key":"kotlin/jvm/internal/CharSpreadBuilder.class","name":"kotlin/jvm/internal/CharSpreadBuilder.class","size":1719,"crc":1142829869},{"key":"kotlin/jvm/internal/ClassBasedDeclarationContainer.class","name":"kotlin/jvm/internal/ClassBasedDeclarationContainer.class","size":737,"crc":2093255845},{"key":"kotlin/jvm/internal/ClassReference$Companion.class","name":"kotlin/jvm/internal/ClassReference$Companion.class","size":5631,"crc":-135940931},{"key":"kotlin/jvm/internal/ClassReference.class","name":"kotlin/jvm/internal/ClassReference.class","size":16432,"crc":-1582948118},{"key":"kotlin/jvm/internal/CollectionToArray.class","name":"kotlin/jvm/internal/CollectionToArray.class","size":6451,"crc":1808882824},{"key":"kotlin/jvm/internal/DoubleCompanionObject.class","name":"kotlin/jvm/internal/DoubleCompanionObject.class","size":2295,"crc":-405870132},{"key":"kotlin/jvm/internal/DoubleSpreadBuilder.class","name":"kotlin/jvm/internal/DoubleSpreadBuilder.class","size":1723,"crc":798466303},{"key":"kotlin/jvm/internal/EnumCompanionObject.class","name":"kotlin/jvm/internal/EnumCompanionObject.class","size":704,"crc":761914367},{"key":"kotlin/jvm/internal/FloatCompanionObject.class","name":"kotlin/jvm/internal/FloatCompanionObject.class","size":2268,"crc":551660058},{"key":"kotlin/jvm/internal/FloatSpreadBuilder.class","name":"kotlin/jvm/internal/FloatSpreadBuilder.class","size":1721,"crc":171521870},{"key":"kotlin/jvm/internal/FunctionBase.class","name":"kotlin/jvm/internal/FunctionBase.class","size":587,"crc":-1463696599},{"key":"kotlin/jvm/internal/IntCompanionObject.class","name":"kotlin/jvm/internal/IntCompanionObject.class","size":1183,"crc":78804304},{"key":"kotlin/jvm/internal/IntSpreadBuilder.class","name":"kotlin/jvm/internal/IntSpreadBuilder.class","size":1696,"crc":-774089228},{"key":"kotlin/jvm/internal/KTypeBase.class","name":"kotlin/jvm/internal/KTypeBase.class","size":670,"crc":-1983015743},{"key":"kotlin/jvm/internal/Lambda.class","name":"kotlin/jvm/internal/Lambda.class","size":1437,"crc":112863782},{"key":"kotlin/jvm/internal/LocalVariableReference.class","name":"kotlin/jvm/internal/LocalVariableReference.class","size":1365,"crc":-1012495115},{"key":"kotlin/jvm/internal/LocalVariableReferencesKt.class","name":"kotlin/jvm/internal/LocalVariableReferencesKt.class","size":682,"crc":569424948},{"key":"kotlin/jvm/internal/LongCompanionObject.class","name":"kotlin/jvm/internal/LongCompanionObject.class","size":1208,"crc":-277488326},{"key":"kotlin/jvm/internal/LongSpreadBuilder.class","name":"kotlin/jvm/internal/LongSpreadBuilder.class","size":1719,"crc":835972803},{"key":"kotlin/jvm/internal/MutableLocalVariableReference.class","name":"kotlin/jvm/internal/MutableLocalVariableReference.class","size":1719,"crc":-1117062596},{"key":"kotlin/jvm/internal/PackageReference.class","name":"kotlin/jvm/internal/PackageReference.class","size":2620,"crc":-701014410},{"key":"kotlin/jvm/internal/PrimitiveSpreadBuilder.class","name":"kotlin/jvm/internal/PrimitiveSpreadBuilder.class","size":2880,"crc":-71319985},{"key":"kotlin/jvm/internal/SerializedIr.class","name":"kotlin/jvm/internal/SerializedIr.class","size":1063,"crc":2026605270},{"key":"kotlin/jvm/internal/ShortCompanionObject.class","name":"kotlin/jvm/internal/ShortCompanionObject.class","size":1202,"crc":-87682822},{"key":"kotlin/jvm/internal/ShortSpreadBuilder.class","name":"kotlin/jvm/internal/ShortSpreadBuilder.class","size":1721,"crc":1196198986},{"key":"kotlin/jvm/internal/SourceDebugExtension.class","name":"kotlin/jvm/internal/SourceDebugExtension.class","size":992,"crc":473137854},{"key":"kotlin/jvm/internal/StringCompanionObject.class","name":"kotlin/jvm/internal/StringCompanionObject.class","size":708,"crc":731090467},{"key":"kotlin/jvm/internal/TypeParameterReference$Companion$WhenMappings.class","name":"kotlin/jvm/internal/TypeParameterReference$Companion$WhenMappings.class","size":907,"crc":-1451406313},{"key":"kotlin/jvm/internal/TypeParameterReference$Companion.class","name":"kotlin/jvm/internal/TypeParameterReference$Companion.class","size":2139,"crc":650463094},{"key":"kotlin/jvm/internal/TypeParameterReference.class","name":"kotlin/jvm/internal/TypeParameterReference.class","size":4710,"crc":-1950052979},{"key":"kotlin/jvm/internal/TypeReference$Companion.class","name":"kotlin/jvm/internal/TypeReference$Companion.class","size":952,"crc":1106262449},{"key":"kotlin/jvm/internal/TypeReference$WhenMappings.class","name":"kotlin/jvm/internal/TypeReference$WhenMappings.class","size":792,"crc":268010207},{"key":"kotlin/jvm/internal/TypeReference$asString$args$1.class","name":"kotlin/jvm/internal/TypeReference$asString$args$1.class","size":1783,"crc":163653558},{"key":"kotlin/jvm/internal/TypeReference.class","name":"kotlin/jvm/internal/TypeReference.class","size":8247,"crc":374088075},{"key":"kotlin/jvm/internal/markers/KMappedMarker.class","name":"kotlin/jvm/internal/markers/KMappedMarker.class","size":374,"crc":1379417699},{"key":"kotlin/jvm/internal/markers/KMutableCollection.class","name":"kotlin/jvm/internal/markers/KMutableCollection.class","size":481,"crc":495101105},{"key":"kotlin/jvm/internal/markers/KMutableIterable.class","name":"kotlin/jvm/internal/markers/KMutableIterable.class","size":471,"crc":-1761605521},{"key":"kotlin/jvm/internal/markers/KMutableIterator.class","name":"kotlin/jvm/internal/markers/KMutableIterator.class","size":471,"crc":212924626},{"key":"kotlin/jvm/internal/markers/KMutableList.class","name":"kotlin/jvm/internal/markers/KMutableList.class","size":473,"crc":-460822749},{"key":"kotlin/jvm/internal/markers/KMutableListIterator.class","name":"kotlin/jvm/internal/markers/KMutableListIterator.class","size":485,"crc":-1420650768},{"key":"kotlin/jvm/internal/markers/KMutableMap$Entry.class","name":"kotlin/jvm/internal/markers/KMutableMap$Entry.class","size":557,"crc":-1507953878},{"key":"kotlin/jvm/internal/markers/KMutableMap.class","name":"kotlin/jvm/internal/markers/KMutableMap.class","size":558,"crc":-1887506385},{"key":"kotlin/jvm/internal/markers/KMutableSet.class","name":"kotlin/jvm/internal/markers/KMutableSet.class","size":471,"crc":-209730974},{"key":"kotlin/jvm/internal/unsafe/MonitorKt.class","name":"kotlin/jvm/internal/unsafe/MonitorKt.class","size":767,"crc":1856449257},{"key":"kotlin/math/Constants.class","name":"kotlin/math/Constants.class","size":1288,"crc":863133183},{"key":"kotlin/math/MathKt.class","name":"kotlin/math/MathKt.class","size":493,"crc":-338347273},{"key":"kotlin/math/MathKt__MathHKt.class","name":"kotlin/math/MathKt__MathHKt.class","size":775,"crc":965165272},{"key":"kotlin/math/MathKt__MathJVMKt.class","name":"kotlin/math/MathKt__MathJVMKt.class","size":14868,"crc":-1125826625},{"key":"kotlin/math/UMathKt.class","name":"kotlin/math/UMathKt.class","size":1399,"crc":-532145849},{"key":"kotlin/properties/Delegates$observable$1.class","name":"kotlin/properties/Delegates$observable$1.class","size":2326,"crc":1858811867},{"key":"kotlin/properties/Delegates$vetoable$1.class","name":"kotlin/properties/Delegates$vetoable$1.class","size":2388,"crc":-1506224883},{"key":"kotlin/properties/Delegates.class","name":"kotlin/properties/Delegates.class","size":2794,"crc":1843751956},{"key":"kotlin/properties/NotNullVar.class","name":"kotlin/properties/NotNullVar.class","size":2583,"crc":-453126454},{"key":"kotlin/properties/ObservableProperty.class","name":"kotlin/properties/ObservableProperty.class","size":3024,"crc":-969331561},{"key":"kotlin/properties/PropertyDelegateProvider.class","name":"kotlin/properties/PropertyDelegateProvider.class","size":933,"crc":-495463817},{"key":"kotlin/properties/ReadOnlyProperty.class","name":"kotlin/properties/ReadOnlyProperty.class","size":824,"crc":1858658415},{"key":"kotlin/properties/ReadWriteProperty.class","name":"kotlin/properties/ReadWriteProperty.class","size":1184,"crc":1258318723},{"key":"kotlin/random/AbstractPlatformRandom.class","name":"kotlin/random/AbstractPlatformRandom.class","size":2535,"crc":1100785784},{"key":"kotlin/random/FallbackThreadLocalRandom$implStorage$1.class","name":"kotlin/random/FallbackThreadLocalRandom$implStorage$1.class","size":1094,"crc":968345181},{"key":"kotlin/random/FallbackThreadLocalRandom.class","name":"kotlin/random/FallbackThreadLocalRandom.class","size":1288,"crc":-247279545},{"key":"kotlin/random/KotlinRandom$Companion.class","name":"kotlin/random/KotlinRandom$Companion.class","size":838,"crc":-1557800371},{"key":"kotlin/random/KotlinRandom.class","name":"kotlin/random/KotlinRandom.class","size":2780,"crc":1594010224},{"key":"kotlin/random/PlatformRandom$Companion.class","name":"kotlin/random/PlatformRandom$Companion.class","size":844,"crc":112823939},{"key":"kotlin/random/PlatformRandom.class","name":"kotlin/random/PlatformRandom.class","size":1503,"crc":-527473605},{"key":"kotlin/random/PlatformRandomKt.class","name":"kotlin/random/PlatformRandomKt.class","size":2025,"crc":734052214},{"key":"kotlin/random/Random$Default$Serialized.class","name":"kotlin/random/Random$Default$Serialized.class","size":1157,"crc":625402449},{"key":"kotlin/random/Random$Default.class","name":"kotlin/random/Random$Default.class","size":3425,"crc":-1200305273},{"key":"kotlin/random/Random.class","name":"kotlin/random/Random.class","size":6513,"crc":-1149581943},{"key":"kotlin/random/RandomKt.class","name":"kotlin/random/RandomKt.class","size":4395,"crc":1502624398},{"key":"kotlin/random/URandomKt.class","name":"kotlin/random/URandomKt.class","size":6606,"crc":-63212210},{"key":"kotlin/random/XorWowRandom$Companion.class","name":"kotlin/random/XorWowRandom$Companion.class","size":836,"crc":-301569317},{"key":"kotlin/random/XorWowRandom.class","name":"kotlin/random/XorWowRandom.class","size":2991,"crc":1089717476},{"key":"kotlin/ranges/CharProgression$Companion.class","name":"kotlin/ranges/CharProgression$Companion.class","size":1195,"crc":568481049},{"key":"kotlin/ranges/CharProgression.class","name":"kotlin/ranges/CharProgression.class","size":3577,"crc":1877081729},{"key":"kotlin/ranges/CharProgressionIterator.class","name":"kotlin/ranges/CharProgressionIterator.class","size":1547,"crc":842801371},{"key":"kotlin/ranges/CharRange$Companion.class","name":"kotlin/ranges/CharRange$Companion.class","size":1068,"crc":1955667294},{"key":"kotlin/ranges/CharRange.class","name":"kotlin/ranges/CharRange.class","size":4291,"crc":-728609082},{"key":"kotlin/ranges/ClosedDoubleRange.class","name":"kotlin/ranges/ClosedDoubleRange.class","size":3157,"crc":1869616073},{"key":"kotlin/ranges/ClosedFloatRange.class","name":"kotlin/ranges/ClosedFloatRange.class","size":3150,"crc":1547889871},{"key":"kotlin/ranges/ClosedFloatingPointRange$DefaultImpls.class","name":"kotlin/ranges/ClosedFloatingPointRange$DefaultImpls.class","size":1423,"crc":1045014490},{"key":"kotlin/ranges/ClosedFloatingPointRange.class","name":"kotlin/ranges/ClosedFloatingPointRange.class","size":1179,"crc":-548035710},{"key":"kotlin/ranges/ClosedRange$DefaultImpls.class","name":"kotlin/ranges/ClosedRange$DefaultImpls.class","size":1321,"crc":-234209581},{"key":"kotlin/ranges/ClosedRange.class","name":"kotlin/ranges/ClosedRange.class","size":1018,"crc":301778213},{"key":"kotlin/ranges/ComparableOpenEndRange.class","name":"kotlin/ranges/ComparableOpenEndRange.class","size":2868,"crc":225943172},{"key":"kotlin/ranges/ComparableRange.class","name":"kotlin/ranges/ComparableRange.class","size":2847,"crc":300326156},{"key":"kotlin/ranges/IntProgression$Companion.class","name":"kotlin/ranges/IntProgression$Companion.class","size":1176,"crc":1835738025},{"key":"kotlin/ranges/IntProgression.class","name":"kotlin/ranges/IntProgression.class","size":3415,"crc":-1281017826},{"key":"kotlin/ranges/IntProgressionIterator.class","name":"kotlin/ranges/IntProgressionIterator.class","size":1442,"crc":-1921490937},{"key":"kotlin/ranges/IntRange$Companion.class","name":"kotlin/ranges/IntRange$Companion.class","size":1063,"crc":1372381880},{"key":"kotlin/ranges/IntRange.class","name":"kotlin/ranges/IntRange.class","size":4195,"crc":-1156792322},{"key":"kotlin/ranges/LongProgression$Companion.class","name":"kotlin/ranges/LongProgression$Companion.class","size":1182,"crc":1474442642},{"key":"kotlin/ranges/LongProgression.class","name":"kotlin/ranges/LongProgression.class","size":3485,"crc":1257759845},{"key":"kotlin/ranges/LongProgressionIterator.class","name":"kotlin/ranges/LongProgressionIterator.class","size":1453,"crc":933329898},{"key":"kotlin/ranges/LongRange$Companion.class","name":"kotlin/ranges/LongRange$Companion.class","size":1068,"crc":-1026190171},{"key":"kotlin/ranges/LongRange.class","name":"kotlin/ranges/LongRange.class","size":4235,"crc":-441740008},{"key":"kotlin/ranges/OpenEndDoubleRange.class","name":"kotlin/ranges/OpenEndDoubleRange.class","size":2969,"crc":-558656841},{"key":"kotlin/ranges/OpenEndFloatRange.class","name":"kotlin/ranges/OpenEndFloatRange.class","size":2962,"crc":151745833},{"key":"kotlin/ranges/OpenEndRange$DefaultImpls.class","name":"kotlin/ranges/OpenEndRange$DefaultImpls.class","size":1328,"crc":-2032834879},{"key":"kotlin/ranges/OpenEndRange.class","name":"kotlin/ranges/OpenEndRange.class","size":1163,"crc":-2051846807},{"key":"kotlin/ranges/RangesKt.class","name":"kotlin/ranges/RangesKt.class","size":431,"crc":296605454},{"key":"kotlin/ranges/RangesKt__RangesKt.class","name":"kotlin/ranges/RangesKt__RangesKt.class","size":4848,"crc":1037585792},{"key":"kotlin/ranges/RangesKt___RangesKt.class","name":"kotlin/ranges/RangesKt___RangesKt.class","size":39681,"crc":561928167},{"key":"kotlin/ranges/UIntProgression$Companion.class","name":"kotlin/ranges/UIntProgression$Companion.class","size":1292,"crc":-1079126007},{"key":"kotlin/ranges/UIntProgression.class","name":"kotlin/ranges/UIntProgression.class","size":3943,"crc":-995890194},{"key":"kotlin/ranges/UIntProgressionIterator.class","name":"kotlin/ranges/UIntProgressionIterator.class","size":2363,"crc":2089207368},{"key":"kotlin/ranges/UIntRange$Companion.class","name":"kotlin/ranges/UIntRange$Companion.class","size":1062,"crc":-584665661},{"key":"kotlin/ranges/UIntRange.class","name":"kotlin/ranges/UIntRange.class","size":4761,"crc":-805906275},{"key":"kotlin/ranges/ULongProgression$Companion.class","name":"kotlin/ranges/ULongProgression$Companion.class","size":1300,"crc":118167765},{"key":"kotlin/ranges/ULongProgression.class","name":"kotlin/ranges/ULongProgression.class","size":4080,"crc":224647720},{"key":"kotlin/ranges/ULongProgressionIterator.class","name":"kotlin/ranges/ULongProgressionIterator.class","size":2373,"crc":687574904},{"key":"kotlin/ranges/ULongRange$Companion.class","name":"kotlin/ranges/ULongRange$Companion.class","size":1068,"crc":-153807014},{"key":"kotlin/ranges/ULongRange.class","name":"kotlin/ranges/ULongRange.class","size":4864,"crc":-755025482},{"key":"kotlin/ranges/URangesKt.class","name":"kotlin/ranges/URangesKt.class","size":432,"crc":-862865872},{"key":"kotlin/ranges/URangesKt___URangesKt.class","name":"kotlin/ranges/URangesKt___URangesKt.class","size":17356,"crc":-503970653},{"key":"kotlin/reflect/GenericArrayTypeImpl.class","name":"kotlin/reflect/GenericArrayTypeImpl.class","size":2222,"crc":1336638857},{"key":"kotlin/reflect/KAnnotatedElement.class","name":"kotlin/reflect/KAnnotatedElement.class","size":636,"crc":-484705383},{"key":"kotlin/reflect/KCallable$DefaultImpls.class","name":"kotlin/reflect/KCallable$DefaultImpls.class","size":1111,"crc":710623442},{"key":"kotlin/reflect/KCallable.class","name":"kotlin/reflect/KCallable.class","size":2495,"crc":1584328110},{"key":"kotlin/reflect/KClass$DefaultImpls.class","name":"kotlin/reflect/KClass$DefaultImpls.class","size":1652,"crc":-566690550},{"key":"kotlin/reflect/KClass.class","name":"kotlin/reflect/KClass.class","size":3949,"crc":-770042337},{"key":"kotlin/reflect/KClasses.class","name":"kotlin/reflect/KClasses.class","size":2780,"crc":-1016113458},{"key":"kotlin/reflect/KClassesImplKt.class","name":"kotlin/reflect/KClassesImplKt.class","size":1124,"crc":21413327},{"key":"kotlin/reflect/KClassifier.class","name":"kotlin/reflect/KClassifier.class","size":433,"crc":-1495443118},{"key":"kotlin/reflect/KDeclarationContainer.class","name":"kotlin/reflect/KDeclarationContainer.class","size":681,"crc":-676512510},{"key":"kotlin/reflect/KFunction$DefaultImpls.class","name":"kotlin/reflect/KFunction$DefaultImpls.class","size":788,"crc":2007138240},{"key":"kotlin/reflect/KFunction.class","name":"kotlin/reflect/KFunction.class","size":1118,"crc":1542341802},{"key":"kotlin/reflect/KMutableProperty$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty$DefaultImpls.class","size":421,"crc":-1275981287},{"key":"kotlin/reflect/KMutableProperty$Setter.class","name":"kotlin/reflect/KMutableProperty$Setter.class","size":824,"crc":-55158174},{"key":"kotlin/reflect/KMutableProperty.class","name":"kotlin/reflect/KMutableProperty.class","size":1038,"crc":-1758317587},{"key":"kotlin/reflect/KMutableProperty0$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty0$DefaultImpls.class","size":423,"crc":-371887144},{"key":"kotlin/reflect/KMutableProperty0$Setter.class","name":"kotlin/reflect/KMutableProperty0$Setter.class","size":851,"crc":-1371139119},{"key":"kotlin/reflect/KMutableProperty0.class","name":"kotlin/reflect/KMutableProperty0.class","size":1289,"crc":-660774358},{"key":"kotlin/reflect/KMutableProperty1$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty1$DefaultImpls.class","size":423,"crc":-1486605265},{"key":"kotlin/reflect/KMutableProperty1$Setter.class","name":"kotlin/reflect/KMutableProperty1$Setter.class","size":894,"crc":1154652165},{"key":"kotlin/reflect/KMutableProperty1.class","name":"kotlin/reflect/KMutableProperty1.class","size":1384,"crc":-1554348424},{"key":"kotlin/reflect/KMutableProperty2$DefaultImpls.class","name":"kotlin/reflect/KMutableProperty2$DefaultImpls.class","size":423,"crc":1958214710},{"key":"kotlin/reflect/KMutableProperty2$Setter.class","name":"kotlin/reflect/KMutableProperty2$Setter.class","size":936,"crc":1804541428},{"key":"kotlin/reflect/KMutableProperty2.class","name":"kotlin/reflect/KMutableProperty2.class","size":1480,"crc":100480214},{"key":"kotlin/reflect/KParameter$DefaultImpls.class","name":"kotlin/reflect/KParameter$DefaultImpls.class","size":495,"crc":-1069332061},{"key":"kotlin/reflect/KParameter$Kind.class","name":"kotlin/reflect/KParameter$Kind.class","size":1902,"crc":1342257404},{"key":"kotlin/reflect/KParameter.class","name":"kotlin/reflect/KParameter.class","size":1288,"crc":1620613847},{"key":"kotlin/reflect/KProperty$Accessor.class","name":"kotlin/reflect/KProperty$Accessor.class","size":777,"crc":1370458406},{"key":"kotlin/reflect/KProperty$DefaultImpls.class","name":"kotlin/reflect/KProperty$DefaultImpls.class","size":623,"crc":-2041662637},{"key":"kotlin/reflect/KProperty$Getter.class","name":"kotlin/reflect/KProperty$Getter.class","size":755,"crc":-1127746446},{"key":"kotlin/reflect/KProperty.class","name":"kotlin/reflect/KProperty.class","size":1234,"crc":-692638702},{"key":"kotlin/reflect/KProperty0$DefaultImpls.class","name":"kotlin/reflect/KProperty0$DefaultImpls.class","size":409,"crc":334583848},{"key":"kotlin/reflect/KProperty0$Getter.class","name":"kotlin/reflect/KProperty0$Getter.class","size":775,"crc":-2079112201},{"key":"kotlin/reflect/KProperty0.class","name":"kotlin/reflect/KProperty0.class","size":1338,"crc":1663799897},{"key":"kotlin/reflect/KProperty1$DefaultImpls.class","name":"kotlin/reflect/KProperty1$DefaultImpls.class","size":409,"crc":-1483283828},{"key":"kotlin/reflect/KProperty1$Getter.class","name":"kotlin/reflect/KProperty1$Getter.class","size":818,"crc":1698249378},{"key":"kotlin/reflect/KProperty1.class","name":"kotlin/reflect/KProperty1.class","size":1482,"crc":884293612},{"key":"kotlin/reflect/KProperty2$DefaultImpls.class","name":"kotlin/reflect/KProperty2$DefaultImpls.class","size":409,"crc":-1605424351},{"key":"kotlin/reflect/KProperty2$Getter.class","name":"kotlin/reflect/KProperty2$Getter.class","size":860,"crc":-352825252},{"key":"kotlin/reflect/KProperty2.class","name":"kotlin/reflect/KProperty2.class","size":1589,"crc":-667568397},{"key":"kotlin/reflect/KType$DefaultImpls.class","name":"kotlin/reflect/KType$DefaultImpls.class","size":562,"crc":-144222734},{"key":"kotlin/reflect/KType.class","name":"kotlin/reflect/KType.class","size":1145,"crc":611998814},{"key":"kotlin/reflect/KTypeParameter.class","name":"kotlin/reflect/KTypeParameter.class","size":1075,"crc":-41524431},{"key":"kotlin/reflect/KTypeProjection$Companion.class","name":"kotlin/reflect/KTypeProjection$Companion.class","size":2150,"crc":-1683658855},{"key":"kotlin/reflect/KTypeProjection$WhenMappings.class","name":"kotlin/reflect/KTypeProjection$WhenMappings.class","size":788,"crc":925001456},{"key":"kotlin/reflect/KTypeProjection.class","name":"kotlin/reflect/KTypeProjection.class","size":4537,"crc":-1819724631},{"key":"kotlin/reflect/KVariance.class","name":"kotlin/reflect/KVariance.class","size":1833,"crc":-1081405589},{"key":"kotlin/reflect/KVisibility.class","name":"kotlin/reflect/KVisibility.class","size":1919,"crc":610208808},{"key":"kotlin/reflect/ParameterizedTypeImpl$getTypeName$1$1.class","name":"kotlin/reflect/ParameterizedTypeImpl$getTypeName$1$1.class","size":1685,"crc":-1186164228},{"key":"kotlin/reflect/ParameterizedTypeImpl.class","name":"kotlin/reflect/ParameterizedTypeImpl.class","size":5108,"crc":-1248219311},{"key":"kotlin/reflect/TypeImpl.class","name":"kotlin/reflect/TypeImpl.class","size":587,"crc":1021264950},{"key":"kotlin/reflect/TypeOfKt.class","name":"kotlin/reflect/TypeOfKt.class","size":929,"crc":-1477382926},{"key":"kotlin/reflect/TypeVariableImpl.class","name":"kotlin/reflect/TypeVariableImpl.class","size":5991,"crc":1382623892},{"key":"kotlin/reflect/TypesJVMKt$WhenMappings.class","name":"kotlin/reflect/TypesJVMKt$WhenMappings.class","size":771,"crc":-1586309048},{"key":"kotlin/reflect/TypesJVMKt$typeToString$unwrap$1.class","name":"kotlin/reflect/TypesJVMKt$typeToString$unwrap$1.class","size":1628,"crc":1996157594},{"key":"kotlin/reflect/TypesJVMKt.class","name":"kotlin/reflect/TypesJVMKt.class","size":9444,"crc":2103517024},{"key":"kotlin/reflect/WildcardTypeImpl$Companion.class","name":"kotlin/reflect/WildcardTypeImpl$Companion.class","size":1098,"crc":-1641149225},{"key":"kotlin/reflect/WildcardTypeImpl.class","name":"kotlin/reflect/WildcardTypeImpl.class","size":3890,"crc":1895596086},{"key":"kotlin/sequences/ConstrainedOnceSequence.class","name":"kotlin/sequences/ConstrainedOnceSequence.class","size":1883,"crc":-1751058795},{"key":"kotlin/sequences/DistinctIterator.class","name":"kotlin/sequences/DistinctIterator.class","size":2274,"crc":-1544304662},{"key":"kotlin/sequences/DistinctSequence.class","name":"kotlin/sequences/DistinctSequence.class","size":1848,"crc":435489402},{"key":"kotlin/sequences/DropSequence$iterator$1.class","name":"kotlin/sequences/DropSequence$iterator$1.class","size":2456,"crc":-734076564},{"key":"kotlin/sequences/DropSequence.class","name":"kotlin/sequences/DropSequence.class","size":3649,"crc":320027259},{"key":"kotlin/sequences/DropTakeSequence.class","name":"kotlin/sequences/DropTakeSequence.class","size":823,"crc":1108774320},{"key":"kotlin/sequences/DropWhileSequence$iterator$1.class","name":"kotlin/sequences/DropWhileSequence$iterator$1.class","size":3385,"crc":-150881091},{"key":"kotlin/sequences/DropWhileSequence.class","name":"kotlin/sequences/DropWhileSequence.class","size":2193,"crc":-1394602980},{"key":"kotlin/sequences/EmptySequence.class","name":"kotlin/sequences/EmptySequence.class","size":1577,"crc":770645749},{"key":"kotlin/sequences/FilteringSequence$iterator$1.class","name":"kotlin/sequences/FilteringSequence$iterator$1.class","size":3499,"crc":-144551757},{"key":"kotlin/sequences/FilteringSequence.class","name":"kotlin/sequences/FilteringSequence.class","size":2625,"crc":-166037849},{"key":"kotlin/sequences/FlatteningSequence$iterator$1.class","name":"kotlin/sequences/FlatteningSequence$iterator$1.class","size":3332,"crc":341688098},{"key":"kotlin/sequences/FlatteningSequence.class","name":"kotlin/sequences/FlatteningSequence.class","size":2612,"crc":209523866},{"key":"kotlin/sequences/GeneratorSequence$iterator$1.class","name":"kotlin/sequences/GeneratorSequence$iterator$1.class","size":3312,"crc":-978476975},{"key":"kotlin/sequences/GeneratorSequence.class","name":"kotlin/sequences/GeneratorSequence.class","size":2269,"crc":366047889},{"key":"kotlin/sequences/IndexingSequence$iterator$1.class","name":"kotlin/sequences/IndexingSequence$iterator$1.class","size":2665,"crc":-338549996},{"key":"kotlin/sequences/IndexingSequence.class","name":"kotlin/sequences/IndexingSequence.class","size":1790,"crc":491973965},{"key":"kotlin/sequences/MergingSequence$iterator$1.class","name":"kotlin/sequences/MergingSequence$iterator$1.class","size":2631,"crc":-1924759999},{"key":"kotlin/sequences/MergingSequence.class","name":"kotlin/sequences/MergingSequence.class","size":2548,"crc":139581051},{"key":"kotlin/sequences/Sequence.class","name":"kotlin/sequences/Sequence.class","size":618,"crc":-664650727},{"key":"kotlin/sequences/SequenceBuilderIterator.class","name":"kotlin/sequences/SequenceBuilderIterator.class","size":5768,"crc":1776433590},{"key":"kotlin/sequences/SequenceScope.class","name":"kotlin/sequences/SequenceScope.class","size":2639,"crc":2018900657},{"key":"kotlin/sequences/SequencesKt.class","name":"kotlin/sequences/SequencesKt.class","size":615,"crc":848333778},{"key":"kotlin/sequences/SequencesKt__SequenceBuilderKt$sequence$$inlined$Sequence$1.class","name":"kotlin/sequences/SequencesKt__SequenceBuilderKt$sequence$$inlined$Sequence$1.class","size":2168,"crc":-10958493},{"key":"kotlin/sequences/SequencesKt__SequenceBuilderKt.class","name":"kotlin/sequences/SequencesKt__SequenceBuilderKt.class","size":3143,"crc":972722849},{"key":"kotlin/sequences/SequencesKt__SequencesJVMKt.class","name":"kotlin/sequences/SequencesKt__SequencesJVMKt.class","size":1316,"crc":-1047118410},{"key":"kotlin/sequences/SequencesKt__SequencesKt$Sequence$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$Sequence$1.class","size":1840,"crc":451179930},{"key":"kotlin/sequences/SequencesKt__SequencesKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$asSequence$$inlined$Sequence$1.class","size":1951,"crc":567200348},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatMapIndexed$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatMapIndexed$1.class","size":5034,"crc":-374444945},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatten$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatten$1.class","size":1762,"crc":-2130146256},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatten$2.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatten$2.class","size":1745,"crc":-1978520295},{"key":"kotlin/sequences/SequencesKt__SequencesKt$flatten$3.class","name":"kotlin/sequences/SequencesKt__SequencesKt$flatten$3.class","size":1190,"crc":2035902830},{"key":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$1.class","size":1671,"crc":1082457875},{"key":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$2.class","name":"kotlin/sequences/SequencesKt__SequencesKt$generateSequence$2.class","size":1228,"crc":360235832},{"key":"kotlin/sequences/SequencesKt__SequencesKt$ifEmpty$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$ifEmpty$1.class","size":4344,"crc":60416370},{"key":"kotlin/sequences/SequencesKt__SequencesKt$shuffled$1.class","name":"kotlin/sequences/SequencesKt__SequencesKt$shuffled$1.class","size":4592,"crc":-1161924593},{"key":"kotlin/sequences/SequencesKt__SequencesKt.class","name":"kotlin/sequences/SequencesKt__SequencesKt.class","size":10590,"crc":-1909566609},{"key":"kotlin/sequences/SequencesKt___SequencesJvmKt$filterIsInstance$1.class","name":"kotlin/sequences/SequencesKt___SequencesJvmKt$filterIsInstance$1.class","size":1726,"crc":615280926},{"key":"kotlin/sequences/SequencesKt___SequencesJvmKt.class","name":"kotlin/sequences/SequencesKt___SequencesJvmKt.class","size":10508,"crc":1963241245},{"key":"kotlin/sequences/SequencesKt___SequencesKt$asIterable$$inlined$Iterable$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$asIterable$$inlined$Iterable$1.class","size":2123,"crc":-1116657657},{"key":"kotlin/sequences/SequencesKt___SequencesKt$distinct$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$distinct$1.class","size":1127,"crc":-1100824274},{"key":"kotlin/sequences/SequencesKt___SequencesKt$elementAt$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$elementAt$1.class","size":1663,"crc":2059893537},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$1.class","size":2273,"crc":471890774},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterIndexed$2.class","size":1740,"crc":1592598920},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterIsInstance$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterIsInstance$1.class","size":2070,"crc":-503817201},{"key":"kotlin/sequences/SequencesKt___SequencesKt$filterNotNull$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$filterNotNull$1.class","size":1610,"crc":-160418733},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$1.class","size":1773,"crc":-1207663092},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMap$2.class","size":1800,"crc":-2038592575},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$1.class","size":1794,"crc":-1291009388},{"key":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$flatMapIndexed$2.class","size":1829,"crc":-1972212062},{"key":"kotlin/sequences/SequencesKt___SequencesKt$groupingBy$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$groupingBy$1.class","size":2285,"crc":348395473},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$1$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$1$iterator$1.class","size":1884,"crc":-1161368187},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$1.class","size":1928,"crc":1091806997},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$2$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$2$iterator$1.class","size":1586,"crc":1438454254},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$2.class","size":1735,"crc":1236249635},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$3$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$3$iterator$1.class","size":1612,"crc":-81536014},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$3.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$3.class","size":2071,"crc":1099519901},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$4$iterator$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$4$iterator$1.class","size":1582,"crc":-1906121447},{"key":"kotlin/sequences/SequencesKt___SequencesKt$minus$4.class","name":"kotlin/sequences/SequencesKt___SequencesKt$minus$4.class","size":1964,"crc":1887748197},{"key":"kotlin/sequences/SequencesKt___SequencesKt$onEach$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$onEach$1.class","size":1327,"crc":2074555998},{"key":"kotlin/sequences/SequencesKt___SequencesKt$onEachIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$onEachIndexed$1.class","size":1749,"crc":444106718},{"key":"kotlin/sequences/SequencesKt___SequencesKt$requireNoNulls$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$requireNoNulls$1.class","size":1912,"crc":-1840415102},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningFold$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningFold$1.class","size":4591,"crc":1361607578},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningFoldIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningFoldIndexed$1.class","size":5148,"crc":1880335320},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningReduce$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningReduce$1.class","size":4612,"crc":-127889472},{"key":"kotlin/sequences/SequencesKt___SequencesKt$runningReduceIndexed$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$runningReduceIndexed$1.class","size":5180,"crc":-178835202},{"key":"kotlin/sequences/SequencesKt___SequencesKt$sorted$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$sorted$1.class","size":1569,"crc":-385750423},{"key":"kotlin/sequences/SequencesKt___SequencesKt$sortedWith$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$sortedWith$1.class","size":1798,"crc":1852495724},{"key":"kotlin/sequences/SequencesKt___SequencesKt$zip$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$zip$1.class","size":1555,"crc":494237787},{"key":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$1.class","name":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$1.class","size":1537,"crc":2038610873},{"key":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$2.class","name":"kotlin/sequences/SequencesKt___SequencesKt$zipWithNext$2.class","size":4518,"crc":-1979927420},{"key":"kotlin/sequences/SequencesKt___SequencesKt.class","name":"kotlin/sequences/SequencesKt___SequencesKt.class","size":94720,"crc":-1548072491},{"key":"kotlin/sequences/SubSequence$iterator$1.class","name":"kotlin/sequences/SubSequence$iterator$1.class","size":2702,"crc":-564386815},{"key":"kotlin/sequences/SubSequence.class","name":"kotlin/sequences/SubSequence.class","size":4078,"crc":973808188},{"key":"kotlin/sequences/TakeSequence$iterator$1.class","name":"kotlin/sequences/TakeSequence$iterator$1.class","size":2394,"crc":-1151008795},{"key":"kotlin/sequences/TakeSequence.class","name":"kotlin/sequences/TakeSequence.class","size":3511,"crc":1571242295},{"key":"kotlin/sequences/TakeWhileSequence$iterator$1.class","name":"kotlin/sequences/TakeWhileSequence$iterator$1.class","size":3416,"crc":-1661702110},{"key":"kotlin/sequences/TakeWhileSequence.class","name":"kotlin/sequences/TakeWhileSequence.class","size":2193,"crc":117016854},{"key":"kotlin/sequences/TransformingIndexedSequence$iterator$1.class","name":"kotlin/sequences/TransformingIndexedSequence$iterator$1.class","size":2837,"crc":439955923},{"key":"kotlin/sequences/TransformingIndexedSequence.class","name":"kotlin/sequences/TransformingIndexedSequence.class","size":2302,"crc":-671357904},{"key":"kotlin/sequences/TransformingSequence$iterator$1.class","name":"kotlin/sequences/TransformingSequence$iterator$1.class","size":2288,"crc":-764657572},{"key":"kotlin/sequences/TransformingSequence.class","name":"kotlin/sequences/TransformingSequence.class","size":2769,"crc":-1815061523},{"key":"kotlin/sequences/USequencesKt.class","name":"kotlin/sequences/USequencesKt.class","size":456,"crc":-957657449},{"key":"kotlin/sequences/USequencesKt___USequencesKt.class","name":"kotlin/sequences/USequencesKt___USequencesKt.class","size":2829,"crc":-1118579213},{"key":"kotlin/system/ProcessKt.class","name":"kotlin/system/ProcessKt.class","size":830,"crc":1529082854},{"key":"kotlin/system/TimingKt.class","name":"kotlin/system/TimingKt.class","size":1450,"crc":1565824004},{"key":"kotlin/text/CharCategory$Companion.class","name":"kotlin/text/CharCategory$Companion.class","size":1703,"crc":-1132543679},{"key":"kotlin/text/CharCategory.class","name":"kotlin/text/CharCategory.class","size":4987,"crc":-667104573},{"key":"kotlin/text/CharDirectionality$Companion$directionalityMap$2.class","name":"kotlin/text/CharDirectionality$Companion$directionalityMap$2.class","size":3413,"crc":-1613822069},{"key":"kotlin/text/CharDirectionality$Companion.class","name":"kotlin/text/CharDirectionality$Companion.class","size":2095,"crc":-679805395},{"key":"kotlin/text/CharDirectionality.class","name":"kotlin/text/CharDirectionality.class","size":4161,"crc":-1003309696},{"key":"kotlin/text/CharsKt.class","name":"kotlin/text/CharsKt.class","size":417,"crc":-933000599},{"key":"kotlin/text/CharsKt__CharJVMKt.class","name":"kotlin/text/CharsKt__CharJVMKt.class","size":7776,"crc":-697773165},{"key":"kotlin/text/CharsKt__CharKt.class","name":"kotlin/text/CharsKt__CharKt.class","size":4868,"crc":-299643566},{"key":"kotlin/text/Charsets.class","name":"kotlin/text/Charsets.class","size":2801,"crc":1097519644},{"key":"kotlin/text/CharsetsKt.class","name":"kotlin/text/CharsetsKt.class","size":935,"crc":143248290},{"key":"kotlin/text/DelimitedRangesSequence$iterator$1.class","name":"kotlin/text/DelimitedRangesSequence$iterator$1.class","size":4856,"crc":-635155402},{"key":"kotlin/text/DelimitedRangesSequence.class","name":"kotlin/text/DelimitedRangesSequence.class","size":2937,"crc":-1790326913},{"key":"kotlin/text/FlagEnum.class","name":"kotlin/text/FlagEnum.class","size":457,"crc":763795196},{"key":"kotlin/text/HexExtensionsKt.class","name":"kotlin/text/HexExtensionsKt.class","size":19232,"crc":2067466407},{"key":"kotlin/text/HexFormat$Builder.class","name":"kotlin/text/HexFormat$Builder.class","size":3943,"crc":-2092767042},{"key":"kotlin/text/HexFormat$BytesHexFormat$Builder.class","name":"kotlin/text/HexFormat$BytesHexFormat$Builder.class","size":4419,"crc":213447693},{"key":"kotlin/text/HexFormat$BytesHexFormat$Companion.class","name":"kotlin/text/HexFormat$BytesHexFormat$Companion.class","size":1203,"crc":255977616},{"key":"kotlin/text/HexFormat$BytesHexFormat.class","name":"kotlin/text/HexFormat$BytesHexFormat.class","size":4172,"crc":-1769714937},{"key":"kotlin/text/HexFormat$Companion.class","name":"kotlin/text/HexFormat$Companion.class","size":1219,"crc":1757047776},{"key":"kotlin/text/HexFormat$NumberHexFormat$Builder.class","name":"kotlin/text/HexFormat$NumberHexFormat$Builder.class","size":2999,"crc":226623453},{"key":"kotlin/text/HexFormat$NumberHexFormat$Companion.class","name":"kotlin/text/HexFormat$NumberHexFormat$Companion.class","size":1209,"crc":2035941708},{"key":"kotlin/text/HexFormat$NumberHexFormat.class","name":"kotlin/text/HexFormat$NumberHexFormat.class","size":3274,"crc":607927770},{"key":"kotlin/text/HexFormat.class","name":"kotlin/text/HexFormat.class","size":3850,"crc":56274250},{"key":"kotlin/text/HexFormatKt.class","name":"kotlin/text/HexFormatKt.class","size":1435,"crc":-485066538},{"key":"kotlin/text/MatchGroup.class","name":"kotlin/text/MatchGroup.class","size":2808,"crc":1665906965},{"key":"kotlin/text/MatchGroupCollection.class","name":"kotlin/text/MatchGroupCollection.class","size":781,"crc":313419264},{"key":"kotlin/text/MatchNamedGroupCollection.class","name":"kotlin/text/MatchNamedGroupCollection.class","size":815,"crc":-1422321725},{"key":"kotlin/text/MatchResult$DefaultImpls.class","name":"kotlin/text/MatchResult$DefaultImpls.class","size":804,"crc":520008573},{"key":"kotlin/text/MatchResult$Destructured.class","name":"kotlin/text/MatchResult$Destructured.class","size":2731,"crc":-110060805},{"key":"kotlin/text/MatchResult.class","name":"kotlin/text/MatchResult.class","size":1438,"crc":522341712},{"key":"kotlin/text/MatcherMatchResult$groupValues$1.class","name":"kotlin/text/MatcherMatchResult$groupValues$1.class","size":2367,"crc":-27828042},{"key":"kotlin/text/MatcherMatchResult$groups$1$iterator$1.class","name":"kotlin/text/MatcherMatchResult$groups$1$iterator$1.class","size":1469,"crc":648128685},{"key":"kotlin/text/MatcherMatchResult$groups$1.class","name":"kotlin/text/MatcherMatchResult$groups$1.class","size":4107,"crc":-1597311445},{"key":"kotlin/text/MatcherMatchResult.class","name":"kotlin/text/MatcherMatchResult.class","size":4089,"crc":-45964109},{"key":"kotlin/text/Regex$Companion.class","name":"kotlin/text/Regex$Companion.class","size":2221,"crc":1649161083},{"key":"kotlin/text/Regex$Serialized$Companion.class","name":"kotlin/text/Regex$Serialized$Companion.class","size":879,"crc":-811797597},{"key":"kotlin/text/Regex$Serialized.class","name":"kotlin/text/Regex$Serialized.class","size":1985,"crc":1705274471},{"key":"kotlin/text/Regex$findAll$1.class","name":"kotlin/text/Regex$findAll$1.class","size":1418,"crc":272526180},{"key":"kotlin/text/Regex$findAll$2.class","name":"kotlin/text/Regex$findAll$2.class","size":1646,"crc":-568084574},{"key":"kotlin/text/Regex$special$$inlined$fromInt$1.class","name":"kotlin/text/Regex$special$$inlined$fromInt$1.class","size":2026,"crc":1424913807},{"key":"kotlin/text/Regex$splitToSequence$1.class","name":"kotlin/text/Regex$splitToSequence$1.class","size":4757,"crc":-524930077},{"key":"kotlin/text/Regex.class","name":"kotlin/text/Regex.class","size":12561,"crc":614994798},{"key":"kotlin/text/RegexKt$fromInt$1$1.class","name":"kotlin/text/RegexKt$fromInt$1$1.class","size":1854,"crc":497591507},{"key":"kotlin/text/RegexKt.class","name":"kotlin/text/RegexKt.class","size":4921,"crc":674041991},{"key":"kotlin/text/RegexOption.class","name":"kotlin/text/RegexOption.class","size":2681,"crc":-387070237},{"key":"kotlin/text/ScreenFloatValueRegEx.class","name":"kotlin/text/ScreenFloatValueRegEx.class","size":1866,"crc":1747062034},{"key":"kotlin/text/StringsKt.class","name":"kotlin/text/StringsKt.class","size":887,"crc":-2009781298},{"key":"kotlin/text/StringsKt__AppendableKt.class","name":"kotlin/text/StringsKt__AppendableKt.class","size":3948,"crc":1642355746},{"key":"kotlin/text/StringsKt__IndentKt$getIndentFunction$1.class","name":"kotlin/text/StringsKt__IndentKt$getIndentFunction$1.class","size":1567,"crc":-1909286953},{"key":"kotlin/text/StringsKt__IndentKt$getIndentFunction$2.class","name":"kotlin/text/StringsKt__IndentKt$getIndentFunction$2.class","size":1717,"crc":-1588926807},{"key":"kotlin/text/StringsKt__IndentKt$prependIndent$1.class","name":"kotlin/text/StringsKt__IndentKt$prependIndent$1.class","size":1908,"crc":-1942444076},{"key":"kotlin/text/StringsKt__IndentKt.class","name":"kotlin/text/StringsKt__IndentKt.class","size":14470,"crc":-771268068},{"key":"kotlin/text/StringsKt__RegexExtensionsJVMKt.class","name":"kotlin/text/StringsKt__RegexExtensionsJVMKt.class","size":1036,"crc":-1173897330},{"key":"kotlin/text/StringsKt__RegexExtensionsKt.class","name":"kotlin/text/StringsKt__RegexExtensionsKt.class","size":1709,"crc":295410664},{"key":"kotlin/text/StringsKt__StringBuilderJVMKt.class","name":"kotlin/text/StringsKt__StringBuilderJVMKt.class","size":12208,"crc":1028466760},{"key":"kotlin/text/StringsKt__StringBuilderKt.class","name":"kotlin/text/StringsKt__StringBuilderKt.class","size":5671,"crc":-1855115521},{"key":"kotlin/text/StringsKt__StringNumberConversionsJVMKt.class","name":"kotlin/text/StringsKt__StringNumberConversionsJVMKt.class","size":9173,"crc":-1143361165},{"key":"kotlin/text/StringsKt__StringNumberConversionsKt.class","name":"kotlin/text/StringsKt__StringNumberConversionsKt.class","size":4915,"crc":-2101327634},{"key":"kotlin/text/StringsKt__StringsJVMKt.class","name":"kotlin/text/StringsKt__StringsJVMKt.class","size":29002,"crc":700212759},{"key":"kotlin/text/StringsKt__StringsKt$iterator$1.class","name":"kotlin/text/StringsKt__StringsKt$iterator$1.class","size":1269,"crc":891858504},{"key":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$1.class","name":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$1.class","size":2855,"crc":-541385193},{"key":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$2.class","name":"kotlin/text/StringsKt__StringsKt$rangesDelimitedBy$2.class","size":3158,"crc":536954088},{"key":"kotlin/text/StringsKt__StringsKt$splitToSequence$1.class","name":"kotlin/text/StringsKt__StringsKt$splitToSequence$1.class","size":1758,"crc":-692486666},{"key":"kotlin/text/StringsKt__StringsKt$splitToSequence$2.class","name":"kotlin/text/StringsKt__StringsKt$splitToSequence$2.class","size":1741,"crc":-610990579},{"key":"kotlin/text/StringsKt__StringsKt.class","name":"kotlin/text/StringsKt__StringsKt.class","size":54612,"crc":1053214779},{"key":"kotlin/text/StringsKt___StringsJvmKt.class","name":"kotlin/text/StringsKt___StringsJvmKt.class","size":7791,"crc":1484138044},{"key":"kotlin/text/StringsKt___StringsKt$asIterable$$inlined$Iterable$1.class","name":"kotlin/text/StringsKt___StringsKt$asIterable$$inlined$Iterable$1.class","size":2180,"crc":2121200106},{"key":"kotlin/text/StringsKt___StringsKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/text/StringsKt___StringsKt$asSequence$$inlined$Sequence$1.class","size":2134,"crc":-2082882496},{"key":"kotlin/text/StringsKt___StringsKt$chunkedSequence$1.class","name":"kotlin/text/StringsKt___StringsKt$chunkedSequence$1.class","size":1651,"crc":1919282439},{"key":"kotlin/text/StringsKt___StringsKt$groupingBy$1.class","name":"kotlin/text/StringsKt___StringsKt$groupingBy$1.class","size":2547,"crc":-1569668854},{"key":"kotlin/text/StringsKt___StringsKt$windowed$1.class","name":"kotlin/text/StringsKt___StringsKt$windowed$1.class","size":1621,"crc":-1213360900},{"key":"kotlin/text/StringsKt___StringsKt$windowedSequence$1.class","name":"kotlin/text/StringsKt___StringsKt$windowedSequence$1.class","size":1656,"crc":-1189285209},{"key":"kotlin/text/StringsKt___StringsKt$windowedSequence$2.class","name":"kotlin/text/StringsKt___StringsKt$windowedSequence$2.class","size":1965,"crc":874419344},{"key":"kotlin/text/StringsKt___StringsKt$withIndex$1.class","name":"kotlin/text/StringsKt___StringsKt$withIndex$1.class","size":1453,"crc":-1684288196},{"key":"kotlin/text/StringsKt___StringsKt.class","name":"kotlin/text/StringsKt___StringsKt.class","size":92544,"crc":-2141982767},{"key":"kotlin/text/SystemProperties.class","name":"kotlin/text/SystemProperties.class","size":1019,"crc":-1266692876},{"key":"kotlin/text/TypeAliasesKt.class","name":"kotlin/text/TypeAliasesKt.class","size":1059,"crc":-986699720},{"key":"kotlin/text/Typography.class","name":"kotlin/text/Typography.class","size":3740,"crc":-1203784232},{"key":"kotlin/text/UHexExtensionsKt.class","name":"kotlin/text/UHexExtensionsKt.class","size":7060,"crc":1305264527},{"key":"kotlin/text/UStringsKt.class","name":"kotlin/text/UStringsKt.class","size":7615,"crc":1343714260},{"key":"kotlin/text/_OneToManyTitlecaseMappingsKt.class","name":"kotlin/text/_OneToManyTitlecaseMappingsKt.class","size":1659,"crc":711241838},{"key":"kotlin/text/jdk8/RegexExtensionsJDK8Kt.class","name":"kotlin/text/jdk8/RegexExtensionsJDK8Kt.class","size":1532,"crc":226408685},{"key":"kotlin/time/AbstractDoubleTimeSource$DoubleTimeMark.class","name":"kotlin/time/AbstractDoubleTimeSource$DoubleTimeMark.class","size":5243,"crc":4102611},{"key":"kotlin/time/AbstractDoubleTimeSource.class","name":"kotlin/time/AbstractDoubleTimeSource.class","size":2232,"crc":-845051538},{"key":"kotlin/time/AbstractLongTimeSource$LongTimeMark.class","name":"kotlin/time/AbstractLongTimeSource$LongTimeMark.class","size":6883,"crc":1042036677},{"key":"kotlin/time/AbstractLongTimeSource$zero$2.class","name":"kotlin/time/AbstractLongTimeSource$zero$2.class","size":1291,"crc":-336749478},{"key":"kotlin/time/AbstractLongTimeSource.class","name":"kotlin/time/AbstractLongTimeSource.class","size":2920,"crc":274880219},{"key":"kotlin/time/AdjustedTimeMark.class","name":"kotlin/time/AdjustedTimeMark.class","size":2304,"crc":1399284601},{"key":"kotlin/time/ComparableTimeMark$DefaultImpls.class","name":"kotlin/time/ComparableTimeMark$DefaultImpls.class","size":1769,"crc":-1139654078},{"key":"kotlin/time/ComparableTimeMark.class","name":"kotlin/time/ComparableTimeMark.class","size":1577,"crc":320485269},{"key":"kotlin/time/Duration$Companion.class","name":"kotlin/time/Duration$Companion.class","size":14853,"crc":-770723991},{"key":"kotlin/time/Duration.class","name":"kotlin/time/Duration.class","size":25552,"crc":-761604618},{"key":"kotlin/time/DurationJvmKt.class","name":"kotlin/time/DurationJvmKt.class","size":3148,"crc":375553204},{"key":"kotlin/time/DurationKt.class","name":"kotlin/time/DurationKt.class","size":21546,"crc":421511246},{"key":"kotlin/time/DurationUnit.class","name":"kotlin/time/DurationUnit.class","size":2691,"crc":-1102744434},{"key":"kotlin/time/DurationUnitKt.class","name":"kotlin/time/DurationUnitKt.class","size":461,"crc":1008182113},{"key":"kotlin/time/DurationUnitKt__DurationUnitJvmKt$WhenMappings.class","name":"kotlin/time/DurationUnitKt__DurationUnitJvmKt$WhenMappings.class","size":1039,"crc":1698368391},{"key":"kotlin/time/DurationUnitKt__DurationUnitJvmKt.class","name":"kotlin/time/DurationUnitKt__DurationUnitJvmKt.class","size":3052,"crc":481317691},{"key":"kotlin/time/DurationUnitKt__DurationUnitKt$WhenMappings.class","name":"kotlin/time/DurationUnitKt__DurationUnitKt$WhenMappings.class","size":1015,"crc":-1563422188},{"key":"kotlin/time/DurationUnitKt__DurationUnitKt.class","name":"kotlin/time/DurationUnitKt__DurationUnitKt.class","size":3218,"crc":-1696255116},{"key":"kotlin/time/ExperimentalTime.class","name":"kotlin/time/ExperimentalTime.class","size":1399,"crc":1859025207},{"key":"kotlin/time/LongSaturatedMathKt.class","name":"kotlin/time/LongSaturatedMathKt.class","size":4925,"crc":-495153680},{"key":"kotlin/time/MeasureTimeKt.class","name":"kotlin/time/MeasureTimeKt.class","size":4884,"crc":526204496},{"key":"kotlin/time/MonoTimeSourceKt.class","name":"kotlin/time/MonoTimeSourceKt.class","size":448,"crc":-224530652},{"key":"kotlin/time/MonotonicTimeSource.class","name":"kotlin/time/MonotonicTimeSource.class","size":2800,"crc":830857267},{"key":"kotlin/time/TestTimeSource.class","name":"kotlin/time/TestTimeSource.class","size":3437,"crc":-120753089},{"key":"kotlin/time/TimeMark$DefaultImpls.class","name":"kotlin/time/TimeMark$DefaultImpls.class","size":1366,"crc":1566171465},{"key":"kotlin/time/TimeMark.class","name":"kotlin/time/TimeMark.class","size":1046,"crc":-701478475},{"key":"kotlin/time/TimeSource$Companion.class","name":"kotlin/time/TimeSource$Companion.class","size":668,"crc":-1281162627},{"key":"kotlin/time/TimeSource$Monotonic$ValueTimeMark.class","name":"kotlin/time/TimeSource$Monotonic$ValueTimeMark.class","size":6185,"crc":-1033946925},{"key":"kotlin/time/TimeSource$Monotonic.class","name":"kotlin/time/TimeSource$Monotonic.class","size":1661,"crc":-622070969},{"key":"kotlin/time/TimeSource$WithComparableMarks.class","name":"kotlin/time/TimeSource$WithComparableMarks.class","size":819,"crc":868573578},{"key":"kotlin/time/TimeSource.class","name":"kotlin/time/TimeSource.class","size":1034,"crc":867313802},{"key":"kotlin/time/TimedValue.class","name":"kotlin/time/TimedValue.class","size":3315,"crc":789846310},{"key":"kotlin/collections/ArraysUtilJVM.class","name":"kotlin/collections/ArraysUtilJVM.class","size":596,"crc":570328725},{"key":"kotlin/jvm/internal/AdaptedFunctionReference.class","name":"kotlin/jvm/internal/AdaptedFunctionReference.class","size":2746,"crc":1457329729},{"key":"kotlin/jvm/internal/CallableReference$NoReceiver.class","name":"kotlin/jvm/internal/CallableReference$NoReceiver.class","size":898,"crc":1125258272},{"key":"kotlin/jvm/internal/CallableReference.class","name":"kotlin/jvm/internal/CallableReference.class","size":4181,"crc":500298900},{"key":"kotlin/jvm/internal/DefaultConstructorMarker.class","name":"kotlin/jvm/internal/DefaultConstructorMarker.class","size":337,"crc":47587920},{"key":"kotlin/jvm/internal/FunInterfaceConstructorReference.class","name":"kotlin/jvm/internal/FunInterfaceConstructorReference.class","size":1591,"crc":687584605},{"key":"kotlin/jvm/internal/FunctionAdapter.class","name":"kotlin/jvm/internal/FunctionAdapter.class","size":314,"crc":-72599158},{"key":"kotlin/jvm/internal/FunctionImpl.class","name":"kotlin/jvm/internal/FunctionImpl.class","size":13161,"crc":-558677605},{"key":"kotlin/jvm/internal/FunctionReference.class","name":"kotlin/jvm/internal/FunctionReference.class","size":3689,"crc":1951168182},{"key":"kotlin/jvm/internal/FunctionReferenceImpl.class","name":"kotlin/jvm/internal/FunctionReferenceImpl.class","size":1514,"crc":11015438},{"key":"kotlin/jvm/internal/InlineMarker.class","name":"kotlin/jvm/internal/InlineMarker.class","size":761,"crc":-1234111204},{"key":"kotlin/jvm/internal/Intrinsics$Kotlin.class","name":"kotlin/jvm/internal/Intrinsics$Kotlin.class","size":475,"crc":168489227},{"key":"kotlin/jvm/internal/Intrinsics.class","name":"kotlin/jvm/internal/Intrinsics.class","size":9086,"crc":1370135565},{"key":"kotlin/jvm/internal/MagicApiIntrinsics.class","name":"kotlin/jvm/internal/MagicApiIntrinsics.class","size":2575,"crc":-1698388096},{"key":"kotlin/jvm/internal/MutablePropertyReference.class","name":"kotlin/jvm/internal/MutablePropertyReference.class","size":942,"crc":-873243443},{"key":"kotlin/jvm/internal/MutablePropertyReference0.class","name":"kotlin/jvm/internal/MutablePropertyReference0.class","size":2307,"crc":1128124820},{"key":"kotlin/jvm/internal/MutablePropertyReference0Impl.class","name":"kotlin/jvm/internal/MutablePropertyReference0Impl.class","size":2126,"crc":-184418059},{"key":"kotlin/jvm/internal/MutablePropertyReference1.class","name":"kotlin/jvm/internal/MutablePropertyReference1.class","size":2347,"crc":377178670},{"key":"kotlin/jvm/internal/MutablePropertyReference1Impl.class","name":"kotlin/jvm/internal/MutablePropertyReference1Impl.class","size":2190,"crc":2046035585},{"key":"kotlin/jvm/internal/MutablePropertyReference2.class","name":"kotlin/jvm/internal/MutablePropertyReference2.class","size":2348,"crc":-571971330},{"key":"kotlin/jvm/internal/MutablePropertyReference2Impl.class","name":"kotlin/jvm/internal/MutablePropertyReference2Impl.class","size":2011,"crc":-677246454},{"key":"kotlin/jvm/internal/PropertyReference.class","name":"kotlin/jvm/internal/PropertyReference.class","size":3202,"crc":-1743798952},{"key":"kotlin/jvm/internal/PropertyReference0.class","name":"kotlin/jvm/internal/PropertyReference0.class","size":1821,"crc":-1475025845},{"key":"kotlin/jvm/internal/PropertyReference0Impl.class","name":"kotlin/jvm/internal/PropertyReference0Impl.class","size":1798,"crc":1194211845},{"key":"kotlin/jvm/internal/PropertyReference1.class","name":"kotlin/jvm/internal/PropertyReference1.class","size":1861,"crc":-1829718760},{"key":"kotlin/jvm/internal/PropertyReference1Impl.class","name":"kotlin/jvm/internal/PropertyReference1Impl.class","size":1830,"crc":-1299899906},{"key":"kotlin/jvm/internal/PropertyReference2.class","name":"kotlin/jvm/internal/PropertyReference2.class","size":1862,"crc":-885315845},{"key":"kotlin/jvm/internal/PropertyReference2Impl.class","name":"kotlin/jvm/internal/PropertyReference2Impl.class","size":1619,"crc":617056996},{"key":"kotlin/jvm/internal/Ref$BooleanRef.class","name":"kotlin/jvm/internal/Ref$BooleanRef.class","size":593,"crc":904687793},{"key":"kotlin/jvm/internal/Ref$ByteRef.class","name":"kotlin/jvm/internal/Ref$ByteRef.class","size":584,"crc":1970120690},{"key":"kotlin/jvm/internal/Ref$CharRef.class","name":"kotlin/jvm/internal/Ref$CharRef.class","size":584,"crc":-2104091034},{"key":"kotlin/jvm/internal/Ref$DoubleRef.class","name":"kotlin/jvm/internal/Ref$DoubleRef.class","size":590,"crc":1433144171},{"key":"kotlin/jvm/internal/Ref$FloatRef.class","name":"kotlin/jvm/internal/Ref$FloatRef.class","size":587,"crc":-224759536},{"key":"kotlin/jvm/internal/Ref$IntRef.class","name":"kotlin/jvm/internal/Ref$IntRef.class","size":581,"crc":-414275565},{"key":"kotlin/jvm/internal/Ref$LongRef.class","name":"kotlin/jvm/internal/Ref$LongRef.class","size":584,"crc":526024706},{"key":"kotlin/jvm/internal/Ref$ObjectRef.class","name":"kotlin/jvm/internal/Ref$ObjectRef.class","size":827,"crc":168012497},{"key":"kotlin/jvm/internal/Ref$ShortRef.class","name":"kotlin/jvm/internal/Ref$ShortRef.class","size":587,"crc":-780272668},{"key":"kotlin/jvm/internal/Ref.class","name":"kotlin/jvm/internal/Ref.class","size":808,"crc":745872339},{"key":"kotlin/jvm/internal/Reflection.class","name":"kotlin/jvm/internal/Reflection.class","size":7937,"crc":901832041},{"key":"kotlin/jvm/internal/ReflectionFactory.class","name":"kotlin/jvm/internal/ReflectionFactory.class","size":6141,"crc":-1592711195},{"key":"kotlin/jvm/internal/RepeatableContainer.class","name":"kotlin/jvm/internal/RepeatableContainer.class","size":506,"crc":527536588},{"key":"kotlin/jvm/internal/SpreadBuilder.class","name":"kotlin/jvm/internal/SpreadBuilder.class","size":2089,"crc":238365591},{"key":"kotlin/jvm/internal/TypeIntrinsics.class","name":"kotlin/jvm/internal/TypeIntrinsics.class","size":9334,"crc":-1140538051},{"key":"kotlin/annotation/annotation.kotlin_builtins","name":"kotlin/annotation/annotation.kotlin_builtins","size":928,"crc":-1904709562},{"key":"kotlin/collections/collections.kotlin_builtins","name":"kotlin/collections/collections.kotlin_builtins","size":3685,"crc":-199479089},{"key":"kotlin/coroutines/coroutines.kotlin_builtins","name":"kotlin/coroutines/coroutines.kotlin_builtins","size":200,"crc":-962600637},{"key":"kotlin/internal/internal.kotlin_builtins","name":"kotlin/internal/internal.kotlin_builtins","size":646,"crc":-657313011},{"key":"kotlin/kotlin.kotlin_builtins","name":"kotlin/kotlin.kotlin_builtins","size":18640,"crc":-142636579},{"key":"kotlin/ranges/ranges.kotlin_builtins","name":"kotlin/ranges/ranges.kotlin_builtins","size":3399,"crc":-885290259},{"key":"kotlin/reflect/reflect.kotlin_builtins","name":"kotlin/reflect/reflect.kotlin_builtins","size":2426,"crc":2118008088},{"key":"META-INF/kotlin-stdlib-jdk7.kotlin_module","name":"META-INF/kotlin-stdlib-jdk7.kotlin_module","size":199,"crc":-524877854},{"key":"kotlin/internal/jdk7/JDK7PlatformImplementations$ReflectSdkVersion.class","name":"kotlin/internal/jdk7/JDK7PlatformImplementations$ReflectSdkVersion.class","size":2336,"crc":1120736263},{"key":"kotlin/internal/jdk7/JDK7PlatformImplementations.class","name":"kotlin/internal/jdk7/JDK7PlatformImplementations.class","size":2256,"crc":-1955105638},{"key":"kotlin/io/path/CopyActionContext.class","name":"kotlin/io/path/CopyActionContext.class","size":879,"crc":1638522530},{"key":"kotlin/io/path/CopyActionResult.class","name":"kotlin/io/path/CopyActionResult.class","size":1952,"crc":641326096},{"key":"kotlin/io/path/DefaultCopyActionContext.class","name":"kotlin/io/path/DefaultCopyActionContext.class","size":2313,"crc":-87017421},{"key":"kotlin/io/path/DirectoryEntriesReader.class","name":"kotlin/io/path/DirectoryEntriesReader.class","size":4163,"crc":936081326},{"key":"kotlin/io/path/ExceptionsCollector.class","name":"kotlin/io/path/ExceptionsCollector.class","size":3709,"crc":752860814},{"key":"kotlin/io/path/ExperimentalPathApi.class","name":"kotlin/io/path/ExperimentalPathApi.class","size":1419,"crc":857299491},{"key":"kotlin/io/path/FileVisitorBuilder.class","name":"kotlin/io/path/FileVisitorBuilder.class","size":1742,"crc":-676369227},{"key":"kotlin/io/path/FileVisitorBuilderImpl.class","name":"kotlin/io/path/FileVisitorBuilderImpl.class","size":4227,"crc":-1840039802},{"key":"kotlin/io/path/FileVisitorImpl.class","name":"kotlin/io/path/FileVisitorImpl.class","size":4714,"crc":-1718230176},{"key":"kotlin/io/path/LinkFollowing.class","name":"kotlin/io/path/LinkFollowing.class","size":2654,"crc":50891980},{"key":"kotlin/io/path/OnErrorResult.class","name":"kotlin/io/path/OnErrorResult.class","size":1866,"crc":1914823269},{"key":"kotlin/io/path/PathNode.class","name":"kotlin/io/path/PathNode.class","size":2111,"crc":1196566645},{"key":"kotlin/io/path/PathRelativizer.class","name":"kotlin/io/path/PathRelativizer.class","size":2861,"crc":-247712051},{"key":"kotlin/io/path/PathTreeWalk$bfsIterator$1.class","name":"kotlin/io/path/PathTreeWalk$bfsIterator$1.class","size":7252,"crc":-1760239622},{"key":"kotlin/io/path/PathTreeWalk$dfsIterator$1.class","name":"kotlin/io/path/PathTreeWalk$dfsIterator$1.class","size":8910,"crc":233342008},{"key":"kotlin/io/path/PathTreeWalk.class","name":"kotlin/io/path/PathTreeWalk.class","size":6225,"crc":-1037379088},{"key":"kotlin/io/path/PathTreeWalkKt.class","name":"kotlin/io/path/PathTreeWalkKt.class","size":2267,"crc":1250605669},{"key":"kotlin/io/path/PathWalkOption.class","name":"kotlin/io/path/PathWalkOption.class","size":1951,"crc":1492404480},{"key":"kotlin/io/path/PathsKt.class","name":"kotlin/io/path/PathsKt.class","size":494,"crc":-2127427709},{"key":"kotlin/io/path/PathsKt__PathReadWriteKt.class","name":"kotlin/io/path/PathsKt__PathReadWriteKt.class","size":19238,"crc":-1151320291},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$WhenMappings.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$WhenMappings.class","size":1111,"crc":1946565246},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$1.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$1.class","size":1893,"crc":1720509829},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$2.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$2.class","size":3560,"crc":1332917823},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$3.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$3.class","size":1924,"crc":1488691726},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$4.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$4.class","size":2244,"crc":1457720587},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$1.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$1.class","size":3421,"crc":1749394929},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$2.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$2.class","size":3421,"crc":581085575},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$3.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$3.class","size":2835,"crc":1715793014},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$4.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5$4.class","size":2803,"crc":-1013540551},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt$copyToRecursively$5.class","size":3433,"crc":563716547},{"key":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt.class","name":"kotlin/io/path/PathsKt__PathRecursiveFunctionsKt.class","size":21121,"crc":1111773110},{"key":"kotlin/io/path/PathsKt__PathUtilsKt.class","name":"kotlin/io/path/PathsKt__PathUtilsKt.class","size":34025,"crc":-1598000357},{"key":"kotlin/jdk7/AutoCloseableKt.class","name":"kotlin/jdk7/AutoCloseableKt.class","size":2274,"crc":1555924297},{"key":"META-INF/kotlin-stdlib-jdk8.kotlin_module","name":"META-INF/kotlin-stdlib-jdk8.kotlin_module","size":297,"crc":226699991},{"key":"kotlin/collections/jdk8/CollectionsJDK8Kt.class","name":"kotlin/collections/jdk8/CollectionsJDK8Kt.class","size":1931,"crc":100069948},{"key":"kotlin/internal/jdk8/JDK8PlatformImplementations$ReflectSdkVersion.class","name":"kotlin/internal/jdk8/JDK8PlatformImplementations$ReflectSdkVersion.class","size":2336,"crc":-2074913472},{"key":"kotlin/internal/jdk8/JDK8PlatformImplementations.class","name":"kotlin/internal/jdk8/JDK8PlatformImplementations.class","size":2791,"crc":-1085036541},{"key":"kotlin/jvm/jdk8/JvmRepeatableKt.class","name":"kotlin/jvm/jdk8/JvmRepeatableKt.class","size":610,"crc":1512573758},{"key":"kotlin/jvm/optionals/OptionalsKt.class","name":"kotlin/jvm/optionals/OptionalsKt.class","size":4494,"crc":-1592243673},{"key":"kotlin/random/jdk8/PlatformThreadLocalRandom.class","name":"kotlin/random/jdk8/PlatformThreadLocalRandom.class","size":1719,"crc":1666223274},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$1.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$1.class","size":2121,"crc":546057661},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$2.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$2.class","size":2232,"crc":1992787600},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$3.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$3.class","size":2231,"crc":1961906108},{"key":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$4.class","name":"kotlin/streams/jdk8/StreamsKt$asSequence$$inlined$Sequence$4.class","size":2245,"crc":1085866712},{"key":"kotlin/streams/jdk8/StreamsKt.class","name":"kotlin/streams/jdk8/StreamsKt.class","size":5761,"crc":-1800446093},{"key":"kotlin/time/jdk8/DurationConversionsJDK8Kt.class","name":"kotlin/time/jdk8/DurationConversionsJDK8Kt.class","size":2745,"crc":-206161381},{"key":"META-INF/versions/9/module-info.class","name":"META-INF/versions/9/module-info.class","size":1308,"crc":-626110942}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/EESl4ZNJCLRiyEgzR6py0g== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/EESl4ZNJCLRiyEgzR6py0g== new file mode 100644 index 0000000..58d4be9 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/EESl4ZNJCLRiyEgzR6py0g== @@ -0,0 +1 @@ +[{"key":"androidx/core/animation/AnimatorKt$addListener$1.class","name":"androidx/core/animation/AnimatorKt$addListener$1.class","size":2072,"crc":418484232},{"key":"androidx/core/animation/AnimatorKt$addListener$2.class","name":"androidx/core/animation/AnimatorKt$addListener$2.class","size":2072,"crc":184953868},{"key":"androidx/core/animation/AnimatorKt$addListener$3.class","name":"androidx/core/animation/AnimatorKt$addListener$3.class","size":2072,"crc":-1115493806},{"key":"androidx/core/animation/AnimatorKt$addListener$4.class","name":"androidx/core/animation/AnimatorKt$addListener$4.class","size":2072,"crc":753488900},{"key":"androidx/core/animation/AnimatorKt$addListener$listener$1.class","name":"androidx/core/animation/AnimatorKt$addListener$listener$1.class","size":3004,"crc":1929653027},{"key":"androidx/core/animation/AnimatorKt$addPauseListener$1.class","name":"androidx/core/animation/AnimatorKt$addPauseListener$1.class","size":1667,"crc":298052684},{"key":"androidx/core/animation/AnimatorKt$addPauseListener$2.class","name":"androidx/core/animation/AnimatorKt$addPauseListener$2.class","size":1667,"crc":-1486326301},{"key":"androidx/core/animation/AnimatorKt$addPauseListener$listener$1.class","name":"androidx/core/animation/AnimatorKt$addPauseListener$listener$1.class","size":2005,"crc":-393234717},{"key":"androidx/core/animation/AnimatorKt$doOnCancel$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnCancel$$inlined$addListener$default$1.class","size":3227,"crc":-1382013354},{"key":"androidx/core/animation/AnimatorKt$doOnEnd$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnEnd$$inlined$addListener$default$1.class","size":3215,"crc":-940658275},{"key":"androidx/core/animation/AnimatorKt$doOnRepeat$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnRepeat$$inlined$addListener$default$1.class","size":3227,"crc":1392854728},{"key":"androidx/core/animation/AnimatorKt$doOnStart$$inlined$addListener$default$1.class","name":"androidx/core/animation/AnimatorKt$doOnStart$$inlined$addListener$default$1.class","size":3223,"crc":-1728579789},{"key":"androidx/core/animation/AnimatorKt.class","name":"androidx/core/animation/AnimatorKt.class","size":8763,"crc":607327252},{"key":"androidx/core/content/ContentValuesKt.class","name":"androidx/core/content/ContentValuesKt.class","size":2836,"crc":-1935003833},{"key":"androidx/core/content/ContextKt.class","name":"androidx/core/content/ContextKt.class","size":3226,"crc":1551521884},{"key":"androidx/core/content/SharedPreferencesKt.class","name":"androidx/core/content/SharedPreferencesKt.class","size":2001,"crc":-619846206},{"key":"androidx/core/content/res/TypedArrayApi26ImplKt.class","name":"androidx/core/content/res/TypedArrayApi26ImplKt.class","size":1430,"crc":-1074938375},{"key":"androidx/core/content/res/TypedArrayKt.class","name":"androidx/core/content/res/TypedArrayKt.class","size":6760,"crc":1463953149},{"key":"androidx/core/database/CursorKt.class","name":"androidx/core/database/CursorKt.class","size":3230,"crc":1881509060},{"key":"androidx/core/database/sqlite/SQLiteDatabaseKt.class","name":"androidx/core/database/sqlite/SQLiteDatabaseKt.class","size":2183,"crc":859278266},{"key":"androidx/core/graphics/BitmapKt.class","name":"androidx/core/graphics/BitmapKt.class","size":5026,"crc":410927679},{"key":"androidx/core/graphics/CanvasKt.class","name":"androidx/core/graphics/CanvasKt.class","size":9550,"crc":843271514},{"key":"androidx/core/graphics/ColorKt.class","name":"androidx/core/graphics/ColorKt.class","size":7674,"crc":1177779626},{"key":"androidx/core/graphics/ImageDecoderKt$decodeBitmap$1.class","name":"androidx/core/graphics/ImageDecoderKt$decodeBitmap$1.class","size":2549,"crc":-1823524805},{"key":"androidx/core/graphics/ImageDecoderKt$decodeDrawable$1.class","name":"androidx/core/graphics/ImageDecoderKt$decodeDrawable$1.class","size":2570,"crc":-321689319},{"key":"androidx/core/graphics/ImageDecoderKt.class","name":"androidx/core/graphics/ImageDecoderKt.class","size":3044,"crc":-314139499},{"key":"androidx/core/graphics/MatrixKt.class","name":"androidx/core/graphics/MatrixKt.class","size":3218,"crc":-594314538},{"key":"androidx/core/graphics/PaintKt.class","name":"androidx/core/graphics/PaintKt.class","size":891,"crc":953346222},{"key":"androidx/core/graphics/PathKt.class","name":"androidx/core/graphics/PathKt.class","size":3760,"crc":-512172921},{"key":"androidx/core/graphics/PictureKt.class","name":"androidx/core/graphics/PictureKt.class","size":1684,"crc":133754184},{"key":"androidx/core/graphics/PointKt.class","name":"androidx/core/graphics/PointKt.class","size":5437,"crc":-243042949},{"key":"androidx/core/graphics/PorterDuffKt.class","name":"androidx/core/graphics/PorterDuffKt.class","size":1466,"crc":275426395},{"key":"androidx/core/graphics/RectKt.class","name":"androidx/core/graphics/RectKt.class","size":12156,"crc":1965077590},{"key":"androidx/core/graphics/RegionKt$iterator$1.class","name":"androidx/core/graphics/RegionKt$iterator$1.class","size":2153,"crc":-1897165153},{"key":"androidx/core/graphics/RegionKt.class","name":"androidx/core/graphics/RegionKt.class","size":6921,"crc":1546608705},{"key":"androidx/core/graphics/ShaderKt.class","name":"androidx/core/graphics/ShaderKt.class","size":1359,"crc":-236365484},{"key":"androidx/core/graphics/drawable/BitmapDrawableKt.class","name":"androidx/core/graphics/drawable/BitmapDrawableKt.class","size":1055,"crc":-106308825},{"key":"androidx/core/graphics/drawable/ColorDrawableKt.class","name":"androidx/core/graphics/drawable/ColorDrawableKt.class","size":1276,"crc":1125532470},{"key":"androidx/core/graphics/drawable/DrawableKt.class","name":"androidx/core/graphics/drawable/DrawableKt.class","size":4693,"crc":-465857029},{"key":"androidx/core/graphics/drawable/IconKt.class","name":"androidx/core/graphics/drawable/IconKt.class","size":1676,"crc":-511645807},{"key":"androidx/core/location/LocationKt.class","name":"androidx/core/location/LocationKt.class","size":909,"crc":-1010250142},{"key":"androidx/core/net/UriKt.class","name":"androidx/core/net/UriKt.class","size":2253,"crc":372801735},{"key":"androidx/core/os/BundleApi21ImplKt.class","name":"androidx/core/os/BundleApi21ImplKt.class","size":1663,"crc":-1623609836},{"key":"androidx/core/os/BundleKt.class","name":"androidx/core/os/BundleKt.class","size":5925,"crc":-1131137531},{"key":"androidx/core/os/ContinuationOutcomeReceiver.class","name":"androidx/core/os/ContinuationOutcomeReceiver.class","size":2623,"crc":1892959443},{"key":"androidx/core/os/HandlerKt$postAtTime$runnable$1.class","name":"androidx/core/os/HandlerKt$postAtTime$runnable$1.class","size":1511,"crc":-1013347584},{"key":"androidx/core/os/HandlerKt$postDelayed$runnable$1.class","name":"androidx/core/os/HandlerKt$postDelayed$runnable$1.class","size":1516,"crc":-537575688},{"key":"androidx/core/os/HandlerKt.class","name":"androidx/core/os/HandlerKt.class","size":2721,"crc":613945496},{"key":"androidx/core/os/OutcomeReceiverKt.class","name":"androidx/core/os/OutcomeReceiverKt.class","size":1188,"crc":-710731725},{"key":"androidx/core/os/PersistableBundleApi21ImplKt.class","name":"androidx/core/os/PersistableBundleApi21ImplKt.class","size":4296,"crc":-581828102},{"key":"androidx/core/os/PersistableBundleApi22ImplKt.class","name":"androidx/core/os/PersistableBundleApi22ImplKt.class","size":1657,"crc":1648977533},{"key":"androidx/core/os/PersistableBundleKt.class","name":"androidx/core/os/PersistableBundleKt.class","size":3346,"crc":2042286547},{"key":"androidx/core/os/TraceKt.class","name":"androidx/core/os/TraceKt.class","size":1576,"crc":-1656383156},{"key":"androidx/core/text/CharSequenceKt.class","name":"androidx/core/text/CharSequenceKt.class","size":942,"crc":-1064874012},{"key":"androidx/core/text/HtmlKt.class","name":"androidx/core/text/HtmlKt.class","size":2102,"crc":391129859},{"key":"androidx/core/text/LocaleKt.class","name":"androidx/core/text/LocaleKt.class","size":766,"crc":97015865},{"key":"androidx/core/text/SpannableStringBuilderKt.class","name":"androidx/core/text/SpannableStringBuilderKt.class","size":8033,"crc":199973281},{"key":"androidx/core/text/SpannableStringKt.class","name":"androidx/core/text/SpannableStringKt.class","size":3365,"crc":1780735941},{"key":"androidx/core/text/SpannedStringKt.class","name":"androidx/core/text/SpannedStringKt.class","size":1780,"crc":193989245},{"key":"androidx/core/text/StringKt.class","name":"androidx/core/text/StringKt.class","size":731,"crc":896149928},{"key":"androidx/core/transition/TransitionKt$addListener$1.class","name":"androidx/core/transition/TransitionKt$addListener$1.class","size":2154,"crc":-839788383},{"key":"androidx/core/transition/TransitionKt$addListener$2.class","name":"androidx/core/transition/TransitionKt$addListener$2.class","size":2154,"crc":1087598930},{"key":"androidx/core/transition/TransitionKt$addListener$3.class","name":"androidx/core/transition/TransitionKt$addListener$3.class","size":2154,"crc":-237391139},{"key":"androidx/core/transition/TransitionKt$addListener$4.class","name":"androidx/core/transition/TransitionKt$addListener$4.class","size":2154,"crc":-2115558155},{"key":"androidx/core/transition/TransitionKt$addListener$5.class","name":"androidx/core/transition/TransitionKt$addListener$5.class","size":2154,"crc":-732190222},{"key":"androidx/core/transition/TransitionKt$addListener$listener$1.class","name":"androidx/core/transition/TransitionKt$addListener$listener$1.class","size":3405,"crc":1464816342},{"key":"androidx/core/transition/TransitionKt$doOnCancel$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnCancel$$inlined$addListener$default$1.class","size":3717,"crc":-105768045},{"key":"androidx/core/transition/TransitionKt$doOnEnd$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnEnd$$inlined$addListener$default$1.class","size":3705,"crc":618435903},{"key":"androidx/core/transition/TransitionKt$doOnPause$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnPause$$inlined$addListener$default$1.class","size":3713,"crc":384620249},{"key":"androidx/core/transition/TransitionKt$doOnResume$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnResume$$inlined$addListener$default$1.class","size":3717,"crc":561920813},{"key":"androidx/core/transition/TransitionKt$doOnStart$$inlined$addListener$default$1.class","name":"androidx/core/transition/TransitionKt$doOnStart$$inlined$addListener$default$1.class","size":3713,"crc":1184027228},{"key":"androidx/core/transition/TransitionKt.class","name":"androidx/core/transition/TransitionKt.class","size":7563,"crc":-1807820168},{"key":"androidx/core/util/AndroidXConsumerKt.class","name":"androidx/core/util/AndroidXConsumerKt.class","size":1064,"crc":1207069760},{"key":"androidx/core/util/AndroidXContinuationConsumer.class","name":"androidx/core/util/AndroidXContinuationConsumer.class","size":2163,"crc":-1909667356},{"key":"androidx/core/util/AtomicFileKt.class","name":"androidx/core/util/AtomicFileKt.class","size":4257,"crc":-481545007},{"key":"androidx/core/util/ConsumerKt.class","name":"androidx/core/util/ConsumerKt.class","size":1161,"crc":1842462364},{"key":"androidx/core/util/ContinuationConsumer.class","name":"androidx/core/util/ContinuationConsumer.class","size":2205,"crc":1745566208},{"key":"androidx/core/util/ContinuationRunnable.class","name":"androidx/core/util/ContinuationRunnable.class","size":1967,"crc":582150496},{"key":"androidx/core/util/HalfKt.class","name":"androidx/core/util/HalfKt.class","size":1815,"crc":-1379790822},{"key":"androidx/core/util/LongSparseArrayKt$keyIterator$1.class","name":"androidx/core/util/LongSparseArrayKt$keyIterator$1.class","size":1625,"crc":-1261659768},{"key":"androidx/core/util/LongSparseArrayKt$valueIterator$1.class","name":"androidx/core/util/LongSparseArrayKt$valueIterator$1.class","size":2036,"crc":447773195},{"key":"androidx/core/util/LongSparseArrayKt.class","name":"androidx/core/util/LongSparseArrayKt.class","size":7840,"crc":-221005389},{"key":"androidx/core/util/LruCacheKt$lruCache$1.class","name":"androidx/core/util/LruCacheKt$lruCache$1.class","size":2023,"crc":-1330562761},{"key":"androidx/core/util/LruCacheKt$lruCache$2.class","name":"androidx/core/util/LruCacheKt$lruCache$2.class","size":1711,"crc":-617831577},{"key":"androidx/core/util/LruCacheKt$lruCache$3.class","name":"androidx/core/util/LruCacheKt$lruCache$3.class","size":2251,"crc":-1322802722},{"key":"androidx/core/util/LruCacheKt$lruCache$4.class","name":"androidx/core/util/LruCacheKt$lruCache$4.class","size":3354,"crc":-975443624},{"key":"androidx/core/util/LruCacheKt.class","name":"androidx/core/util/LruCacheKt.class","size":2804,"crc":-526826459},{"key":"androidx/core/util/PairKt.class","name":"androidx/core/util/PairKt.class","size":3497,"crc":-1245435621},{"key":"androidx/core/util/RangeKt$toClosedRange$1.class","name":"androidx/core/util/RangeKt$toClosedRange$1.class","size":1925,"crc":2131224529},{"key":"androidx/core/util/RangeKt.class","name":"androidx/core/util/RangeKt.class","size":3230,"crc":-1491720124},{"key":"androidx/core/util/RunnableKt.class","name":"androidx/core/util/RunnableKt.class","size":958,"crc":474323119},{"key":"androidx/core/util/SizeKt.class","name":"androidx/core/util/SizeKt.class","size":1746,"crc":2084608092},{"key":"androidx/core/util/SparseArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseArrayKt$keyIterator$1.class","size":1566,"crc":-153881193},{"key":"androidx/core/util/SparseArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseArrayKt$valueIterator$1.class","size":1996,"crc":-1787147675},{"key":"androidx/core/util/SparseArrayKt.class","name":"androidx/core/util/SparseArrayKt.class","size":7589,"crc":-1154026456},{"key":"androidx/core/util/SparseBooleanArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseBooleanArrayKt$keyIterator$1.class","size":1523,"crc":-1227995325},{"key":"androidx/core/util/SparseBooleanArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseBooleanArrayKt$valueIterator$1.class","size":1549,"crc":-1149490815},{"key":"androidx/core/util/SparseBooleanArrayKt.class","name":"androidx/core/util/SparseBooleanArrayKt.class","size":6638,"crc":1712220530},{"key":"androidx/core/util/SparseIntArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseIntArrayKt$keyIterator$1.class","size":1491,"crc":-1721360329},{"key":"androidx/core/util/SparseIntArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseIntArrayKt$valueIterator$1.class","size":1501,"crc":266627038},{"key":"androidx/core/util/SparseIntArrayKt.class","name":"androidx/core/util/SparseIntArrayKt.class","size":6274,"crc":-926075899},{"key":"androidx/core/util/SparseLongArrayKt$keyIterator$1.class","name":"androidx/core/util/SparseLongArrayKt$keyIterator$1.class","size":1499,"crc":-1650307329},{"key":"androidx/core/util/SparseLongArrayKt$valueIterator$1.class","name":"androidx/core/util/SparseLongArrayKt$valueIterator$1.class","size":1528,"crc":30930225},{"key":"androidx/core/util/SparseLongArrayKt.class","name":"androidx/core/util/SparseLongArrayKt.class","size":6585,"crc":-2013780278},{"key":"androidx/core/view/MenuKt$children$1.class","name":"androidx/core/view/MenuKt$children$1.class","size":1291,"crc":688693280},{"key":"androidx/core/view/MenuKt$iterator$1.class","name":"androidx/core/view/MenuKt$iterator$1.class","size":2852,"crc":504074570},{"key":"androidx/core/view/MenuKt.class","name":"androidx/core/view/MenuKt.class","size":5223,"crc":449666812},{"key":"androidx/core/view/TreeIterator.class","name":"androidx/core/view/TreeIterator.class","size":2921,"crc":1851287964},{"key":"androidx/core/view/ViewGroupKt$children$1.class","name":"androidx/core/view/ViewGroupKt$children$1.class","size":1319,"crc":-1831304970},{"key":"androidx/core/view/ViewGroupKt$descendants$1$1.class","name":"androidx/core/view/ViewGroupKt$descendants$1$1.class","size":1821,"crc":-1329298579},{"key":"androidx/core/view/ViewGroupKt$iterator$1.class","name":"androidx/core/view/ViewGroupKt$iterator$1.class","size":1897,"crc":-1639515172},{"key":"androidx/core/view/ViewGroupKt$special$$inlined$Sequence$1.class","name":"androidx/core/view/ViewGroupKt$special$$inlined$Sequence$1.class","size":2323,"crc":-155440975},{"key":"androidx/core/view/ViewGroupKt.class","name":"androidx/core/view/ViewGroupKt.class","size":7598,"crc":1363807469},{"key":"androidx/core/view/ViewKt$allViews$1.class","name":"androidx/core/view/ViewKt$allViews$1.class","size":3857,"crc":-1813219413},{"key":"androidx/core/view/ViewKt$ancestors$1.class","name":"androidx/core/view/ViewKt$ancestors$1.class","size":1480,"crc":-377500194},{"key":"androidx/core/view/ViewKt$doOnAttach$1.class","name":"androidx/core/view/ViewKt$doOnAttach$1.class","size":2137,"crc":1505595239},{"key":"androidx/core/view/ViewKt$doOnDetach$1.class","name":"androidx/core/view/ViewKt$doOnDetach$1.class","size":2137,"crc":-771929976},{"key":"androidx/core/view/ViewKt$doOnLayout$$inlined$doOnNextLayout$1.class","name":"androidx/core/view/ViewKt$doOnLayout$$inlined$doOnNextLayout$1.class","size":2349,"crc":-1146481346},{"key":"androidx/core/view/ViewKt$doOnNextLayout$1.class","name":"androidx/core/view/ViewKt$doOnNextLayout$1.class","size":2226,"crc":-1548757116},{"key":"androidx/core/view/ViewKt$doOnPreDraw$1.class","name":"androidx/core/view/ViewKt$doOnPreDraw$1.class","size":1651,"crc":-2042201155},{"key":"androidx/core/view/ViewKt$postDelayed$runnable$1.class","name":"androidx/core/view/ViewKt$postDelayed$runnable$1.class","size":1479,"crc":-249371899},{"key":"androidx/core/view/ViewKt.class","name":"androidx/core/view/ViewKt.class","size":14739,"crc":1277246314},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$1.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$1.class","size":2309,"crc":-1458842161},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$2.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$2.class","size":2309,"crc":1800048640},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$3.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$3.class","size":1963,"crc":-2036036547},{"key":"androidx/core/widget/TextViewKt$addTextChangedListener$textWatcher$1.class","name":"androidx/core/widget/TextViewKt$addTextChangedListener$textWatcher$1.class","size":3399,"crc":-971685379},{"key":"androidx/core/widget/TextViewKt$doAfterTextChanged$$inlined$addTextChangedListener$default$1.class","name":"androidx/core/widget/TextViewKt$doAfterTextChanged$$inlined$addTextChangedListener$default$1.class","size":3110,"crc":-2117680630},{"key":"androidx/core/widget/TextViewKt$doBeforeTextChanged$$inlined$addTextChangedListener$default$1.class","name":"androidx/core/widget/TextViewKt$doBeforeTextChanged$$inlined$addTextChangedListener$default$1.class","size":3258,"crc":-1619639831},{"key":"androidx/core/widget/TextViewKt$doOnTextChanged$$inlined$addTextChangedListener$default$1.class","name":"androidx/core/widget/TextViewKt$doOnTextChanged$$inlined$addTextChangedListener$default$1.class","size":3242,"crc":474637645},{"key":"androidx/core/widget/TextViewKt.class","name":"androidx/core/widget/TextViewKt.class","size":6573,"crc":-918980938},{"key":"META-INF/androidx.core_core-ktx.version","name":"META-INF/androidx.core_core-ktx.version","size":7,"crc":-1000712479},{"key":"META-INF/core-ktx_release.kotlin_module","name":"META-INF/core-ktx_release.kotlin_module","size":1150,"crc":717817418}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/LQUd0yE2yD+5NqgPnd+cWQ== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/LQUd0yE2yD+5NqgPnd+cWQ== new file mode 100644 index 0000000..d92be7d --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/LQUd0yE2yD+5NqgPnd+cWQ== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":128,"crc":219314733},{"key":"org/intellij/lang/annotations/Flow.class","name":"org/intellij/lang/annotations/Flow.class","size":1217,"crc":-2102043213},{"key":"org/intellij/lang/annotations/Identifier.class","name":"org/intellij/lang/annotations/Identifier.class","size":324,"crc":1003706824},{"key":"org/intellij/lang/annotations/JdkConstants$AdjustableOrientation.class","name":"org/intellij/lang/annotations/JdkConstants$AdjustableOrientation.class","size":299,"crc":585442457},{"key":"org/intellij/lang/annotations/JdkConstants$BoxLayoutAxis.class","name":"org/intellij/lang/annotations/JdkConstants$BoxLayoutAxis.class","size":283,"crc":2112307339},{"key":"org/intellij/lang/annotations/JdkConstants$CalendarMonth.class","name":"org/intellij/lang/annotations/JdkConstants$CalendarMonth.class","size":283,"crc":-1461794964},{"key":"org/intellij/lang/annotations/JdkConstants$CursorType.class","name":"org/intellij/lang/annotations/JdkConstants$CursorType.class","size":277,"crc":1261991804},{"key":"org/intellij/lang/annotations/JdkConstants$FlowLayoutAlignment.class","name":"org/intellij/lang/annotations/JdkConstants$FlowLayoutAlignment.class","size":295,"crc":-1309531958},{"key":"org/intellij/lang/annotations/JdkConstants$FontStyle.class","name":"org/intellij/lang/annotations/JdkConstants$FontStyle.class","size":275,"crc":672556144},{"key":"org/intellij/lang/annotations/JdkConstants$HorizontalAlignment.class","name":"org/intellij/lang/annotations/JdkConstants$HorizontalAlignment.class","size":295,"crc":-1845894850},{"key":"org/intellij/lang/annotations/JdkConstants$InputEventMask.class","name":"org/intellij/lang/annotations/JdkConstants$InputEventMask.class","size":285,"crc":115820859},{"key":"org/intellij/lang/annotations/JdkConstants$ListSelectionMode.class","name":"org/intellij/lang/annotations/JdkConstants$ListSelectionMode.class","size":291,"crc":1972304950},{"key":"org/intellij/lang/annotations/JdkConstants$PatternFlags.class","name":"org/intellij/lang/annotations/JdkConstants$PatternFlags.class","size":281,"crc":-1389407250},{"key":"org/intellij/lang/annotations/JdkConstants$TabLayoutPolicy.class","name":"org/intellij/lang/annotations/JdkConstants$TabLayoutPolicy.class","size":287,"crc":-636391766},{"key":"org/intellij/lang/annotations/JdkConstants$TabPlacement.class","name":"org/intellij/lang/annotations/JdkConstants$TabPlacement.class","size":281,"crc":-214765930},{"key":"org/intellij/lang/annotations/JdkConstants$TitledBorderJustification.class","name":"org/intellij/lang/annotations/JdkConstants$TitledBorderJustification.class","size":307,"crc":859456766},{"key":"org/intellij/lang/annotations/JdkConstants$TitledBorderTitlePosition.class","name":"org/intellij/lang/annotations/JdkConstants$TitledBorderTitlePosition.class","size":307,"crc":1103964778},{"key":"org/intellij/lang/annotations/JdkConstants$TreeSelectionMode.class","name":"org/intellij/lang/annotations/JdkConstants$TreeSelectionMode.class","size":291,"crc":-474777859},{"key":"org/intellij/lang/annotations/JdkConstants.class","name":"org/intellij/lang/annotations/JdkConstants.class","size":1730,"crc":1434561639},{"key":"org/intellij/lang/annotations/Language.class","name":"org/intellij/lang/annotations/Language.class","size":681,"crc":-1817758794},{"key":"org/intellij/lang/annotations/MagicConstant.class","name":"org/intellij/lang/annotations/MagicConstant.class","size":715,"crc":-1592799795},{"key":"org/intellij/lang/annotations/Pattern.class","name":"org/intellij/lang/annotations/Pattern.class","size":600,"crc":-530891111},{"key":"org/intellij/lang/annotations/PrintFormat.class","name":"org/intellij/lang/annotations/PrintFormat.class","size":356,"crc":1445148429},{"key":"org/intellij/lang/annotations/PrintFormatPattern.class","name":"org/intellij/lang/annotations/PrintFormatPattern.class","size":964,"crc":-1507760601},{"key":"org/intellij/lang/annotations/RegExp.class","name":"org/intellij/lang/annotations/RegExp.class","size":665,"crc":-762257026},{"key":"org/intellij/lang/annotations/Subst.class","name":"org/intellij/lang/annotations/Subst.class","size":199,"crc":-1769088951},{"key":"org/jetbrains/annotations/Contract.class","name":"org/jetbrains/annotations/Contract.class","size":531,"crc":562269709},{"key":"org/jetbrains/annotations/Nls.class","name":"org/jetbrains/annotations/Nls.class","size":502,"crc":776170298},{"key":"org/jetbrains/annotations/NonNls.class","name":"org/jetbrains/annotations/NonNls.class","size":508,"crc":1172811652},{"key":"org/jetbrains/annotations/NotNull.class","name":"org/jetbrains/annotations/NotNull.class","size":546,"crc":-316212578},{"key":"org/jetbrains/annotations/Nullable.class","name":"org/jetbrains/annotations/Nullable.class","size":548,"crc":-689673279},{"key":"org/jetbrains/annotations/PropertyKey.class","name":"org/jetbrains/annotations/PropertyKey.class","size":525,"crc":862906181},{"key":"org/jetbrains/annotations/TestOnly.class","name":"org/jetbrains/annotations/TestOnly.class","size":453,"crc":1033452998},{"key":"META-INF/maven/org.jetbrains/annotations/pom.xml","name":"META-INF/maven/org.jetbrains/annotations/pom.xml","size":4930,"crc":-127628560},{"key":"META-INF/maven/org.jetbrains/annotations/pom.properties","name":"META-INF/maven/org.jetbrains/annotations/pom.properties","size":108,"crc":97218998}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/MyRCIUP1tAsGoj3darRflA== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/MyRCIUP1tAsGoj3darRflA== new file mode 100644 index 0000000..64cef69 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/MyRCIUP1tAsGoj3darRflA== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":225,"crc":1334212140},{"key":"META-INF/versions/9/module-info.class","name":"META-INF/versions/9/module-info.class","size":287,"crc":-1907208598}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/O379FMBqjBB0IHCMcGWXWg== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/O379FMBqjBB0IHCMcGWXWg== new file mode 100644 index 0000000..7f431b7 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/O379FMBqjBB0IHCMcGWXWg== @@ -0,0 +1 @@ +[{"key":"androidx/interpolator/view/animation/FastOutLinearInInterpolator.class","name":"androidx/interpolator/view/animation/FastOutLinearInInterpolator.class","size":2893,"crc":-586218538},{"key":"androidx/interpolator/view/animation/FastOutSlowInInterpolator.class","name":"androidx/interpolator/view/animation/FastOutSlowInInterpolator.class","size":2876,"crc":-1344934723},{"key":"androidx/interpolator/view/animation/LinearOutSlowInInterpolator.class","name":"androidx/interpolator/view/animation/LinearOutSlowInInterpolator.class","size":2882,"crc":-733508970},{"key":"androidx/interpolator/view/animation/LookupTableInterpolator.class","name":"androidx/interpolator/view/animation/LookupTableInterpolator.class","size":907,"crc":-26214147},{"key":"META-INF/androidx.interpolator_interpolator.version","name":"META-INF/androidx.interpolator_interpolator.version","size":6,"crc":-42031000}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/OJbcWPBVycWlwIwr7OOPOg== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/OJbcWPBVycWlwIwr7OOPOg== new file mode 100644 index 0000000..cfcd7eb --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/OJbcWPBVycWlwIwr7OOPOg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"META-INF/annotation.kotlin_module","name":"META-INF/annotation.kotlin_module","size":24,"crc":1613429616},{"key":"androidx/annotation/AnimRes.class","name":"androidx/annotation/AnimRes.class","size":998,"crc":1805675076},{"key":"androidx/annotation/AnimatorRes.class","name":"androidx/annotation/AnimatorRes.class","size":1010,"crc":-21670366},{"key":"androidx/annotation/AnyRes.class","name":"androidx/annotation/AnyRes.class","size":995,"crc":-1558869655},{"key":"androidx/annotation/AnyThread.class","name":"androidx/annotation/AnyThread.class","size":1047,"crc":-292959457},{"key":"androidx/annotation/ArrayRes.class","name":"androidx/annotation/ArrayRes.class","size":1001,"crc":-1364959277},{"key":"androidx/annotation/AttrRes.class","name":"androidx/annotation/AttrRes.class","size":998,"crc":336978531},{"key":"androidx/annotation/BinderThread.class","name":"androidx/annotation/BinderThread.class","size":1056,"crc":-1438044114},{"key":"androidx/annotation/BoolRes.class","name":"androidx/annotation/BoolRes.class","size":998,"crc":1086348174},{"key":"androidx/annotation/CallSuper.class","name":"androidx/annotation/CallSuper.class","size":919,"crc":-1796011780},{"key":"androidx/annotation/CheckResult.class","name":"androidx/annotation/CheckResult.class","size":1039,"crc":1042113953},{"key":"androidx/annotation/ChecksSdkIntAtLeast.class","name":"androidx/annotation/ChecksSdkIntAtLeast.class","size":1337,"crc":1242654976},{"key":"androidx/annotation/ColorInt.class","name":"androidx/annotation/ColorInt.class","size":1001,"crc":799609820},{"key":"androidx/annotation/ColorLong.class","name":"androidx/annotation/ColorLong.class","size":996,"crc":-965017695},{"key":"androidx/annotation/ColorRes.class","name":"androidx/annotation/ColorRes.class","size":1001,"crc":1387302471},{"key":"androidx/annotation/ContentView.class","name":"androidx/annotation/ContentView.class","size":790,"crc":1840561130},{"key":"androidx/annotation/DeprecatedSinceApi.class","name":"androidx/annotation/DeprecatedSinceApi.class","size":1210,"crc":-197722093},{"key":"androidx/annotation/DimenRes.class","name":"androidx/annotation/DimenRes.class","size":1001,"crc":1200789212},{"key":"androidx/annotation/Dimension$Companion.class","name":"androidx/annotation/Dimension$Companion.class","size":850,"crc":-597474804},{"key":"androidx/annotation/Dimension.class","name":"androidx/annotation/Dimension.class","size":1551,"crc":1192463037},{"key":"androidx/annotation/Discouraged.class","name":"androidx/annotation/Discouraged.class","size":1071,"crc":-1502727256},{"key":"androidx/annotation/DisplayContext.class","name":"androidx/annotation/DisplayContext.class","size":973,"crc":-1030231984},{"key":"androidx/annotation/DoNotInline.class","name":"androidx/annotation/DoNotInline.class","size":842,"crc":-784511386},{"key":"androidx/annotation/DrawableRes.class","name":"androidx/annotation/DrawableRes.class","size":1010,"crc":1762719637},{"key":"androidx/annotation/EmptySuper.class","name":"androidx/annotation/EmptySuper.class","size":876,"crc":-1971548453},{"key":"androidx/annotation/FloatRange.class","name":"androidx/annotation/FloatRange.class","size":1365,"crc":624310496},{"key":"androidx/annotation/FontRes.class","name":"androidx/annotation/FontRes.class","size":998,"crc":-641216705},{"key":"androidx/annotation/FractionRes.class","name":"androidx/annotation/FractionRes.class","size":1010,"crc":1499853784},{"key":"androidx/annotation/GravityInt.class","name":"androidx/annotation/GravityInt.class","size":1007,"crc":-1848783872},{"key":"androidx/annotation/GuardedBy.class","name":"androidx/annotation/GuardedBy.class","size":927,"crc":1952837113},{"key":"androidx/annotation/HalfFloat.class","name":"androidx/annotation/HalfFloat.class","size":996,"crc":-1673008440},{"key":"androidx/annotation/IdRes.class","name":"androidx/annotation/IdRes.class","size":992,"crc":1613555030},{"key":"androidx/annotation/InspectableProperty$EnumEntry.class","name":"androidx/annotation/InspectableProperty$EnumEntry.class","size":1098,"crc":1662655193},{"key":"androidx/annotation/InspectableProperty$FlagEntry.class","name":"androidx/annotation/InspectableProperty$FlagEntry.class","size":1182,"crc":-428253226},{"key":"androidx/annotation/InspectableProperty$ValueType.class","name":"androidx/annotation/InspectableProperty$ValueType.class","size":1854,"crc":1544860775},{"key":"androidx/annotation/InspectableProperty.class","name":"androidx/annotation/InspectableProperty.class","size":2118,"crc":1292687511},{"key":"androidx/annotation/IntDef.class","name":"androidx/annotation/IntDef.class","size":1018,"crc":-2084495046},{"key":"androidx/annotation/IntRange.class","name":"androidx/annotation/IntRange.class","size":1213,"crc":-1057240409},{"key":"androidx/annotation/IntegerRes.class","name":"androidx/annotation/IntegerRes.class","size":1007,"crc":1443210290},{"key":"androidx/annotation/InterpolatorRes.class","name":"androidx/annotation/InterpolatorRes.class","size":1022,"crc":1441158230},{"key":"androidx/annotation/Keep.class","name":"androidx/annotation/Keep.class","size":959,"crc":-614514485},{"key":"androidx/annotation/LayoutRes.class","name":"androidx/annotation/LayoutRes.class","size":1004,"crc":-1845378728},{"key":"androidx/annotation/LongDef.class","name":"androidx/annotation/LongDef.class","size":1021,"crc":-1882350390},{"key":"androidx/annotation/MainThread.class","name":"androidx/annotation/MainThread.class","size":1050,"crc":850348188},{"key":"androidx/annotation/MenuRes.class","name":"androidx/annotation/MenuRes.class","size":998,"crc":1561717034},{"key":"androidx/annotation/NavigationRes.class","name":"androidx/annotation/NavigationRes.class","size":1016,"crc":264753535},{"key":"androidx/annotation/NonNull.class","name":"androidx/annotation/NonNull.class","size":1072,"crc":1890549879},{"key":"androidx/annotation/NonUiContext.class","name":"androidx/annotation/NonUiContext.class","size":967,"crc":-287470527},{"key":"androidx/annotation/Nullable.class","name":"androidx/annotation/Nullable.class","size":1075,"crc":1363795669},{"key":"androidx/annotation/OpenForTesting.class","name":"androidx/annotation/OpenForTesting.class","size":951,"crc":-1077337476},{"key":"androidx/annotation/PluralsRes.class","name":"androidx/annotation/PluralsRes.class","size":1007,"crc":-16773091},{"key":"androidx/annotation/Px.class","name":"androidx/annotation/Px.class","size":1071,"crc":181286199},{"key":"androidx/annotation/RawRes.class","name":"androidx/annotation/RawRes.class","size":995,"crc":-734924532},{"key":"androidx/annotation/RequiresApi.class","name":"androidx/annotation/RequiresApi.class","size":1176,"crc":702703466},{"key":"androidx/annotation/RequiresExtension$Container.class","name":"androidx/annotation/RequiresExtension$Container.class","size":1055,"crc":-1982377015},{"key":"androidx/annotation/RequiresExtension.class","name":"androidx/annotation/RequiresExtension.class","size":1402,"crc":1188583388},{"key":"androidx/annotation/RequiresFeature.class","name":"androidx/annotation/RequiresFeature.class","size":1091,"crc":-586912630},{"key":"androidx/annotation/RequiresPermission$Read.class","name":"androidx/annotation/RequiresPermission$Read.class","size":1092,"crc":-606956352},{"key":"androidx/annotation/RequiresPermission$Write.class","name":"androidx/annotation/RequiresPermission$Write.class","size":1095,"crc":2005504804},{"key":"androidx/annotation/RequiresPermission.class","name":"androidx/annotation/RequiresPermission.class","size":1597,"crc":-40562329},{"key":"androidx/annotation/RestrictTo$Scope.class","name":"androidx/annotation/RestrictTo$Scope.class","size":1818,"crc":170557603},{"key":"androidx/annotation/RestrictTo.class","name":"androidx/annotation/RestrictTo.class","size":1308,"crc":-1930201174},{"key":"androidx/annotation/ReturnThis.class","name":"androidx/annotation/ReturnThis.class","size":893,"crc":-1928044719},{"key":"androidx/annotation/Size.class","name":"androidx/annotation/Size.class","size":1326,"crc":302039339},{"key":"androidx/annotation/StringDef.class","name":"androidx/annotation/StringDef.class","size":1005,"crc":-1165630304},{"key":"androidx/annotation/StringRes.class","name":"androidx/annotation/StringRes.class","size":1004,"crc":284093704},{"key":"androidx/annotation/StyleRes.class","name":"androidx/annotation/StyleRes.class","size":1001,"crc":1701184168},{"key":"androidx/annotation/StyleableRes.class","name":"androidx/annotation/StyleableRes.class","size":1013,"crc":1642461597},{"key":"androidx/annotation/TransitionRes.class","name":"androidx/annotation/TransitionRes.class","size":981,"crc":-1441671359},{"key":"androidx/annotation/UiContext.class","name":"androidx/annotation/UiContext.class","size":958,"crc":1604163313},{"key":"androidx/annotation/UiThread.class","name":"androidx/annotation/UiThread.class","size":1044,"crc":-490984382},{"key":"androidx/annotation/VisibleForTesting$Companion.class","name":"androidx/annotation/VisibleForTesting$Companion.class","size":967,"crc":599658159},{"key":"androidx/annotation/VisibleForTesting.class","name":"androidx/annotation/VisibleForTesting.class","size":1196,"crc":-761906278},{"key":"androidx/annotation/WorkerThread.class","name":"androidx/annotation/WorkerThread.class","size":1056,"crc":2033881368},{"key":"androidx/annotation/XmlRes.class","name":"androidx/annotation/XmlRes.class","size":995,"crc":1134232451},{"key":"META-INF/proguard/androidx-annotations.pro","name":"META-INF/proguard/androidx-annotations.pro","size":433,"crc":1618759247}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Q+jsjOVUi8dWYSPi0_iwQg== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Q+jsjOVUi8dWYSPi0_iwQg== new file mode 100644 index 0000000..e761500 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Q+jsjOVUi8dWYSPi0_iwQg== @@ -0,0 +1 @@ +[{"key":"androidx/savedstate/Recreator$Companion.class","name":"androidx/savedstate/Recreator$Companion.class","size":881,"crc":-2099199957},{"key":"androidx/savedstate/Recreator$SavedStateProvider.class","name":"androidx/savedstate/Recreator$SavedStateProvider.class","size":2367,"crc":1821800407},{"key":"androidx/savedstate/Recreator.class","name":"androidx/savedstate/Recreator.class","size":5559,"crc":-533493763},{"key":"androidx/savedstate/SavedStateRegistry$AutoRecreated.class","name":"androidx/savedstate/SavedStateRegistry$AutoRecreated.class","size":784,"crc":567056175},{"key":"androidx/savedstate/SavedStateRegistry$Companion.class","name":"androidx/savedstate/SavedStateRegistry$Companion.class","size":887,"crc":900872896},{"key":"androidx/savedstate/SavedStateRegistry$SavedStateProvider.class","name":"androidx/savedstate/SavedStateRegistry$SavedStateProvider.class","size":709,"crc":-309935901},{"key":"androidx/savedstate/SavedStateRegistry.class","name":"androidx/savedstate/SavedStateRegistry.class","size":10105,"crc":788600212},{"key":"androidx/savedstate/SavedStateRegistryController$Companion.class","name":"androidx/savedstate/SavedStateRegistryController$Companion.class","size":1607,"crc":-1819286630},{"key":"androidx/savedstate/SavedStateRegistryController.class","name":"androidx/savedstate/SavedStateRegistryController.class","size":4330,"crc":-287729808},{"key":"androidx/savedstate/SavedStateRegistryOwner.class","name":"androidx/savedstate/SavedStateRegistryOwner.class","size":755,"crc":-979039875},{"key":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$1.class","name":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$1.class","size":1846,"crc":423512158},{"key":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$2.class","name":"androidx/savedstate/ViewTreeSavedStateRegistryOwner$findViewTreeSavedStateRegistryOwner$2.class","size":2045,"crc":-1356874610},{"key":"androidx/savedstate/ViewTreeSavedStateRegistryOwner.class","name":"androidx/savedstate/ViewTreeSavedStateRegistryOwner.class","size":2543,"crc":1459979664},{"key":"META-INF/androidx.savedstate_savedstate.version","name":"META-INF/androidx.savedstate_savedstate.version","size":6,"crc":1315721634},{"key":"META-INF/savedstate_release.kotlin_module","name":"META-INF/savedstate_release.kotlin_module","size":80,"crc":-912612184}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/RN15dX2CXDbLYzjgWiyI6w== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/RN15dX2CXDbLYzjgWiyI6w== new file mode 100644 index 0000000..9963384 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/RN15dX2CXDbLYzjgWiyI6w== @@ -0,0 +1 @@ +[{"key":"androidx/versionedparcelable/CustomVersionedParcelable.class","name":"androidx/versionedparcelable/CustomVersionedParcelable.class","size":915,"crc":-363159068},{"key":"androidx/versionedparcelable/NonParcelField.class","name":"androidx/versionedparcelable/NonParcelField.class","size":676,"crc":1361393714},{"key":"androidx/versionedparcelable/ParcelField.class","name":"androidx/versionedparcelable/ParcelField.class","size":762,"crc":-355164638},{"key":"androidx/versionedparcelable/ParcelImpl$1.class","name":"androidx/versionedparcelable/ParcelImpl$1.class","size":1191,"crc":-60532325},{"key":"androidx/versionedparcelable/ParcelImpl.class","name":"androidx/versionedparcelable/ParcelImpl.class","size":1979,"crc":1919067054},{"key":"androidx/versionedparcelable/ParcelUtils.class","name":"androidx/versionedparcelable/ParcelUtils.class","size":5523,"crc":-1129855369},{"key":"androidx/versionedparcelable/VersionedParcel$1.class","name":"androidx/versionedparcelable/VersionedParcel$1.class","size":1546,"crc":-1038307129},{"key":"androidx/versionedparcelable/VersionedParcel$ParcelException.class","name":"androidx/versionedparcelable/VersionedParcel$ParcelException.class","size":538,"crc":1830934000},{"key":"androidx/versionedparcelable/VersionedParcel.class","name":"androidx/versionedparcelable/VersionedParcel.class","size":29325,"crc":142272959},{"key":"androidx/versionedparcelable/VersionedParcelParcel.class","name":"androidx/versionedparcelable/VersionedParcelParcel.class","size":7429,"crc":-328586236},{"key":"androidx/versionedparcelable/VersionedParcelStream$1.class","name":"androidx/versionedparcelable/VersionedParcelStream$1.class","size":1613,"crc":1775874054},{"key":"androidx/versionedparcelable/VersionedParcelStream$FieldBuffer.class","name":"androidx/versionedparcelable/VersionedParcelStream$FieldBuffer.class","size":1288,"crc":1505456534},{"key":"androidx/versionedparcelable/VersionedParcelStream.class","name":"androidx/versionedparcelable/VersionedParcelStream.class","size":13823,"crc":-1859752855},{"key":"androidx/versionedparcelable/VersionedParcelable.class","name":"androidx/versionedparcelable/VersionedParcelable.class","size":148,"crc":752656910},{"key":"androidx/versionedparcelable/VersionedParcelize.class","name":"androidx/versionedparcelable/VersionedParcelize.class","size":964,"crc":886842821},{"key":"META-INF/androidx.versionedparcelable_versionedparcelable.version","name":"META-INF/androidx.versionedparcelable_versionedparcelable.version","size":6,"crc":1557790284}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/RYtHelTi5C9aZOp8Qkps3w== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/RYtHelTi5C9aZOp8Qkps3w== new file mode 100644 index 0000000..12ab86f --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/RYtHelTi5C9aZOp8Qkps3w== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/Observer.class","name":"androidx/lifecycle/Observer.class","size":581,"crc":-1645925231},{"key":"androidx/lifecycle/LiveData$1.class","name":"androidx/lifecycle/LiveData$1.class","size":967,"crc":1624229709},{"key":"androidx/lifecycle/LiveData$AlwaysActiveObserver.class","name":"androidx/lifecycle/LiveData$AlwaysActiveObserver.class","size":1024,"crc":2056042322},{"key":"androidx/lifecycle/LiveData$LifecycleBoundObserver.class","name":"androidx/lifecycle/LiveData$LifecycleBoundObserver.class","size":2882,"crc":499156433},{"key":"androidx/lifecycle/LiveData$ObserverWrapper.class","name":"androidx/lifecycle/LiveData$ObserverWrapper.class","size":1588,"crc":-1223836256},{"key":"androidx/lifecycle/LiveData.class","name":"androidx/lifecycle/LiveData.class","size":8921,"crc":899075882},{"key":"androidx/lifecycle/MutableLiveData.class","name":"androidx/lifecycle/MutableLiveData.class","size":946,"crc":-710747396},{"key":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","name":"META-INF/androidx.lifecycle_lifecycle-livedata-core.version","size":78,"crc":1772768774},{"key":"META-INF/lifecycle-livedata-core_release.kotlin_module","name":"META-INF/lifecycle-livedata-core_release.kotlin_module","size":24,"crc":1613429616}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ReOC_eL0KBoYMRO8dew50A== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ReOC_eL0KBoYMRO8dew50A== new file mode 100644 index 0000000..d81198f --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ReOC_eL0KBoYMRO8dew50A== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/collection/ArrayMap$1.class","name":"androidx/collection/ArrayMap$1.class","size":2268,"crc":2119754508},{"key":"androidx/collection/ArrayMap.class","name":"androidx/collection/ArrayMap.class","size":3510,"crc":-1266570172},{"key":"androidx/collection/ArraySet$1.class","name":"androidx/collection/ArraySet$1.class","size":2270,"crc":467012598},{"key":"androidx/collection/ArraySet.class","name":"androidx/collection/ArraySet.class","size":11832,"crc":284151195},{"key":"androidx/collection/CircularArray.class","name":"androidx/collection/CircularArray.class","size":4178,"crc":-646150562},{"key":"androidx/collection/CircularIntArray.class","name":"androidx/collection/CircularIntArray.class","size":2996,"crc":-1809371816},{"key":"androidx/collection/ContainerHelpers.class","name":"androidx/collection/ContainerHelpers.class","size":1711,"crc":1459012494},{"key":"androidx/collection/LongSparseArray.class","name":"androidx/collection/LongSparseArray.class","size":7060,"crc":-249107820},{"key":"androidx/collection/LruCache.class","name":"androidx/collection/LruCache.class","size":6572,"crc":-1323386586},{"key":"androidx/collection/MapCollections$ArrayIterator.class","name":"androidx/collection/MapCollections$ArrayIterator.class","size":1678,"crc":-1282301111},{"key":"androidx/collection/MapCollections$EntrySet.class","name":"androidx/collection/MapCollections$EntrySet.class","size":4584,"crc":-1095945835},{"key":"androidx/collection/MapCollections$KeySet.class","name":"androidx/collection/MapCollections$KeySet.class","size":3760,"crc":251514751},{"key":"androidx/collection/MapCollections$MapIterator.class","name":"androidx/collection/MapCollections$MapIterator.class","size":3542,"crc":1838648568},{"key":"androidx/collection/MapCollections$ValuesCollection.class","name":"androidx/collection/MapCollections$ValuesCollection.class","size":3783,"crc":25099165},{"key":"androidx/collection/MapCollections.class","name":"androidx/collection/MapCollections.class","size":5551,"crc":525100092},{"key":"androidx/collection/SimpleArrayMap.class","name":"androidx/collection/SimpleArrayMap.class","size":10631,"crc":41097503},{"key":"androidx/collection/SparseArrayCompat.class","name":"androidx/collection/SparseArrayCompat.class","size":7216,"crc":1400669519}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/TD8Hyvs8QAbZ5RKazFZJPA== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/TD8Hyvs8QAbZ5RKazFZJPA== new file mode 100644 index 0000000..7fb7281 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/TD8Hyvs8QAbZ5RKazFZJPA== @@ -0,0 +1 @@ +[{"key":"androidx/annotation/OptIn.class","name":"androidx/annotation/OptIn.class","size":1252,"crc":2044678581},{"key":"androidx/annotation/RequiresOptIn$Level.class","name":"androidx/annotation/RequiresOptIn$Level.class","size":1487,"crc":-1945499205},{"key":"androidx/annotation/RequiresOptIn.class","name":"androidx/annotation/RequiresOptIn.class","size":1119,"crc":1571113326},{"key":"androidx/annotation/experimental/Experimental$Level.class","name":"androidx/annotation/experimental/Experimental$Level.class","size":1570,"crc":-1659833789},{"key":"androidx/annotation/experimental/Experimental.class","name":"androidx/annotation/experimental/Experimental.class","size":1426,"crc":-1756277940},{"key":"androidx/annotation/experimental/UseExperimental.class","name":"androidx/annotation/experimental/UseExperimental.class","size":1521,"crc":-1036664509},{"key":"META-INF/androidx.annotation_annotation-experimental.version","name":"META-INF/androidx.annotation_annotation-experimental.version","size":6,"crc":1914453823},{"key":"META-INF/annotation-experimental_release.kotlin_module","name":"META-INF/annotation-experimental_release.kotlin_module","size":24,"crc":1197092421}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VC0R66DwliVXL5qljCx8DQ== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VC0R66DwliVXL5qljCx8DQ== new file mode 100644 index 0000000..af91a2c --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VC0R66DwliVXL5qljCx8DQ== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/AbstractSavedStateViewModelFactory$Companion.class","name":"androidx/lifecycle/AbstractSavedStateViewModelFactory$Companion.class","size":981,"crc":-856004234},{"key":"androidx/lifecycle/AbstractSavedStateViewModelFactory.class","name":"androidx/lifecycle/AbstractSavedStateViewModelFactory.class","size":6633,"crc":1887362684},{"key":"androidx/lifecycle/LegacySavedStateHandleController$OnRecreation.class","name":"androidx/lifecycle/LegacySavedStateHandleController$OnRecreation.class","size":3023,"crc":1352335096},{"key":"androidx/lifecycle/LegacySavedStateHandleController$tryToAddRecreator$1.class","name":"androidx/lifecycle/LegacySavedStateHandleController$tryToAddRecreator$1.class","size":2215,"crc":-1110321192},{"key":"androidx/lifecycle/LegacySavedStateHandleController.class","name":"androidx/lifecycle/LegacySavedStateHandleController.class","size":4229,"crc":2063421456},{"key":"androidx/lifecycle/SavedStateHandle$Companion.class","name":"androidx/lifecycle/SavedStateHandle$Companion.class","size":3880,"crc":-1386044437},{"key":"androidx/lifecycle/SavedStateHandle$SavingStateLiveData.class","name":"androidx/lifecycle/SavedStateHandle$SavingStateLiveData.class","size":2785,"crc":1239087543},{"key":"androidx/lifecycle/SavedStateHandle.class","name":"androidx/lifecycle/SavedStateHandle.class","size":13780,"crc":996357302},{"key":"androidx/lifecycle/SavedStateHandleAttacher.class","name":"androidx/lifecycle/SavedStateHandleAttacher.class","size":2410,"crc":-1934335314},{"key":"androidx/lifecycle/SavedStateHandleController.class","name":"androidx/lifecycle/SavedStateHandleController.class","size":3933,"crc":-1321318372},{"key":"androidx/lifecycle/SavedStateHandleSupport$DEFAULT_ARGS_KEY$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$DEFAULT_ARGS_KEY$1.class","size":1015,"crc":424264501},{"key":"androidx/lifecycle/SavedStateHandleSupport$SAVED_STATE_REGISTRY_OWNER_KEY$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$SAVED_STATE_REGISTRY_OWNER_KEY$1.class","size":1095,"crc":1523009794},{"key":"androidx/lifecycle/SavedStateHandleSupport$VIEW_MODEL_STORE_OWNER_KEY$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$VIEW_MODEL_STORE_OWNER_KEY$1.class","size":1077,"crc":-702670968},{"key":"androidx/lifecycle/SavedStateHandleSupport$savedStateHandlesVM$1$1.class","name":"androidx/lifecycle/SavedStateHandleSupport$savedStateHandlesVM$1$1.class","size":1899,"crc":1635032056},{"key":"androidx/lifecycle/SavedStateHandleSupport.class","name":"androidx/lifecycle/SavedStateHandleSupport.class","size":9836,"crc":1960161047},{"key":"androidx/lifecycle/SavedStateHandlesProvider$viewModel$2.class","name":"androidx/lifecycle/SavedStateHandlesProvider$viewModel$2.class","size":1569,"crc":-295120749},{"key":"androidx/lifecycle/SavedStateHandlesProvider.class","name":"androidx/lifecycle/SavedStateHandlesProvider.class","size":5980,"crc":1046935854},{"key":"androidx/lifecycle/SavedStateHandlesVM.class","name":"androidx/lifecycle/SavedStateHandlesVM.class","size":1202,"crc":1705824530},{"key":"androidx/lifecycle/SavedStateViewModelFactory.class","name":"androidx/lifecycle/SavedStateViewModelFactory.class","size":8807,"crc":-1676903485},{"key":"androidx/lifecycle/SavedStateViewModelFactoryKt.class","name":"androidx/lifecycle/SavedStateViewModelFactoryKt.class","size":5061,"crc":2029493689},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version","size":85,"crc":-1370551005},{"key":"META-INF/lifecycle-viewmodel-savedstate_release.kotlin_module","name":"META-INF/lifecycle-viewmodel-savedstate_release.kotlin_module","size":101,"crc":-1891795020}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VHfTNX0vYD6WhGD1R_y3jA== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VHfTNX0vYD6WhGD1R_y3jA== new file mode 100644 index 0000000..d01af01 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VHfTNX0vYD6WhGD1R_y3jA== @@ -0,0 +1 @@ +[{"key":"META-INF/androidx.tracing_tracing.version","name":"META-INF/androidx.tracing_tracing.version","size":6,"crc":-42031000},{"key":"androidx/tracing/TraceApi18Impl.class","name":"androidx/tracing/TraceApi18Impl.class","size":719,"crc":-735196291},{"key":"androidx/tracing/TraceApi29Impl.class","name":"androidx/tracing/TraceApi29Impl.class","size":975,"crc":-372479716},{"key":"androidx/tracing/Trace.class","name":"androidx/tracing/Trace.class","size":4760,"crc":1193004678}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Vlt0x2RoTTjbih8798POwQ== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Vlt0x2RoTTjbih8798POwQ== new file mode 100644 index 0000000..76c2e32 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Vlt0x2RoTTjbih8798POwQ== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/AndroidViewModel.class","name":"androidx/lifecycle/AndroidViewModel.class","size":1321,"crc":-467527626},{"key":"androidx/lifecycle/HasDefaultViewModelProviderFactory.class","name":"androidx/lifecycle/HasDefaultViewModelProviderFactory.class","size":1425,"crc":763611457},{"key":"androidx/lifecycle/ViewModelLazy$1.class","name":"androidx/lifecycle/ViewModelLazy$1.class","size":1590,"crc":386025531},{"key":"androidx/lifecycle/ViewModelLazy.class","name":"androidx/lifecycle/ViewModelLazy.class","size":4709,"crc":-358808547},{"key":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion$ApplicationKeyImpl.class","name":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion$ApplicationKeyImpl.class","size":1424,"crc":2030250639},{"key":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion.class","name":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory$Companion.class","size":3267,"crc":1860571129},{"key":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory.class","name":"androidx/lifecycle/ViewModelProvider$AndroidViewModelFactory.class","size":6463,"crc":1708545970},{"key":"androidx/lifecycle/ViewModelProvider$Factory$Companion.class","name":"androidx/lifecycle/ViewModelProvider$Factory$Companion.class","size":1899,"crc":-1841663057},{"key":"androidx/lifecycle/ViewModelProvider$Factory.class","name":"androidx/lifecycle/ViewModelProvider$Factory.class","size":2537,"crc":1242704570},{"key":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion$ViewModelKeyImpl.class","name":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion$ViewModelKeyImpl.class","size":1361,"crc":1951401922},{"key":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion.class","name":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory$Companion.class","size":2168,"crc":590277996},{"key":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory.class","name":"androidx/lifecycle/ViewModelProvider$NewInstanceFactory.class","size":4099,"crc":482119706},{"key":"androidx/lifecycle/ViewModelProvider$OnRequeryFactory.class","name":"androidx/lifecycle/ViewModelProvider$OnRequeryFactory.class","size":1329,"crc":-648193253},{"key":"androidx/lifecycle/ViewModelProvider.class","name":"androidx/lifecycle/ViewModelProvider.class","size":6832,"crc":1554422119},{"key":"androidx/lifecycle/ViewModelProviderGetKt.class","name":"androidx/lifecycle/ViewModelProviderGetKt.class","size":2176,"crc":167055919},{"key":"androidx/lifecycle/ViewModelStore.class","name":"androidx/lifecycle/ViewModelStore.class","size":2811,"crc":-657158583},{"key":"androidx/lifecycle/ViewModelStoreOwner.class","name":"androidx/lifecycle/ViewModelStoreOwner.class","size":657,"crc":1248510734},{"key":"androidx/lifecycle/ViewTreeViewModelKt.class","name":"androidx/lifecycle/ViewTreeViewModelKt.class","size":1209,"crc":-29993865},{"key":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$1.class","name":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$1.class","size":1814,"crc":1140420585},{"key":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$2.class","name":"androidx/lifecycle/ViewTreeViewModelStoreOwner$findViewTreeViewModelStoreOwner$2.class","size":2012,"crc":-1765475703},{"key":"androidx/lifecycle/ViewTreeViewModelStoreOwner.class","name":"androidx/lifecycle/ViewTreeViewModelStoreOwner.class","size":2495,"crc":396898371},{"key":"androidx/lifecycle/viewmodel/CreationExtras$Empty.class","name":"androidx/lifecycle/viewmodel/CreationExtras$Empty.class","size":1504,"crc":-1983505756},{"key":"androidx/lifecycle/viewmodel/CreationExtras$Key.class","name":"androidx/lifecycle/viewmodel/CreationExtras$Key.class","size":591,"crc":-1594625217},{"key":"androidx/lifecycle/viewmodel/CreationExtras.class","name":"androidx/lifecycle/viewmodel/CreationExtras.class","size":1730,"crc":1974911712},{"key":"androidx/lifecycle/viewmodel/InitializerViewModelFactory.class","name":"androidx/lifecycle/viewmodel/InitializerViewModelFactory.class","size":4210,"crc":26476270},{"key":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryBuilder.class","name":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryBuilder.class","size":3927,"crc":-1779341375},{"key":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryKt.class","name":"androidx/lifecycle/viewmodel/InitializerViewModelFactoryKt.class","size":2730,"crc":1586886417},{"key":"androidx/lifecycle/viewmodel/MutableCreationExtras.class","name":"androidx/lifecycle/viewmodel/MutableCreationExtras.class","size":2582,"crc":2065569181},{"key":"androidx/lifecycle/viewmodel/ViewModelFactoryDsl.class","name":"androidx/lifecycle/viewmodel/ViewModelFactoryDsl.class","size":632,"crc":-1262435458},{"key":"androidx/lifecycle/viewmodel/ViewModelInitializer.class","name":"androidx/lifecycle/viewmodel/ViewModelInitializer.class","size":2135,"crc":1368863341},{"key":"androidx/lifecycle/ViewModel.class","name":"androidx/lifecycle/ViewModel.class","size":3594,"crc":1113704191},{"key":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","name":"META-INF/androidx.lifecycle_lifecycle-viewmodel.version","size":74,"crc":-1068237017},{"key":"META-INF/lifecycle-viewmodel_release.kotlin_module","name":"META-INF/lifecycle-viewmodel_release.kotlin_module","size":183,"crc":178230502}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/X4EuT1Dh_2KTNs2vjJ7eLw== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/X4EuT1Dh_2KTNs2vjJ7eLw== new file mode 100644 index 0000000..e5a84ae --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/X4EuT1Dh_2KTNs2vjJ7eLw== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$1.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$1.class","size":276,"crc":-940893964},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$AtomicHelper.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$AtomicHelper.class","size":2208,"crc":1918496937},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Cancellation.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Cancellation.class","size":1041,"crc":886782754},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Failure$1.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Failure$1.class","size":737,"crc":-471209672},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Failure.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Failure.class","size":951,"crc":-1760206701},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Listener.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Listener.class","size":873,"crc":402316535},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$SafeAtomicHelper.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$SafeAtomicHelper.class","size":5564,"crc":-1818562924},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$SetFuture.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$SetFuture.class","size":2033,"crc":286080067},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$SynchronizedHelper.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$SynchronizedHelper.class","size":3421,"crc":-1182687467},{"key":"androidx/concurrent/futures/AbstractResolvableFuture$Waiter.class","name":"androidx/concurrent/futures/AbstractResolvableFuture$Waiter.class","size":1723,"crc":226188834},{"key":"androidx/concurrent/futures/AbstractResolvableFuture.class","name":"androidx/concurrent/futures/AbstractResolvableFuture.class","size":18591,"crc":-370636094},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$Completer.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$Completer.class","size":3784,"crc":2035088105},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$FutureGarbageCollectedException.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$FutureGarbageCollectedException.class","size":706,"crc":-1609752935},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$Resolver.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$Resolver.class","size":831,"crc":142665041},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture$1.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture$1.class","size":1829,"crc":555402729},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter$SafeFuture.class","size":3934,"crc":1212043617},{"key":"androidx/concurrent/futures/CallbackToFutureAdapter.class","name":"androidx/concurrent/futures/CallbackToFutureAdapter.class","size":2370,"crc":1014408157},{"key":"androidx/concurrent/futures/DirectExecutor.class","name":"androidx/concurrent/futures/DirectExecutor.class","size":1661,"crc":-2104738324},{"key":"androidx/concurrent/futures/ResolvableFuture.class","name":"androidx/concurrent/futures/ResolvableFuture.class","size":1867,"crc":-254057077}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ZVPie75okSJeJpiYw5l0Tw== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ZVPie75okSJeJpiYw5l0Tw== new file mode 100644 index 0000000..1ee8c1c --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ZVPie75okSJeJpiYw5l0Tw== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/lifecycle/ClassesInfoCache$CallbackInfo.class","name":"androidx/lifecycle/ClassesInfoCache$CallbackInfo.class","size":3345,"crc":-313150915},{"key":"androidx/lifecycle/ClassesInfoCache$MethodReference.class","name":"androidx/lifecycle/ClassesInfoCache$MethodReference.class","size":2284,"crc":508395143},{"key":"androidx/lifecycle/ClassesInfoCache.class","name":"androidx/lifecycle/ClassesInfoCache.class","size":7417,"crc":1890982937},{"key":"androidx/lifecycle/GenericLifecycleObserver.class","name":"androidx/lifecycle/GenericLifecycleObserver.class","size":557,"crc":1876517087},{"key":"androidx/lifecycle/OnLifecycleEvent.class","name":"androidx/lifecycle/OnLifecycleEvent.class","size":614,"crc":-662081732},{"key":"androidx/lifecycle/ReflectiveGenericLifecycleObserver.class","name":"androidx/lifecycle/ReflectiveGenericLifecycleObserver.class","size":1628,"crc":-661784695},{"key":"META-INF/lifecycle-common.kotlin_module","name":"META-INF/lifecycle-common.kotlin_module","size":98,"crc":-344145580},{"key":"androidx/lifecycle/CompositeGeneratedAdaptersObserver.class","name":"androidx/lifecycle/CompositeGeneratedAdaptersObserver.class","size":2192,"crc":-588589195},{"key":"androidx/lifecycle/DefaultLifecycleObserver.class","name":"androidx/lifecycle/DefaultLifecycleObserver.class","size":1561,"crc":1138428020},{"key":"androidx/lifecycle/DefaultLifecycleObserverAdapter$WhenMappings.class","name":"androidx/lifecycle/DefaultLifecycleObserverAdapter$WhenMappings.class","size":1129,"crc":-1393967104},{"key":"androidx/lifecycle/DefaultLifecycleObserverAdapter.class","name":"androidx/lifecycle/DefaultLifecycleObserverAdapter.class","size":2529,"crc":417874049},{"key":"androidx/lifecycle/DispatchQueue.class","name":"androidx/lifecycle/DispatchQueue.class","size":4226,"crc":-2053961371},{"key":"androidx/lifecycle/GeneratedAdapter.class","name":"androidx/lifecycle/GeneratedAdapter.class","size":1300,"crc":24417411},{"key":"androidx/lifecycle/Lifecycle$Event$Companion$WhenMappings.class","name":"androidx/lifecycle/Lifecycle$Event$Companion$WhenMappings.class","size":1073,"crc":-1453898351},{"key":"androidx/lifecycle/Lifecycle$Event$Companion.class","name":"androidx/lifecycle/Lifecycle$Event$Companion.class","size":2619,"crc":1493326216},{"key":"androidx/lifecycle/Lifecycle$Event$WhenMappings.class","name":"androidx/lifecycle/Lifecycle$Event$WhenMappings.class","size":1035,"crc":-1337925050},{"key":"androidx/lifecycle/Lifecycle$Event.class","name":"androidx/lifecycle/Lifecycle$Event.class","size":3618,"crc":-957783764},{"key":"androidx/lifecycle/Lifecycle$State.class","name":"androidx/lifecycle/Lifecycle$State.class","size":2085,"crc":1312149321},{"key":"androidx/lifecycle/Lifecycle.class","name":"androidx/lifecycle/Lifecycle.class","size":2354,"crc":-1628172174},{"key":"androidx/lifecycle/LifecycleController.class","name":"androidx/lifecycle/LifecycleController.class","size":4630,"crc":1874764903},{"key":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenCreated$1.class","name":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenCreated$1.class","size":4114,"crc":-636169170},{"key":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenResumed$1.class","name":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenResumed$1.class","size":4114,"crc":-72888868},{"key":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenStarted$1.class","name":"androidx/lifecycle/LifecycleCoroutineScope$launchWhenStarted$1.class","size":4114,"crc":-832102748},{"key":"androidx/lifecycle/LifecycleCoroutineScope.class","name":"androidx/lifecycle/LifecycleCoroutineScope.class","size":3541,"crc":164913769},{"key":"androidx/lifecycle/LifecycleCoroutineScopeImpl$register$1.class","name":"androidx/lifecycle/LifecycleCoroutineScopeImpl$register$1.class","size":4156,"crc":2049593091},{"key":"androidx/lifecycle/LifecycleCoroutineScopeImpl.class","name":"androidx/lifecycle/LifecycleCoroutineScopeImpl.class","size":3622,"crc":1147053390},{"key":"androidx/lifecycle/LifecycleEventObserver.class","name":"androidx/lifecycle/LifecycleEventObserver.class","size":968,"crc":-1471782186},{"key":"androidx/lifecycle/LifecycleKt.class","name":"androidx/lifecycle/LifecycleKt.class","size":2164,"crc":2103077277},{"key":"androidx/lifecycle/LifecycleObserver.class","name":"androidx/lifecycle/LifecycleObserver.class","size":395,"crc":-329931382},{"key":"androidx/lifecycle/LifecycleOwner.class","name":"androidx/lifecycle/LifecycleOwner.class","size":611,"crc":-1363301969},{"key":"androidx/lifecycle/LifecycleOwnerKt.class","name":"androidx/lifecycle/LifecycleOwnerKt.class","size":1208,"crc":-317348439},{"key":"androidx/lifecycle/Lifecycling.class","name":"androidx/lifecycle/Lifecycling.class","size":9193,"crc":1781662277},{"key":"androidx/lifecycle/MethodCallsLogger.class","name":"androidx/lifecycle/MethodCallsLogger.class","size":1991,"crc":1355047278},{"key":"androidx/lifecycle/PausingDispatcher.class","name":"androidx/lifecycle/PausingDispatcher.class","size":2016,"crc":462084964},{"key":"androidx/lifecycle/PausingDispatcherKt$whenStateAtLeast$2.class","name":"androidx/lifecycle/PausingDispatcherKt$whenStateAtLeast$2.class","size":5702,"crc":-1188716541},{"key":"androidx/lifecycle/PausingDispatcherKt.class","name":"androidx/lifecycle/PausingDispatcherKt.class","size":6028,"crc":-1350334020},{"key":"androidx/lifecycle/SingleGeneratedAdapterObserver.class","name":"androidx/lifecycle/SingleGeneratedAdapterObserver.class","size":1792,"crc":1222686409}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/_YS56lL8JITAr8WnkavucA== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/_YS56lL8JITAr8WnkavucA== new file mode 100644 index 0000000..ba06094 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/_YS56lL8JITAr8WnkavucA== @@ -0,0 +1 @@ +[{"key":"androidx/core/app/ComponentActivity$ExtraData.class","name":"androidx/core/app/ComponentActivity$ExtraData.class","size":1065,"crc":-1093318225},{"key":"androidx/core/app/ComponentActivity.class","name":"androidx/core/app/ComponentActivity.class","size":6563,"crc":852165625},{"key":"androidx/core/app/MultiWindowModeChangedInfo.class","name":"androidx/core/app/MultiWindowModeChangedInfo.class","size":2068,"crc":1341938654},{"key":"androidx/core/app/OnMultiWindowModeChangedProvider.class","name":"androidx/core/app/OnMultiWindowModeChangedProvider.class","size":955,"crc":44087049},{"key":"androidx/core/app/OnNewIntentProvider.class","name":"androidx/core/app/OnNewIntentProvider.class","size":846,"crc":-1758105483},{"key":"androidx/core/app/OnPictureInPictureModeChangedProvider.class","name":"androidx/core/app/OnPictureInPictureModeChangedProvider.class","size":990,"crc":-1938094298},{"key":"androidx/core/app/OnUserLeaveHintProvider.class","name":"androidx/core/app/OnUserLeaveHintProvider.class","size":713,"crc":16295445},{"key":"androidx/core/app/PictureInPictureModeChangedInfo.class","name":"androidx/core/app/PictureInPictureModeChangedInfo.class","size":2098,"crc":3524212},{"key":"androidx/core/content/OnConfigurationChangedProvider.class","name":"androidx/core/content/OnConfigurationChangedProvider.class","size":931,"crc":353118657},{"key":"androidx/core/content/OnTrimMemoryProvider.class","name":"androidx/core/content/OnTrimMemoryProvider.class","size":827,"crc":1533105599},{"key":"androidx/core/os/BuildCompat$Api30Impl.class","name":"androidx/core/os/BuildCompat$Api30Impl.class","size":1073,"crc":1857026514},{"key":"androidx/core/os/BuildCompat$PrereleaseSdkCheck.class","name":"androidx/core/os/BuildCompat$PrereleaseSdkCheck.class","size":781,"crc":-1758429442},{"key":"androidx/core/os/BuildCompat.class","name":"androidx/core/os/BuildCompat.class","size":7579,"crc":1955686922},{"key":"androidx/core/util/Consumer.class","name":"androidx/core/util/Consumer.class","size":559,"crc":-1040353088},{"key":"androidx/core/util/Function.class","name":"androidx/core/util/Function.class","size":601,"crc":-1585725341},{"key":"androidx/core/util/Pools$Pool.class","name":"androidx/core/util/Pools$Pool.class","size":886,"crc":1271013518},{"key":"androidx/core/util/Pools$SimplePool.class","name":"androidx/core/util/Pools$SimplePool.class","size":3066,"crc":887087881},{"key":"androidx/core/util/Pools$SynchronizedPool.class","name":"androidx/core/util/Pools$SynchronizedPool.class","size":2341,"crc":-136795928},{"key":"androidx/core/util/Pools.class","name":"androidx/core/util/Pools.class","size":710,"crc":1614321609},{"key":"androidx/core/util/Supplier.class","name":"androidx/core/util/Supplier.class","size":525,"crc":1418066445},{"key":"android/support/v4/app/INotificationSideChannel$Default.class","name":"android/support/v4/app/INotificationSideChannel$Default.class","size":1135,"crc":-395248935},{"key":"android/support/v4/app/INotificationSideChannel$Stub$Proxy.class","name":"android/support/v4/app/INotificationSideChannel$Stub$Proxy.class","size":2463,"crc":-839898487},{"key":"android/support/v4/app/INotificationSideChannel$Stub.class","name":"android/support/v4/app/INotificationSideChannel$Stub.class","size":2803,"crc":-1214087703},{"key":"android/support/v4/app/INotificationSideChannel$_Parcel.class","name":"android/support/v4/app/INotificationSideChannel$_Parcel.class","size":1753,"crc":-1278251948},{"key":"android/support/v4/app/INotificationSideChannel.class","name":"android/support/v4/app/INotificationSideChannel.class","size":1205,"crc":1388408453},{"key":"android/support/v4/app/RemoteActionCompatParcelizer.class","name":"android/support/v4/app/RemoteActionCompatParcelizer.class","size":1104,"crc":-587702565},{"key":"android/support/v4/graphics/drawable/IconCompatParcelizer.class","name":"android/support/v4/graphics/drawable/IconCompatParcelizer.class","size":1132,"crc":1368227130},{"key":"android/support/v4/os/IResultReceiver$Default.class","name":"android/support/v4/os/IResultReceiver$Default.class","size":727,"crc":-1405212393},{"key":"android/support/v4/os/IResultReceiver$Stub$Proxy.class","name":"android/support/v4/os/IResultReceiver$Stub$Proxy.class","size":1698,"crc":-1328091256},{"key":"android/support/v4/os/IResultReceiver$Stub.class","name":"android/support/v4/os/IResultReceiver$Stub.class","size":2268,"crc":649748008},{"key":"android/support/v4/os/IResultReceiver$_Parcel.class","name":"android/support/v4/os/IResultReceiver$_Parcel.class","size":1714,"crc":1885126233},{"key":"android/support/v4/os/IResultReceiver.class","name":"android/support/v4/os/IResultReceiver.class","size":977,"crc":305690791},{"key":"android/support/v4/os/IResultReceiver2$Default.class","name":"android/support/v4/os/IResultReceiver2$Default.class","size":731,"crc":-1958681237},{"key":"android/support/v4/os/IResultReceiver2$Stub$Proxy.class","name":"android/support/v4/os/IResultReceiver2$Stub$Proxy.class","size":1704,"crc":876312633},{"key":"android/support/v4/os/IResultReceiver2$Stub.class","name":"android/support/v4/os/IResultReceiver2$Stub.class","size":2275,"crc":124292307},{"key":"android/support/v4/os/IResultReceiver2$_Parcel.class","name":"android/support/v4/os/IResultReceiver2$_Parcel.class","size":1718,"crc":-149676984},{"key":"android/support/v4/os/IResultReceiver2.class","name":"android/support/v4/os/IResultReceiver2.class","size":983,"crc":890230104},{"key":"android/support/v4/os/ResultReceiver$1.class","name":"android/support/v4/os/ResultReceiver$1.class","size":1177,"crc":1291896286},{"key":"android/support/v4/os/ResultReceiver$MyResultReceiver.class","name":"android/support/v4/os/ResultReceiver$MyResultReceiver.class","size":1181,"crc":-989424411},{"key":"android/support/v4/os/ResultReceiver$MyRunnable.class","name":"android/support/v4/os/ResultReceiver$MyRunnable.class","size":886,"crc":-779159650},{"key":"android/support/v4/os/ResultReceiver.class","name":"android/support/v4/os/ResultReceiver.class","size":2978,"crc":2067024131},{"key":"androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.class","name":"androidx/core/accessibilityservice/AccessibilityServiceInfoCompat.class","size":3090,"crc":-12636627},{"key":"androidx/core/app/ActivityCompat$1.class","name":"androidx/core/app/ActivityCompat$1.class","size":1622,"crc":1225455941},{"key":"androidx/core/app/ActivityCompat$Api21Impl.class","name":"androidx/core/app/ActivityCompat$Api21Impl.class","size":1385,"crc":-1567484227},{"key":"androidx/core/app/ActivityCompat$Api22Impl.class","name":"androidx/core/app/ActivityCompat$Api22Impl.class","size":765,"crc":-783118367},{"key":"androidx/core/app/ActivityCompat$Api23Impl.class","name":"androidx/core/app/ActivityCompat$Api23Impl.class","size":1442,"crc":-2095613175},{"key":"androidx/core/app/ActivityCompat$Api28Impl.class","name":"androidx/core/app/ActivityCompat$Api28Impl.class","size":867,"crc":-1216546312},{"key":"androidx/core/app/ActivityCompat$Api30Impl.class","name":"androidx/core/app/ActivityCompat$Api30Impl.class","size":1549,"crc":1350452771},{"key":"androidx/core/app/ActivityCompat$Api31Impl.class","name":"androidx/core/app/ActivityCompat$Api31Impl.class","size":2075,"crc":1497479999},{"key":"androidx/core/app/ActivityCompat$Api32Impl.class","name":"androidx/core/app/ActivityCompat$Api32Impl.class","size":839,"crc":9142853},{"key":"androidx/core/app/ActivityCompat$OnRequestPermissionsResultCallback.class","name":"androidx/core/app/ActivityCompat$OnRequestPermissionsResultCallback.class","size":425,"crc":1567962088},{"key":"androidx/core/app/ActivityCompat$PermissionCompatDelegate.class","name":"androidx/core/app/ActivityCompat$PermissionCompatDelegate.class","size":621,"crc":-671588751},{"key":"androidx/core/app/ActivityCompat$RequestPermissionsRequestCodeValidator.class","name":"androidx/core/app/ActivityCompat$RequestPermissionsRequestCodeValidator.class","size":584,"crc":780710089},{"key":"androidx/core/app/ActivityCompat$SharedElementCallback21Impl.class","name":"androidx/core/app/ActivityCompat$SharedElementCallback21Impl.class","size":4428,"crc":-1614036159},{"key":"androidx/core/app/ActivityCompat.class","name":"androidx/core/app/ActivityCompat.class","size":10691,"crc":-1278311694},{"key":"androidx/core/app/ActivityManagerCompat.class","name":"androidx/core/app/ActivityManagerCompat.class","size":620,"crc":-1018902847},{"key":"androidx/core/app/ActivityOptionsCompat$ActivityOptionsCompatImpl.class","name":"androidx/core/app/ActivityOptionsCompat$ActivityOptionsCompatImpl.class","size":2641,"crc":-1744141227},{"key":"androidx/core/app/ActivityOptionsCompat$Api21Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api21Impl.class","size":1582,"crc":-1814207042},{"key":"androidx/core/app/ActivityOptionsCompat$Api23Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api23Impl.class","size":1301,"crc":-655345617},{"key":"androidx/core/app/ActivityOptionsCompat$Api24Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api24Impl.class","size":1141,"crc":1739119961},{"key":"androidx/core/app/ActivityOptionsCompat$Api34Impl.class","name":"androidx/core/app/ActivityOptionsCompat$Api34Impl.class","size":890,"crc":-378556508},{"key":"androidx/core/app/ActivityOptionsCompat.class","name":"androidx/core/app/ActivityOptionsCompat.class","size":5510,"crc":1366438428},{"key":"androidx/core/app/ActivityRecreator$1.class","name":"androidx/core/app/ActivityRecreator$1.class","size":964,"crc":-1712743558},{"key":"androidx/core/app/ActivityRecreator$2.class","name":"androidx/core/app/ActivityRecreator$2.class","size":1176,"crc":1115639159},{"key":"androidx/core/app/ActivityRecreator$3.class","name":"androidx/core/app/ActivityRecreator$3.class","size":1787,"crc":-1288801421},{"key":"androidx/core/app/ActivityRecreator$LifecycleCheckCallbacks.class","name":"androidx/core/app/ActivityRecreator$LifecycleCheckCallbacks.class","size":2055,"crc":-1497301040},{"key":"androidx/core/app/ActivityRecreator.class","name":"androidx/core/app/ActivityRecreator.class","size":6249,"crc":1351327030},{"key":"androidx/core/app/AlarmManagerCompat$Api21Impl.class","name":"androidx/core/app/AlarmManagerCompat$Api21Impl.class","size":1309,"crc":474757778},{"key":"androidx/core/app/AlarmManagerCompat$Api23Impl.class","name":"androidx/core/app/AlarmManagerCompat$Api23Impl.class","size":1094,"crc":-2051566186},{"key":"androidx/core/app/AlarmManagerCompat$Api31Impl.class","name":"androidx/core/app/AlarmManagerCompat$Api31Impl.class","size":776,"crc":-349117402},{"key":"androidx/core/app/AlarmManagerCompat.class","name":"androidx/core/app/AlarmManagerCompat.class","size":2388,"crc":1546920433},{"key":"androidx/core/app/AppComponentFactory.class","name":"androidx/core/app/AppComponentFactory.class","size":4319,"crc":941336973},{"key":"androidx/core/app/AppLaunchChecker.class","name":"androidx/core/app/AppLaunchChecker.class","size":2271,"crc":-405740589},{"key":"androidx/core/app/AppLocalesStorageHelper.class","name":"androidx/core/app/AppLocalesStorageHelper.class","size":5093,"crc":1815682277},{"key":"androidx/core/app/AppOpsManagerCompat$Api23Impl.class","name":"androidx/core/app/AppOpsManagerCompat$Api23Impl.class","size":1679,"crc":-39919454},{"key":"androidx/core/app/AppOpsManagerCompat$Api29Impl.class","name":"androidx/core/app/AppOpsManagerCompat$Api29Impl.class","size":1581,"crc":1260595091},{"key":"androidx/core/app/AppOpsManagerCompat.class","name":"androidx/core/app/AppOpsManagerCompat.class","size":3146,"crc":-1004300355},{"key":"androidx/core/app/BundleCompat.class","name":"androidx/core/app/BundleCompat.class","size":1099,"crc":-1979466448},{"key":"androidx/core/app/CoreComponentFactory$CompatWrapped.class","name":"androidx/core/app/CoreComponentFactory$CompatWrapped.class","size":541,"crc":-1240361783},{"key":"androidx/core/app/CoreComponentFactory.class","name":"androidx/core/app/CoreComponentFactory.class","size":2957,"crc":-1634658571},{"key":"androidx/core/app/DialogCompat$Api28Impl.class","name":"androidx/core/app/DialogCompat$Api28Impl.class","size":849,"crc":-1446145350},{"key":"androidx/core/app/DialogCompat.class","name":"androidx/core/app/DialogCompat.class","size":1185,"crc":1507368120},{"key":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl$1.class","name":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl$1.class","size":1859,"crc":-1020155968},{"key":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl.class","name":"androidx/core/app/FrameMetricsAggregator$FrameMetricsApi24Impl.class","size":4121,"crc":-1535527374},{"key":"androidx/core/app/FrameMetricsAggregator$FrameMetricsBaseImpl.class","name":"androidx/core/app/FrameMetricsAggregator$FrameMetricsBaseImpl.class","size":981,"crc":-800692407},{"key":"androidx/core/app/FrameMetricsAggregator$MetricType.class","name":"androidx/core/app/FrameMetricsAggregator$MetricType.class","size":668,"crc":-1630363674},{"key":"androidx/core/app/FrameMetricsAggregator.class","name":"androidx/core/app/FrameMetricsAggregator.class","size":2570,"crc":-1426831642},{"key":"androidx/core/app/GrammaticalInflectionManagerCompat$Api34Impl.class","name":"androidx/core/app/GrammaticalInflectionManagerCompat$Api34Impl.class","size":1348,"crc":1546297438},{"key":"androidx/core/app/GrammaticalInflectionManagerCompat$GrammaticalGender.class","name":"androidx/core/app/GrammaticalInflectionManagerCompat$GrammaticalGender.class","size":705,"crc":-768123921},{"key":"androidx/core/app/GrammaticalInflectionManagerCompat.class","name":"androidx/core/app/GrammaticalInflectionManagerCompat.class","size":1739,"crc":1361943853},{"key":"androidx/core/app/JobIntentService$CommandProcessor.class","name":"androidx/core/app/JobIntentService$CommandProcessor.class","size":1825,"crc":44568175},{"key":"androidx/core/app/JobIntentService$CompatJobEngine.class","name":"androidx/core/app/JobIntentService$CompatJobEngine.class","size":448,"crc":1210592104},{"key":"androidx/core/app/JobIntentService$CompatWorkEnqueuer.class","name":"androidx/core/app/JobIntentService$CompatWorkEnqueuer.class","size":2923,"crc":373299418},{"key":"androidx/core/app/JobIntentService$CompatWorkItem.class","name":"androidx/core/app/JobIntentService$CompatWorkItem.class","size":1021,"crc":-287917668},{"key":"androidx/core/app/JobIntentService$GenericWorkItem.class","name":"androidx/core/app/JobIntentService$GenericWorkItem.class","size":310,"crc":683365043},{"key":"androidx/core/app/JobIntentService$JobServiceEngineImpl$WrapperWorkItem.class","name":"androidx/core/app/JobIntentService$JobServiceEngineImpl$WrapperWorkItem.class","size":1478,"crc":1773720750},{"key":"androidx/core/app/JobIntentService$JobServiceEngineImpl.class","name":"androidx/core/app/JobIntentService$JobServiceEngineImpl.class","size":2592,"crc":871330440},{"key":"androidx/core/app/JobIntentService$JobWorkEnqueuer.class","name":"androidx/core/app/JobIntentService$JobWorkEnqueuer.class","size":1852,"crc":-1663926146},{"key":"androidx/core/app/JobIntentService$WorkEnqueuer.class","name":"androidx/core/app/JobIntentService$WorkEnqueuer.class","size":1443,"crc":-862902624},{"key":"androidx/core/app/JobIntentService.class","name":"androidx/core/app/JobIntentService.class","size":7130,"crc":-1781495434},{"key":"androidx/core/app/LocaleManagerCompat$Api21Impl.class","name":"androidx/core/app/LocaleManagerCompat$Api21Impl.class","size":771,"crc":-1095698877},{"key":"androidx/core/app/LocaleManagerCompat$Api24Impl.class","name":"androidx/core/app/LocaleManagerCompat$Api24Impl.class","size":1056,"crc":-1768607198},{"key":"androidx/core/app/LocaleManagerCompat$Api33Impl.class","name":"androidx/core/app/LocaleManagerCompat$Api33Impl.class","size":1061,"crc":-1037654519},{"key":"androidx/core/app/LocaleManagerCompat.class","name":"androidx/core/app/LocaleManagerCompat.class","size":3026,"crc":-1458408911},{"key":"androidx/core/app/NavUtils.class","name":"androidx/core/app/NavUtils.class","size":5548,"crc":461358904},{"key":"androidx/core/app/NotificationBuilderWithBuilderAccessor.class","name":"androidx/core/app/NotificationBuilderWithBuilderAccessor.class","size":597,"crc":-1985100633},{"key":"androidx/core/app/NotificationChannelCompat$Api26Impl.class","name":"androidx/core/app/NotificationChannelCompat$Api26Impl.class","size":4350,"crc":1487899892},{"key":"androidx/core/app/NotificationChannelCompat$Api29Impl.class","name":"androidx/core/app/NotificationChannelCompat$Api29Impl.class","size":815,"crc":1721686020},{"key":"androidx/core/app/NotificationChannelCompat$Api30Impl.class","name":"androidx/core/app/NotificationChannelCompat$Api30Impl.class","size":1417,"crc":-1496769729},{"key":"androidx/core/app/NotificationChannelCompat$Builder.class","name":"androidx/core/app/NotificationChannelCompat$Builder.class","size":3517,"crc":-1458413883},{"key":"androidx/core/app/NotificationChannelCompat.class","name":"androidx/core/app/NotificationChannelCompat.class","size":6989,"crc":-268500644},{"key":"androidx/core/app/NotificationChannelGroupCompat$Api26Impl.class","name":"androidx/core/app/NotificationChannelGroupCompat$Api26Impl.class","size":1934,"crc":-347056883},{"key":"androidx/core/app/NotificationChannelGroupCompat$Api28Impl.class","name":"androidx/core/app/NotificationChannelGroupCompat$Api28Impl.class","size":1275,"crc":1629656438},{"key":"androidx/core/app/NotificationChannelGroupCompat$Builder.class","name":"androidx/core/app/NotificationChannelGroupCompat$Builder.class","size":1411,"crc":237511248},{"key":"androidx/core/app/NotificationChannelGroupCompat.class","name":"androidx/core/app/NotificationChannelGroupCompat.class","size":4884,"crc":-381039034},{"key":"androidx/core/app/NotificationCompat$1.class","name":"androidx/core/app/NotificationCompat$1.class","size":238,"crc":-598238096},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api20Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api20Impl.class","size":1215,"crc":-1553811797},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api23Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api23Impl.class","size":1043,"crc":-105329252},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api24Impl.class","size":998,"crc":-1351806817},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api28Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api28Impl.class","size":991,"crc":1971764136},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api29Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api29Impl.class","size":986,"crc":2089502195},{"key":"androidx/core/app/NotificationCompat$Action$Builder$Api31Impl.class","name":"androidx/core/app/NotificationCompat$Action$Builder$Api31Impl.class","size":998,"crc":-930431610},{"key":"androidx/core/app/NotificationCompat$Action$Builder.class","name":"androidx/core/app/NotificationCompat$Action$Builder.class","size":9182,"crc":1199783656},{"key":"androidx/core/app/NotificationCompat$Action$Extender.class","name":"androidx/core/app/NotificationCompat$Action$Extender.class","size":630,"crc":258657630},{"key":"androidx/core/app/NotificationCompat$Action$SemanticAction.class","name":"androidx/core/app/NotificationCompat$Action$SemanticAction.class","size":492,"crc":271952193},{"key":"androidx/core/app/NotificationCompat$Action$WearableExtender.class","name":"androidx/core/app/NotificationCompat$Action$WearableExtender.class","size":5051,"crc":1991372877},{"key":"androidx/core/app/NotificationCompat$Action.class","name":"androidx/core/app/NotificationCompat$Action.class","size":5711,"crc":-860977567},{"key":"androidx/core/app/NotificationCompat$Api20Impl.class","name":"androidx/core/app/NotificationCompat$Api20Impl.class","size":2205,"crc":1623103492},{"key":"androidx/core/app/NotificationCompat$Api23Impl.class","name":"androidx/core/app/NotificationCompat$Api23Impl.class","size":881,"crc":-105154841},{"key":"androidx/core/app/NotificationCompat$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Api24Impl.class","size":836,"crc":2087362200},{"key":"androidx/core/app/NotificationCompat$Api26Impl.class","name":"androidx/core/app/NotificationCompat$Api26Impl.class","size":1466,"crc":-1784093548},{"key":"androidx/core/app/NotificationCompat$Api28Impl.class","name":"androidx/core/app/NotificationCompat$Api28Impl.class","size":829,"crc":-2064480395},{"key":"androidx/core/app/NotificationCompat$Api29Impl.class","name":"androidx/core/app/NotificationCompat$Api29Impl.class","size":1720,"crc":-810611577},{"key":"androidx/core/app/NotificationCompat$Api31Impl.class","name":"androidx/core/app/NotificationCompat$Api31Impl.class","size":836,"crc":1371883499},{"key":"androidx/core/app/NotificationCompat$BadgeIconType.class","name":"androidx/core/app/NotificationCompat$BadgeIconType.class","size":662,"crc":-1600074890},{"key":"androidx/core/app/NotificationCompat$BigPictureStyle$Api23Impl.class","name":"androidx/core/app/NotificationCompat$BigPictureStyle$Api23Impl.class","size":1111,"crc":-545779498},{"key":"androidx/core/app/NotificationCompat$BigPictureStyle$Api31Impl.class","name":"androidx/core/app/NotificationCompat$BigPictureStyle$Api31Impl.class","size":1668,"crc":-1409543419},{"key":"androidx/core/app/NotificationCompat$BigPictureStyle.class","name":"androidx/core/app/NotificationCompat$BigPictureStyle.class","size":7392,"crc":1060212417},{"key":"androidx/core/app/NotificationCompat$BigTextStyle.class","name":"androidx/core/app/NotificationCompat$BigTextStyle.class","size":3841,"crc":35028020},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata$Api29Impl.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata$Api29Impl.class","size":3541,"crc":29724948},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata$Api30Impl.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata$Api30Impl.class","size":3618,"crc":-1015334329},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata$Builder.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata$Builder.class","size":4716,"crc":1221311312},{"key":"androidx/core/app/NotificationCompat$BubbleMetadata.class","name":"androidx/core/app/NotificationCompat$BubbleMetadata.class","size":4276,"crc":1740003656},{"key":"androidx/core/app/NotificationCompat$Builder$Api21Impl.class","name":"androidx/core/app/NotificationCompat$Builder$Api21Impl.class","size":1599,"crc":1606630562},{"key":"androidx/core/app/NotificationCompat$Builder$Api23Impl.class","name":"androidx/core/app/NotificationCompat$Builder$Api23Impl.class","size":1006,"crc":619308074},{"key":"androidx/core/app/NotificationCompat$Builder$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Builder$Api24Impl.class","size":1440,"crc":-129429433},{"key":"androidx/core/app/NotificationCompat$Builder.class","name":"androidx/core/app/NotificationCompat$Builder.class","size":28351,"crc":-1995864438},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api20Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api20Impl.class","size":2073,"crc":271968801},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api21Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api21Impl.class","size":1181,"crc":-594887630},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api23Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api23Impl.class","size":1759,"crc":1978332640},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api24Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api24Impl.class","size":1133,"crc":-378360914},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api28Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api28Impl.class","size":1208,"crc":933124670},{"key":"androidx/core/app/NotificationCompat$CallStyle$Api31Impl.class","name":"androidx/core/app/NotificationCompat$CallStyle$Api31Impl.class","size":3467,"crc":-1624661680},{"key":"androidx/core/app/NotificationCompat$CallStyle$CallType.class","name":"androidx/core/app/NotificationCompat$CallStyle$CallType.class","size":734,"crc":2136238121},{"key":"androidx/core/app/NotificationCompat$CallStyle.class","name":"androidx/core/app/NotificationCompat$CallStyle.class","size":16289,"crc":-1422591520},{"key":"androidx/core/app/NotificationCompat$CarExtender$Api20Impl.class","name":"androidx/core/app/NotificationCompat$CarExtender$Api20Impl.class","size":3348,"crc":949638961},{"key":"androidx/core/app/NotificationCompat$CarExtender$Api29Impl.class","name":"androidx/core/app/NotificationCompat$CarExtender$Api29Impl.class","size":873,"crc":1097588543},{"key":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation$Builder.class","name":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation$Builder.class","size":2896,"crc":-2031915308},{"key":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation.class","name":"androidx/core/app/NotificationCompat$CarExtender$UnreadConversation.class","size":2343,"crc":14226975},{"key":"androidx/core/app/NotificationCompat$CarExtender.class","name":"androidx/core/app/NotificationCompat$CarExtender.class","size":9177,"crc":640580976},{"key":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle$Api24Impl.class","name":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle$Api24Impl.class","size":982,"crc":160216134},{"key":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle.class","name":"androidx/core/app/NotificationCompat$DecoratedCustomViewStyle.class","size":6895,"crc":-1497583667},{"key":"androidx/core/app/NotificationCompat$Extender.class","name":"androidx/core/app/NotificationCompat$Extender.class","size":536,"crc":-1922350891},{"key":"androidx/core/app/NotificationCompat$GroupAlertBehavior.class","name":"androidx/core/app/NotificationCompat$GroupAlertBehavior.class","size":672,"crc":900946520},{"key":"androidx/core/app/NotificationCompat$InboxStyle.class","name":"androidx/core/app/NotificationCompat$InboxStyle.class","size":4068,"crc":1516310261},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Api24Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Api24Impl.class","size":1782,"crc":686713718},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Api26Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Api26Impl.class","size":1287,"crc":1327479686},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Api28Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Api28Impl.class","size":1318,"crc":-1461609060},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api24Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api24Impl.class","size":1723,"crc":-1168865402},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api28Impl.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Message$Api28Impl.class","size":1414,"crc":372162559},{"key":"androidx/core/app/NotificationCompat$MessagingStyle$Message.class","name":"androidx/core/app/NotificationCompat$MessagingStyle$Message.class","size":8027,"crc":-2114242576},{"key":"androidx/core/app/NotificationCompat$MessagingStyle.class","name":"androidx/core/app/NotificationCompat$MessagingStyle.class","size":14136,"crc":-1752017840},{"key":"androidx/core/app/NotificationCompat$NotificationVisibility.class","name":"androidx/core/app/NotificationCompat$NotificationVisibility.class","size":680,"crc":1088614023},{"key":"androidx/core/app/NotificationCompat$ServiceNotificationBehavior.class","name":"androidx/core/app/NotificationCompat$ServiceNotificationBehavior.class","size":690,"crc":1857766983},{"key":"androidx/core/app/NotificationCompat$StreamType.class","name":"androidx/core/app/NotificationCompat$StreamType.class","size":656,"crc":-1750087649},{"key":"androidx/core/app/NotificationCompat$Style$Api24Impl.class","name":"androidx/core/app/NotificationCompat$Style$Api24Impl.class","size":915,"crc":-1535281602},{"key":"androidx/core/app/NotificationCompat$Style.class","name":"androidx/core/app/NotificationCompat$Style.class","size":16047,"crc":1834590369},{"key":"androidx/core/app/NotificationCompat$TvExtender.class","name":"androidx/core/app/NotificationCompat$TvExtender.class","size":4484,"crc":444127464},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api20Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api20Impl.class","size":2755,"crc":43986266},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api23Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api23Impl.class","size":1278,"crc":-1984401146},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api24Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api24Impl.class","size":1157,"crc":-641183678},{"key":"androidx/core/app/NotificationCompat$WearableExtender$Api31Impl.class","name":"androidx/core/app/NotificationCompat$WearableExtender$Api31Impl.class","size":1159,"crc":879390559},{"key":"androidx/core/app/NotificationCompat$WearableExtender.class","name":"androidx/core/app/NotificationCompat$WearableExtender.class","size":18030,"crc":2054152028},{"key":"androidx/core/app/NotificationCompat.class","name":"androidx/core/app/NotificationCompat.class","size":24034,"crc":2037328436},{"key":"androidx/core/app/NotificationCompatBuilder$Api20Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api20Impl.class","size":3391,"crc":-1917359535},{"key":"androidx/core/app/NotificationCompatBuilder$Api21Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api21Impl.class","size":2192,"crc":731501090},{"key":"androidx/core/app/NotificationCompatBuilder$Api23Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api23Impl.class","size":1824,"crc":1677803318},{"key":"androidx/core/app/NotificationCompatBuilder$Api24Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api24Impl.class","size":2037,"crc":104739915},{"key":"androidx/core/app/NotificationCompatBuilder$Api26Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api26Impl.class","size":2464,"crc":636660597},{"key":"androidx/core/app/NotificationCompatBuilder$Api28Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api28Impl.class","size":1428,"crc":-1485297195},{"key":"androidx/core/app/NotificationCompatBuilder$Api29Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api29Impl.class","size":2143,"crc":130649086},{"key":"androidx/core/app/NotificationCompatBuilder$Api31Impl.class","name":"androidx/core/app/NotificationCompatBuilder$Api31Impl.class","size":1408,"crc":1504746645},{"key":"androidx/core/app/NotificationCompatBuilder.class","name":"androidx/core/app/NotificationCompatBuilder.class","size":20248,"crc":-1153364976},{"key":"androidx/core/app/NotificationCompatExtras.class","name":"androidx/core/app/NotificationCompatExtras.class","size":780,"crc":1230724101},{"key":"androidx/core/app/NotificationCompatJellybean.class","name":"androidx/core/app/NotificationCompatJellybean.class","size":12786,"crc":594665231},{"key":"androidx/core/app/NotificationCompatSideChannelService$NotificationSideChannelStub.class","name":"androidx/core/app/NotificationCompatSideChannelService$NotificationSideChannelStub.class","size":2066,"crc":-508684655},{"key":"androidx/core/app/NotificationCompatSideChannelService.class","name":"androidx/core/app/NotificationCompatSideChannelService.class","size":2299,"crc":-1251234116},{"key":"androidx/core/app/NotificationManagerCompat$Api23Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api23Impl.class","size":1430,"crc":1947225169},{"key":"androidx/core/app/NotificationManagerCompat$Api24Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api24Impl.class","size":973,"crc":1366002183},{"key":"androidx/core/app/NotificationManagerCompat$Api26Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api26Impl.class","size":3604,"crc":472936966},{"key":"androidx/core/app/NotificationManagerCompat$Api28Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api28Impl.class","size":992,"crc":527920353},{"key":"androidx/core/app/NotificationManagerCompat$Api30Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api30Impl.class","size":1314,"crc":1790838880},{"key":"androidx/core/app/NotificationManagerCompat$Api34Impl.class","name":"androidx/core/app/NotificationManagerCompat$Api34Impl.class","size":828,"crc":1566259666},{"key":"androidx/core/app/NotificationManagerCompat$CancelTask.class","name":"androidx/core/app/NotificationManagerCompat$CancelTask.class","size":1902,"crc":-151764280},{"key":"androidx/core/app/NotificationManagerCompat$InterruptionFilter.class","name":"androidx/core/app/NotificationManagerCompat$InterruptionFilter.class","size":693,"crc":1507578914},{"key":"androidx/core/app/NotificationManagerCompat$NotificationWithIdAndTag.class","name":"androidx/core/app/NotificationManagerCompat$NotificationWithIdAndTag.class","size":1039,"crc":-931731844},{"key":"androidx/core/app/NotificationManagerCompat$NotifyTask.class","name":"androidx/core/app/NotificationManagerCompat$NotifyTask.class","size":1712,"crc":-1935245986},{"key":"androidx/core/app/NotificationManagerCompat$ServiceConnectedEvent.class","name":"androidx/core/app/NotificationManagerCompat$ServiceConnectedEvent.class","size":702,"crc":-258989536},{"key":"androidx/core/app/NotificationManagerCompat$SideChannelManager$ListenerRecord.class","name":"androidx/core/app/NotificationManagerCompat$SideChannelManager$ListenerRecord.class","size":1146,"crc":-464123942},{"key":"androidx/core/app/NotificationManagerCompat$SideChannelManager.class","name":"androidx/core/app/NotificationManagerCompat$SideChannelManager.class","size":10593,"crc":1145174528},{"key":"androidx/core/app/NotificationManagerCompat$Task.class","name":"androidx/core/app/NotificationManagerCompat$Task.class","size":366,"crc":1719925620},{"key":"androidx/core/app/NotificationManagerCompat.class","name":"androidx/core/app/NotificationManagerCompat.class","size":18781,"crc":550168496},{"key":"androidx/core/app/PendingIntentCompat$Api23Impl.class","name":"androidx/core/app/PendingIntentCompat$Api23Impl.class","size":1701,"crc":854341431},{"key":"androidx/core/app/PendingIntentCompat$Api26Impl.class","name":"androidx/core/app/PendingIntentCompat$Api26Impl.class","size":909,"crc":1718258872},{"key":"androidx/core/app/PendingIntentCompat$Flags.class","name":"androidx/core/app/PendingIntentCompat$Flags.class","size":636,"crc":-1100352364},{"key":"androidx/core/app/PendingIntentCompat$GatedCallback.class","name":"androidx/core/app/PendingIntentCompat$GatedCallback.class","size":2756,"crc":-1234978870},{"key":"androidx/core/app/PendingIntentCompat.class","name":"androidx/core/app/PendingIntentCompat.class","size":5860,"crc":-325982975},{"key":"androidx/core/app/Person$Api22Impl.class","name":"androidx/core/app/Person$Api22Impl.class","size":2091,"crc":-911462268},{"key":"androidx/core/app/Person$Api28Impl.class","name":"androidx/core/app/Person$Api28Impl.class","size":2483,"crc":1829068246},{"key":"androidx/core/app/Person$Builder.class","name":"androidx/core/app/Person$Builder.class","size":2157,"crc":741652667},{"key":"androidx/core/app/Person.class","name":"androidx/core/app/Person.class","size":6321,"crc":1677292418},{"key":"androidx/core/app/RemoteActionCompat$Api26Impl.class","name":"androidx/core/app/RemoteActionCompat$Api26Impl.class","size":2126,"crc":-1418873026},{"key":"androidx/core/app/RemoteActionCompat$Api28Impl.class","name":"androidx/core/app/RemoteActionCompat$Api28Impl.class","size":930,"crc":-235726249},{"key":"androidx/core/app/RemoteActionCompat.class","name":"androidx/core/app/RemoteActionCompat.class","size":4541,"crc":1001543440},{"key":"androidx/core/app/RemoteActionCompatParcelizer.class","name":"androidx/core/app/RemoteActionCompatParcelizer.class","size":2304,"crc":-505423669},{"key":"androidx/core/app/RemoteInput$Api20Impl.class","name":"androidx/core/app/RemoteInput$Api20Impl.class","size":4260,"crc":1111444981},{"key":"androidx/core/app/RemoteInput$Api26Impl.class","name":"androidx/core/app/RemoteInput$Api26Impl.class","size":2250,"crc":1022634827},{"key":"androidx/core/app/RemoteInput$Api28Impl.class","name":"androidx/core/app/RemoteInput$Api28Impl.class","size":886,"crc":-971979985},{"key":"androidx/core/app/RemoteInput$Api29Impl.class","name":"androidx/core/app/RemoteInput$Api29Impl.class","size":1105,"crc":1142187737},{"key":"androidx/core/app/RemoteInput$Builder.class","name":"androidx/core/app/RemoteInput$Builder.class","size":3002,"crc":703901060},{"key":"androidx/core/app/RemoteInput$EditChoicesBeforeSending.class","name":"androidx/core/app/RemoteInput$EditChoicesBeforeSending.class","size":663,"crc":137218255},{"key":"androidx/core/app/RemoteInput$Source.class","name":"androidx/core/app/RemoteInput$Source.class","size":627,"crc":1225634699},{"key":"androidx/core/app/RemoteInput.class","name":"androidx/core/app/RemoteInput.class","size":10690,"crc":100448154},{"key":"androidx/core/app/ServiceCompat$Api24Impl.class","name":"androidx/core/app/ServiceCompat$Api24Impl.class","size":757,"crc":1941199069},{"key":"androidx/core/app/ServiceCompat$Api29Impl.class","name":"androidx/core/app/ServiceCompat$Api29Impl.class","size":993,"crc":-1810633865},{"key":"androidx/core/app/ServiceCompat$Api34Impl.class","name":"androidx/core/app/ServiceCompat$Api34Impl.class","size":997,"crc":-1999402045},{"key":"androidx/core/app/ServiceCompat$StopForegroundFlags.class","name":"androidx/core/app/ServiceCompat$StopForegroundFlags.class","size":659,"crc":655432038},{"key":"androidx/core/app/ServiceCompat.class","name":"androidx/core/app/ServiceCompat.class","size":1777,"crc":-394635011},{"key":"androidx/core/app/ShareCompat$IntentBuilder.class","name":"androidx/core/app/ShareCompat$IntentBuilder.class","size":8678,"crc":1276398534},{"key":"androidx/core/app/ShareCompat$IntentReader.class","name":"androidx/core/app/ShareCompat$IntentReader.class","size":7016,"crc":-675110014},{"key":"androidx/core/app/ShareCompat.class","name":"androidx/core/app/ShareCompat.class","size":5904,"crc":54973738},{"key":"androidx/core/app/SharedElementCallback$OnSharedElementsReadyListener.class","name":"androidx/core/app/SharedElementCallback$OnSharedElementsReadyListener.class","size":317,"crc":1217450772},{"key":"androidx/core/app/SharedElementCallback.class","name":"androidx/core/app/SharedElementCallback.class","size":7188,"crc":376381531},{"key":"androidx/core/app/TaskStackBuilder$SupportParentable.class","name":"androidx/core/app/TaskStackBuilder$SupportParentable.class","size":385,"crc":2113967134},{"key":"androidx/core/app/TaskStackBuilder.class","name":"androidx/core/app/TaskStackBuilder.class","size":6556,"crc":1501909556},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Default.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Default.class","size":868,"crc":1227855709},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub$Proxy.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub$Proxy.class","size":1775,"crc":-1351993899},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback$Stub.class","size":2239,"crc":-900432979},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback.class","size":1116,"crc":1361675367},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Default.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Default.class","size":992,"crc":-957843627},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub$Proxy.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub$Proxy.class","size":1945,"crc":2040329353},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService$Stub.class","size":2617,"crc":216898320},{"key":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService.class","name":"androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportService.class","size":1181,"crc":-1811617304},{"key":"androidx/core/content/ContentProviderCompat.class","name":"androidx/core/content/ContentProviderCompat.class","size":986,"crc":-917373858},{"key":"androidx/core/content/ContentResolverCompat.class","name":"androidx/core/content/ContentResolverCompat.class","size":2351,"crc":825943966},{"key":"androidx/core/content/ContextCompat$Api21Impl.class","name":"androidx/core/content/ContextCompat$Api21Impl.class","size":1106,"crc":969564630},{"key":"androidx/core/content/ContextCompat$Api23Impl.class","name":"androidx/core/content/ContextCompat$Api23Impl.class","size":1521,"crc":817296793},{"key":"androidx/core/content/ContextCompat$Api24Impl.class","name":"androidx/core/content/ContextCompat$Api24Impl.class","size":1123,"crc":-384917672},{"key":"androidx/core/content/ContextCompat$Api26Impl.class","name":"androidx/core/content/ContextCompat$Api26Impl.class","size":1971,"crc":867798444},{"key":"androidx/core/content/ContextCompat$Api28Impl.class","name":"androidx/core/content/ContextCompat$Api28Impl.class","size":809,"crc":-241986563},{"key":"androidx/core/content/ContextCompat$Api30Impl.class","name":"androidx/core/content/ContextCompat$Api30Impl.class","size":2153,"crc":-1332801839},{"key":"androidx/core/content/ContextCompat$Api33Impl.class","name":"androidx/core/content/ContextCompat$Api33Impl.class","size":1337,"crc":132777324},{"key":"androidx/core/content/ContextCompat$LegacyServiceMapHolder.class","name":"androidx/core/content/ContextCompat$LegacyServiceMapHolder.class","size":4358,"crc":1373153750},{"key":"androidx/core/content/ContextCompat$RegisterReceiverFlags.class","name":"androidx/core/content/ContextCompat$RegisterReceiverFlags.class","size":658,"crc":794825751},{"key":"androidx/core/content/ContextCompat.class","name":"androidx/core/content/ContextCompat.class","size":12930,"crc":1483964766},{"key":"androidx/core/content/FileProvider$Api21Impl.class","name":"androidx/core/content/FileProvider$Api21Impl.class","size":782,"crc":1618441389},{"key":"androidx/core/content/FileProvider$PathStrategy.class","name":"androidx/core/content/FileProvider$PathStrategy.class","size":346,"crc":770878075},{"key":"androidx/core/content/FileProvider$SimplePathStrategy.class","name":"androidx/core/content/FileProvider$SimplePathStrategy.class","size":4719,"crc":-1509877584},{"key":"androidx/core/content/FileProvider.class","name":"androidx/core/content/FileProvider.class","size":13579,"crc":297337883},{"key":"androidx/core/content/IntentCompat$Api33Impl.class","name":"androidx/core/content/IntentCompat$Api33Impl.class","size":2558,"crc":-1463096764},{"key":"androidx/core/content/IntentCompat.class","name":"androidx/core/content/IntentCompat.class","size":5528,"crc":9042673},{"key":"androidx/core/content/IntentSanitizer$1.class","name":"androidx/core/content/IntentSanitizer$1.class","size":237,"crc":-61702665},{"key":"androidx/core/content/IntentSanitizer$Api29Impl.class","name":"androidx/core/content/IntentSanitizer$Api29Impl.class","size":1051,"crc":1431044490},{"key":"androidx/core/content/IntentSanitizer$Api31Impl.class","name":"androidx/core/content/IntentSanitizer$Api31Impl.class","size":1741,"crc":-1930944716},{"key":"androidx/core/content/IntentSanitizer$Builder.class","name":"androidx/core/content/IntentSanitizer$Builder.class","size":13691,"crc":-122430816},{"key":"androidx/core/content/IntentSanitizer.class","name":"androidx/core/content/IntentSanitizer.class","size":13153,"crc":-1377332162},{"key":"androidx/core/content/LocusIdCompat$Api29Impl.class","name":"androidx/core/content/LocusIdCompat$Api29Impl.class","size":1024,"crc":89574739},{"key":"androidx/core/content/LocusIdCompat.class","name":"androidx/core/content/LocusIdCompat.class","size":2782,"crc":412886872},{"key":"androidx/core/content/MimeTypeFilter.class","name":"androidx/core/content/MimeTypeFilter.class","size":2742,"crc":147689054},{"key":"androidx/core/content/PackageManagerCompat$Api30Impl.class","name":"androidx/core/content/PackageManagerCompat$Api30Impl.class","size":1002,"crc":-2001595271},{"key":"androidx/core/content/PackageManagerCompat$UnusedAppRestrictionsStatus.class","name":"androidx/core/content/PackageManagerCompat$UnusedAppRestrictionsStatus.class","size":691,"crc":2041315114},{"key":"androidx/core/content/PackageManagerCompat.class","name":"androidx/core/content/PackageManagerCompat.class","size":6194,"crc":1633769047},{"key":"androidx/core/content/PermissionChecker$PermissionResult.class","name":"androidx/core/content/PermissionChecker$PermissionResult.class","size":673,"crc":-666488629},{"key":"androidx/core/content/PermissionChecker.class","name":"androidx/core/content/PermissionChecker.class","size":2862,"crc":1940901641},{"key":"androidx/core/content/SharedPreferencesCompat$EditorCompat$Helper.class","name":"androidx/core/content/SharedPreferencesCompat$EditorCompat$Helper.class","size":1116,"crc":587673952},{"key":"androidx/core/content/SharedPreferencesCompat$EditorCompat.class","name":"androidx/core/content/SharedPreferencesCompat$EditorCompat.class","size":1381,"crc":-494629376},{"key":"androidx/core/content/SharedPreferencesCompat.class","name":"androidx/core/content/SharedPreferencesCompat.class","size":532,"crc":1567352910},{"key":"androidx/core/content/UnusedAppRestrictionsBackportCallback.class","name":"androidx/core/content/UnusedAppRestrictionsBackportCallback.class","size":1290,"crc":1695615859},{"key":"androidx/core/content/UnusedAppRestrictionsBackportService$1.class","name":"androidx/core/content/UnusedAppRestrictionsBackportService$1.class","size":1604,"crc":843169627},{"key":"androidx/core/content/UnusedAppRestrictionsBackportService.class","name":"androidx/core/content/UnusedAppRestrictionsBackportService.class","size":1591,"crc":-668859029},{"key":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection$1.class","name":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection$1.class","size":1862,"crc":1397470612},{"key":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection.class","name":"androidx/core/content/UnusedAppRestrictionsBackportServiceConnection.class","size":4184,"crc":-1517503401},{"key":"androidx/core/content/UnusedAppRestrictionsConstants.class","name":"androidx/core/content/UnusedAppRestrictionsConstants.class","size":588,"crc":-1244214169},{"key":"androidx/core/content/UriMatcherCompat.class","name":"androidx/core/content/UriMatcherCompat.class","size":1524,"crc":1164334199},{"key":"androidx/core/content/pm/ActivityInfoCompat.class","name":"androidx/core/content/pm/ActivityInfoCompat.class","size":493,"crc":-1364477614},{"key":"androidx/core/content/pm/PackageInfoCompat$Api28Impl.class","name":"androidx/core/content/pm/PackageInfoCompat$Api28Impl.class","size":1924,"crc":1118492697},{"key":"androidx/core/content/pm/PackageInfoCompat.class","name":"androidx/core/content/pm/PackageInfoCompat.class","size":6094,"crc":-587297962},{"key":"androidx/core/content/pm/PermissionInfoCompat$Api28Impl.class","name":"androidx/core/content/pm/PermissionInfoCompat$Api28Impl.class","size":929,"crc":-417971139},{"key":"androidx/core/content/pm/PermissionInfoCompat$Protection.class","name":"androidx/core/content/pm/PermissionInfoCompat$Protection.class","size":663,"crc":1629059509},{"key":"androidx/core/content/pm/PermissionInfoCompat$ProtectionFlags.class","name":"androidx/core/content/pm/PermissionInfoCompat$ProtectionFlags.class","size":739,"crc":1522065108},{"key":"androidx/core/content/pm/PermissionInfoCompat.class","name":"androidx/core/content/pm/PermissionInfoCompat.class","size":1364,"crc":1297374523},{"key":"androidx/core/content/pm/ShortcutInfoChangeListener.class","name":"androidx/core/content/pm/ShortcutInfoChangeListener.class","size":1703,"crc":427897560},{"key":"androidx/core/content/pm/ShortcutInfoCompat$Api33Impl.class","name":"androidx/core/content/pm/ShortcutInfoCompat$Api33Impl.class","size":1000,"crc":1878927332},{"key":"androidx/core/content/pm/ShortcutInfoCompat$Builder.class","name":"androidx/core/content/pm/ShortcutInfoCompat$Builder.class","size":12666,"crc":-1317622191},{"key":"androidx/core/content/pm/ShortcutInfoCompat$Surface.class","name":"androidx/core/content/pm/ShortcutInfoCompat$Surface.class","size":664,"crc":282044856},{"key":"androidx/core/content/pm/ShortcutInfoCompat.class","name":"androidx/core/content/pm/ShortcutInfoCompat.class","size":12893,"crc":-1893822061},{"key":"androidx/core/content/pm/ShortcutInfoCompatSaver$NoopImpl.class","name":"androidx/core/content/pm/ShortcutInfoCompatSaver$NoopImpl.class","size":1718,"crc":780394003},{"key":"androidx/core/content/pm/ShortcutInfoCompatSaver.class","name":"androidx/core/content/pm/ShortcutInfoCompatSaver.class","size":1544,"crc":-976705994},{"key":"androidx/core/content/pm/ShortcutManagerCompat$1.class","name":"androidx/core/content/pm/ShortcutManagerCompat$1.class","size":1316,"crc":2121141673},{"key":"androidx/core/content/pm/ShortcutManagerCompat$Api25Impl.class","name":"androidx/core/content/pm/ShortcutManagerCompat$Api25Impl.class","size":1498,"crc":-1798955755},{"key":"androidx/core/content/pm/ShortcutManagerCompat$ShortcutMatchFlags.class","name":"androidx/core/content/pm/ShortcutManagerCompat$ShortcutMatchFlags.class","size":695,"crc":856990973},{"key":"androidx/core/content/pm/ShortcutManagerCompat.class","name":"androidx/core/content/pm/ShortcutManagerCompat.class","size":20119,"crc":-583484979},{"key":"androidx/core/content/pm/ShortcutXmlParser.class","name":"androidx/core/content/pm/ShortcutXmlParser.class","size":5957,"crc":443382465},{"key":"androidx/core/content/res/CamColor.class","name":"androidx/core/content/res/CamColor.class","size":10209,"crc":707293299},{"key":"androidx/core/content/res/CamUtils.class","name":"androidx/core/content/res/CamUtils.class","size":3152,"crc":1105906618},{"key":"androidx/core/content/res/ColorStateListInflaterCompat.class","name":"androidx/core/content/res/ColorStateListInflaterCompat.class","size":8167,"crc":271679968},{"key":"androidx/core/content/res/ComplexColorCompat.class","name":"androidx/core/content/res/ComplexColorCompat.class","size":5222,"crc":-1398844043},{"key":"androidx/core/content/res/ConfigurationHelper.class","name":"androidx/core/content/res/ConfigurationHelper.class","size":755,"crc":-999867328},{"key":"androidx/core/content/res/FontResourcesParserCompat$Api21Impl.class","name":"androidx/core/content/res/FontResourcesParserCompat$Api21Impl.class","size":854,"crc":-1930670641},{"key":"androidx/core/content/res/FontResourcesParserCompat$FamilyResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$FamilyResourceEntry.class","size":287,"crc":-39793732},{"key":"androidx/core/content/res/FontResourcesParserCompat$FetchStrategy.class","name":"androidx/core/content/res/FontResourcesParserCompat$FetchStrategy.class","size":454,"crc":1823731370},{"key":"androidx/core/content/res/FontResourcesParserCompat$FontFamilyFilesResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$FontFamilyFilesResourceEntry.class","size":1265,"crc":-1265789084},{"key":"androidx/core/content/res/FontResourcesParserCompat$FontFileResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$FontFileResourceEntry.class","size":1652,"crc":2122907574},{"key":"androidx/core/content/res/FontResourcesParserCompat$ProviderResourceEntry.class","name":"androidx/core/content/res/FontResourcesParserCompat$ProviderResourceEntry.class","size":1996,"crc":-537995543},{"key":"androidx/core/content/res/FontResourcesParserCompat.class","name":"androidx/core/content/res/FontResourcesParserCompat.class","size":8708,"crc":-346635419},{"key":"androidx/core/content/res/GradientColorInflaterCompat$ColorStops.class","name":"androidx/core/content/res/GradientColorInflaterCompat$ColorStops.class","size":1735,"crc":246697236},{"key":"androidx/core/content/res/GradientColorInflaterCompat.class","name":"androidx/core/content/res/GradientColorInflaterCompat.class","size":7737,"crc":594254899},{"key":"androidx/core/content/res/GrowingArrayUtils.class","name":"androidx/core/content/res/GrowingArrayUtils.class","size":2719,"crc":1934313134},{"key":"androidx/core/content/res/ResourcesCompat$Api21Impl.class","name":"androidx/core/content/res/ResourcesCompat$Api21Impl.class","size":1412,"crc":393460819},{"key":"androidx/core/content/res/ResourcesCompat$Api23Impl.class","name":"androidx/core/content/res/ResourcesCompat$Api23Impl.class","size":1484,"crc":1408796082},{"key":"androidx/core/content/res/ResourcesCompat$Api29Impl.class","name":"androidx/core/content/res/ResourcesCompat$Api29Impl.class","size":925,"crc":1307711375},{"key":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheEntry.class","name":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheEntry.class","size":1305,"crc":-1312155530},{"key":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheKey.class","name":"androidx/core/content/res/ResourcesCompat$ColorStateListCacheKey.class","size":1493,"crc":-231062402},{"key":"androidx/core/content/res/ResourcesCompat$FontCallback.class","name":"androidx/core/content/res/ResourcesCompat$FontCallback.class","size":2653,"crc":-1835982375},{"key":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api23Impl.class","name":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api23Impl.class","size":2299,"crc":-2080577232},{"key":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api29Impl.class","name":"androidx/core/content/res/ResourcesCompat$ThemeCompat$Api29Impl.class","size":1036,"crc":626888944},{"key":"androidx/core/content/res/ResourcesCompat$ThemeCompat.class","name":"androidx/core/content/res/ResourcesCompat$ThemeCompat.class","size":1131,"crc":298456629},{"key":"androidx/core/content/res/ResourcesCompat.class","name":"androidx/core/content/res/ResourcesCompat.class","size":14294,"crc":1525920558},{"key":"androidx/core/content/res/TypedArrayUtils.class","name":"androidx/core/content/res/TypedArrayUtils.class","size":8994,"crc":743892670},{"key":"androidx/core/content/res/ViewingConditions.class","name":"androidx/core/content/res/ViewingConditions.class","size":3538,"crc":-131663576},{"key":"androidx/core/database/CursorWindowCompat$Api28Impl.class","name":"androidx/core/database/CursorWindowCompat$Api28Impl.class","size":855,"crc":50352982},{"key":"androidx/core/database/CursorWindowCompat.class","name":"androidx/core/database/CursorWindowCompat.class","size":1020,"crc":989448132},{"key":"androidx/core/database/DatabaseUtilsCompat.class","name":"androidx/core/database/DatabaseUtilsCompat.class","size":1371,"crc":-2044651927},{"key":"androidx/core/database/sqlite/SQLiteCursorCompat$Api28Impl.class","name":"androidx/core/database/sqlite/SQLiteCursorCompat$Api28Impl.class","size":889,"crc":-948675496},{"key":"androidx/core/database/sqlite/SQLiteCursorCompat.class","name":"androidx/core/database/sqlite/SQLiteCursorCompat.class","size":903,"crc":1059320687},{"key":"androidx/core/graphics/BitmapCompat$Api27Impl.class","name":"androidx/core/graphics/BitmapCompat$Api27Impl.class","size":2569,"crc":1909692832},{"key":"androidx/core/graphics/BitmapCompat$Api29Impl.class","name":"androidx/core/graphics/BitmapCompat$Api29Impl.class","size":878,"crc":676631431},{"key":"androidx/core/graphics/BitmapCompat$Api31Impl.class","name":"androidx/core/graphics/BitmapCompat$Api31Impl.class","size":1082,"crc":-1864651270},{"key":"androidx/core/graphics/BitmapCompat.class","name":"androidx/core/graphics/BitmapCompat.class","size":6017,"crc":-484315252},{"key":"androidx/core/graphics/BlendModeColorFilterCompat$Api29Impl.class","name":"androidx/core/graphics/BlendModeColorFilterCompat$Api29Impl.class","size":937,"crc":652344203},{"key":"androidx/core/graphics/BlendModeColorFilterCompat.class","name":"androidx/core/graphics/BlendModeColorFilterCompat.class","size":1837,"crc":-1703162937},{"key":"androidx/core/graphics/BlendModeCompat.class","name":"androidx/core/graphics/BlendModeCompat.class","size":2888,"crc":-645227784},{"key":"androidx/core/graphics/BlendModeUtils$1.class","name":"androidx/core/graphics/BlendModeUtils$1.class","size":2083,"crc":1721728409},{"key":"androidx/core/graphics/BlendModeUtils$Api29Impl.class","name":"androidx/core/graphics/BlendModeUtils$Api29Impl.class","size":2166,"crc":1973059920},{"key":"androidx/core/graphics/BlendModeUtils.class","name":"androidx/core/graphics/BlendModeUtils.class","size":1725,"crc":-1150213795},{"key":"androidx/core/graphics/ColorUtils$Api26Impl.class","name":"androidx/core/graphics/ColorUtils$Api26Impl.class","size":2133,"crc":-1767282957},{"key":"androidx/core/graphics/ColorUtils.class","name":"androidx/core/graphics/ColorUtils.class","size":11354,"crc":572223509},{"key":"androidx/core/graphics/Insets$Api29Impl.class","name":"androidx/core/graphics/Insets$Api29Impl.class","size":741,"crc":-861437350},{"key":"androidx/core/graphics/Insets.class","name":"androidx/core/graphics/Insets.class","size":3797,"crc":1611887429},{"key":"androidx/core/graphics/PaintCompat$Api23Impl.class","name":"androidx/core/graphics/PaintCompat$Api23Impl.class","size":813,"crc":-3322387},{"key":"androidx/core/graphics/PaintCompat$Api29Impl.class","name":"androidx/core/graphics/PaintCompat$Api29Impl.class","size":869,"crc":1376448595},{"key":"androidx/core/graphics/PaintCompat.class","name":"androidx/core/graphics/PaintCompat.class","size":4190,"crc":-1948255028},{"key":"androidx/core/graphics/PathParser$ExtractFloatResult.class","name":"androidx/core/graphics/PathParser$ExtractFloatResult.class","size":492,"crc":-1663845048},{"key":"androidx/core/graphics/PathParser$PathDataNode.class","name":"androidx/core/graphics/PathParser$PathDataNode.class","size":9633,"crc":-1245652526},{"key":"androidx/core/graphics/PathParser.class","name":"androidx/core/graphics/PathParser.class","size":8089,"crc":-1939474256},{"key":"androidx/core/graphics/PathSegment.class","name":"androidx/core/graphics/PathSegment.class","size":2433,"crc":1148524092},{"key":"androidx/core/graphics/PathUtils$Api26Impl.class","name":"androidx/core/graphics/PathUtils$Api26Impl.class","size":764,"crc":-635021751},{"key":"androidx/core/graphics/PathUtils.class","name":"androidx/core/graphics/PathUtils.class","size":2168,"crc":1645633006},{"key":"androidx/core/graphics/TypefaceCompat$ResourcesCallbackAdapter.class","name":"androidx/core/graphics/TypefaceCompat$ResourcesCallbackAdapter.class","size":1711,"crc":-323164186},{"key":"androidx/core/graphics/TypefaceCompat.class","name":"androidx/core/graphics/TypefaceCompat.class","size":10183,"crc":1966790811},{"key":"androidx/core/graphics/TypefaceCompatApi21Impl.class","name":"androidx/core/graphics/TypefaceCompatApi21Impl.class","size":9920,"crc":1427569578},{"key":"androidx/core/graphics/TypefaceCompatApi24Impl.class","name":"androidx/core/graphics/TypefaceCompatApi24Impl.class","size":8166,"crc":541108707},{"key":"androidx/core/graphics/TypefaceCompatApi26Impl.class","name":"androidx/core/graphics/TypefaceCompatApi26Impl.class","size":13353,"crc":-1021628},{"key":"androidx/core/graphics/TypefaceCompatApi28Impl.class","name":"androidx/core/graphics/TypefaceCompatApi28Impl.class","size":3170,"crc":1765335205},{"key":"androidx/core/graphics/TypefaceCompatApi29Impl.class","name":"androidx/core/graphics/TypefaceCompatApi29Impl.class","size":8266,"crc":-766524581},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$1.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$1.class","size":1680,"crc":2020885920},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$2.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$2.class","size":1989,"crc":992270278},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$3.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$3.class","size":1990,"crc":1646487761},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl$StyleExtractor.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl$StyleExtractor.class","size":446,"crc":1807309830},{"key":"androidx/core/graphics/TypefaceCompatBaseImpl.class","name":"androidx/core/graphics/TypefaceCompatBaseImpl.class","size":10576,"crc":126501558},{"key":"androidx/core/graphics/TypefaceCompatUtil.class","name":"androidx/core/graphics/TypefaceCompatUtil.class","size":7720,"crc":-590393442},{"key":"androidx/core/graphics/WeightTypefaceApi14.class","name":"androidx/core/graphics/WeightTypefaceApi14.class","size":5229,"crc":-489331575},{"key":"androidx/core/graphics/WeightTypefaceApi21.class","name":"androidx/core/graphics/WeightTypefaceApi21.class","size":6056,"crc":458843757},{"key":"androidx/core/graphics/WeightTypefaceApi26.class","name":"androidx/core/graphics/WeightTypefaceApi26.class","size":5541,"crc":-1847966844},{"key":"androidx/core/graphics/drawable/DrawableCompat$Api21Impl.class","name":"androidx/core/graphics/drawable/DrawableCompat$Api21Impl.class","size":3290,"crc":-189709534},{"key":"androidx/core/graphics/drawable/DrawableCompat$Api23Impl.class","name":"androidx/core/graphics/drawable/DrawableCompat$Api23Impl.class","size":1011,"crc":274517592},{"key":"androidx/core/graphics/drawable/DrawableCompat.class","name":"androidx/core/graphics/drawable/DrawableCompat.class","size":8181,"crc":1830796176},{"key":"androidx/core/graphics/drawable/IconCompat$Api23Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api23Impl.class","size":7848,"crc":-1288128777},{"key":"androidx/core/graphics/drawable/IconCompat$Api26Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api26Impl.class","size":1260,"crc":1316781001},{"key":"androidx/core/graphics/drawable/IconCompat$Api28Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api28Impl.class","size":1176,"crc":1899525487},{"key":"androidx/core/graphics/drawable/IconCompat$Api30Impl.class","name":"androidx/core/graphics/drawable/IconCompat$Api30Impl.class","size":802,"crc":-2007874236},{"key":"androidx/core/graphics/drawable/IconCompat$IconType.class","name":"androidx/core/graphics/drawable/IconCompat$IconType.class","size":643,"crc":1843019074},{"key":"androidx/core/graphics/drawable/IconCompat.class","name":"androidx/core/graphics/drawable/IconCompat.class","size":23766,"crc":-1057666863},{"key":"androidx/core/graphics/drawable/IconCompatParcelizer.class","name":"androidx/core/graphics/drawable/IconCompatParcelizer.class","size":2391,"crc":-1370437693},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawable.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawable.class","size":7892,"crc":-626571484},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawable21.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawable21.class","size":1864,"crc":468816631},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory$DefaultRoundedBitmapDrawable.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory$DefaultRoundedBitmapDrawable.class","size":1631,"crc":1462706089},{"key":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.class","name":"androidx/core/graphics/drawable/RoundedBitmapDrawableFactory.class","size":2653,"crc":1800860871},{"key":"androidx/core/graphics/drawable/TintAwareDrawable.class","name":"androidx/core/graphics/drawable/TintAwareDrawable.class","size":745,"crc":1348044187},{"key":"androidx/core/graphics/drawable/WrappedDrawable.class","name":"androidx/core/graphics/drawable/WrappedDrawable.class","size":560,"crc":-747113056},{"key":"androidx/core/graphics/drawable/WrappedDrawableApi14.class","name":"androidx/core/graphics/drawable/WrappedDrawableApi14.class","size":8945,"crc":-231972482},{"key":"androidx/core/graphics/drawable/WrappedDrawableApi21.class","name":"androidx/core/graphics/drawable/WrappedDrawableApi21.class","size":4146,"crc":-859088974},{"key":"androidx/core/graphics/drawable/WrappedDrawableState.class","name":"androidx/core/graphics/drawable/WrappedDrawableState.class","size":2151,"crc":1765756452},{"key":"androidx/core/hardware/display/DisplayManagerCompat.class","name":"androidx/core/hardware/display/DisplayManagerCompat.class","size":1636,"crc":989697280},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$1.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$1.class","size":2815,"crc":439340217},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$Api23Impl.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$Api23Impl.class","size":4151,"crc":-1917590039},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationCallback.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationCallback.class","size":1435,"crc":-68738431},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationResult.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$AuthenticationResult.class","size":1136,"crc":2102188991},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$CryptoObject.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat$CryptoObject.class","size":1522,"crc":-1616160736},{"key":"androidx/core/hardware/fingerprint/FingerprintManagerCompat.class","name":"androidx/core/hardware/fingerprint/FingerprintManagerCompat.class","size":5413,"crc":36992065},{"key":"androidx/core/internal/package-info.class","name":"androidx/core/internal/package-info.class","size":404,"crc":-1162714476},{"key":"androidx/core/internal/view/SupportMenu.class","name":"androidx/core/internal/view/SupportMenu.class","size":765,"crc":1726273822},{"key":"androidx/core/internal/view/SupportMenuItem.class","name":"androidx/core/internal/view/SupportMenuItem.class","size":2836,"crc":1950125442},{"key":"androidx/core/internal/view/SupportSubMenu.class","name":"androidx/core/internal/view/SupportSubMenu.class","size":488,"crc":341992331},{"key":"androidx/core/location/GnssStatusCompat$Callback.class","name":"androidx/core/location/GnssStatusCompat$Callback.class","size":1011,"crc":-106236767},{"key":"androidx/core/location/GnssStatusCompat$ConstellationType.class","name":"androidx/core/location/GnssStatusCompat$ConstellationType.class","size":661,"crc":600754332},{"key":"androidx/core/location/GnssStatusCompat.class","name":"androidx/core/location/GnssStatusCompat.class","size":2791,"crc":821246616},{"key":"androidx/core/location/GnssStatusWrapper$Api26Impl.class","name":"androidx/core/location/GnssStatusWrapper$Api26Impl.class","size":988,"crc":-2010772826},{"key":"androidx/core/location/GnssStatusWrapper$Api30Impl.class","name":"androidx/core/location/GnssStatusWrapper$Api30Impl.class","size":982,"crc":-494001482},{"key":"androidx/core/location/GnssStatusWrapper.class","name":"androidx/core/location/GnssStatusWrapper.class","size":3112,"crc":-197759893},{"key":"androidx/core/location/GpsStatusWrapper.class","name":"androidx/core/location/GpsStatusWrapper.class","size":4956,"crc":1004775428},{"key":"androidx/core/location/LocationCompat$Api26Impl.class","name":"androidx/core/location/LocationCompat$Api26Impl.class","size":3437,"crc":420740957},{"key":"androidx/core/location/LocationCompat$Api28Impl.class","name":"androidx/core/location/LocationCompat$Api28Impl.class","size":4116,"crc":1597269846},{"key":"androidx/core/location/LocationCompat$Api29Impl.class","name":"androidx/core/location/LocationCompat$Api29Impl.class","size":1476,"crc":-764363779},{"key":"androidx/core/location/LocationCompat$Api33Impl.class","name":"androidx/core/location/LocationCompat$Api33Impl.class","size":988,"crc":1243675708},{"key":"androidx/core/location/LocationCompat$Api34Impl.class","name":"androidx/core/location/LocationCompat$Api34Impl.class","size":1815,"crc":-122363606},{"key":"androidx/core/location/LocationCompat.class","name":"androidx/core/location/LocationCompat.class","size":9990,"crc":1409851656},{"key":"androidx/core/location/LocationListenerCompat.class","name":"androidx/core/location/LocationListenerCompat.class","size":1553,"crc":1096933018},{"key":"androidx/core/location/LocationManagerCompat$Api19Impl.class","name":"androidx/core/location/LocationManagerCompat$Api19Impl.class","size":3811,"crc":-1417582786},{"key":"androidx/core/location/LocationManagerCompat$Api24Impl.class","name":"androidx/core/location/LocationManagerCompat$Api24Impl.class","size":4045,"crc":1373829472},{"key":"androidx/core/location/LocationManagerCompat$Api28Impl.class","name":"androidx/core/location/LocationManagerCompat$Api28Impl.class","size":1168,"crc":-1209055492},{"key":"androidx/core/location/LocationManagerCompat$Api30Impl.class","name":"androidx/core/location/LocationManagerCompat$Api30Impl.class","size":5848,"crc":-1177795251},{"key":"androidx/core/location/LocationManagerCompat$Api31Impl.class","name":"androidx/core/location/LocationManagerCompat$Api31Impl.class","size":2316,"crc":-1081442992},{"key":"androidx/core/location/LocationManagerCompat$CancellableLocationListener.class","name":"androidx/core/location/LocationManagerCompat$CancellableLocationListener.class","size":4695,"crc":-1081223508},{"key":"androidx/core/location/LocationManagerCompat$GnssListenersHolder.class","name":"androidx/core/location/LocationManagerCompat$GnssListenersHolder.class","size":1188,"crc":1084022117},{"key":"androidx/core/location/LocationManagerCompat$GnssMeasurementsTransport.class","name":"androidx/core/location/LocationManagerCompat$GnssMeasurementsTransport.class","size":2936,"crc":1804067361},{"key":"androidx/core/location/LocationManagerCompat$GnssStatusTransport.class","name":"androidx/core/location/LocationManagerCompat$GnssStatusTransport.class","size":1738,"crc":1406909359},{"key":"androidx/core/location/LocationManagerCompat$GpsStatusTransport.class","name":"androidx/core/location/LocationManagerCompat$GpsStatusTransport.class","size":4297,"crc":790129699},{"key":"androidx/core/location/LocationManagerCompat$InlineHandlerExecutor.class","name":"androidx/core/location/LocationManagerCompat$InlineHandlerExecutor.class","size":1595,"crc":1528455965},{"key":"androidx/core/location/LocationManagerCompat$LocationListenerKey.class","name":"androidx/core/location/LocationManagerCompat$LocationListenerKey.class","size":1396,"crc":1322207943},{"key":"androidx/core/location/LocationManagerCompat$LocationListenerTransport.class","name":"androidx/core/location/LocationManagerCompat$LocationListenerTransport.class","size":5175,"crc":2059105653},{"key":"androidx/core/location/LocationManagerCompat$PreRGnssStatusTransport.class","name":"androidx/core/location/LocationManagerCompat$PreRGnssStatusTransport.class","size":4058,"crc":-1140549583},{"key":"androidx/core/location/LocationManagerCompat.class","name":"androidx/core/location/LocationManagerCompat.class","size":22671,"crc":-1643195235},{"key":"androidx/core/location/LocationRequestCompat$Api19Impl.class","name":"androidx/core/location/LocationRequestCompat$Api19Impl.class","size":3015,"crc":-408833996},{"key":"androidx/core/location/LocationRequestCompat$Api31Impl.class","name":"androidx/core/location/LocationRequestCompat$Api31Impl.class","size":1654,"crc":1110351924},{"key":"androidx/core/location/LocationRequestCompat$Builder.class","name":"androidx/core/location/LocationRequestCompat$Builder.class","size":3768,"crc":1236629499},{"key":"androidx/core/location/LocationRequestCompat$Quality.class","name":"androidx/core/location/LocationRequestCompat$Quality.class","size":656,"crc":-1304604809},{"key":"androidx/core/location/LocationRequestCompat.class","name":"androidx/core/location/LocationRequestCompat.class","size":4921,"crc":923753816},{"key":"androidx/core/math/MathUtils.class","name":"androidx/core/math/MathUtils.class","size":2973,"crc":-1763529000},{"key":"androidx/core/net/ConnectivityManagerCompat$Api24Impl.class","name":"androidx/core/net/ConnectivityManagerCompat$Api24Impl.class","size":837,"crc":2023157836},{"key":"androidx/core/net/ConnectivityManagerCompat$RestrictBackgroundStatus.class","name":"androidx/core/net/ConnectivityManagerCompat$RestrictBackgroundStatus.class","size":705,"crc":716344203},{"key":"androidx/core/net/ConnectivityManagerCompat.class","name":"androidx/core/net/ConnectivityManagerCompat.class","size":2169,"crc":-1440532548},{"key":"androidx/core/net/DatagramSocketWrapper$DatagramSocketImplWrapper.class","name":"androidx/core/net/DatagramSocketWrapper$DatagramSocketImplWrapper.class","size":2647,"crc":1217154937},{"key":"androidx/core/net/DatagramSocketWrapper.class","name":"androidx/core/net/DatagramSocketWrapper.class","size":694,"crc":1450467363},{"key":"androidx/core/net/MailTo.class","name":"androidx/core/net/MailTo.class","size":4777,"crc":716149100},{"key":"androidx/core/net/ParseException.class","name":"androidx/core/net/ParseException.class","size":531,"crc":-1332245760},{"key":"androidx/core/net/TrafficStatsCompat$Api24Impl.class","name":"androidx/core/net/TrafficStatsCompat$Api24Impl.class","size":933,"crc":-2134102274},{"key":"androidx/core/net/TrafficStatsCompat.class","name":"androidx/core/net/TrafficStatsCompat.class","size":2384,"crc":2031265214},{"key":"androidx/core/net/UriCompat.class","name":"androidx/core/net/UriCompat.class","size":1861,"crc":957459528},{"key":"androidx/core/os/BundleCompat$Api33Impl.class","name":"androidx/core/os/BundleCompat$Api33Impl.class","size":2924,"crc":610687349},{"key":"androidx/core/os/BundleCompat.class","name":"androidx/core/os/BundleCompat.class","size":4237,"crc":1020338323},{"key":"androidx/core/os/CancellationSignal$OnCancelListener.class","name":"androidx/core/os/CancellationSignal$OnCancelListener.class","size":267,"crc":1768443177},{"key":"androidx/core/os/CancellationSignal.class","name":"androidx/core/os/CancellationSignal.class","size":2560,"crc":-960380168},{"key":"androidx/core/os/ConfigurationCompat$Api24Impl.class","name":"androidx/core/os/ConfigurationCompat$Api24Impl.class","size":1305,"crc":-537722556},{"key":"androidx/core/os/ConfigurationCompat.class","name":"androidx/core/os/ConfigurationCompat.class","size":1671,"crc":885489852},{"key":"androidx/core/os/EnvironmentCompat$Api21Impl.class","name":"androidx/core/os/EnvironmentCompat$Api21Impl.class","size":747,"crc":2058380209},{"key":"androidx/core/os/EnvironmentCompat.class","name":"androidx/core/os/EnvironmentCompat.class","size":1053,"crc":1913180907},{"key":"androidx/core/os/ExecutorCompat$HandlerExecutor.class","name":"androidx/core/os/ExecutorCompat$HandlerExecutor.class","size":1394,"crc":817974452},{"key":"androidx/core/os/ExecutorCompat.class","name":"androidx/core/os/ExecutorCompat.class","size":732,"crc":813340522},{"key":"androidx/core/os/HandlerCompat$Api28Impl.class","name":"androidx/core/os/HandlerCompat$Api28Impl.class","size":1266,"crc":1188911207},{"key":"androidx/core/os/HandlerCompat$Api29Impl.class","name":"androidx/core/os/HandlerCompat$Api29Impl.class","size":750,"crc":-97291405},{"key":"androidx/core/os/HandlerCompat.class","name":"androidx/core/os/HandlerCompat.class","size":4962,"crc":-1897818136},{"key":"androidx/core/os/LocaleListCompat$Api21Impl.class","name":"androidx/core/os/LocaleListCompat$Api21Impl.class","size":1997,"crc":-1056214764},{"key":"androidx/core/os/LocaleListCompat$Api24Impl.class","name":"androidx/core/os/LocaleListCompat$Api24Impl.class","size":969,"crc":2114069988},{"key":"androidx/core/os/LocaleListCompat.class","name":"androidx/core/os/LocaleListCompat.class","size":5727,"crc":504905637},{"key":"androidx/core/os/LocaleListCompatWrapper$Api21Impl.class","name":"androidx/core/os/LocaleListCompatWrapper$Api21Impl.class","size":784,"crc":-803210832},{"key":"androidx/core/os/LocaleListCompatWrapper.class","name":"androidx/core/os/LocaleListCompatWrapper.class","size":6913,"crc":1732702063},{"key":"androidx/core/os/LocaleListInterface.class","name":"androidx/core/os/LocaleListInterface.class","size":673,"crc":-1204215516},{"key":"androidx/core/os/LocaleListPlatformWrapper.class","name":"androidx/core/os/LocaleListPlatformWrapper.class","size":1937,"crc":1832161889},{"key":"androidx/core/os/MessageCompat$Api22Impl.class","name":"androidx/core/os/MessageCompat$Api22Impl.class","size":884,"crc":1780742617},{"key":"androidx/core/os/MessageCompat.class","name":"androidx/core/os/MessageCompat.class","size":1393,"crc":1288633183},{"key":"androidx/core/os/OperationCanceledException.class","name":"androidx/core/os/OperationCanceledException.class","size":734,"crc":1084133341},{"key":"androidx/core/os/ParcelCompat$Api29Impl.class","name":"androidx/core/os/ParcelCompat$Api29Impl.class","size":1234,"crc":695637281},{"key":"androidx/core/os/ParcelCompat$Api30Impl.class","name":"androidx/core/os/ParcelCompat$Api30Impl.class","size":1173,"crc":-1581830279},{"key":"androidx/core/os/ParcelCompat$Api33Impl.class","name":"androidx/core/os/ParcelCompat$Api33Impl.class","size":5851,"crc":359949473},{"key":"androidx/core/os/ParcelCompat.class","name":"androidx/core/os/ParcelCompat.class","size":9011,"crc":1763807924},{"key":"androidx/core/os/ParcelableCompat$ParcelableCompatCreatorHoneycombMR2.class","name":"androidx/core/os/ParcelableCompat$ParcelableCompatCreatorHoneycombMR2.class","size":1865,"crc":-1411295453},{"key":"androidx/core/os/ParcelableCompat.class","name":"androidx/core/os/ParcelableCompat.class","size":1172,"crc":276111255},{"key":"androidx/core/os/ParcelableCompatCreatorCallbacks.class","name":"androidx/core/os/ParcelableCompatCreatorCallbacks.class","size":521,"crc":-1661855711},{"key":"androidx/core/os/ProcessCompat$Api19Impl.class","name":"androidx/core/os/ProcessCompat$Api19Impl.class","size":1688,"crc":-612991505},{"key":"androidx/core/os/ProcessCompat$Api24Impl.class","name":"androidx/core/os/ProcessCompat$Api24Impl.class","size":628,"crc":-36967095},{"key":"androidx/core/os/ProcessCompat.class","name":"androidx/core/os/ProcessCompat.class","size":705,"crc":1617640224},{"key":"androidx/core/os/TraceCompat$Api29Impl.class","name":"androidx/core/os/TraceCompat$Api29Impl.class","size":1104,"crc":527588178},{"key":"androidx/core/os/TraceCompat.class","name":"androidx/core/os/TraceCompat.class","size":3632,"crc":-126247558},{"key":"androidx/core/os/UserHandleCompat$Api24Impl.class","name":"androidx/core/os/UserHandleCompat$Api24Impl.class","size":712,"crc":376925078},{"key":"androidx/core/os/UserHandleCompat.class","name":"androidx/core/os/UserHandleCompat.class","size":2995,"crc":-1502779167},{"key":"androidx/core/os/UserManagerCompat$Api24Impl.class","name":"androidx/core/os/UserManagerCompat$Api24Impl.class","size":858,"crc":-689420772},{"key":"androidx/core/os/UserManagerCompat.class","name":"androidx/core/os/UserManagerCompat.class","size":785,"crc":-1480909048},{"key":"androidx/core/provider/CallbackWithHandler$1.class","name":"androidx/core/provider/CallbackWithHandler$1.class","size":1177,"crc":-2040524177},{"key":"androidx/core/provider/CallbackWithHandler$2.class","name":"androidx/core/provider/CallbackWithHandler$2.class","size":1101,"crc":-579370637},{"key":"androidx/core/provider/CallbackWithHandler.class","name":"androidx/core/provider/CallbackWithHandler.class","size":2578,"crc":-255845993},{"key":"androidx/core/provider/CalleeHandler.class","name":"androidx/core/provider/CalleeHandler.class","size":748,"crc":-356584081},{"key":"androidx/core/provider/DocumentsContractCompat$DocumentCompat.class","name":"androidx/core/provider/DocumentsContractCompat$DocumentCompat.class","size":539,"crc":-744260981},{"key":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi21Impl.class","name":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi21Impl.class","size":2243,"crc":-373053568},{"key":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi24Impl.class","name":"androidx/core/provider/DocumentsContractCompat$DocumentsContractApi24Impl.class","size":1243,"crc":-191673428},{"key":"androidx/core/provider/DocumentsContractCompat.class","name":"androidx/core/provider/DocumentsContractCompat.class","size":4223,"crc":-1658133800},{"key":"androidx/core/provider/FontProvider$ContentQueryWrapper.class","name":"androidx/core/provider/FontProvider$ContentQueryWrapper.class","size":1164,"crc":-1466501038},{"key":"androidx/core/provider/FontProvider$ContentQueryWrapperApi16Impl.class","name":"androidx/core/provider/FontProvider$ContentQueryWrapperApi16Impl.class","size":1965,"crc":-711959768},{"key":"androidx/core/provider/FontProvider$ContentQueryWrapperApi24Impl.class","name":"androidx/core/provider/FontProvider$ContentQueryWrapperApi24Impl.class","size":2044,"crc":-1155449205},{"key":"androidx/core/provider/FontProvider.class","name":"androidx/core/provider/FontProvider.class","size":9818,"crc":-1231708978},{"key":"androidx/core/provider/FontRequest.class","name":"androidx/core/provider/FontRequest.class","size":4062,"crc":-1210355946},{"key":"androidx/core/provider/FontRequestWorker$1.class","name":"androidx/core/provider/FontRequestWorker$1.class","size":1628,"crc":2143461990},{"key":"androidx/core/provider/FontRequestWorker$2.class","name":"androidx/core/provider/FontRequestWorker$2.class","size":1631,"crc":-1502917920},{"key":"androidx/core/provider/FontRequestWorker$3.class","name":"androidx/core/provider/FontRequestWorker$3.class","size":1940,"crc":129325094},{"key":"androidx/core/provider/FontRequestWorker$4.class","name":"androidx/core/provider/FontRequestWorker$4.class","size":2067,"crc":-757734499},{"key":"androidx/core/provider/FontRequestWorker$TypefaceResult.class","name":"androidx/core/provider/FontRequestWorker$TypefaceResult.class","size":1197,"crc":-1047860993},{"key":"androidx/core/provider/FontRequestWorker.class","name":"androidx/core/provider/FontRequestWorker.class","size":8149,"crc":1460471023},{"key":"androidx/core/provider/FontsContractCompat$Columns.class","name":"androidx/core/provider/FontsContractCompat$Columns.class","size":1073,"crc":-1071719159},{"key":"androidx/core/provider/FontsContractCompat$FontFamilyResult.class","name":"androidx/core/provider/FontsContractCompat$FontFamilyResult.class","size":1802,"crc":805654133},{"key":"androidx/core/provider/FontsContractCompat$FontInfo.class","name":"androidx/core/provider/FontsContractCompat$FontInfo.class","size":2142,"crc":-1008811028},{"key":"androidx/core/provider/FontsContractCompat$FontRequestCallback$FontRequestFailReason.class","name":"androidx/core/provider/FontsContractCompat$FontRequestCallback$FontRequestFailReason.class","size":809,"crc":-566122054},{"key":"androidx/core/provider/FontsContractCompat$FontRequestCallback.class","name":"androidx/core/provider/FontsContractCompat$FontRequestCallback.class","size":1726,"crc":-1767623116},{"key":"androidx/core/provider/FontsContractCompat.class","name":"androidx/core/provider/FontsContractCompat.class","size":6954,"crc":-837802792},{"key":"androidx/core/provider/RequestExecutor$DefaultThreadFactory$ProcessPriorityThread.class","name":"androidx/core/provider/RequestExecutor$DefaultThreadFactory$ProcessPriorityThread.class","size":989,"crc":-1308480722},{"key":"androidx/core/provider/RequestExecutor$DefaultThreadFactory.class","name":"androidx/core/provider/RequestExecutor$DefaultThreadFactory.class","size":1108,"crc":-1790522015},{"key":"androidx/core/provider/RequestExecutor$HandlerExecutor.class","name":"androidx/core/provider/RequestExecutor$HandlerExecutor.class","size":1416,"crc":2106277493},{"key":"androidx/core/provider/RequestExecutor$ReplyRunnable$1.class","name":"androidx/core/provider/RequestExecutor$ReplyRunnable$1.class","size":1134,"crc":-721637920},{"key":"androidx/core/provider/RequestExecutor$ReplyRunnable.class","name":"androidx/core/provider/RequestExecutor$ReplyRunnable.class","size":2086,"crc":-361715969},{"key":"androidx/core/provider/RequestExecutor.class","name":"androidx/core/provider/RequestExecutor.class","size":4032,"crc":45623863},{"key":"androidx/core/provider/SelfDestructiveThread$1.class","name":"androidx/core/provider/SelfDestructiveThread$1.class","size":1098,"crc":1265609470},{"key":"androidx/core/provider/SelfDestructiveThread$2$1.class","name":"androidx/core/provider/SelfDestructiveThread$2$1.class","size":1084,"crc":-1209436586},{"key":"androidx/core/provider/SelfDestructiveThread$2.class","name":"androidx/core/provider/SelfDestructiveThread$2.class","size":1835,"crc":-507995055},{"key":"androidx/core/provider/SelfDestructiveThread$3.class","name":"androidx/core/provider/SelfDestructiveThread$3.class","size":1943,"crc":1875388478},{"key":"androidx/core/provider/SelfDestructiveThread$ReplyCallback.class","name":"androidx/core/provider/SelfDestructiveThread$ReplyCallback.class","size":379,"crc":-538938372},{"key":"androidx/core/provider/SelfDestructiveThread.class","name":"androidx/core/provider/SelfDestructiveThread.class","size":6254,"crc":1157189871},{"key":"androidx/core/service/quicksettings/PendingIntentActivityWrapper.class","name":"androidx/core/service/quicksettings/PendingIntentActivityWrapper.class","size":2541,"crc":1624604},{"key":"androidx/core/service/quicksettings/TileServiceCompat$Api24Impl.class","name":"androidx/core/service/quicksettings/TileServiceCompat$Api24Impl.class","size":969,"crc":1524303968},{"key":"androidx/core/service/quicksettings/TileServiceCompat$Api34Impl.class","name":"androidx/core/service/quicksettings/TileServiceCompat$Api34Impl.class","size":985,"crc":-1163551186},{"key":"androidx/core/service/quicksettings/TileServiceCompat$TileServiceWrapper.class","name":"androidx/core/service/quicksettings/TileServiceCompat$TileServiceWrapper.class","size":387,"crc":-1087529465},{"key":"androidx/core/service/quicksettings/TileServiceCompat.class","name":"androidx/core/service/quicksettings/TileServiceCompat.class","size":2414,"crc":1757355155},{"key":"androidx/core/telephony/SubscriptionManagerCompat$Api29Impl.class","name":"androidx/core/telephony/SubscriptionManagerCompat$Api29Impl.class","size":758,"crc":1419660002},{"key":"androidx/core/telephony/SubscriptionManagerCompat.class","name":"androidx/core/telephony/SubscriptionManagerCompat.class","size":1698,"crc":1557138825},{"key":"androidx/core/telephony/TelephonyManagerCompat$Api23Impl.class","name":"androidx/core/telephony/TelephonyManagerCompat$Api23Impl.class","size":1087,"crc":1091714028},{"key":"androidx/core/telephony/TelephonyManagerCompat$Api26Impl.class","name":"androidx/core/telephony/TelephonyManagerCompat$Api26Impl.class","size":1054,"crc":-1566470395},{"key":"androidx/core/telephony/TelephonyManagerCompat$Api30Impl.class","name":"androidx/core/telephony/TelephonyManagerCompat$Api30Impl.class","size":835,"crc":1008375281},{"key":"androidx/core/telephony/TelephonyManagerCompat.class","name":"androidx/core/telephony/TelephonyManagerCompat.class","size":2906,"crc":1474125055},{"key":"androidx/core/telephony/mbms/MbmsHelper$Api28Impl.class","name":"androidx/core/telephony/mbms/MbmsHelper$Api28Impl.class","size":2186,"crc":-1878492408},{"key":"androidx/core/telephony/mbms/MbmsHelper.class","name":"androidx/core/telephony/mbms/MbmsHelper.class","size":1004,"crc":-1438195000},{"key":"androidx/core/text/BidiFormatter$Builder.class","name":"androidx/core/text/BidiFormatter$Builder.class","size":2036,"crc":1378760591},{"key":"androidx/core/text/BidiFormatter$DirectionalityEstimator.class","name":"androidx/core/text/BidiFormatter$DirectionalityEstimator.class","size":4094,"crc":-1902417185},{"key":"androidx/core/text/BidiFormatter.class","name":"androidx/core/text/BidiFormatter.class","size":5789,"crc":-838162369},{"key":"androidx/core/text/HtmlCompat$Api24Impl.class","name":"androidx/core/text/HtmlCompat$Api24Impl.class","size":1362,"crc":146217190},{"key":"androidx/core/text/HtmlCompat.class","name":"androidx/core/text/HtmlCompat.class","size":2554,"crc":-261951905},{"key":"androidx/core/text/ICUCompat$Api21Impl.class","name":"androidx/core/text/ICUCompat$Api21Impl.class","size":734,"crc":1318579150},{"key":"androidx/core/text/ICUCompat$Api24Impl.class","name":"androidx/core/text/ICUCompat$Api24Impl.class","size":1128,"crc":-209947284},{"key":"androidx/core/text/ICUCompat.class","name":"androidx/core/text/ICUCompat.class","size":3456,"crc":-1561930858},{"key":"androidx/core/text/PrecomputedTextCompat$Api28Impl.class","name":"androidx/core/text/PrecomputedTextCompat$Api28Impl.class","size":769,"crc":-1309899149},{"key":"androidx/core/text/PrecomputedTextCompat$Params$Builder.class","name":"androidx/core/text/PrecomputedTextCompat$Params$Builder.class","size":2092,"crc":896385675},{"key":"androidx/core/text/PrecomputedTextCompat$Params.class","name":"androidx/core/text/PrecomputedTextCompat$Params.class","size":6425,"crc":931090495},{"key":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask$PrecomputedTextCallback.class","name":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask$PrecomputedTextCallback.class","size":1631,"crc":1319644435},{"key":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask.class","name":"androidx/core/text/PrecomputedTextCompat$PrecomputedTextFutureTask.class","size":1136,"crc":1854164396},{"key":"androidx/core/text/PrecomputedTextCompat.class","name":"androidx/core/text/PrecomputedTextCompat.class","size":9184,"crc":-392844784},{"key":"androidx/core/text/TextDirectionHeuristicCompat.class","name":"androidx/core/text/TextDirectionHeuristicCompat.class","size":222,"crc":-118200751},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$AnyStrong.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$AnyStrong.class","size":1358,"crc":-116397953},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$FirstStrong.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$FirstStrong.class","size":1162,"crc":1465235069},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionAlgorithm.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionAlgorithm.class","size":342,"crc":964437877},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicImpl.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicImpl.class","size":1745,"crc":2136242730},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicInternal.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicInternal.class","size":1131,"crc":-1371447970},{"key":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicLocale.class","name":"androidx/core/text/TextDirectionHeuristicsCompat$TextDirectionHeuristicLocale.class","size":1258,"crc":1502971490},{"key":"androidx/core/text/TextDirectionHeuristicsCompat.class","name":"androidx/core/text/TextDirectionHeuristicsCompat.class","size":2235,"crc":1050206764},{"key":"androidx/core/text/TextUtilsCompat.class","name":"androidx/core/text/TextUtilsCompat.class","size":818,"crc":924146042},{"key":"androidx/core/text/method/LinkMovementMethodCompat.class","name":"androidx/core/text/method/LinkMovementMethodCompat.class","size":2369,"crc":-1733823913},{"key":"androidx/core/text/util/FindAddress$ZipRange.class","name":"androidx/core/text/util/FindAddress$ZipRange.class","size":1027,"crc":1759049123},{"key":"androidx/core/text/util/FindAddress.class","name":"androidx/core/text/util/FindAddress.class","size":11163,"crc":106913627},{"key":"androidx/core/text/util/LinkifyCompat$Api24Impl.class","name":"androidx/core/text/util/LinkifyCompat$Api24Impl.class","size":1668,"crc":818694512},{"key":"androidx/core/text/util/LinkifyCompat$LinkSpec.class","name":"androidx/core/text/util/LinkifyCompat$LinkSpec.class","size":548,"crc":978455525},{"key":"androidx/core/text/util/LinkifyCompat$LinkifyMask.class","name":"androidx/core/text/util/LinkifyCompat$LinkifyMask.class","size":655,"crc":-1830119234},{"key":"androidx/core/text/util/LinkifyCompat.class","name":"androidx/core/text/util/LinkifyCompat.class","size":12426,"crc":-1518519244},{"key":"androidx/core/text/util/LocalePreferences$1.class","name":"androidx/core/text/util/LocalePreferences$1.class","size":940,"crc":378637435},{"key":"androidx/core/text/util/LocalePreferences$Api24Impl.class","name":"androidx/core/text/util/LocalePreferences$Api24Impl.class","size":1260,"crc":1069784012},{"key":"androidx/core/text/util/LocalePreferences$Api33Impl.class","name":"androidx/core/text/util/LocalePreferences$Api33Impl.class","size":2948,"crc":1431973722},{"key":"androidx/core/text/util/LocalePreferences$CalendarType$CalendarTypes.class","name":"androidx/core/text/util/LocalePreferences$CalendarType$CalendarTypes.class","size":754,"crc":2111337730},{"key":"androidx/core/text/util/LocalePreferences$CalendarType.class","name":"androidx/core/text/util/LocalePreferences$CalendarType.class","size":1131,"crc":1121003693},{"key":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek$Days.class","name":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek$Days.class","size":742,"crc":-925039115},{"key":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek.class","name":"androidx/core/text/util/LocalePreferences$FirstDayOfWeek.class","size":892,"crc":-1082602966},{"key":"androidx/core/text/util/LocalePreferences$HourCycle$HourCycleTypes.class","name":"androidx/core/text/util/LocalePreferences$HourCycle$HourCycleTypes.class","size":747,"crc":-1451601347},{"key":"androidx/core/text/util/LocalePreferences$HourCycle.class","name":"androidx/core/text/util/LocalePreferences$HourCycle.class","size":770,"crc":2050120332},{"key":"androidx/core/text/util/LocalePreferences$TemperatureUnit$TemperatureUnits.class","name":"androidx/core/text/util/LocalePreferences$TemperatureUnit$TemperatureUnits.class","size":769,"crc":372884259},{"key":"androidx/core/text/util/LocalePreferences$TemperatureUnit.class","name":"androidx/core/text/util/LocalePreferences$TemperatureUnit.class","size":793,"crc":-221813898},{"key":"androidx/core/text/util/LocalePreferences.class","name":"androidx/core/text/util/LocalePreferences.class","size":5452,"crc":518336472},{"key":"androidx/core/util/AtomicFile.class","name":"androidx/core/util/AtomicFile.class","size":4462,"crc":1282749343},{"key":"androidx/core/util/DebugUtils.class","name":"androidx/core/util/DebugUtils.class","size":1525,"crc":-788472052},{"key":"androidx/core/util/LogWriter.class","name":"androidx/core/util/LogWriter.class","size":1684,"crc":-707190681},{"key":"androidx/core/util/ObjectsCompat.class","name":"androidx/core/util/ObjectsCompat.class","size":1858,"crc":1955834765},{"key":"androidx/core/util/Pair.class","name":"androidx/core/util/Pair.class","size":1918,"crc":-1970849920},{"key":"androidx/core/util/PatternsCompat.class","name":"androidx/core/util/PatternsCompat.class","size":58674,"crc":176158261},{"key":"androidx/core/util/Preconditions.class","name":"androidx/core/util/Preconditions.class","size":6183,"crc":1496653811},{"key":"androidx/core/util/Predicate.class","name":"androidx/core/util/Predicate.class","size":3398,"crc":1789136790},{"key":"androidx/core/util/SizeFCompat$Api21Impl.class","name":"androidx/core/util/SizeFCompat$Api21Impl.class","size":1233,"crc":1355410199},{"key":"androidx/core/util/SizeFCompat.class","name":"androidx/core/util/SizeFCompat.class","size":1988,"crc":703664480},{"key":"androidx/core/util/TimeUtils.class","name":"androidx/core/util/TimeUtils.class","size":4432,"crc":943155114},{"key":"androidx/core/util/TypedValueCompat$Api34Impl.class","name":"androidx/core/util/TypedValueCompat$Api34Impl.class","size":817,"crc":1538916558},{"key":"androidx/core/util/TypedValueCompat$ComplexDimensionUnit.class","name":"androidx/core/util/TypedValueCompat$ComplexDimensionUnit.class","size":659,"crc":1797910148},{"key":"androidx/core/util/TypedValueCompat.class","name":"androidx/core/util/TypedValueCompat.class","size":2402,"crc":-1160262685},{"key":"androidx/core/view/AccessibilityDelegateCompat$AccessibilityDelegateAdapter.class","name":"androidx/core/view/AccessibilityDelegateCompat$AccessibilityDelegateAdapter.class","size":4776,"crc":922346686},{"key":"androidx/core/view/AccessibilityDelegateCompat.class","name":"androidx/core/view/AccessibilityDelegateCompat.class","size":7248,"crc":-861580143},{"key":"androidx/core/view/ActionProvider$SubUiVisibilityListener.class","name":"androidx/core/view/ActionProvider$SubUiVisibilityListener.class","size":543,"crc":-2113335858},{"key":"androidx/core/view/ActionProvider$VisibilityListener.class","name":"androidx/core/view/ActionProvider$VisibilityListener.class","size":289,"crc":-1665051689},{"key":"androidx/core/view/ActionProvider.class","name":"androidx/core/view/ActionProvider.class","size":3576,"crc":-1536760347},{"key":"androidx/core/view/ContentInfoCompat$Api31Impl.class","name":"androidx/core/view/ContentInfoCompat$Api31Impl.class","size":3079,"crc":1612628765},{"key":"androidx/core/view/ContentInfoCompat$Builder.class","name":"androidx/core/view/ContentInfoCompat$Builder.class","size":2697,"crc":1412119567},{"key":"androidx/core/view/ContentInfoCompat$BuilderCompat.class","name":"androidx/core/view/ContentInfoCompat$BuilderCompat.class","size":666,"crc":1696616790},{"key":"androidx/core/view/ContentInfoCompat$BuilderCompat31Impl.class","name":"androidx/core/view/ContentInfoCompat$BuilderCompat31Impl.class","size":2633,"crc":-413578322},{"key":"androidx/core/view/ContentInfoCompat$BuilderCompatImpl.class","name":"androidx/core/view/ContentInfoCompat$BuilderCompatImpl.class","size":2445,"crc":793814999},{"key":"androidx/core/view/ContentInfoCompat$Compat.class","name":"androidx/core/view/ContentInfoCompat$Compat.class","size":599,"crc":322977362},{"key":"androidx/core/view/ContentInfoCompat$Compat31Impl.class","name":"androidx/core/view/ContentInfoCompat$Compat31Impl.class","size":1978,"crc":-1656001563},{"key":"androidx/core/view/ContentInfoCompat$CompatImpl.class","name":"androidx/core/view/ContentInfoCompat$CompatImpl.class","size":2855,"crc":783683588},{"key":"androidx/core/view/ContentInfoCompat$Flags.class","name":"androidx/core/view/ContentInfoCompat$Flags.class","size":645,"crc":103647730},{"key":"androidx/core/view/ContentInfoCompat$Source.class","name":"androidx/core/view/ContentInfoCompat$Source.class","size":647,"crc":-1098283764},{"key":"androidx/core/view/ContentInfoCompat.class","name":"androidx/core/view/ContentInfoCompat.class","size":7544,"crc":-710995835},{"key":"androidx/core/view/DifferentialMotionFlingController$DifferentialVelocityProvider.class","name":"androidx/core/view/DifferentialMotionFlingController$DifferentialVelocityProvider.class","size":491,"crc":2019033606},{"key":"androidx/core/view/DifferentialMotionFlingController$FlingVelocityThresholdCalculator.class","name":"androidx/core/view/DifferentialMotionFlingController$FlingVelocityThresholdCalculator.class","size":510,"crc":573487127},{"key":"androidx/core/view/DifferentialMotionFlingController.class","name":"androidx/core/view/DifferentialMotionFlingController.class","size":5499,"crc":-1316155655},{"key":"androidx/core/view/DifferentialMotionFlingTarget.class","name":"androidx/core/view/DifferentialMotionFlingTarget.class","size":286,"crc":-504038964},{"key":"androidx/core/view/DisplayCompat$Api23Impl.class","name":"androidx/core/view/DisplayCompat$Api23Impl.class","size":3224,"crc":-1671962451},{"key":"androidx/core/view/DisplayCompat$ModeCompat$Api23Impl.class","name":"androidx/core/view/DisplayCompat$ModeCompat$Api23Impl.class","size":984,"crc":-1943172235},{"key":"androidx/core/view/DisplayCompat$ModeCompat.class","name":"androidx/core/view/DisplayCompat$ModeCompat.class","size":2226,"crc":1802698466},{"key":"androidx/core/view/DisplayCompat.class","name":"androidx/core/view/DisplayCompat.class","size":5311,"crc":426530620},{"key":"androidx/core/view/DisplayCutoutCompat$Api28Impl.class","name":"androidx/core/view/DisplayCutoutCompat$Api28Impl.class","size":1861,"crc":-2061863409},{"key":"androidx/core/view/DisplayCutoutCompat$Api29Impl.class","name":"androidx/core/view/DisplayCutoutCompat$Api29Impl.class","size":1139,"crc":2065672441},{"key":"androidx/core/view/DisplayCutoutCompat$Api30Impl.class","name":"androidx/core/view/DisplayCutoutCompat$Api30Impl.class","size":1458,"crc":-1323522111},{"key":"androidx/core/view/DisplayCutoutCompat.class","name":"androidx/core/view/DisplayCutoutCompat.class","size":5691,"crc":-278841617},{"key":"androidx/core/view/DragAndDropPermissionsCompat$Api24Impl.class","name":"androidx/core/view/DragAndDropPermissionsCompat$Api24Impl.class","size":1222,"crc":-1494528412},{"key":"androidx/core/view/DragAndDropPermissionsCompat.class","name":"androidx/core/view/DragAndDropPermissionsCompat.class","size":1686,"crc":-112841901},{"key":"androidx/core/view/DragStartHelper$OnDragStartListener.class","name":"androidx/core/view/DragStartHelper$OnDragStartListener.class","size":416,"crc":-2064185111},{"key":"androidx/core/view/DragStartHelper.class","name":"androidx/core/view/DragStartHelper.class","size":3436,"crc":-1050781143},{"key":"androidx/core/view/GestureDetectorCompat.class","name":"androidx/core/view/GestureDetectorCompat.class","size":2078,"crc":-590261000},{"key":"androidx/core/view/GravityCompat.class","name":"androidx/core/view/GravityCompat.class","size":1482,"crc":-1284594109},{"key":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackFlags.class","name":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackFlags.class","size":696,"crc":172944499},{"key":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackType.class","name":"androidx/core/view/HapticFeedbackConstantsCompat$HapticFeedbackType.class","size":694,"crc":1352997797},{"key":"androidx/core/view/HapticFeedbackConstantsCompat.class","name":"androidx/core/view/HapticFeedbackConstantsCompat.class","size":2165,"crc":-233855463},{"key":"androidx/core/view/InputDeviceCompat.class","name":"androidx/core/view/InputDeviceCompat.class","size":1178,"crc":-1611156102},{"key":"androidx/core/view/KeyEventDispatcher$Component.class","name":"androidx/core/view/KeyEventDispatcher$Component.class","size":377,"crc":1819687057},{"key":"androidx/core/view/KeyEventDispatcher.class","name":"androidx/core/view/KeyEventDispatcher.class","size":5617,"crc":-251757181},{"key":"androidx/core/view/LayoutInflaterCompat$Factory2Wrapper.class","name":"androidx/core/view/LayoutInflaterCompat$Factory2Wrapper.class","size":1824,"crc":709925757},{"key":"androidx/core/view/LayoutInflaterCompat.class","name":"androidx/core/view/LayoutInflaterCompat.class","size":3446,"crc":1815067315},{"key":"androidx/core/view/LayoutInflaterFactory.class","name":"androidx/core/view/LayoutInflaterFactory.class","size":362,"crc":1217133356},{"key":"androidx/core/view/MarginLayoutParamsCompat.class","name":"androidx/core/view/MarginLayoutParamsCompat.class","size":2016,"crc":52886746},{"key":"androidx/core/view/MenuCompat$Api28Impl.class","name":"androidx/core/view/MenuCompat$Api28Impl.class","size":763,"crc":493244291},{"key":"androidx/core/view/MenuCompat.class","name":"androidx/core/view/MenuCompat.class","size":1173,"crc":-465812236},{"key":"androidx/core/view/MenuHost.class","name":"androidx/core/view/MenuHost.class","size":802,"crc":1764291970},{"key":"androidx/core/view/MenuHostHelper$LifecycleContainer.class","name":"androidx/core/view/MenuHostHelper$LifecycleContainer.class","size":1047,"crc":-2092317000},{"key":"androidx/core/view/MenuHostHelper.class","name":"androidx/core/view/MenuHostHelper.class","size":6015,"crc":1640962395},{"key":"androidx/core/view/MenuItemCompat$1.class","name":"androidx/core/view/MenuItemCompat$1.class","size":1202,"crc":-273191399},{"key":"androidx/core/view/MenuItemCompat$Api26Impl.class","name":"androidx/core/view/MenuItemCompat$Api26Impl.class","size":3334,"crc":-387095062},{"key":"androidx/core/view/MenuItemCompat$OnActionExpandListener.class","name":"androidx/core/view/MenuItemCompat$OnActionExpandListener.class","size":427,"crc":-1261053605},{"key":"androidx/core/view/MenuItemCompat.class","name":"androidx/core/view/MenuItemCompat.class","size":7928,"crc":1053196033},{"key":"androidx/core/view/MenuProvider.class","name":"androidx/core/view/MenuProvider.class","size":694,"crc":-168585429},{"key":"androidx/core/view/MotionEventCompat.class","name":"androidx/core/view/MotionEventCompat.class","size":5062,"crc":-1821794123},{"key":"androidx/core/view/NestedScrollingChild.class","name":"androidx/core/view/NestedScrollingChild.class","size":612,"crc":643083790},{"key":"androidx/core/view/NestedScrollingChild2.class","name":"androidx/core/view/NestedScrollingChild2.class","size":512,"crc":2063247085},{"key":"androidx/core/view/NestedScrollingChild3.class","name":"androidx/core/view/NestedScrollingChild3.class","size":369,"crc":538066002},{"key":"androidx/core/view/NestedScrollingChildHelper.class","name":"androidx/core/view/NestedScrollingChildHelper.class","size":5709,"crc":-1526045863},{"key":"androidx/core/view/NestedScrollingParent.class","name":"androidx/core/view/NestedScrollingParent.class","size":808,"crc":-1862965098},{"key":"androidx/core/view/NestedScrollingParent2.class","name":"androidx/core/view/NestedScrollingParent2.class","size":695,"crc":-892996660},{"key":"androidx/core/view/NestedScrollingParent3.class","name":"androidx/core/view/NestedScrollingParent3.class","size":350,"crc":-686595616},{"key":"androidx/core/view/NestedScrollingParentHelper.class","name":"androidx/core/view/NestedScrollingParentHelper.class","size":1541,"crc":461928738},{"key":"androidx/core/view/OnApplyWindowInsetsListener.class","name":"androidx/core/view/OnApplyWindowInsetsListener.class","size":418,"crc":821875535},{"key":"androidx/core/view/OnReceiveContentListener.class","name":"androidx/core/view/OnReceiveContentListener.class","size":440,"crc":-51731300},{"key":"androidx/core/view/OnReceiveContentViewBehavior.class","name":"androidx/core/view/OnReceiveContentViewBehavior.class","size":423,"crc":-1932407804},{"key":"androidx/core/view/OneShotPreDrawListener.class","name":"androidx/core/view/OneShotPreDrawListener.class","size":2307,"crc":-501338103},{"key":"androidx/core/view/PointerIconCompat$Api24Impl.class","name":"androidx/core/view/PointerIconCompat$Api24Impl.class","size":1259,"crc":-1765924208},{"key":"androidx/core/view/PointerIconCompat.class","name":"androidx/core/view/PointerIconCompat.class","size":3083,"crc":652835173},{"key":"androidx/core/view/ScaleGestureDetectorCompat.class","name":"androidx/core/view/ScaleGestureDetectorCompat.class","size":1187,"crc":1698678462},{"key":"androidx/core/view/ScrollingView.class","name":"androidx/core/view/ScrollingView.class","size":364,"crc":-218140119},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl.class","size":596,"crc":-596741455},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl20.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl20.class","size":2596,"crc":1848626303},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl30.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat$Impl30.class","size":4052,"crc":-820004648},{"key":"androidx/core/view/SoftwareKeyboardControllerCompat.class","name":"androidx/core/view/SoftwareKeyboardControllerCompat.class","size":1685,"crc":-1955609034},{"key":"androidx/core/view/TintableBackgroundView.class","name":"androidx/core/view/TintableBackgroundView.class","size":723,"crc":1795767615},{"key":"androidx/core/view/VelocityTrackerCompat$Api34Impl.class","name":"androidx/core/view/VelocityTrackerCompat$Api34Impl.class","size":1135,"crc":-56836724},{"key":"androidx/core/view/VelocityTrackerCompat$VelocityTrackableMotionEventAxis.class","name":"androidx/core/view/VelocityTrackerCompat$VelocityTrackableMotionEventAxis.class","size":711,"crc":1429362118},{"key":"androidx/core/view/VelocityTrackerCompat.class","name":"androidx/core/view/VelocityTrackerCompat.class","size":4023,"crc":-1355891040},{"key":"androidx/core/view/VelocityTrackerFallback.class","name":"androidx/core/view/VelocityTrackerFallback.class","size":2833,"crc":1553350646},{"key":"androidx/core/view/ViewCompat$1.class","name":"androidx/core/view/ViewCompat$1.class","size":2347,"crc":2014484077},{"key":"androidx/core/view/ViewCompat$2.class","name":"androidx/core/view/ViewCompat$2.class","size":2160,"crc":1965995768},{"key":"androidx/core/view/ViewCompat$3.class","name":"androidx/core/view/ViewCompat$3.class","size":2155,"crc":1332965266},{"key":"androidx/core/view/ViewCompat$4.class","name":"androidx/core/view/ViewCompat$4.class","size":2217,"crc":-1634602532},{"key":"androidx/core/view/ViewCompat$AccessibilityPaneVisibilityManager.class","name":"androidx/core/view/ViewCompat$AccessibilityPaneVisibilityManager.class","size":3791,"crc":1632848381},{"key":"androidx/core/view/ViewCompat$AccessibilityViewProperty.class","name":"androidx/core/view/ViewCompat$AccessibilityViewProperty.class","size":3143,"crc":-1256677346},{"key":"androidx/core/view/ViewCompat$Api20Impl.class","name":"androidx/core/view/ViewCompat$Api20Impl.class","size":1126,"crc":-9984510},{"key":"androidx/core/view/ViewCompat$Api21Impl$1.class","name":"androidx/core/view/ViewCompat$Api21Impl$1.class","size":2038,"crc":-1553055455},{"key":"androidx/core/view/ViewCompat$Api21Impl.class","name":"androidx/core/view/ViewCompat$Api21Impl.class","size":7146,"crc":-1249325660},{"key":"androidx/core/view/ViewCompat$Api23Impl.class","name":"androidx/core/view/ViewCompat$Api23Impl.class","size":1943,"crc":-949989883},{"key":"androidx/core/view/ViewCompat$Api24Impl.class","name":"androidx/core/view/ViewCompat$Api24Impl.class","size":2146,"crc":-935460301},{"key":"androidx/core/view/ViewCompat$Api26Impl.class","name":"androidx/core/view/ViewCompat$Api26Impl.class","size":3597,"crc":-788702953},{"key":"androidx/core/view/ViewCompat$Api28Impl.class","name":"androidx/core/view/ViewCompat$Api28Impl.class","size":4705,"crc":592211972},{"key":"androidx/core/view/ViewCompat$Api29Impl.class","name":"androidx/core/view/ViewCompat$Api29Impl.class","size":3051,"crc":-128268501},{"key":"androidx/core/view/ViewCompat$Api30Impl.class","name":"androidx/core/view/ViewCompat$Api30Impl.class","size":2180,"crc":172388591},{"key":"androidx/core/view/ViewCompat$Api31Impl.class","name":"androidx/core/view/ViewCompat$Api31Impl.class","size":2229,"crc":923740304},{"key":"androidx/core/view/ViewCompat$FocusDirection.class","name":"androidx/core/view/ViewCompat$FocusDirection.class","size":642,"crc":1155425484},{"key":"androidx/core/view/ViewCompat$FocusRealDirection.class","name":"androidx/core/view/ViewCompat$FocusRealDirection.class","size":650,"crc":749280326},{"key":"androidx/core/view/ViewCompat$FocusRelativeDirection.class","name":"androidx/core/view/ViewCompat$FocusRelativeDirection.class","size":658,"crc":1576246077},{"key":"androidx/core/view/ViewCompat$NestedScrollType.class","name":"androidx/core/view/ViewCompat$NestedScrollType.class","size":646,"crc":1643799421},{"key":"androidx/core/view/ViewCompat$OnReceiveContentListenerAdapter.class","name":"androidx/core/view/ViewCompat$OnReceiveContentListenerAdapter.class","size":1714,"crc":750143101},{"key":"androidx/core/view/ViewCompat$OnUnhandledKeyEventListenerCompat.class","name":"androidx/core/view/ViewCompat$OnUnhandledKeyEventListenerCompat.class","size":424,"crc":-762508931},{"key":"androidx/core/view/ViewCompat$ScrollAxis.class","name":"androidx/core/view/ViewCompat$ScrollAxis.class","size":634,"crc":-1481000453},{"key":"androidx/core/view/ViewCompat$ScrollIndicators.class","name":"androidx/core/view/ViewCompat$ScrollIndicators.class","size":646,"crc":-1203320779},{"key":"androidx/core/view/ViewCompat$UnhandledKeyEventManager.class","name":"androidx/core/view/ViewCompat$UnhandledKeyEventManager.class","size":5914,"crc":-68237476},{"key":"androidx/core/view/ViewCompat.class","name":"androidx/core/view/ViewCompat.class","size":59370,"crc":1896916239},{"key":"androidx/core/view/ViewConfigurationCompat$Api26Impl.class","name":"androidx/core/view/ViewConfigurationCompat$Api26Impl.class","size":946,"crc":1784829614},{"key":"androidx/core/view/ViewConfigurationCompat$Api28Impl.class","name":"androidx/core/view/ViewConfigurationCompat$Api28Impl.class","size":990,"crc":-912023001},{"key":"androidx/core/view/ViewConfigurationCompat$Api34Impl.class","name":"androidx/core/view/ViewConfigurationCompat$Api34Impl.class","size":1161,"crc":-89677823},{"key":"androidx/core/view/ViewConfigurationCompat.class","name":"androidx/core/view/ViewConfigurationCompat.class","size":7481,"crc":-1797316171},{"key":"androidx/core/view/ViewGroupCompat$Api21Impl.class","name":"androidx/core/view/ViewGroupCompat$Api21Impl.class","size":1055,"crc":402402769},{"key":"androidx/core/view/ViewGroupCompat.class","name":"androidx/core/view/ViewGroupCompat.class","size":2808,"crc":756322627},{"key":"androidx/core/view/ViewParentCompat$Api21Impl.class","name":"androidx/core/view/ViewParentCompat$Api21Impl.class","size":2353,"crc":-585042330},{"key":"androidx/core/view/ViewParentCompat.class","name":"androidx/core/view/ViewParentCompat.class","size":7252,"crc":-895791330},{"key":"androidx/core/view/ViewPropertyAnimatorCompat$1.class","name":"androidx/core/view/ViewPropertyAnimatorCompat$1.class","size":1433,"crc":-1943472778},{"key":"androidx/core/view/ViewPropertyAnimatorCompat$Api21Impl.class","name":"androidx/core/view/ViewPropertyAnimatorCompat$Api21Impl.class","size":1230,"crc":-189188170},{"key":"androidx/core/view/ViewPropertyAnimatorCompat.class","name":"androidx/core/view/ViewPropertyAnimatorCompat.class","size":10340,"crc":-2110957819},{"key":"androidx/core/view/ViewPropertyAnimatorListener.class","name":"androidx/core/view/ViewPropertyAnimatorListener.class","size":371,"crc":1924827163},{"key":"androidx/core/view/ViewPropertyAnimatorListenerAdapter.class","name":"androidx/core/view/ViewPropertyAnimatorListenerAdapter.class","size":844,"crc":-799948790},{"key":"androidx/core/view/ViewPropertyAnimatorUpdateListener.class","name":"androidx/core/view/ViewPropertyAnimatorUpdateListener.class","size":305,"crc":1797357548},{"key":"androidx/core/view/ViewStructureCompat$Api23Impl.class","name":"androidx/core/view/ViewStructureCompat$Api23Impl.class","size":1495,"crc":1645219278},{"key":"androidx/core/view/ViewStructureCompat.class","name":"androidx/core/view/ViewStructureCompat.class","size":2193,"crc":-729643503},{"key":"androidx/core/view/WindowCompat$Api16Impl.class","name":"androidx/core/view/WindowCompat$Api16Impl.class","size":1077,"crc":-494859518},{"key":"androidx/core/view/WindowCompat$Api28Impl.class","name":"androidx/core/view/WindowCompat$Api28Impl.class","size":856,"crc":-841604914},{"key":"androidx/core/view/WindowCompat$Api30Impl.class","name":"androidx/core/view/WindowCompat$Api30Impl.class","size":869,"crc":-1462428972},{"key":"androidx/core/view/WindowCompat.class","name":"androidx/core/view/WindowCompat.class","size":2194,"crc":-1144865123},{"key":"androidx/core/view/WindowInsetsAnimationCompat$BoundsCompat.class","name":"androidx/core/view/WindowInsetsAnimationCompat$BoundsCompat.class","size":3016,"crc":-663239670},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Callback$DispatchMode.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Callback$DispatchMode.class","size":771,"crc":-19343690},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Callback.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Callback.class","size":2066,"crc":209494665},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl.class","size":1808,"crc":400888180},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$1.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$1.class","size":2587,"crc":430262637},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$2.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$2.class","size":1635,"crc":138536965},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$3.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener$3.class","size":2016,"crc":-1061163575},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21$Impl21OnApplyWindowInsetsListener.class","size":5763,"crc":-1045538398},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl21.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl21.class","size":9225,"crc":-312622289},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl30$ProxyCallback.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl30$ProxyCallback.class","size":4827,"crc":21717133},{"key":"androidx/core/view/WindowInsetsAnimationCompat$Impl30.class","name":"androidx/core/view/WindowInsetsAnimationCompat$Impl30.class","size":3826,"crc":426416019},{"key":"androidx/core/view/WindowInsetsAnimationCompat.class","name":"androidx/core/view/WindowInsetsAnimationCompat.class","size":3503,"crc":-476679620},{"key":"androidx/core/view/WindowInsetsAnimationControlListenerCompat.class","name":"androidx/core/view/WindowInsetsAnimationControlListenerCompat.class","size":519,"crc":-1375959183},{"key":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl.class","name":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl.class","size":1814,"crc":1764069739},{"key":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl30.class","name":"androidx/core/view/WindowInsetsAnimationControllerCompat$Impl30.class","size":2580,"crc":-1670379821},{"key":"androidx/core/view/WindowInsetsAnimationControllerCompat.class","name":"androidx/core/view/WindowInsetsAnimationControllerCompat.class","size":2455,"crc":-1206962161},{"key":"androidx/core/view/WindowInsetsCompat$Api21ReflectionHolder.class","name":"androidx/core/view/WindowInsetsCompat$Api21ReflectionHolder.class","size":3507,"crc":-451676334},{"key":"androidx/core/view/WindowInsetsCompat$Builder.class","name":"androidx/core/view/WindowInsetsCompat$Builder.class","size":3668,"crc":873871434},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl.class","size":3188,"crc":952023470},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl20.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl20.class","size":3845,"crc":-1367789157},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl29.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl29.class","size":3157,"crc":-1700995255},{"key":"androidx/core/view/WindowInsetsCompat$BuilderImpl30.class","name":"androidx/core/view/WindowInsetsCompat$BuilderImpl30.class","size":1858,"crc":-362799567},{"key":"androidx/core/view/WindowInsetsCompat$Impl.class","name":"androidx/core/view/WindowInsetsCompat$Impl.class","size":4440,"crc":587911647},{"key":"androidx/core/view/WindowInsetsCompat$Impl20.class","name":"androidx/core/view/WindowInsetsCompat$Impl20.class","size":9787,"crc":-1633841618},{"key":"androidx/core/view/WindowInsetsCompat$Impl21.class","name":"androidx/core/view/WindowInsetsCompat$Impl21.class","size":2425,"crc":202908659},{"key":"androidx/core/view/WindowInsetsCompat$Impl28.class","name":"androidx/core/view/WindowInsetsCompat$Impl28.class","size":2327,"crc":-559644749},{"key":"androidx/core/view/WindowInsetsCompat$Impl29.class","name":"androidx/core/view/WindowInsetsCompat$Impl29.class","size":2617,"crc":-220432070},{"key":"androidx/core/view/WindowInsetsCompat$Impl30.class","name":"androidx/core/view/WindowInsetsCompat$Impl30.class","size":2255,"crc":2128860632},{"key":"androidx/core/view/WindowInsetsCompat$Type$InsetsType.class","name":"androidx/core/view/WindowInsetsCompat$Type$InsetsType.class","size":719,"crc":1917876408},{"key":"androidx/core/view/WindowInsetsCompat$Type.class","name":"androidx/core/view/WindowInsetsCompat$Type.class","size":2387,"crc":1816556379},{"key":"androidx/core/view/WindowInsetsCompat$TypeImpl30.class","name":"androidx/core/view/WindowInsetsCompat$TypeImpl30.class","size":1293,"crc":903114413},{"key":"androidx/core/view/WindowInsetsCompat.class","name":"androidx/core/view/WindowInsetsCompat.class","size":10735,"crc":1488646022},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl.class","size":2318,"crc":487295909},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl20.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl20.class","size":4149,"crc":740369200},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl23.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl23.class","size":1629,"crc":-135562880},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl26.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl26.class","size":1634,"crc":1693726333},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl30$1.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl30$1.class","size":2291,"crc":1968305723},{"key":"androidx/core/view/WindowInsetsControllerCompat$Impl30.class","name":"androidx/core/view/WindowInsetsControllerCompat$Impl30.class","size":7376,"crc":-2028220928},{"key":"androidx/core/view/WindowInsetsControllerCompat$OnControllableInsetsChangedListener.class","name":"androidx/core/view/WindowInsetsControllerCompat$OnControllableInsetsChangedListener.class","size":494,"crc":1407225033},{"key":"androidx/core/view/WindowInsetsControllerCompat.class","name":"androidx/core/view/WindowInsetsControllerCompat.class","size":5064,"crc":152015089},{"key":"androidx/core/view/accessibility/AccessibilityClickableSpanCompat.class","name":"androidx/core/view/accessibility/AccessibilityClickableSpanCompat.class","size":1703,"crc":566446454},{"key":"androidx/core/view/accessibility/AccessibilityEventCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityEventCompat$Api34Impl.class","size":1131,"crc":1836249342},{"key":"androidx/core/view/accessibility/AccessibilityEventCompat$ContentChangeType.class","name":"androidx/core/view/accessibility/AccessibilityEventCompat$ContentChangeType.class","size":718,"crc":701609424},{"key":"androidx/core/view/accessibility/AccessibilityEventCompat.class","name":"androidx/core/view/accessibility/AccessibilityEventCompat.class","size":5402,"crc":-1750471231},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListener.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListener.class","size":477,"crc":1509031422},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerCompat.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerCompat.class","size":811,"crc":1411476729},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerWrapper.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$AccessibilityStateChangeListenerWrapper.class","size":1686,"crc":575055372},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$Api34Impl.class","size":938,"crc":-1054095445},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListener.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListener.class","size":384,"crc":-1837815159},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListenerWrapper.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat$TouchExplorationStateChangeListenerWrapper.class","size":1713,"crc":1165713886},{"key":"androidx/core/view/accessibility/AccessibilityManagerCompat.class","name":"androidx/core/view/accessibility/AccessibilityManagerCompat.class","size":4426,"crc":-1383485855},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$AccessibilityActionCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$AccessibilityActionCompat.class","size":11582,"crc":1273619610},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api21Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api21Impl.class","size":1399,"crc":-696913560},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api30Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api30Impl.class","size":1536,"crc":575269572},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api33Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api33Impl.class","size":4419,"crc":1345792111},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$Api34Impl.class","size":3590,"crc":1833340314},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionInfoCompat.class","size":2117,"crc":1385820584},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat$Builder.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat$Builder.class","size":3564,"crc":1295266963},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$CollectionItemInfoCompat.class","size":2985,"crc":2023102495},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$RangeInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$RangeInfoCompat.class","size":2028,"crc":1506044189},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$TouchDelegateInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat$TouchDelegateInfoCompat.class","size":2545,"crc":-1621556349},{"key":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeInfoCompat.class","size":46148,"crc":126892516},{"key":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi19.class","name":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi19.class","size":2633,"crc":1280780439},{"key":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi26.class","name":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi26.class","size":1697,"crc":-251749915},{"key":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat.class","name":"androidx/core/view/accessibility/AccessibilityNodeProviderCompat.class","size":2621,"crc":188254524},{"key":"androidx/core/view/accessibility/AccessibilityRecordCompat.class","name":"androidx/core/view/accessibility/AccessibilityRecordCompat.class","size":8568,"crc":311434289},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$CommandArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$CommandArguments.class","size":1020,"crc":1383842063},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveAtGranularityArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveAtGranularityArguments.class","size":1120,"crc":1283304259},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveHtmlArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveHtmlArguments.class","size":1014,"crc":712771277},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveWindowArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$MoveWindowArguments.class","size":1000,"crc":2123823754},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$ScrollToPositionArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$ScrollToPositionArguments.class","size":1070,"crc":-838097745},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$SetProgressArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$SetProgressArguments.class","size":932,"crc":1128765126},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$SetSelectionArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$SetSelectionArguments.class","size":1022,"crc":1087470567},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand$SetTextArguments.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand$SetTextArguments.class","size":1024,"crc":637844774},{"key":"androidx/core/view/accessibility/AccessibilityViewCommand.class","name":"androidx/core/view/accessibility/AccessibilityViewCommand.class","size":1347,"crc":-1100584727},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api21Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api21Impl.class","size":2788,"crc":917831218},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api24Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api24Impl.class","size":1224,"crc":-523677408},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api26Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api26Impl.class","size":937,"crc":855397755},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api30Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api30Impl.class","size":858,"crc":1761157054},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api33Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api33Impl.class","size":1687,"crc":-1238990567},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api34Impl.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat$Api34Impl.class","size":1140,"crc":-814534727},{"key":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat.class","name":"androidx/core/view/accessibility/AccessibilityWindowInfoCompat.class","size":8894,"crc":-1701157246},{"key":"androidx/core/view/animation/PathInterpolatorApi14.class","name":"androidx/core/view/animation/PathInterpolatorApi14.class","size":2333,"crc":1168129793},{"key":"androidx/core/view/animation/PathInterpolatorCompat$Api21Impl.class","name":"androidx/core/view/animation/PathInterpolatorCompat$Api21Impl.class","size":1289,"crc":1556389558},{"key":"androidx/core/view/animation/PathInterpolatorCompat.class","name":"androidx/core/view/animation/PathInterpolatorCompat.class","size":1515,"crc":-1645199051},{"key":"androidx/core/view/autofill/AutofillIdCompat.class","name":"androidx/core/view/autofill/AutofillIdCompat.class","size":1073,"crc":-867735316},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api23Impl.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api23Impl.class","size":890,"crc":-112680947},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api29Impl.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api29Impl.class","size":2720,"crc":-1799560617},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api34Impl.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat$Api34Impl.class","size":1238,"crc":1545892060},{"key":"androidx/core/view/contentcapture/ContentCaptureSessionCompat.class","name":"androidx/core/view/contentcapture/ContentCaptureSessionCompat.class","size":5395,"crc":-518664933},{"key":"androidx/core/view/inputmethod/EditorInfoCompat$Api30Impl.class","name":"androidx/core/view/inputmethod/EditorInfoCompat$Api30Impl.class","size":1627,"crc":725359131},{"key":"androidx/core/view/inputmethod/EditorInfoCompat.class","name":"androidx/core/view/inputmethod/EditorInfoCompat.class","size":8702,"crc":-386770413},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$1.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$1.class","size":1833,"crc":797796400},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$2.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$2.class","size":1649,"crc":2047863385},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$Api25Impl.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$Api25Impl.class","size":1134,"crc":1360607248},{"key":"androidx/core/view/inputmethod/InputConnectionCompat$OnCommitContentListener.class","name":"androidx/core/view/inputmethod/InputConnectionCompat$OnCommitContentListener.class","size":525,"crc":1476989102},{"key":"androidx/core/view/inputmethod/InputConnectionCompat.class","name":"androidx/core/view/inputmethod/InputConnectionCompat.class","size":11367,"crc":-1885061227},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatApi25Impl.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatApi25Impl.class","size":2094,"crc":1456256422},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatBaseImpl.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatBaseImpl.class","size":1773,"crc":1624196168},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatImpl.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat$InputContentInfoCompatImpl.class","size":690,"crc":1074534587},{"key":"androidx/core/view/inputmethod/InputContentInfoCompat.class","name":"androidx/core/view/inputmethod/InputContentInfoCompat.class","size":2707,"crc":877487393},{"key":"androidx/core/widget/AutoScrollHelper$ClampedScroller.class","name":"androidx/core/widget/AutoScrollHelper$ClampedScroller.class","size":3002,"crc":-1881276443},{"key":"androidx/core/widget/AutoScrollHelper$ScrollAnimationRunnable.class","name":"androidx/core/widget/AutoScrollHelper$ScrollAnimationRunnable.class","size":1582,"crc":1842928479},{"key":"androidx/core/widget/AutoScrollHelper.class","name":"androidx/core/widget/AutoScrollHelper.class","size":8621,"crc":1783212020},{"key":"androidx/core/widget/AutoSizeableTextView.class","name":"androidx/core/widget/AutoSizeableTextView.class","size":1312,"crc":383680365},{"key":"androidx/core/widget/CheckedTextViewCompat$Api21Impl.class","name":"androidx/core/widget/CheckedTextViewCompat$Api21Impl.class","size":1853,"crc":-283751687},{"key":"androidx/core/widget/CheckedTextViewCompat.class","name":"androidx/core/widget/CheckedTextViewCompat.class","size":2536,"crc":-801797701},{"key":"androidx/core/widget/CompoundButtonCompat$Api21Impl.class","name":"androidx/core/widget/CompoundButtonCompat$Api21Impl.class","size":1729,"crc":177035831},{"key":"androidx/core/widget/CompoundButtonCompat$Api23Impl.class","name":"androidx/core/widget/CompoundButtonCompat$Api23Impl.class","size":875,"crc":-1351051043},{"key":"androidx/core/widget/CompoundButtonCompat.class","name":"androidx/core/widget/CompoundButtonCompat.class","size":3549,"crc":-578277603},{"key":"androidx/core/widget/ContentLoadingProgressBar.class","name":"androidx/core/widget/ContentLoadingProgressBar.class","size":3255,"crc":-251890886},{"key":"androidx/core/widget/EdgeEffectCompat$Api21Impl.class","name":"androidx/core/widget/EdgeEffectCompat$Api21Impl.class","size":827,"crc":1024816863},{"key":"androidx/core/widget/EdgeEffectCompat$Api31Impl.class","name":"androidx/core/widget/EdgeEffectCompat$Api31Impl.class","size":1565,"crc":941125704},{"key":"androidx/core/widget/EdgeEffectCompat.class","name":"androidx/core/widget/EdgeEffectCompat.class","size":2939,"crc":-1785843503},{"key":"androidx/core/widget/ImageViewCompat$Api21Impl.class","name":"androidx/core/widget/ImageViewCompat$Api21Impl.class","size":1670,"crc":-1775682416},{"key":"androidx/core/widget/ImageViewCompat.class","name":"androidx/core/widget/ImageViewCompat.class","size":2780,"crc":-795067799},{"key":"androidx/core/widget/ListPopupWindowCompat.class","name":"androidx/core/widget/ListPopupWindowCompat.class","size":1253,"crc":1222268757},{"key":"androidx/core/widget/ListViewAutoScrollHelper.class","name":"androidx/core/widget/ListViewAutoScrollHelper.class","size":1611,"crc":1886614277},{"key":"androidx/core/widget/ListViewCompat.class","name":"androidx/core/widget/ListViewCompat.class","size":899,"crc":-1092787587},{"key":"androidx/core/widget/NestedScrollView$AccessibilityDelegate.class","name":"androidx/core/widget/NestedScrollView$AccessibilityDelegate.class","size":3675,"crc":-1158356231},{"key":"androidx/core/widget/NestedScrollView$Api21Impl.class","name":"androidx/core/widget/NestedScrollView$Api21Impl.class","size":762,"crc":1045126175},{"key":"androidx/core/widget/NestedScrollView$DifferentialMotionFlingTargetImpl.class","name":"androidx/core/widget/NestedScrollView$DifferentialMotionFlingTargetImpl.class","size":1290,"crc":-1836699415},{"key":"androidx/core/widget/NestedScrollView$OnScrollChangeListener.class","name":"androidx/core/widget/NestedScrollView$OnScrollChangeListener.class","size":422,"crc":-761668443},{"key":"androidx/core/widget/NestedScrollView$SavedState$1.class","name":"androidx/core/widget/NestedScrollView$SavedState$1.class","size":1315,"crc":2029700730},{"key":"androidx/core/widget/NestedScrollView$SavedState.class","name":"androidx/core/widget/NestedScrollView$SavedState.class","size":1969,"crc":-1634809784},{"key":"androidx/core/widget/NestedScrollView.class","name":"androidx/core/widget/NestedScrollView.class","size":41899,"crc":-1408253433},{"key":"androidx/core/widget/PopupMenuCompat.class","name":"androidx/core/widget/PopupMenuCompat.class","size":845,"crc":2027517968},{"key":"androidx/core/widget/PopupWindowCompat$Api23Impl.class","name":"androidx/core/widget/PopupWindowCompat$Api23Impl.class","size":1283,"crc":-1877238009},{"key":"androidx/core/widget/PopupWindowCompat.class","name":"androidx/core/widget/PopupWindowCompat.class","size":3936,"crc":-1990325588},{"key":"androidx/core/widget/ScrollerCompat.class","name":"androidx/core/widget/ScrollerCompat.class","size":3656,"crc":-54539407},{"key":"androidx/core/widget/TextViewCompat$Api23Impl.class","name":"androidx/core/widget/TextViewCompat$Api23Impl.class","size":2274,"crc":-1823767142},{"key":"androidx/core/widget/TextViewCompat$Api24Impl.class","name":"androidx/core/widget/TextViewCompat$Api24Impl.class","size":781,"crc":870517322},{"key":"androidx/core/widget/TextViewCompat$Api26Impl.class","name":"androidx/core/widget/TextViewCompat$Api26Impl.class","size":1950,"crc":1313675659},{"key":"androidx/core/widget/TextViewCompat$Api28Impl.class","name":"androidx/core/widget/TextViewCompat$Api28Impl.class","size":1619,"crc":775530023},{"key":"androidx/core/widget/TextViewCompat$Api34Impl.class","name":"androidx/core/widget/TextViewCompat$Api34Impl.class","size":959,"crc":1521316654},{"key":"androidx/core/widget/TextViewCompat$AutoSizeTextType.class","name":"androidx/core/widget/TextViewCompat$AutoSizeTextType.class","size":662,"crc":-1792362665},{"key":"androidx/core/widget/TextViewCompat$OreoCallback.class","name":"androidx/core/widget/TextViewCompat$OreoCallback.class","size":7346,"crc":-1591411371},{"key":"androidx/core/widget/TextViewCompat.class","name":"androidx/core/widget/TextViewCompat.class","size":15171,"crc":495483427},{"key":"androidx/core/widget/TextViewOnReceiveContentListener.class","name":"androidx/core/widget/TextViewOnReceiveContentListener.class","size":3894,"crc":-1743557502},{"key":"androidx/core/widget/TintableCheckedTextView.class","name":"androidx/core/widget/TintableCheckedTextView.class","size":946,"crc":-75470643},{"key":"androidx/core/widget/TintableCompoundButton.class","name":"androidx/core/widget/TintableCompoundButton.class","size":709,"crc":-546728220},{"key":"androidx/core/widget/TintableCompoundDrawablesView.class","name":"androidx/core/widget/TintableCompoundDrawablesView.class","size":767,"crc":-2060620041},{"key":"androidx/core/widget/TintableImageSourceView.class","name":"androidx/core/widget/TintableImageSourceView.class","size":930,"crc":-1647897496},{"key":"META-INF/androidx.core_core.version","name":"META-INF/androidx.core_core.version","size":7,"crc":-1000712479},{"key":"META-INF/core_release.kotlin_module","name":"META-INF/core_release.kotlin_module","size":24,"crc":1613429616}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/beHJJSAYkpmGXiWpiP3g6Q== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/beHJJSAYkpmGXiWpiP3g6Q== new file mode 100644 index 0000000..86f554c --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/beHJJSAYkpmGXiWpiP3g6Q== @@ -0,0 +1 @@ +[{"key":"androidx/arch/core/executor/ArchTaskExecutor.class","name":"androidx/arch/core/executor/ArchTaskExecutor.class","size":2950,"crc":-173664277},{"key":"androidx/arch/core/executor/DefaultTaskExecutor$1.class","name":"androidx/arch/core/executor/DefaultTaskExecutor$1.class","size":1445,"crc":-1550744660},{"key":"androidx/arch/core/executor/DefaultTaskExecutor$Api28Impl.class","name":"androidx/arch/core/executor/DefaultTaskExecutor$Api28Impl.class","size":834,"crc":1774766260},{"key":"androidx/arch/core/executor/DefaultTaskExecutor.class","name":"androidx/arch/core/executor/DefaultTaskExecutor.class","size":3293,"crc":-1256626107},{"key":"androidx/arch/core/executor/TaskExecutor.class","name":"androidx/arch/core/executor/TaskExecutor.class","size":1053,"crc":1399542030},{"key":"META-INF/androidx.arch.core_core-runtime.version","name":"META-INF/androidx.arch.core_core-runtime.version","size":67,"crc":1307063212}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fKjl5LoGXOsT1A8jRTh05Q== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fKjl5LoGXOsT1A8jRTh05Q== new file mode 100644 index 0000000..7f16fd7 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fKjl5LoGXOsT1A8jRTh05Q== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"androidx/arch/core/internal/FastSafeIterableMap.class","name":"androidx/arch/core/internal/FastSafeIterableMap.class","size":2907,"crc":2116950419},{"key":"androidx/arch/core/internal/SafeIterableMap$AscendingIterator.class","name":"androidx/arch/core/internal/SafeIterableMap$AscendingIterator.class","size":1775,"crc":-347866117},{"key":"androidx/arch/core/internal/SafeIterableMap$DescendingIterator.class","name":"androidx/arch/core/internal/SafeIterableMap$DescendingIterator.class","size":1779,"crc":1644932214},{"key":"androidx/arch/core/internal/SafeIterableMap$Entry.class","name":"androidx/arch/core/internal/SafeIterableMap$Entry.class","size":2378,"crc":1824924906},{"key":"androidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions.class","name":"androidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions.class","size":2551,"crc":1452189535},{"key":"androidx/arch/core/internal/SafeIterableMap$ListIterator.class","name":"androidx/arch/core/internal/SafeIterableMap$ListIterator.class","size":2977,"crc":-1002357144},{"key":"androidx/arch/core/internal/SafeIterableMap$SupportRemove.class","name":"androidx/arch/core/internal/SafeIterableMap$SupportRemove.class","size":1208,"crc":1494321347},{"key":"androidx/arch/core/internal/SafeIterableMap.class","name":"androidx/arch/core/internal/SafeIterableMap.class","size":7303,"crc":1636361416},{"key":"androidx/arch/core/util/Function.class","name":"androidx/arch/core/util/Function.class","size":280,"crc":896912248}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/kVnRXNgN+vMYJNE4EAct9w== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/kVnRXNgN+vMYJNE4EAct9w== new file mode 100644 index 0000000..e35500e --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/kVnRXNgN+vMYJNE4EAct9w== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":225,"crc":1808098489},{"key":"META-INF/versions/9/module-info.class","name":"META-INF/versions/9/module-info.class","size":257,"crc":-1911524020}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/m2K3W87_Q7IzTey3e9Fuwg== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/m2K3W87_Q7IzTey3e9Fuwg== new file mode 100644 index 0000000..d7c9429 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/m2K3W87_Q7IzTey3e9Fuwg== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":108,"crc":1316044605},{"key":"com/google/common/util/concurrent/ListenableFuture.class","name":"com/google/common/util/concurrent/ListenableFuture.class","size":358,"crc":-1374437012},{"key":"META-INF/maven/com.google.guava/listenablefuture/pom.xml","name":"META-INF/maven/com.google.guava/listenablefuture/pom.xml","size":2226,"crc":65817035},{"key":"META-INF/maven/com.google.guava/listenablefuture/pom.properties","name":"META-INF/maven/com.google.guava/listenablefuture/pom.properties","size":96,"crc":1661854904}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/obv7dxiA6PjxHBXMHYeJgw== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/obv7dxiA6PjxHBXMHYeJgw== new file mode 100644 index 0000000..9af8d21 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/obv7dxiA6PjxHBXMHYeJgw== @@ -0,0 +1 @@ +[{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$1.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$1.class","size":1931,"crc":-1640808297},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$2.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$2.class","size":1977,"crc":-1225768483},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$3.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$3.class","size":1963,"crc":460228250},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$4.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$4.class","size":2482,"crc":-542943736},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$1.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$1.class","size":2151,"crc":-318782002},{"key":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$2.class","name":"androidx/activity/ActivityViewModelLazyKt$viewModels$factoryPromise$2.class","size":2183,"crc":1495941665},{"key":"androidx/activity/ActivityViewModelLazyKt.class","name":"androidx/activity/ActivityViewModelLazyKt.class","size":4396,"crc":-1784820198},{"key":"androidx/activity/Api26Impl.class","name":"androidx/activity/Api26Impl.class","size":1654,"crc":-1947708465},{"key":"androidx/activity/Api34Impl.class","name":"androidx/activity/Api34Impl.class","size":1990,"crc":-61264803},{"key":"androidx/activity/BackEventCompat$Companion.class","name":"androidx/activity/BackEventCompat$Companion.class","size":892,"crc":-358212213},{"key":"androidx/activity/BackEventCompat$SwipeEdge.class","name":"androidx/activity/BackEventCompat$SwipeEdge.class","size":1134,"crc":-662310490},{"key":"androidx/activity/BackEventCompat.class","name":"androidx/activity/BackEventCompat.class","size":3536,"crc":1190707418},{"key":"androidx/activity/Cancellable.class","name":"androidx/activity/Cancellable.class","size":421,"crc":-708940838},{"key":"androidx/activity/ComponentActivity$4.class","name":"androidx/activity/ComponentActivity$4.class","size":1739,"crc":-420230451},{"key":"androidx/activity/ComponentActivity$Api33Impl.class","name":"androidx/activity/ComponentActivity$Api33Impl.class","size":1546,"crc":1135160625},{"key":"androidx/activity/ComponentActivity$Companion.class","name":"androidx/activity/ComponentActivity$Companion.class","size":874,"crc":797283997},{"key":"androidx/activity/ComponentActivity$NonConfigurationInstances.class","name":"androidx/activity/ComponentActivity$NonConfigurationInstances.class","size":1556,"crc":1505560637},{"key":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutor.class","name":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutor.class","size":870,"crc":1636992715},{"key":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl.class","name":"androidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl.class","size":4920,"crc":-695644619},{"key":"androidx/activity/ComponentActivity$activityResultRegistry$1.class","name":"androidx/activity/ComponentActivity$activityResultRegistry$1.class","size":7012,"crc":-1213863647},{"key":"androidx/activity/ComponentActivity$defaultViewModelProviderFactory$2.class","name":"androidx/activity/ComponentActivity$defaultViewModelProviderFactory$2.class","size":1909,"crc":-1486950132},{"key":"androidx/activity/ComponentActivity$fullyDrawnReporter$2$1.class","name":"androidx/activity/ComponentActivity$fullyDrawnReporter$2$1.class","size":1313,"crc":1684342183},{"key":"androidx/activity/ComponentActivity$fullyDrawnReporter$2.class","name":"androidx/activity/ComponentActivity$fullyDrawnReporter$2.class","size":1820,"crc":-1736975351},{"key":"androidx/activity/ComponentActivity$onBackPressedDispatcher$2.class","name":"androidx/activity/ComponentActivity$onBackPressedDispatcher$2.class","size":3564,"crc":1649118532},{"key":"androidx/activity/ComponentActivity.class","name":"androidx/activity/ComponentActivity.class","size":39269,"crc":1118014164},{"key":"androidx/activity/ComponentDialog.class","name":"androidx/activity/ComponentDialog.class","size":7578,"crc":-1729260339},{"key":"androidx/activity/EdgeToEdge.class","name":"androidx/activity/EdgeToEdge.class","size":5229,"crc":-873388881},{"key":"androidx/activity/EdgeToEdgeApi21.class","name":"androidx/activity/EdgeToEdgeApi21.class","size":1719,"crc":-1861298073},{"key":"androidx/activity/EdgeToEdgeApi23.class","name":"androidx/activity/EdgeToEdgeApi23.class","size":2154,"crc":-81204071},{"key":"androidx/activity/EdgeToEdgeApi26.class","name":"androidx/activity/EdgeToEdgeApi26.class","size":2399,"crc":-1401654137},{"key":"androidx/activity/EdgeToEdgeApi28.class","name":"androidx/activity/EdgeToEdgeApi28.class","size":1410,"crc":506896715},{"key":"androidx/activity/EdgeToEdgeApi29.class","name":"androidx/activity/EdgeToEdgeApi29.class","size":2634,"crc":1647525370},{"key":"androidx/activity/EdgeToEdgeApi30.class","name":"androidx/activity/EdgeToEdgeApi30.class","size":1410,"crc":-22811235},{"key":"androidx/activity/EdgeToEdgeBase.class","name":"androidx/activity/EdgeToEdgeBase.class","size":1571,"crc":972696176},{"key":"androidx/activity/EdgeToEdgeImpl.class","name":"androidx/activity/EdgeToEdgeImpl.class","size":1036,"crc":1336037494},{"key":"androidx/activity/FullyDrawnReporter.class","name":"androidx/activity/FullyDrawnReporter.class","size":6883,"crc":1058805723},{"key":"androidx/activity/FullyDrawnReporterKt$reportWhenComplete$1.class","name":"androidx/activity/FullyDrawnReporterKt$reportWhenComplete$1.class","size":2011,"crc":1693911518},{"key":"androidx/activity/FullyDrawnReporterKt.class","name":"androidx/activity/FullyDrawnReporterKt.class","size":3103,"crc":-428465878},{"key":"androidx/activity/FullyDrawnReporterOwner.class","name":"androidx/activity/FullyDrawnReporterOwner.class","size":670,"crc":339222718},{"key":"androidx/activity/ImmLeaksCleaner$Cleaner.class","name":"androidx/activity/ImmLeaksCleaner$Cleaner.class","size":1616,"crc":-2064949897},{"key":"androidx/activity/ImmLeaksCleaner$Companion$cleaner$2.class","name":"androidx/activity/ImmLeaksCleaner$Companion$cleaner$2.class","size":2866,"crc":-1227111391},{"key":"androidx/activity/ImmLeaksCleaner$Companion.class","name":"androidx/activity/ImmLeaksCleaner$Companion.class","size":1450,"crc":2030074279},{"key":"androidx/activity/ImmLeaksCleaner$FailedInitialization.class","name":"androidx/activity/ImmLeaksCleaner$FailedInitialization.class","size":1974,"crc":-2119668364},{"key":"androidx/activity/ImmLeaksCleaner$ValidCleaner.class","name":"androidx/activity/ImmLeaksCleaner$ValidCleaner.class","size":2898,"crc":-1985390139},{"key":"androidx/activity/ImmLeaksCleaner.class","name":"androidx/activity/ImmLeaksCleaner.class","size":4138,"crc":-683231182},{"key":"androidx/activity/OnBackPressedCallback.class","name":"androidx/activity/OnBackPressedCallback.class","size":4631,"crc":1259570835},{"key":"androidx/activity/OnBackPressedDispatcher$1.class","name":"androidx/activity/OnBackPressedDispatcher$1.class","size":1793,"crc":858506618},{"key":"androidx/activity/OnBackPressedDispatcher$2.class","name":"androidx/activity/OnBackPressedDispatcher$2.class","size":1796,"crc":912983702},{"key":"androidx/activity/OnBackPressedDispatcher$3.class","name":"androidx/activity/OnBackPressedDispatcher$3.class","size":1242,"crc":729229894},{"key":"androidx/activity/OnBackPressedDispatcher$4.class","name":"androidx/activity/OnBackPressedDispatcher$4.class","size":1251,"crc":-599734795},{"key":"androidx/activity/OnBackPressedDispatcher$5.class","name":"androidx/activity/OnBackPressedDispatcher$5.class","size":1242,"crc":657272376},{"key":"androidx/activity/OnBackPressedDispatcher$Api33Impl.class","name":"androidx/activity/OnBackPressedDispatcher$Api33Impl.class","size":3101,"crc":-2011792798},{"key":"androidx/activity/OnBackPressedDispatcher$Api34Impl$createOnBackAnimationCallback$1.class","name":"androidx/activity/OnBackPressedDispatcher$Api34Impl$createOnBackAnimationCallback$1.class","size":2959,"crc":-2008672857},{"key":"androidx/activity/OnBackPressedDispatcher$Api34Impl.class","name":"androidx/activity/OnBackPressedDispatcher$Api34Impl.class","size":2569,"crc":-1353833463},{"key":"androidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable.class","name":"androidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable.class","size":3083,"crc":165265846},{"key":"androidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable.class","name":"androidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable.class","size":2502,"crc":463905704},{"key":"androidx/activity/OnBackPressedDispatcher$addCallback$1.class","name":"androidx/activity/OnBackPressedDispatcher$addCallback$1.class","size":1391,"crc":-122303386},{"key":"androidx/activity/OnBackPressedDispatcher$addCancellableCallback$1.class","name":"androidx/activity/OnBackPressedDispatcher$addCancellableCallback$1.class","size":1436,"crc":1325878599},{"key":"androidx/activity/OnBackPressedDispatcher.class","name":"androidx/activity/OnBackPressedDispatcher.class","size":13164,"crc":-1064152180},{"key":"androidx/activity/OnBackPressedDispatcherKt$addCallback$callback$1.class","name":"androidx/activity/OnBackPressedDispatcherKt$addCallback$callback$1.class","size":1519,"crc":310623790},{"key":"androidx/activity/OnBackPressedDispatcherKt.class","name":"androidx/activity/OnBackPressedDispatcherKt.class","size":2481,"crc":-746442317},{"key":"androidx/activity/OnBackPressedDispatcherOwner.class","name":"androidx/activity/OnBackPressedDispatcherOwner.class","size":780,"crc":-1780134358},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$2.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$2.class","size":2073,"crc":-1500449956},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$1.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$1.class","size":2639,"crc":-292907574},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$attachStateChangeListener$1.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1$attachStateChangeListener$1.class","size":3195,"crc":1284861015},{"key":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1.class","name":"androidx/activity/PipHintTrackerKt$trackPipAnimationHintView$flow$1.class","size":7149,"crc":-1852210835},{"key":"androidx/activity/PipHintTrackerKt.class","name":"androidx/activity/PipHintTrackerKt.class","size":2692,"crc":-1815415906},{"key":"androidx/activity/SystemBarStyle$Companion$auto$1.class","name":"androidx/activity/SystemBarStyle$Companion$auto$1.class","size":2022,"crc":1859324407},{"key":"androidx/activity/SystemBarStyle$Companion$dark$1.class","name":"androidx/activity/SystemBarStyle$Companion$dark$1.class","size":1737,"crc":2005757652},{"key":"androidx/activity/SystemBarStyle$Companion$light$1.class","name":"androidx/activity/SystemBarStyle$Companion$light$1.class","size":1741,"crc":1154515890},{"key":"androidx/activity/SystemBarStyle$Companion.class","name":"androidx/activity/SystemBarStyle$Companion.class","size":3172,"crc":2029813958},{"key":"androidx/activity/SystemBarStyle.class","name":"androidx/activity/SystemBarStyle.class","size":3699,"crc":-1762759932},{"key":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$1.class","name":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$1.class","size":1837,"crc":-1235656802},{"key":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$2.class","name":"androidx/activity/ViewTreeFullyDrawnReporterOwner$findViewTreeFullyDrawnReporterOwner$2.class","size":2002,"crc":1499649627},{"key":"androidx/activity/ViewTreeFullyDrawnReporterOwner.class","name":"androidx/activity/ViewTreeFullyDrawnReporterOwner.class","size":2521,"crc":-260827646},{"key":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1.class","name":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1.class","size":1871,"crc":-1858978807},{"key":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2.class","name":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2.class","size":2081,"crc":1066734303},{"key":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner.class","name":"androidx/activity/ViewTreeOnBackPressedDispatcherOwner.class","size":2650,"crc":1480814886},{"key":"androidx/activity/contextaware/ContextAware.class","name":"androidx/activity/contextaware/ContextAware.class","size":989,"crc":-731652454},{"key":"androidx/activity/contextaware/ContextAwareHelper.class","name":"androidx/activity/contextaware/ContextAwareHelper.class","size":2642,"crc":-737783095},{"key":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$1.class","name":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$1.class","size":2889,"crc":-1657592583},{"key":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$listener$1.class","name":"androidx/activity/contextaware/ContextAwareKt$withContextAvailable$2$listener$1.class","size":3237,"crc":-977261674},{"key":"androidx/activity/contextaware/ContextAwareKt.class","name":"androidx/activity/contextaware/ContextAwareKt.class","size":5073,"crc":40845482},{"key":"androidx/activity/contextaware/OnContextAvailableListener.class","name":"androidx/activity/contextaware/OnContextAvailableListener.class","size":682,"crc":1640788270},{"key":"androidx/activity/result/ActivityResult$Companion$CREATOR$1.class","name":"androidx/activity/result/ActivityResult$Companion$CREATOR$1.class","size":1916,"crc":781918674},{"key":"androidx/activity/result/ActivityResult$Companion.class","name":"androidx/activity/result/ActivityResult$Companion.class","size":1498,"crc":1083210728},{"key":"androidx/activity/result/ActivityResult.class","name":"androidx/activity/result/ActivityResult.class","size":3504,"crc":-324203662},{"key":"androidx/activity/result/ActivityResultCallback.class","name":"androidx/activity/result/ActivityResultCallback.class","size":628,"crc":1970847939},{"key":"androidx/activity/result/ActivityResultCaller.class","name":"androidx/activity/result/ActivityResultCaller.class","size":1976,"crc":-1122410830},{"key":"androidx/activity/result/ActivityResultCallerKt.class","name":"androidx/activity/result/ActivityResultCallerKt.class","size":4465,"crc":-1768547991},{"key":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2$1.class","name":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2$1.class","size":2729,"crc":1084971498},{"key":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2.class","name":"androidx/activity/result/ActivityResultCallerLauncher$resultContract$2.class","size":1931,"crc":1985086368},{"key":"androidx/activity/result/ActivityResultCallerLauncher.class","name":"androidx/activity/result/ActivityResultCallerLauncher.class","size":4061,"crc":-1276556932},{"key":"androidx/activity/result/ActivityResultKt.class","name":"androidx/activity/result/ActivityResultKt.class","size":1252,"crc":-1320611944},{"key":"androidx/activity/result/ActivityResultLauncher.class","name":"androidx/activity/result/ActivityResultLauncher.class","size":1623,"crc":-432064838},{"key":"androidx/activity/result/ActivityResultLauncherKt.class","name":"androidx/activity/result/ActivityResultLauncherKt.class","size":2023,"crc":1093049900},{"key":"androidx/activity/result/ActivityResultRegistry$CallbackAndContract.class","name":"androidx/activity/result/ActivityResultRegistry$CallbackAndContract.class","size":2225,"crc":455773501},{"key":"androidx/activity/result/ActivityResultRegistry$Companion.class","name":"androidx/activity/result/ActivityResultRegistry$Companion.class","size":1214,"crc":-610986503},{"key":"androidx/activity/result/ActivityResultRegistry$LifecycleContainer.class","name":"androidx/activity/result/ActivityResultRegistry$LifecycleContainer.class","size":3491,"crc":1523179344},{"key":"androidx/activity/result/ActivityResultRegistry$generateRandomNumber$1.class","name":"androidx/activity/result/ActivityResultRegistry$generateRandomNumber$1.class","size":1490,"crc":1157358130},{"key":"androidx/activity/result/ActivityResultRegistry$register$2.class","name":"androidx/activity/result/ActivityResultRegistry$register$2.class","size":4284,"crc":-789259953},{"key":"androidx/activity/result/ActivityResultRegistry$register$3.class","name":"androidx/activity/result/ActivityResultRegistry$register$3.class","size":4249,"crc":-695057735},{"key":"androidx/activity/result/ActivityResultRegistry.class","name":"androidx/activity/result/ActivityResultRegistry.class","size":17352,"crc":-192716202},{"key":"androidx/activity/result/ActivityResultRegistryOwner.class","name":"androidx/activity/result/ActivityResultRegistryOwner.class","size":726,"crc":1586312733},{"key":"androidx/activity/result/IntentSenderRequest$Builder$Flag.class","name":"androidx/activity/result/IntentSenderRequest$Builder$Flag.class","size":816,"crc":812248084},{"key":"androidx/activity/result/IntentSenderRequest$Builder.class","name":"androidx/activity/result/IntentSenderRequest$Builder.class","size":2552,"crc":634140502},{"key":"androidx/activity/result/IntentSenderRequest$Companion$CREATOR$1.class","name":"androidx/activity/result/IntentSenderRequest$Companion$CREATOR$1.class","size":1958,"crc":-1695759292},{"key":"androidx/activity/result/IntentSenderRequest$Companion.class","name":"androidx/activity/result/IntentSenderRequest$Companion.class","size":1070,"crc":589185882},{"key":"androidx/activity/result/IntentSenderRequest.class","name":"androidx/activity/result/IntentSenderRequest.class","size":3926,"crc":179881267},{"key":"androidx/activity/result/PickVisualMediaRequest$Builder.class","name":"androidx/activity/result/PickVisualMediaRequest$Builder.class","size":2378,"crc":548726142},{"key":"androidx/activity/result/PickVisualMediaRequest.class","name":"androidx/activity/result/PickVisualMediaRequest.class","size":2042,"crc":1955974580},{"key":"androidx/activity/result/PickVisualMediaRequestKt.class","name":"androidx/activity/result/PickVisualMediaRequestKt.class","size":2319,"crc":531241200},{"key":"androidx/activity/result/contract/ActivityResultContract$SynchronousResult.class","name":"androidx/activity/result/contract/ActivityResultContract$SynchronousResult.class","size":1068,"crc":1193330250},{"key":"androidx/activity/result/contract/ActivityResultContract.class","name":"androidx/activity/result/contract/ActivityResultContract.class","size":2153,"crc":1301119215},{"key":"androidx/activity/result/contract/ActivityResultContracts$CaptureVideo.class","name":"androidx/activity/result/contract/ActivityResultContracts$CaptureVideo.class","size":3553,"crc":715800925},{"key":"androidx/activity/result/contract/ActivityResultContracts$CreateDocument.class","name":"androidx/activity/result/contract/ActivityResultContracts$CreateDocument.class","size":4968,"crc":-195241468},{"key":"androidx/activity/result/contract/ActivityResultContracts$GetContent.class","name":"androidx/activity/result/contract/ActivityResultContracts$GetContent.class","size":4248,"crc":1128495298},{"key":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents$Companion.class","size":2791,"crc":169508426},{"key":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents.class","name":"androidx/activity/result/contract/ActivityResultContracts$GetMultipleContents.class","size":4623,"crc":-1122890859},{"key":"androidx/activity/result/contract/ActivityResultContracts$OpenDocument.class","name":"androidx/activity/result/contract/ActivityResultContracts$OpenDocument.class","size":4364,"crc":-1359341656},{"key":"androidx/activity/result/contract/ActivityResultContracts$OpenDocumentTree.class","name":"androidx/activity/result/contract/ActivityResultContracts$OpenDocumentTree.class","size":4333,"crc":1480534583},{"key":"androidx/activity/result/contract/ActivityResultContracts$OpenMultipleDocuments.class","name":"androidx/activity/result/contract/ActivityResultContracts$OpenMultipleDocuments.class","size":4698,"crc":-740738162},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickContact.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickContact.class","size":3280,"crc":-1744271070},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia$Companion.class","size":1822,"crc":83915716},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickMultipleVisualMedia.class","size":9194,"crc":937086656},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$Companion.class","size":5626,"crc":1679944831},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageAndVideo.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageAndVideo.class","size":1229,"crc":1211788680},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageOnly.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$ImageOnly.class","size":1217,"crc":711356033},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$SingleMimeType.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$SingleMimeType.class","size":1567,"crc":-1904724917},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VideoOnly.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VideoOnly.class","size":1217,"crc":-1872246118},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VisualMediaType.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia$VisualMediaType.class","size":1121,"crc":-810064056},{"key":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia.class","name":"androidx/activity/result/contract/ActivityResultContracts$PickVisualMedia.class","size":9863,"crc":1159340003},{"key":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion.class","size":2161,"crc":-1887116569},{"key":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions.class","name":"androidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions.class","size":8429,"crc":-616353483},{"key":"androidx/activity/result/contract/ActivityResultContracts$RequestPermission.class","name":"androidx/activity/result/contract/ActivityResultContracts$RequestPermission.class","size":5298,"crc":1898056814},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion.class","size":1121,"crc":-1011296392},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartActivityForResult.class","size":2895,"crc":-733491017},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult$Companion.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult$Companion.class","size":1241,"crc":1993673346},{"key":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult.class","name":"androidx/activity/result/contract/ActivityResultContracts$StartIntentSenderForResult.class","size":3601,"crc":-2089542287},{"key":"androidx/activity/result/contract/ActivityResultContracts$TakePicture.class","name":"androidx/activity/result/contract/ActivityResultContracts$TakePicture.class","size":3550,"crc":1431122998},{"key":"androidx/activity/result/contract/ActivityResultContracts$TakePicturePreview.class","name":"androidx/activity/result/contract/ActivityResultContracts$TakePicturePreview.class","size":4112,"crc":-932070601},{"key":"androidx/activity/result/contract/ActivityResultContracts$TakeVideo.class","name":"androidx/activity/result/contract/ActivityResultContracts$TakeVideo.class","size":4558,"crc":-61038197},{"key":"androidx/activity/result/contract/ActivityResultContracts.class","name":"androidx/activity/result/contract/ActivityResultContracts.class","size":2507,"crc":937485645},{"key":"META-INF/activity_release.kotlin_module","name":"META-INF/activity_release.kotlin_module","size":393,"crc":921419579},{"key":"META-INF/androidx.activity_activity.version","name":"META-INF/androidx.activity_activity.version","size":6,"crc":-2139691038}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/pBOqCO0ZxOLBNlwLcBkq_w== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/pBOqCO0ZxOLBNlwLcBkq_w== new file mode 100644 index 0000000..a84a1a2 --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/pBOqCO0ZxOLBNlwLcBkq_w== @@ -0,0 +1 @@ +[{"key":"androidx/lifecycle/LifecycleRegistry$Companion.class","name":"androidx/lifecycle/LifecycleRegistry$Companion.class","size":2203,"crc":881149842},{"key":"androidx/lifecycle/LifecycleRegistry$ObserverWithState.class","name":"androidx/lifecycle/LifecycleRegistry$ObserverWithState.class","size":3221,"crc":577649636},{"key":"androidx/lifecycle/LifecycleRegistry.class","name":"androidx/lifecycle/LifecycleRegistry.class","size":11316,"crc":1825754494},{"key":"androidx/lifecycle/ReportFragment$ActivityInitializationListener.class","name":"androidx/lifecycle/ReportFragment$ActivityInitializationListener.class","size":672,"crc":137325557},{"key":"androidx/lifecycle/ReportFragment$Companion.class","name":"androidx/lifecycle/ReportFragment$Companion.class","size":3889,"crc":353864254},{"key":"androidx/lifecycle/ReportFragment$LifecycleCallbacks$Companion.class","name":"androidx/lifecycle/ReportFragment$LifecycleCallbacks$Companion.class","size":1657,"crc":-2035159275},{"key":"androidx/lifecycle/ReportFragment$LifecycleCallbacks.class","name":"androidx/lifecycle/ReportFragment$LifecycleCallbacks.class","size":4134,"crc":-1042517223},{"key":"androidx/lifecycle/ReportFragment.class","name":"androidx/lifecycle/ReportFragment.class","size":4770,"crc":-1685581092},{"key":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$1.class","name":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$1.class","size":1786,"crc":1189804573},{"key":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$2.class","name":"androidx/lifecycle/ViewTreeLifecycleOwner$findViewTreeLifecycleOwner$2.class","size":1957,"crc":1482960673},{"key":"androidx/lifecycle/ViewTreeLifecycleOwner.class","name":"androidx/lifecycle/ViewTreeLifecycleOwner.class","size":2382,"crc":-1814616098},{"key":"androidx/lifecycle/LifecycleRegistryOwner.class","name":"androidx/lifecycle/LifecycleRegistryOwner.class","size":628,"crc":-858790333},{"key":"META-INF/androidx.lifecycle_lifecycle-runtime.version","name":"META-INF/androidx.lifecycle_lifecycle-runtime.version","size":72,"crc":1585985631},{"key":"META-INF/lifecycle-runtime_release.kotlin_module","name":"META-INF/lifecycle-runtime_release.kotlin_module","size":70,"crc":1413782649}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/vhTIbA9a+oTs8hGAf+0uiw== b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/vhTIbA9a+oTs8hGAf+0uiw== new file mode 100644 index 0000000..8a0df3a --- /dev/null +++ b/app/build/intermediates/incremental/release-mergeJavaRes/zip-cache/vhTIbA9a+oTs8hGAf+0uiw== @@ -0,0 +1 @@ +[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":110,"crc":507365977},{"key":"META-INF/kotlinx-coroutines-core.kotlin_module","name":"META-INF/kotlinx-coroutines-core.kotlin_module","size":2759,"crc":-760007769},{"key":"kotlinx/coroutines/BlockingEventLoop.class","name":"kotlinx/coroutines/BlockingEventLoop.class","size":971,"crc":-696097375},{"key":"kotlinx/coroutines/CoroutineContextKt$hasCopyableElements$1.class","name":"kotlinx/coroutines/CoroutineContextKt$hasCopyableElements$1.class","size":1861,"crc":-1090292545},{"key":"kotlinx/coroutines/AwaitAll.class","name":"kotlinx/coroutines/AwaitAll.class","size":5615,"crc":1766184771},{"key":"kotlinx/coroutines/CompletionHandlerKt.class","name":"kotlinx/coroutines/CompletionHandlerKt.class","size":2118,"crc":-1334012165},{"key":"kotlinx/coroutines/AwaitAll$AwaitAllNode.class","name":"kotlinx/coroutines/AwaitAll$AwaitAllNode.class","size":5036,"crc":-1656713446},{"key":"kotlinx/coroutines/JobSupport$Finishing.class","name":"kotlinx/coroutines/JobSupport$Finishing.class","size":5597,"crc":2025293751},{"key":"kotlinx/coroutines/ChildHandle.class","name":"kotlinx/coroutines/ChildHandle.class","size":1227,"crc":-1907314624},{"key":"kotlinx/coroutines/scheduling/TaskImpl.class","name":"kotlinx/coroutines/scheduling/TaskImpl.class","size":2122,"crc":-445108499},{"key":"kotlinx/coroutines/scheduling/SchedulerTimeSource.class","name":"kotlinx/coroutines/scheduling/SchedulerTimeSource.class","size":596,"crc":-428080241},{"key":"kotlinx/coroutines/scheduling/UnlimitedIoScheduler.class","name":"kotlinx/coroutines/scheduling/UnlimitedIoScheduler.class","size":1770,"crc":-155515436},{"key":"kotlinx/coroutines/scheduling/NanoTimeSource.class","name":"kotlinx/coroutines/scheduling/NanoTimeSource.class","size":922,"crc":-246161370},{"key":"kotlinx/coroutines/scheduling/TaskContext.class","name":"kotlinx/coroutines/scheduling/TaskContext.class","size":511,"crc":1070461374},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler.class","size":23174,"crc":-161143167},{"key":"kotlinx/coroutines/scheduling/Task.class","name":"kotlinx/coroutines/scheduling/Task.class","size":1476,"crc":-1144169771},{"key":"kotlinx/coroutines/scheduling/ExperimentalCoroutineDispatcher.class","name":"kotlinx/coroutines/scheduling/ExperimentalCoroutineDispatcher.class","size":7160,"crc":1451532986},{"key":"kotlinx/coroutines/scheduling/SchedulerCoroutineDispatcher.class","name":"kotlinx/coroutines/scheduling/SchedulerCoroutineDispatcher.class","size":4036,"crc":-713224338},{"key":"kotlinx/coroutines/scheduling/LimitingDispatcher.class","name":"kotlinx/coroutines/scheduling/LimitingDispatcher.class","size":4899,"crc":1775256756},{"key":"kotlinx/coroutines/scheduling/DefaultScheduler.class","name":"kotlinx/coroutines/scheduling/DefaultScheduler.class","size":1553,"crc":-1275149645},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$WorkerState.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$WorkerState.class","size":1825,"crc":1101809499},{"key":"kotlinx/coroutines/scheduling/CoroutineSchedulerKt.class","name":"kotlinx/coroutines/scheduling/CoroutineSchedulerKt.class","size":1145,"crc":1177728420},{"key":"kotlinx/coroutines/scheduling/GlobalQueue.class","name":"kotlinx/coroutines/scheduling/GlobalQueue.class","size":776,"crc":26911821},{"key":"kotlinx/coroutines/scheduling/WorkQueue.class","name":"kotlinx/coroutines/scheduling/WorkQueue.class","size":8082,"crc":-13143815},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$WhenMappings.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$WhenMappings.class","size":887,"crc":651200093},{"key":"kotlinx/coroutines/scheduling/DefaultIoScheduler.class","name":"kotlinx/coroutines/scheduling/DefaultIoScheduler.class","size":3248,"crc":-216539486},{"key":"kotlinx/coroutines/scheduling/WorkQueueKt.class","name":"kotlinx/coroutines/scheduling/WorkQueueKt.class","size":671,"crc":1119063975},{"key":"kotlinx/coroutines/scheduling/TaskContextImpl.class","name":"kotlinx/coroutines/scheduling/TaskContextImpl.class","size":914,"crc":-191034776},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$Worker.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$Worker.class","size":14304,"crc":-797856313},{"key":"kotlinx/coroutines/scheduling/TasksKt.class","name":"kotlinx/coroutines/scheduling/TasksKt.class","size":3023,"crc":921007332},{"key":"kotlinx/coroutines/scheduling/CoroutineScheduler$Companion.class","name":"kotlinx/coroutines/scheduling/CoroutineScheduler$Companion.class","size":1497,"crc":771515165},{"key":"kotlinx/coroutines/ThreadContextElement.class","name":"kotlinx/coroutines/ThreadContextElement.class","size":1263,"crc":-573590326},{"key":"kotlinx/coroutines/JobCancellingNode.class","name":"kotlinx/coroutines/JobCancellingNode.class","size":564,"crc":1007825873},{"key":"kotlinx/coroutines/ThreadState.class","name":"kotlinx/coroutines/ThreadState.class","size":4406,"crc":-985680404},{"key":"kotlinx/coroutines/ChildJob.class","name":"kotlinx/coroutines/ChildJob.class","size":1015,"crc":1474806209},{"key":"kotlinx/coroutines/NotCompleted.class","name":"kotlinx/coroutines/NotCompleted.class","size":383,"crc":851788003},{"key":"kotlinx/coroutines/CoroutineId$Key.class","name":"kotlinx/coroutines/CoroutineId$Key.class","size":1041,"crc":-1237181739},{"key":"kotlinx/coroutines/Job$DefaultImpls.class","name":"kotlinx/coroutines/Job$DefaultImpls.class","size":4465,"crc":-561797077},{"key":"kotlinx/coroutines/BlockingCoroutine.class","name":"kotlinx/coroutines/BlockingCoroutine.class","size":4111,"crc":-1374224114},{"key":"kotlinx/coroutines/ThreadContextElementKt.class","name":"kotlinx/coroutines/ThreadContextElementKt.class","size":4349,"crc":-912719937},{"key":"kotlinx/coroutines/JobKt__JobKt.class","name":"kotlinx/coroutines/JobKt__JobKt.class","size":10389,"crc":-1714412813},{"key":"kotlinx/coroutines/CoroutineDispatcher$Key.class","name":"kotlinx/coroutines/CoroutineDispatcher$Key.class","size":1666,"crc":1104601869},{"key":"kotlinx/coroutines/CoroutineDispatcher.class","name":"kotlinx/coroutines/CoroutineDispatcher.class","size":5422,"crc":1520798232},{"key":"kotlinx/coroutines/TimeoutKt.class","name":"kotlinx/coroutines/TimeoutKt.class","size":6419,"crc":-1089565792},{"key":"kotlinx/coroutines/Job.class","name":"kotlinx/coroutines/Job.class","size":3818,"crc":-942414257},{"key":"kotlinx/coroutines/InterruptibleKt$runInterruptible$2.class","name":"kotlinx/coroutines/InterruptibleKt$runInterruptible$2.class","size":3671,"crc":-1602413699},{"key":"kotlinx/coroutines/UndispatchedMarker.class","name":"kotlinx/coroutines/UndispatchedMarker.class","size":3165,"crc":-1086143584},{"key":"kotlinx/coroutines/InternalCoroutinesApi.class","name":"kotlinx/coroutines/InternalCoroutinesApi.class","size":1392,"crc":-606727820},{"key":"kotlinx/coroutines/CompletionHandlerException.class","name":"kotlinx/coroutines/CompletionHandlerException.class","size":980,"crc":934650121},{"key":"kotlinx/coroutines/JobSupport$children$1.class","name":"kotlinx/coroutines/JobSupport$children$1.class","size":5469,"crc":-2117161266},{"key":"kotlinx/coroutines/SupervisorCoroutine.class","name":"kotlinx/coroutines/SupervisorCoroutine.class","size":1343,"crc":52795980},{"key":"kotlinx/coroutines/InvokeOnCancelling.class","name":"kotlinx/coroutines/InvokeOnCancelling.class","size":2249,"crc":1779663314},{"key":"kotlinx/coroutines/CoroutineContextKt$foldCopies$folded$1.class","name":"kotlinx/coroutines/CoroutineContextKt$foldCopies$folded$1.class","size":3039,"crc":2007852724},{"key":"kotlinx/coroutines/DelayKt$awaitCancellation$1.class","name":"kotlinx/coroutines/DelayKt$awaitCancellation$1.class","size":1409,"crc":163241896},{"key":"kotlinx/coroutines/DelayKt.class","name":"kotlinx/coroutines/DelayKt.class","size":5419,"crc":-714909307},{"key":"kotlinx/coroutines/DefaultExecutorKt.class","name":"kotlinx/coroutines/DefaultExecutorKt.class","size":1595,"crc":1173233832},{"key":"kotlinx/coroutines/CompletableDeferredImpl.class","name":"kotlinx/coroutines/CompletableDeferredImpl.class","size":3715,"crc":1009206403},{"key":"kotlinx/coroutines/CompletableDeferred$DefaultImpls.class","name":"kotlinx/coroutines/CompletableDeferred$DefaultImpls.class","size":4027,"crc":957801701},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key$1.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key$1.class","size":1739,"crc":124375904},{"key":"kotlinx/coroutines/internal/OnUndeliveredElementKt.class","name":"kotlinx/coroutines/internal/OnUndeliveredElementKt.class","size":4633,"crc":-924084178},{"key":"kotlinx/coroutines/internal/InternalAnnotationsKt.class","name":"kotlinx/coroutines/internal/InternalAnnotationsKt.class","size":539,"crc":831584083},{"key":"kotlinx/coroutines/internal/WeakMapCtorCache.class","name":"kotlinx/coroutines/internal/WeakMapCtorCache.class","size":3729,"crc":-807551598},{"key":"kotlinx/coroutines/internal/ConcurrentKt.class","name":"kotlinx/coroutines/internal/ConcurrentKt.class","size":3633,"crc":1833924022},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$3.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$3.class","size":3212,"crc":1020037747},{"key":"kotlinx/coroutines/internal/ClassValueCtorCache$cache$1.class","name":"kotlinx/coroutines/internal/ClassValueCtorCache$cache$1.class","size":1876,"crc":-1150273468},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueCore.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueCore.class","size":11486,"crc":1549571242},{"key":"kotlinx/coroutines/internal/ThreadState.class","name":"kotlinx/coroutines/internal/ThreadState.class","size":2231,"crc":-2065411649},{"key":"kotlinx/coroutines/internal/AtomicDesc.class","name":"kotlinx/coroutines/internal/AtomicDesc.class","size":1902,"crc":-703052955},{"key":"kotlinx/coroutines/internal/DispatchedContinuation.class","name":"kotlinx/coroutines/internal/DispatchedContinuation.class","size":17181,"crc":538458844},{"key":"kotlinx/coroutines/internal/ArrayQueue.class","name":"kotlinx/coroutines/internal/ArrayQueue.class","size":2408,"crc":1907166009},{"key":"kotlinx/coroutines/internal/DispatchedContinuationKt.class","name":"kotlinx/coroutines/internal/DispatchedContinuationKt.class","size":11887,"crc":1978421437},{"key":"kotlinx/coroutines/internal/SystemPropsKt__SystemPropsKt.class","name":"kotlinx/coroutines/internal/SystemPropsKt__SystemPropsKt.class","size":1346,"crc":1365447964},{"key":"kotlinx/coroutines/internal/Removed.class","name":"kotlinx/coroutines/internal/Removed.class","size":1316,"crc":1693402665},{"key":"kotlinx/coroutines/internal/ThreadContextKt$findOne$1.class","name":"kotlinx/coroutines/internal/ThreadContextKt$findOne$1.class","size":2035,"crc":184197122},{"key":"kotlinx/coroutines/internal/MainDispatchersKt.class","name":"kotlinx/coroutines/internal/MainDispatchersKt.class","size":3773,"crc":746269773},{"key":"kotlinx/coroutines/internal/StackTraceRecoveryKt.class","name":"kotlinx/coroutines/internal/StackTraceRecoveryKt.class","size":13962,"crc":40387489},{"key":"kotlinx/coroutines/internal/ThreadLocalElement.class","name":"kotlinx/coroutines/internal/ThreadLocalElement.class","size":4976,"crc":296764247},{"key":"kotlinx/coroutines/internal/OpDescriptor.class","name":"kotlinx/coroutines/internal/OpDescriptor.class","size":1898,"crc":-634159287},{"key":"kotlinx/coroutines/internal/FastServiceLoader.class","name":"kotlinx/coroutines/internal/FastServiceLoader.class","size":13260,"crc":-719839065},{"key":"kotlinx/coroutines/internal/AtomicOp.class","name":"kotlinx/coroutines/internal/AtomicOp.class","size":3361,"crc":426338367},{"key":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcher.class","name":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcher.class","size":5241,"crc":-1452511009},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$makeCondAddOp$1.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$makeCondAddOp$1.class","size":2527,"crc":-1582901542},{"key":"kotlinx/coroutines/internal/ConcurrentLinkedListNode.class","name":"kotlinx/coroutines/internal/ConcurrentLinkedListNode.class","size":5555,"crc":1095592577},{"key":"kotlinx/coroutines/internal/SynchronizedKt.class","name":"kotlinx/coroutines/internal/SynchronizedKt.class","size":1569,"crc":-2107935133},{"key":"kotlinx/coroutines/internal/MainDispatcherFactory$DefaultImpls.class","name":"kotlinx/coroutines/internal/MainDispatcherFactory$DefaultImpls.class","size":810,"crc":1056042703},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueue.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueue.class","size":3906,"crc":-1066065202},{"key":"kotlinx/coroutines/internal/ContextScope.class","name":"kotlinx/coroutines/internal/ContextScope.class","size":1495,"crc":2041547333},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt.class","size":8307,"crc":-647017180},{"key":"kotlinx/coroutines/internal/ThreadContextKt.class","name":"kotlinx/coroutines/internal/ThreadContextKt.class","size":4093,"crc":1216513800},{"key":"kotlinx/coroutines/internal/Symbol.class","name":"kotlinx/coroutines/internal/Symbol.class","size":1491,"crc":-1704582009},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$2.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$2.class","size":3016,"crc":-10759348},{"key":"kotlinx/coroutines/internal/MainDispatcherFactory.class","name":"kotlinx/coroutines/internal/MainDispatcherFactory.class","size":1270,"crc":-1176821490},{"key":"kotlinx/coroutines/internal/ConcurrentLinkedListKt.class","name":"kotlinx/coroutines/internal/ConcurrentLinkedListKt.class","size":4565,"crc":1627817634},{"key":"kotlinx/coroutines/internal/FastServiceLoaderKt.class","name":"kotlinx/coroutines/internal/FastServiceLoaderKt.class","size":1391,"crc":-1130935643},{"key":"kotlinx/coroutines/internal/LockFreeLinkedList_commonKt.class","name":"kotlinx/coroutines/internal/LockFreeLinkedList_commonKt.class","size":823,"crc":-1073458923},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$$inlined$sortedByDescending$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$$inlined$sortedByDescending$1.class","size":2199,"crc":968235207},{"key":"kotlinx/coroutines/internal/SystemPropsKt__SystemProps_commonKt.class","name":"kotlinx/coroutines/internal/SystemPropsKt__SystemProps_commonKt.class","size":2563,"crc":-2141952487},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$1.class","size":3070,"crc":1162497321},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AddLastDesc.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AddLastDesc.class","size":4904,"crc":-1487961198},{"key":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcherFactory.class","name":"kotlinx/coroutines/internal/MissingMainCoroutineDispatcherFactory.class","size":2078,"crc":-1757143835},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$4.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createSafeConstructor$$inlined$safeCtor$4.class","size":3126,"crc":-285531946},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$nullResult$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$createConstructor$nullResult$1.class","size":1475,"crc":-627350356},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AbstractAtomicDesc.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$AbstractAtomicDesc.class","size":6617,"crc":1311874585},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$toString$1.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$toString$1.class","size":1178,"crc":-844616956},{"key":"kotlinx/coroutines/internal/SegmentOrClosed.class","name":"kotlinx/coroutines/internal/SegmentOrClosed.class","size":3647,"crc":1825654056},{"key":"kotlinx/coroutines/internal/MainDispatcherLoader.class","name":"kotlinx/coroutines/internal/MainDispatcherLoader.class","size":3822,"crc":1493280752},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListHead.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListHead.class","size":2919,"crc":1231359252},{"key":"kotlinx/coroutines/internal/CtorCache.class","name":"kotlinx/coroutines/internal/CtorCache.class","size":1050,"crc":1825780299},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$RemoveFirstDesc.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$RemoveFirstDesc.class","size":5946,"crc":1286943442},{"key":"kotlinx/coroutines/internal/ScopeCoroutine.class","name":"kotlinx/coroutines/internal/ScopeCoroutine.class","size":3576,"crc":-2059862413},{"key":"kotlinx/coroutines/internal/ThreadSafeHeap.class","name":"kotlinx/coroutines/internal/ThreadSafeHeap.class","size":9704,"crc":734401709},{"key":"kotlinx/coroutines/internal/OnUndeliveredElementKt$bindCancellationFun$1.class","name":"kotlinx/coroutines/internal/OnUndeliveredElementKt$bindCancellationFun$1.class","size":2047,"crc":950849509},{"key":"kotlinx/coroutines/internal/ThreadLocalKey.class","name":"kotlinx/coroutines/internal/ThreadLocalKey.class","size":2787,"crc":497955001},{"key":"kotlinx/coroutines/internal/LocalAtomicsKt.class","name":"kotlinx/coroutines/internal/LocalAtomicsKt.class","size":501,"crc":-1339894872},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListKt.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListKt.class","size":2669,"crc":1932146073},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$CondAddOp.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$CondAddOp.class","size":2478,"crc":884694130},{"key":"kotlinx/coroutines/internal/Concurrent_commonKt.class","name":"kotlinx/coroutines/internal/Concurrent_commonKt.class","size":408,"crc":-1756661395},{"key":"kotlinx/coroutines/internal/SystemPropsKt.class","name":"kotlinx/coroutines/internal/SystemPropsKt.class","size":1531,"crc":-1819604373},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Placeholder.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Placeholder.class","size":845,"crc":137116209},{"key":"kotlinx/coroutines/internal/ExceptionsConstructorKt$safeCtor$1.class","name":"kotlinx/coroutines/internal/ExceptionsConstructorKt$safeCtor$1.class","size":2482,"crc":-2059390419},{"key":"kotlinx/coroutines/internal/InlineList.class","name":"kotlinx/coroutines/internal/InlineList.class","size":4728,"crc":-1322128889},{"key":"kotlinx/coroutines/internal/ResizableAtomicArray.class","name":"kotlinx/coroutines/internal/ResizableAtomicArray.class","size":2028,"crc":-2095457278},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Companion.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueCore$Companion.class","size":3132,"crc":-741314195},{"key":"kotlinx/coroutines/internal/UndeliveredElementException.class","name":"kotlinx/coroutines/internal/UndeliveredElementException.class","size":917,"crc":-846038072},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode.class","size":14469,"crc":1486998549},{"key":"kotlinx/coroutines/internal/Segment.class","name":"kotlinx/coroutines/internal/Segment.class","size":3306,"crc":824787712},{"key":"kotlinx/coroutines/internal/ThreadContextKt$countAll$1.class","name":"kotlinx/coroutines/internal/ThreadContextKt$countAll$1.class","size":1947,"crc":1777859163},{"key":"kotlinx/coroutines/internal/ThreadSafeHeapNode.class","name":"kotlinx/coroutines/internal/ThreadSafeHeapNode.class","size":1085,"crc":1457693813},{"key":"kotlinx/coroutines/internal/ThreadContextKt$updateState$1.class","name":"kotlinx/coroutines/internal/ThreadContextKt$updateState$1.class","size":2127,"crc":-1821787518},{"key":"kotlinx/coroutines/internal/LockFreeLinkedListNode$PrepareOp.class","name":"kotlinx/coroutines/internal/LockFreeLinkedListNode$PrepareOp.class","size":5081,"crc":-409851808},{"key":"kotlinx/coroutines/internal/LimitedDispatcher.class","name":"kotlinx/coroutines/internal/LimitedDispatcher.class","size":7243,"crc":-2085062363},{"key":"kotlinx/coroutines/internal/LimitedDispatcherKt.class","name":"kotlinx/coroutines/internal/LimitedDispatcherKt.class","size":1231,"crc":-1828768816},{"key":"kotlinx/coroutines/internal/ProbesSupportKt.class","name":"kotlinx/coroutines/internal/ProbesSupportKt.class","size":994,"crc":284462051},{"key":"kotlinx/coroutines/internal/LockFreeTaskQueueKt.class","name":"kotlinx/coroutines/internal/LockFreeTaskQueueKt.class","size":447,"crc":-30561500},{"key":"kotlinx/coroutines/internal/AtomicKt.class","name":"kotlinx/coroutines/internal/AtomicKt.class","size":942,"crc":-151798316},{"key":"kotlinx/coroutines/internal/ClassValueCtorCache.class","name":"kotlinx/coroutines/internal/ClassValueCtorCache.class","size":1712,"crc":-24217249},{"key":"kotlinx/coroutines/internal/LocalAtomics_commonKt.class","name":"kotlinx/coroutines/internal/LocalAtomics_commonKt.class","size":1104,"crc":-2031219583},{"key":"kotlinx/coroutines/internal/ThreadLocalKt.class","name":"kotlinx/coroutines/internal/ThreadLocalKt.class","size":512,"crc":-351302426},{"key":"kotlinx/coroutines/ThreadLocalEventLoop.class","name":"kotlinx/coroutines/ThreadLocalEventLoop.class","size":2377,"crc":-1738846729},{"key":"kotlinx/coroutines/AbstractCoroutine.class","name":"kotlinx/coroutines/AbstractCoroutine.class","size":6093,"crc":500524761},{"key":"kotlinx/coroutines/StandaloneCoroutine.class","name":"kotlinx/coroutines/StandaloneCoroutine.class","size":1422,"crc":1814851551},{"key":"kotlinx/coroutines/NonCancellable.class","name":"kotlinx/coroutines/NonCancellable.class","size":6536,"crc":-2141250695},{"key":"kotlinx/coroutines/ExperimentalCoroutinesApi.class","name":"kotlinx/coroutines/ExperimentalCoroutinesApi.class","size":1390,"crc":-1264958816},{"key":"kotlinx/coroutines/CompletedContinuation.class","name":"kotlinx/coroutines/CompletedContinuation.class","size":6568,"crc":-665622920},{"key":"kotlinx/coroutines/CancelHandler.class","name":"kotlinx/coroutines/CancelHandler.class","size":679,"crc":211607540},{"key":"kotlinx/coroutines/YieldKt.class","name":"kotlinx/coroutines/YieldKt.class","size":2718,"crc":-1067428563},{"key":"kotlinx/coroutines/ObsoleteCoroutinesApi.class","name":"kotlinx/coroutines/ObsoleteCoroutinesApi.class","size":928,"crc":-1627944829},{"key":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc$PrepareOp.class","name":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc$PrepareOp.class","size":2517,"crc":707018921},{"key":"kotlinx/coroutines/sync/MutexImpl$UnlockOp.class","name":"kotlinx/coroutines/sync/MutexImpl$UnlockOp.class","size":2601,"crc":1365583186},{"key":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc.class","name":"kotlinx/coroutines/sync/MutexImpl$TryLockDesc.class","size":2895,"crc":-1038533472},{"key":"kotlinx/coroutines/sync/Mutex.class","name":"kotlinx/coroutines/sync/Mutex.class","size":1532,"crc":1688282973},{"key":"kotlinx/coroutines/sync/SemaphoreKt.class","name":"kotlinx/coroutines/sync/SemaphoreKt.class","size":5538,"crc":-380370973},{"key":"kotlinx/coroutines/sync/SemaphoreImpl.class","name":"kotlinx/coroutines/sync/SemaphoreImpl.class","size":15709,"crc":2053920610},{"key":"kotlinx/coroutines/sync/Mutex$DefaultImpls.class","name":"kotlinx/coroutines/sync/Mutex$DefaultImpls.class","size":1723,"crc":1443050998},{"key":"kotlinx/coroutines/sync/MutexKt$withLock$1.class","name":"kotlinx/coroutines/sync/MutexKt$withLock$1.class","size":1802,"crc":1792798761},{"key":"kotlinx/coroutines/sync/MutexKt.class","name":"kotlinx/coroutines/sync/MutexKt.class","size":5486,"crc":-389369958},{"key":"kotlinx/coroutines/sync/CancelSemaphoreAcquisitionHandler.class","name":"kotlinx/coroutines/sync/CancelSemaphoreAcquisitionHandler.class","size":2048,"crc":-738594572},{"key":"kotlinx/coroutines/sync/Semaphore.class","name":"kotlinx/coroutines/sync/Semaphore.class","size":936,"crc":1006464878},{"key":"kotlinx/coroutines/sync/MutexImpl$LockCont.class","name":"kotlinx/coroutines/sync/MutexImpl$LockCont.class","size":2815,"crc":-1481058305},{"key":"kotlinx/coroutines/sync/Empty.class","name":"kotlinx/coroutines/sync/Empty.class","size":1170,"crc":-813433960},{"key":"kotlinx/coroutines/sync/MutexImpl$LockedQueue.class","name":"kotlinx/coroutines/sync/MutexImpl$LockedQueue.class","size":1392,"crc":-1625935044},{"key":"kotlinx/coroutines/sync/SemaphoreKt$withPermit$1.class","name":"kotlinx/coroutines/sync/SemaphoreKt$withPermit$1.class","size":1804,"crc":1910462372},{"key":"kotlinx/coroutines/sync/MutexImpl.class","name":"kotlinx/coroutines/sync/MutexImpl.class","size":12815,"crc":300065842},{"key":"kotlinx/coroutines/sync/MutexImpl$LockCont$tryResumeLockWaiter$1.class","name":"kotlinx/coroutines/sync/MutexImpl$LockCont$tryResumeLockWaiter$1.class","size":1736,"crc":-1210905959},{"key":"kotlinx/coroutines/sync/MutexImpl$LockSelect$completeResumeLockWaiter$1.class","name":"kotlinx/coroutines/sync/MutexImpl$LockSelect$completeResumeLockWaiter$1.class","size":1940,"crc":-2107906764},{"key":"kotlinx/coroutines/sync/MutexImpl$lockSuspend$2$1$1.class","name":"kotlinx/coroutines/sync/MutexImpl$lockSuspend$2$1$1.class","size":1604,"crc":1715399374},{"key":"kotlinx/coroutines/sync/SemaphoreSegment.class","name":"kotlinx/coroutines/sync/SemaphoreSegment.class","size":3537,"crc":1440045778},{"key":"kotlinx/coroutines/sync/MutexImpl$LockWaiter.class","name":"kotlinx/coroutines/sync/MutexImpl$LockWaiter.class","size":2082,"crc":-1778310076},{"key":"kotlinx/coroutines/sync/MutexImpl$LockSelect.class","name":"kotlinx/coroutines/sync/MutexImpl$LockSelect.class","size":3514,"crc":-910389636},{"key":"kotlinx/coroutines/sync/SemaphoreImpl$onCancellationRelease$1.class","name":"kotlinx/coroutines/sync/SemaphoreImpl$onCancellationRelease$1.class","size":1467,"crc":-2019237248},{"key":"kotlinx/coroutines/CoroutineExceptionHandler$Key.class","name":"kotlinx/coroutines/CoroutineExceptionHandler$Key.class","size":1017,"crc":-1288288886},{"key":"kotlinx/coroutines/MainCoroutineDispatcher.class","name":"kotlinx/coroutines/MainCoroutineDispatcher.class","size":2189,"crc":-336463853},{"key":"kotlinx/coroutines/IncompleteStateBox.class","name":"kotlinx/coroutines/IncompleteStateBox.class","size":843,"crc":-922767742},{"key":"kotlinx/coroutines/CopyableThreadContextElement$DefaultImpls.class","name":"kotlinx/coroutines/CopyableThreadContextElement$DefaultImpls.class","size":3150,"crc":-538743595},{"key":"kotlinx/coroutines/BuildersKt__BuildersKt.class","name":"kotlinx/coroutines/BuildersKt__BuildersKt.class","size":4084,"crc":410138800},{"key":"kotlinx/coroutines/SelectJoinOnCompletion.class","name":"kotlinx/coroutines/SelectJoinOnCompletion.class","size":2447,"crc":1830123532},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedTask.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedTask.class","size":5858,"crc":2129700531},{"key":"kotlinx/coroutines/InvokeOnCompletion.class","name":"kotlinx/coroutines/InvokeOnCompletion.class","size":1742,"crc":180078025},{"key":"kotlinx/coroutines/SupervisorJobImpl.class","name":"kotlinx/coroutines/SupervisorJobImpl.class","size":991,"crc":79491680},{"key":"kotlinx/coroutines/InvokeOnCancel.class","name":"kotlinx/coroutines/InvokeOnCancel.class","size":2245,"crc":-77048997},{"key":"kotlinx/coroutines/CompletionHandler_commonKt.class","name":"kotlinx/coroutines/CompletionHandler_commonKt.class","size":1136,"crc":1135284800},{"key":"kotlinx/coroutines/NodeList.class","name":"kotlinx/coroutines/NodeList.class","size":3104,"crc":1063184151},{"key":"kotlinx/coroutines/ChildHandle$DefaultImpls.class","name":"kotlinx/coroutines/ChildHandle$DefaultImpls.class","size":500,"crc":1234363492},{"key":"kotlinx/coroutines/NonDisposableHandle.class","name":"kotlinx/coroutines/NonDisposableHandle.class","size":1628,"crc":-383516079},{"key":"kotlinx/coroutines/UndispatchedCoroutine.class","name":"kotlinx/coroutines/UndispatchedCoroutine.class","size":5082,"crc":-351582573},{"key":"kotlinx/coroutines/DelicateCoroutinesApi.class","name":"kotlinx/coroutines/DelicateCoroutinesApi.class","size":1102,"crc":-2003119530},{"key":"kotlinx/coroutines/BuildersKt__Builders_commonKt.class","name":"kotlinx/coroutines/BuildersKt__Builders_commonKt.class","size":9294,"crc":734169821},{"key":"kotlinx/coroutines/CoroutineExceptionHandlerKt$CoroutineExceptionHandler$1.class","name":"kotlinx/coroutines/CoroutineExceptionHandlerKt$CoroutineExceptionHandler$1.class","size":2408,"crc":1977756254},{"key":"kotlinx/coroutines/SelectAwaitOnCompletion.class","name":"kotlinx/coroutines/SelectAwaitOnCompletion.class","size":2427,"crc":846896595},{"key":"kotlinx/coroutines/EventLoop.class","name":"kotlinx/coroutines/EventLoop.class","size":4716,"crc":160399577},{"key":"kotlinx/coroutines/CompletableJob.class","name":"kotlinx/coroutines/CompletableJob.class","size":772,"crc":-1355626754},{"key":"kotlinx/coroutines/CancelFutureOnCancel.class","name":"kotlinx/coroutines/CancelFutureOnCancel.class","size":1933,"crc":-1313407064},{"key":"kotlinx/coroutines/TimeoutCancellationException.class","name":"kotlinx/coroutines/TimeoutCancellationException.class","size":2299,"crc":-1389594442},{"key":"kotlinx/coroutines/CancellableContinuationKt.class","name":"kotlinx/coroutines/CancellableContinuationKt.class","size":6063,"crc":-735059939},{"key":"kotlinx/coroutines/CancellableContinuationImpl.class","name":"kotlinx/coroutines/CancellableContinuationImpl.class","size":27381,"crc":1574460388},{"key":"kotlinx/coroutines/JobNode.class","name":"kotlinx/coroutines/JobNode.class","size":2442,"crc":-547940579},{"key":"kotlinx/coroutines/ParentJob$DefaultImpls.class","name":"kotlinx/coroutines/ParentJob$DefaultImpls.class","size":3494,"crc":403864456},{"key":"kotlinx/coroutines/AwaitAll$DisposeHandlersOnCancel.class","name":"kotlinx/coroutines/AwaitAll$DisposeHandlersOnCancel.class","size":3118,"crc":-202775036},{"key":"kotlinx/coroutines/FlowPreview.class","name":"kotlinx/coroutines/FlowPreview.class","size":1470,"crc":-2050041154},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedResumeTask.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedResumeTask.class","size":2437,"crc":-1047277770},{"key":"kotlinx/coroutines/LazyStandaloneCoroutine.class","name":"kotlinx/coroutines/LazyStandaloneCoroutine.class","size":2070,"crc":-2018171866},{"key":"kotlinx/coroutines/BuildersKt.class","name":"kotlinx/coroutines/BuildersKt.class","size":4313,"crc":-1176186617},{"key":"kotlinx/coroutines/EventLoopKt.class","name":"kotlinx/coroutines/EventLoopKt.class","size":1691,"crc":1782633077},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$startWeakRefCleanerThread$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$startWeakRefCleanerThread$1.class","size":1398,"crc":1562350824},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core.class","size":7892,"crc":-331037494},{"key":"kotlinx/coroutines/debug/internal/Marked.class","name":"kotlinx/coroutines/debug/internal/Marked.class","size":823,"crc":-1706396840},{"key":"kotlinx/coroutines/debug/internal/StackTraceFrame.class","name":"kotlinx/coroutines/debug/internal/StackTraceFrame.class","size":1465,"crc":1903785437},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$creationStackTrace$1.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$creationStackTrace$1.class","size":4293,"crc":1769855814},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$entries$1.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$entries$1.class","size":1730,"crc":980109752},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$CoroutineOwner.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$CoroutineOwner.class","size":3375,"crc":-864841958},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap.class","size":7269,"crc":-261775327},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$keys$1.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$keys$1.class","size":1343,"crc":-139422760},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$SequenceNumberRefVolatile.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$SequenceNumberRefVolatile.class","size":241,"crc":535976931},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfo.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfo.class","size":3322,"crc":-334210659},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Entry.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Entry.class","size":1770,"crc":-1085186537},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$yieldFrames$1.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl$yieldFrames$1.class","size":2164,"crc":719032877},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMapKt.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMapKt.class","size":2048,"crc":902897934},{"key":"kotlinx/coroutines/debug/internal/DebugProbesKt.class","name":"kotlinx/coroutines/debug/internal/DebugProbesKt.class","size":1575,"crc":-125814240},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpDebuggerInfo$$inlined$dumpCoroutinesInfoImpl$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpDebuggerInfo$$inlined$dumpCoroutinesInfoImpl$1.class","size":3329,"crc":2047296063},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core$KeyValueIterator.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$Core$KeyValueIterator.class","size":4056,"crc":-1599849854},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImplKt.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImplKt.class","size":658,"crc":-2062644350},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$lambda-19$$inlined$sortedBy$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$lambda-19$$inlined$sortedBy$1.class","size":2322,"crc":1357418801},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl.class","size":41217,"crc":935026194},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$1$3.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$1$3.class","size":3259,"crc":2018304127},{"key":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl.class","name":"kotlinx/coroutines/debug/internal/DebugCoroutineInfoImpl.class","size":8910,"crc":-1938518447},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$1$2.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesSynchronized$1$2.class","size":2136,"crc":-332946333},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$lambda-12$$inlined$sortedBy$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfoImpl$lambda-12$$inlined$sortedBy$1.class","size":2332,"crc":87670401},{"key":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfo$$inlined$dumpCoroutinesInfoImpl$1.class","name":"kotlinx/coroutines/debug/internal/DebugProbesImpl$dumpCoroutinesInfo$$inlined$dumpCoroutinesInfoImpl$1.class","size":3355,"crc":1941047373},{"key":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$KeyValueSet.class","name":"kotlinx/coroutines/debug/internal/ConcurrentWeakMap$KeyValueSet.class","size":2409,"crc":-297667691},{"key":"kotlinx/coroutines/debug/internal/DebuggerInfo.class","name":"kotlinx/coroutines/debug/internal/DebuggerInfo.class","size":4055,"crc":1214310617},{"key":"kotlinx/coroutines/debug/internal/HashedWeakRef.class","name":"kotlinx/coroutines/debug/internal/HashedWeakRef.class","size":1334,"crc":-1180678584},{"key":"kotlinx/coroutines/debug/internal/AgentInstallationType.class","name":"kotlinx/coroutines/debug/internal/AgentInstallationType.class","size":1096,"crc":-109991897},{"key":"kotlinx/coroutines/debug/AgentPremain$DebugProbesTransformer.class","name":"kotlinx/coroutines/debug/AgentPremain$DebugProbesTransformer.class","size":2334,"crc":686459517},{"key":"kotlinx/coroutines/debug/AgentPremain.class","name":"kotlinx/coroutines/debug/AgentPremain.class","size":4326,"crc":-632720496},{"key":"kotlinx/coroutines/CopyableThreadContextElement.class","name":"kotlinx/coroutines/CopyableThreadContextElement.class","size":1419,"crc":-1702582766},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcherImpl.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcherImpl.class","size":7315,"crc":1341591640},{"key":"kotlinx/coroutines/EventLoop_commonKt.class","name":"kotlinx/coroutines/EventLoop_commonKt.class","size":1982,"crc":599502017},{"key":"kotlinx/coroutines/CoroutineName.class","name":"kotlinx/coroutines/CoroutineName.class","size":2629,"crc":-1876877377},{"key":"kotlinx/coroutines/Empty.class","name":"kotlinx/coroutines/Empty.class","size":1474,"crc":1804070017},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3$2.class","size":4462,"crc":-662959493},{"key":"kotlinx/coroutines/flow/SubscribedSharedFlow$collect$1.class","name":"kotlinx/coroutines/flow/SubscribedSharedFlow$collect$1.class","size":1791,"crc":1216002977},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$2.class","size":4249,"crc":-2073441410},{"key":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$1.class","name":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$1.class","size":4519,"crc":-1138365930},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1$1.class","size":1980,"crc":-1594580476},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$$inlined$unsafeFlow$1.class","size":3294,"crc":-44918616},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1$emit$1.class","size":1803,"crc":882280756},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2.class","size":3759,"crc":1641391340},{"key":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2$emit$1.class","name":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2$emit$1.class","size":1824,"crc":1933111334},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1.class","size":3878,"crc":-1964147231},{"key":"kotlinx/coroutines/flow/FlowKt__ContextKt.class","name":"kotlinx/coroutines/flow/FlowKt__ContextKt.class","size":5561,"crc":-1491320637},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$1.class","size":1792,"crc":1319993606},{"key":"kotlinx/coroutines/flow/FlowKt__ChannelsKt.class","name":"kotlinx/coroutines/flow/FlowKt__ChannelsKt.class","size":7847,"crc":-581636503},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1$emit$1.class","size":1811,"crc":1652815276},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$3.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$3.class","size":1631,"crc":1090696690},{"key":"kotlinx/coroutines/flow/SafeFlow.class","name":"kotlinx/coroutines/flow/SafeFlow.class","size":2367,"crc":1354479174},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt.class","size":22140,"crc":856366523},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$2.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$2.class","size":2687,"crc":1378975438},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1.class","size":2950,"crc":-589807012},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$1$1.class","size":3858,"crc":1291496123},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1$1.class","size":3966,"crc":-7263859},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1.class","size":3503,"crc":-2120074592},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1.class","size":4642,"crc":-1227882423},{"key":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$2.class","name":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$2.class","size":1755,"crc":-1793682528},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1.class","size":3365,"crc":-934331670},{"key":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultKeySelector$1.class","name":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultKeySelector$1.class","size":1213,"crc":-135672263},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt.class","size":8456,"crc":-1795869858},{"key":"kotlinx/coroutines/flow/StateFlowKt.class","name":"kotlinx/coroutines/flow/StateFlowKt.class","size":5049,"crc":1905278456},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5$1.class","size":2012,"crc":-914244902},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.class","size":4200,"crc":1874605700},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2.class","size":4022,"crc":-1665829227},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2$emit$1.class","size":1827,"crc":-1341274173},{"key":"kotlinx/coroutines/flow/CancellableFlowImpl.class","name":"kotlinx/coroutines/flow/CancellableFlowImpl.class","size":2161,"crc":-707424329},{"key":"kotlinx/coroutines/flow/SharingStarted.class","name":"kotlinx/coroutines/flow/SharingStarted.class","size":1234,"crc":812177547},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$1.class","size":3225,"crc":1957096301},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1.class","size":3955,"crc":-1172781798},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1.class","size":5092,"crc":-881778178},{"key":"kotlinx/coroutines/flow/StartedWhileSubscribed.class","name":"kotlinx/coroutines/flow/StartedWhileSubscribed.class","size":4906,"crc":1452964570},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$1.class","size":1600,"crc":153201299},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3.class","size":4085,"crc":1605936426},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3.class","size":3957,"crc":981439157},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2$1.class","size":1912,"crc":89691461},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2.class","size":3349,"crc":1257642341},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$2.class","size":2372,"crc":1110779927},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10$1.class","size":2019,"crc":-125366843},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$3.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$3.class","size":1802,"crc":926070896},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1.class","size":4878,"crc":1400655779},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1.class","size":3552,"crc":-1042747201},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1.class","size":3505,"crc":-915657004},{"key":"kotlinx/coroutines/flow/FlowKt__CollectionKt.class","name":"kotlinx/coroutines/flow/FlowKt__CollectionKt.class","size":4003,"crc":1366896806},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9$1.class","size":2013,"crc":-694286030},{"key":"kotlinx/coroutines/flow/StartedLazily.class","name":"kotlinx/coroutines/flow/StartedLazily.class","size":1754,"crc":1658386360},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2$emit$1.class","size":1958,"crc":1278622704},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1.class","size":3511,"crc":2133860932},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$last$2.class","size":1768,"crc":-221655274},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4.class","size":3062,"crc":-1021603433},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$1.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$1.class","size":1598,"crc":-978449146},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2.class","size":3871,"crc":370899595},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1$emit$1.class","size":1896,"crc":-2010345789},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1$1.class","size":2167,"crc":-464027958},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2$1.class","size":1967,"crc":720888532},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1.class","size":3017,"crc":715439684},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$$inlined$unsafeFlow$1.class","size":3026,"crc":1348267160},{"key":"kotlinx/coroutines/flow/internal/AbstractSharedFlowSlot.class","name":"kotlinx/coroutines/flow/internal/AbstractSharedFlowSlot.class","size":1097,"crc":-1108333568},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1.class","size":7286,"crc":-1666483307},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1$1$emit$1.class","size":2103,"crc":-1388967129},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1.class","size":3007,"crc":1198681700},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$second$1.class","size":3929,"crc":-2002898482},{"key":"kotlinx/coroutines/flow/internal/SafeCollectorKt$emitFun$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollectorKt$emitFun$1.class","size":2262,"crc":-129544059},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutineKt.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutineKt.class","size":3700,"crc":1618185436},{"key":"kotlinx/coroutines/flow/internal/AbortFlowException.class","name":"kotlinx/coroutines/flow/internal/AbortFlowException.class","size":2035,"crc":-1330897461},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$1.class","size":2152,"crc":-877375462},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$emit$1.class","size":2033,"crc":-1863203383},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1$emit$1.class","size":2107,"crc":-632667902},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$checkContext$result$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$checkContext$result$1.class","size":3671,"crc":-715288913},{"key":"kotlinx/coroutines/flow/internal/SafeCollector.class","name":"kotlinx/coroutines/flow/internal/SafeCollector.class","size":8320,"crc":-1622786479},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1$1.class","size":3045,"crc":51312606},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3.class","size":4584,"crc":-557180954},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$1$1.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutineKt$scopedFlow$1$1.class","size":4213,"crc":791744545},{"key":"kotlinx/coroutines/flow/internal/DownstreamExceptionContext.class","name":"kotlinx/coroutines/flow/internal/DownstreamExceptionContext.class","size":2637,"crc":1264024905},{"key":"kotlinx/coroutines/flow/internal/StackFrameContinuation.class","name":"kotlinx/coroutines/flow/internal/StackFrameContinuation.class","size":2516,"crc":-136017429},{"key":"kotlinx/coroutines/flow/internal/FlowCoroutine.class","name":"kotlinx/coroutines/flow/internal/FlowCoroutine.class","size":1534,"crc":1219146097},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$1.class","size":4300,"crc":-2055495092},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2.class","size":4367,"crc":966286400},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$emit$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge$collectTo$2$emit$1.class","size":1986,"crc":-1470959163},{"key":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector$emitRef$1.class","name":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector$emitRef$1.class","size":3508,"crc":-1962499072},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2$1.class","size":4789,"crc":-2026185076},{"key":"kotlinx/coroutines/flow/internal/SendingCollector.class","name":"kotlinx/coroutines/flow/internal/SendingCollector.class","size":1993,"crc":608623739},{"key":"kotlinx/coroutines/flow/internal/NopCollector.class","name":"kotlinx/coroutines/flow/internal/NopCollector.class","size":1463,"crc":253057547},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1.class","size":4021,"crc":-1937016084},{"key":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2.class","name":"kotlinx/coroutines/flow/internal/CombineKt$combineInternal$2.class","size":8401,"crc":-1279229255},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1.class","size":4822,"crc":1484362954},{"key":"kotlinx/coroutines/flow/internal/SubscriptionCountStateFlow.class","name":"kotlinx/coroutines/flow/internal/SubscriptionCountStateFlow.class","size":2600,"crc":1043561147},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2.class","size":4842,"crc":300418194},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowOperator.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowOperator.class","size":6632,"crc":-1472769548},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest.class","size":5440,"crc":-1946120047},{"key":"kotlinx/coroutines/flow/internal/FusibleFlow.class","name":"kotlinx/coroutines/flow/internal/FusibleFlow.class","size":1364,"crc":-1065877425},{"key":"kotlinx/coroutines/flow/internal/NullSurrogateKt.class","name":"kotlinx/coroutines/flow/internal/NullSurrogateKt.class","size":1112,"crc":-393079039},{"key":"kotlinx/coroutines/flow/internal/SafeCollector$collectContextSize$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector$collectContextSize$1.class","size":1848,"crc":138113103},{"key":"kotlinx/coroutines/flow/internal/AbstractSharedFlowKt.class","name":"kotlinx/coroutines/flow/internal/AbstractSharedFlowKt.class","size":907,"crc":1885195784},{"key":"kotlinx/coroutines/flow/internal/CombineKt.class","name":"kotlinx/coroutines/flow/internal/CombineKt.class","size":4098,"crc":514903453},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowMerge.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowMerge.class","size":6128,"crc":-310361549},{"key":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge$collectTo$2$1.class","name":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge$collectTo$2$1.class","size":4007,"crc":248573676},{"key":"kotlinx/coroutines/flow/internal/ChildCancelledException.class","name":"kotlinx/coroutines/flow/internal/ChildCancelledException.class","size":1659,"crc":-2142483679},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$1$1$2$1$1.class","size":6202,"crc":-1129896976},{"key":"kotlinx/coroutines/flow/internal/AbstractSharedFlow.class","name":"kotlinx/coroutines/flow/internal/AbstractSharedFlow.class","size":7170,"crc":519152849},{"key":"kotlinx/coroutines/flow/internal/SafeCollectorKt.class","name":"kotlinx/coroutines/flow/internal/SafeCollectorKt.class","size":1497,"crc":-1121802874},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$emit$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$emit$1.class","size":2201,"crc":-2059140144},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowOperator$collectWithContextUndispatched$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowOperator$collectWithContextUndispatched$2.class","size":3897,"crc":255046340},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowTransformLatest$flowCollect$3$1$2.class","size":4440,"crc":1052114},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowKt.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowKt.class","size":5578,"crc":772203618},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt.class","size":3875,"crc":-83574629},{"key":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1$collect$1.class","name":"kotlinx/coroutines/flow/internal/SafeCollector_commonKt$unsafeFlow$1$collect$1.class","size":1945,"crc":-1195479950},{"key":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge.class","name":"kotlinx/coroutines/flow/internal/ChannelLimitedFlowMerge.class","size":5810,"crc":1740364340},{"key":"kotlinx/coroutines/flow/internal/NoOpContinuation.class","name":"kotlinx/coroutines/flow/internal/NoOpContinuation.class","size":1592,"crc":-866532069},{"key":"kotlinx/coroutines/flow/internal/ChannelFlow$collect$2.class","name":"kotlinx/coroutines/flow/internal/ChannelFlow$collect$2.class","size":4201,"crc":-134410741},{"key":"kotlinx/coroutines/flow/internal/ChannelFlowOperatorImpl.class","name":"kotlinx/coroutines/flow/internal/ChannelFlowOperatorImpl.class","size":3619,"crc":1080055282},{"key":"kotlinx/coroutines/flow/internal/ChannelFlow.class","name":"kotlinx/coroutines/flow/internal/ChannelFlow.class","size":9090,"crc":-797380023},{"key":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector.class","name":"kotlinx/coroutines/flow/internal/UndispatchedContextCollector.class","size":2962,"crc":-1730372899},{"key":"kotlinx/coroutines/flow/internal/ChannelFlow$collectToFun$1.class","name":"kotlinx/coroutines/flow/internal/ChannelFlow$collectToFun$1.class","size":3668,"crc":-154425940},{"key":"kotlinx/coroutines/flow/internal/FusibleFlow$DefaultImpls.class","name":"kotlinx/coroutines/flow/internal/FusibleFlow$DefaultImpls.class","size":1308,"crc":-578076658},{"key":"kotlinx/coroutines/flow/internal/FlowExceptions_commonKt.class","name":"kotlinx/coroutines/flow/internal/FlowExceptions_commonKt.class","size":1472,"crc":1765264195},{"key":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/internal/CombineKt$zipImpl$$inlined$unsafeFlow$1.class","size":3291,"crc":-1358928152},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$1.class","size":1666,"crc":680565332},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$switchMap$$inlined$flatMapLatest$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$switchMap$$inlined$flatMapLatest$1.class","size":3983,"crc":2077217265},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt.class","size":6164,"crc":-1883938087},{"key":"kotlinx/coroutines/flow/SharedFlowSlot.class","name":"kotlinx/coroutines/flow/SharedFlowSlot.class","size":2880,"crc":-1167652652},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2.class","size":3354,"crc":77249684},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$10.class","size":4337,"crc":-79297357},{"key":"kotlinx/coroutines/flow/Flow.class","name":"kotlinx/coroutines/flow/Flow.class","size":979,"crc":-2015230820},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2.class","size":4630,"crc":2091697507},{"key":"kotlinx/coroutines/flow/CallbackFlowBuilder.class","name":"kotlinx/coroutines/flow/CallbackFlowBuilder.class","size":4847,"crc":1555046101},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2.class","size":3592,"crc":-418490640},{"key":"kotlinx/coroutines/flow/StartedEagerly.class","name":"kotlinx/coroutines/flow/StartedEagerly.class","size":1591,"crc":609066346},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1.class","size":3469,"crc":-516386375},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1.class","size":2891,"crc":423090531},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2.class","size":3027,"crc":-36066895},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1$1.class","size":1992,"crc":-1639961993},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$1.class","size":1782,"crc":1323445968},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1$emit$1.class","size":1918,"crc":955278562},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$2$1.class","size":2989,"crc":1072978613},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1.class","size":4013,"crc":340448812},{"key":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2$emit$1.class","name":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2$emit$1.class","size":1850,"crc":-713266439},{"key":"kotlinx/coroutines/flow/FlowKt__DistinctKt.class","name":"kotlinx/coroutines/flow/FlowKt__DistinctKt.class","size":4366,"crc":96755728},{"key":"kotlinx/coroutines/flow/SharingStartedKt.class","name":"kotlinx/coroutines/flow/SharingStartedKt.class","size":1671,"crc":-986936157},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt.class","size":11388,"crc":-1089933560},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$$inlined$unsafeFlow$1$1.class","size":1778,"crc":-1502847376},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1$1.class","size":4119,"crc":799475135},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$2$1.class","size":1924,"crc":1552965522},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$2.class","size":1756,"crc":-823073723},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$1.class","size":4202,"crc":-1317284166},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4.class","size":4690,"crc":-220860756},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$1$1.class","size":4299,"crc":2070967633},{"key":"kotlinx/coroutines/flow/SharedFlowImpl$collect$1.class","name":"kotlinx/coroutines/flow/SharedFlowImpl$collect$1.class","size":2004,"crc":318348221},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$2.class","size":4349,"crc":-1540471128},{"key":"kotlinx/coroutines/flow/ThrowingCollector.class","name":"kotlinx/coroutines/flow/ThrowingCollector.class","size":1495,"crc":-2131934527},{"key":"kotlinx/coroutines/flow/CancellableFlow.class","name":"kotlinx/coroutines/flow/CancellableFlow.class","size":567,"crc":1291270034},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$2$1.class","size":1959,"crc":123521167},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2.class","size":6865,"crc":-1873453678},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2.class","size":3716,"crc":316023179},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$3.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retry$3.class","size":4121,"crc":222956011},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$9.class","size":4297,"crc":749174194},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1$1.class","size":2108,"crc":2098540140},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$lambda-6$$inlined$collectWhile$1.class","size":3870,"crc":-870223914},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt.class","size":7752,"crc":47261541},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$fixedPeriodTicker$3.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$fixedPeriodTicker$3.class","size":4153,"crc":-1949739642},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1$1$emit$1.class","size":2145,"crc":174892289},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7$1.class","size":2069,"crc":1050867389},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8.class","size":4107,"crc":1110183065},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4$1.class","size":2012,"crc":-1162580396},{"key":"kotlinx/coroutines/flow/SharedFlowKt.class","name":"kotlinx/coroutines/flow/SharedFlowKt.class","size":4905,"crc":322256075},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$2$1.class","size":2014,"crc":2015848375},{"key":"kotlinx/coroutines/flow/SharingStarted$Companion.class","name":"kotlinx/coroutines/flow/SharingStarted$Companion.class","size":1942,"crc":-568761924},{"key":"kotlinx/coroutines/flow/StartedLazily$command$1$1$emit$1.class","name":"kotlinx/coroutines/flow/StartedLazily$command$1$1$emit$1.class","size":1865,"crc":-543481351},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1.class","size":4535,"crc":1020472489},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$4$emit$1.class","size":1817,"crc":-741199708},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$3.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$3.class","size":1699,"crc":1110360403},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5.class","size":4720,"crc":-463098388},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1$emit$1.class","size":2108,"crc":1221563486},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1.class","size":3716,"crc":-1405607897},{"key":"kotlinx/coroutines/flow/SharedFlowImpl$WhenMappings.class","name":"kotlinx/coroutines/flow/SharedFlowImpl$WhenMappings.class","size":746,"crc":2043499674},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$emitAbort$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$emitAbort$1.class","size":1680,"crc":-600315767},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$nullArrayFactory$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$nullArrayFactory$1.class","size":1129,"crc":728550750},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3$1.class","size":4146,"crc":1562382625},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2.class","size":3728,"crc":1623259027},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$1.class","size":2566,"crc":-587214034},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1.class","size":2964,"crc":-875625009},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2.class","size":3395,"crc":-898027026},{"key":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectionKt$toCollection$1.class","size":1724,"crc":-466549340},{"key":"kotlinx/coroutines/flow/MutableStateFlow.class","name":"kotlinx/coroutines/flow/MutableStateFlow.class","size":1079,"crc":2126590480},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1$2.class","size":3325,"crc":826091689},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$8$1.class","size":2069,"crc":-848443396},{"key":"kotlinx/coroutines/flow/SharedFlowImpl.class","name":"kotlinx/coroutines/flow/SharedFlowImpl.class","size":27791,"crc":-1217568401},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$$inlined$unsafeFlow$1.class","size":2897,"crc":-1514283639},{"key":"kotlinx/coroutines/flow/MutableSharedFlow.class","name":"kotlinx/coroutines/flow/MutableSharedFlow.class","size":1625,"crc":1606009941},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1$emit$1.class","size":2046,"crc":1114439626},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$2$emit$1.class","size":1863,"crc":-1566535580},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$1.class","size":1778,"crc":548790248},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$7.class","size":4077,"crc":-1161688932},{"key":"kotlinx/coroutines/flow/FlowKt.class","name":"kotlinx/coroutines/flow/FlowKt.class","size":55622,"crc":-468511551},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$take$$inlined$unsafeFlow$1$1.class","size":1963,"crc":-1012221237},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$5$1.class","size":1685,"crc":-1001211130},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$unsafeTransform$1$1$emit$1.class","size":2100,"crc":971072871},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3.class","size":2731,"crc":618889793},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$1.class","size":2541,"crc":-754985577},{"key":"kotlinx/coroutines/flow/FlowCollector.class","name":"kotlinx/coroutines/flow/FlowCollector.class","size":879,"crc":-2054101661},{"key":"kotlinx/coroutines/flow/StateFlow.class","name":"kotlinx/coroutines/flow/StateFlow.class","size":674,"crc":498814204},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2$1.class","size":1884,"crc":640331377},{"key":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$2.class","name":"kotlinx/coroutines/flow/StartedWhileSubscribed$command$2.class","size":3386,"crc":-1860854036},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6$1.class","size":2069,"crc":949972651},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$3.class","size":4660,"crc":-918750717},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6.class","size":5139,"crc":-13137035},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2.class","size":4121,"crc":12610553},{"key":"kotlinx/coroutines/flow/SubscribedFlowCollector$onSubscription$1.class","name":"kotlinx/coroutines/flow/SubscribedFlowCollector$onSubscription$1.class","size":1876,"crc":-412453472},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransformUnsafe$1.class","size":5083,"crc":-530153741},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$values$1.class","size":3948,"crc":-1924620403},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1.class","size":5704,"crc":-2079807779},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$mapLatest$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$mapLatest$1.class","size":3811,"crc":2050986435},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapLatest$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapLatest$1.class","size":4426,"crc":1161528239},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$4$1.class","size":4172,"crc":407327793},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1$1.class","size":2075,"crc":-1559501961},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7.class","size":5131,"crc":-398992485},{"key":"kotlinx/coroutines/flow/StartedLazily$command$1.class","name":"kotlinx/coroutines/flow/StartedLazily$command$1.class","size":4075,"crc":605738608},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$mapNotNull$$inlined$unsafeTransform$1$1.class","size":1783,"crc":-1556811357},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1$1.class","size":2049,"crc":-1056374928},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2.class","size":4100,"crc":-261338899},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt.class","size":3722,"crc":-1710652384},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$onEach$$inlined$unsafeTransform$1$2$1.class","size":2017,"crc":136357262},{"key":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$asFlow$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$asFlow$$inlined$unsafeFlow$1.class","size":3012,"crc":1353539657},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1.class","size":2831,"crc":1486354420},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$2.class","size":4238,"crc":-994070094},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2$1.class","size":1713,"crc":803763768},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$6$1.class","size":1677,"crc":1538686210},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onCompletion$$inlined$unsafeFlow$1$1.class","size":2111,"crc":1945517181},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$1.class","size":1642,"crc":-2050492905},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$$inlined$collectWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$$inlined$collectWhile$1.class","size":2726,"crc":821043198},{"key":"kotlinx/coroutines/flow/StateFlowImpl$collect$1.class","name":"kotlinx/coroutines/flow/StateFlowImpl$collect$1.class","size":1996,"crc":-635385941},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$singleOrNull$1.class","size":1670,"crc":1619568918},{"key":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2.class","name":"kotlinx/coroutines/flow/CancellableFlowImpl$collect$2.class","size":3091,"crc":1412020480},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1$invokeSuspend$$inlined$collectWhile$1$1.class","size":2016,"crc":-1614047760},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2.class","size":3697,"crc":-1848290840},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$1.class","size":4634,"crc":-312204449},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1$1.class","size":2008,"crc":1897171026},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1$1.class","size":1768,"crc":1864315693},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$values$1$1$emit$1.class","size":2035,"crc":862797843},{"key":"kotlinx/coroutines/flow/FlowKt__CountKt$count$2.class","name":"kotlinx/coroutines/flow/FlowKt__CountKt$count$2.class","size":1638,"crc":-2091719219},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$2$1.class","size":2012,"crc":-1044773919},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$2$1.class","size":4120,"crc":-1358042652},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$3$1.class","size":1713,"crc":-123213319},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$1.class","size":1691,"crc":-469225837},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$transform$1$1.class","size":3467,"crc":1246444137},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$1.class","size":1653,"crc":-2077668657},{"key":"kotlinx/coroutines/flow/ReadonlyStateFlow.class","name":"kotlinx/coroutines/flow/ReadonlyStateFlow.class","size":3359,"crc":-1614700171},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1$emit$1.class","size":1951,"crc":1636161094},{"key":"kotlinx/coroutines/flow/ReadonlySharedFlow.class","name":"kotlinx/coroutines/flow/ReadonlySharedFlow.class","size":3216,"crc":-2007838424},{"key":"kotlinx/coroutines/flow/LintKt$retry$1.class","name":"kotlinx/coroutines/flow/LintKt$retry$1.class","size":3308,"crc":1119166152},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1.class","size":4693,"crc":-918919913},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$$inlined$unsafeFlow$1.class","size":2767,"crc":-213797189},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$firstOrNull$$inlined$collectWhile$2$1.class","size":1948,"crc":1407072493},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1$1.class","size":1763,"crc":-1354510566},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayEach$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayEach$1.class","size":3242,"crc":-1213156227},{"key":"kotlinx/coroutines/flow/ChannelFlowBuilder.class","name":"kotlinx/coroutines/flow/ChannelFlowBuilder.class","size":4506,"crc":817093489},{"key":"kotlinx/coroutines/flow/SharingCommand.class","name":"kotlinx/coroutines/flow/SharingCommand.class","size":1474,"crc":29234571},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$1.class","size":2794,"crc":1159919825},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$invokeSafely$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$invokeSafely$1.class","size":1745,"crc":-273567470},{"key":"kotlinx/coroutines/flow/CallbackFlowBuilder$collectTo$1.class","name":"kotlinx/coroutines/flow/CallbackFlowBuilder$collectTo$1.class","size":1828,"crc":354760578},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1$3$2.class","size":5941,"crc":210305515},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$3.class","size":3425,"crc":1129933382},{"key":"kotlinx/coroutines/flow/SharedFlow.class","name":"kotlinx/coroutines/flow/SharedFlow.class","size":1248,"crc":2135657676},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$$inlined$unsafeFlow$1.class","size":2983,"crc":1945463570},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1$1.class","size":2090,"crc":-1423981452},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounceInternal$1.class","size":8929,"crc":-1260278072},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1$emit$1.class","size":1860,"crc":613915448},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$$inlined$unsafeFlow$1.class","size":3077,"crc":-581579079},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNotNull$$inlined$unsafeTransform$1.class","size":2816,"crc":-1480540407},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt.class","size":6265,"crc":1566501130},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt.class","size":18718,"crc":-1615214284},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$1.class","size":3412,"crc":-212288863},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt.class","size":8496,"crc":597235154},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$3$1.class","size":2012,"crc":-1176013870},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterNot$$inlined$unsafeTransform$1$2$1.class","size":2033,"crc":1852451719},{"key":"kotlinx/coroutines/flow/DistinctFlowImpl.class","name":"kotlinx/coroutines/flow/DistinctFlowImpl.class","size":3426,"crc":-1889673208},{"key":"kotlinx/coroutines/flow/ChannelAsFlow.class","name":"kotlinx/coroutines/flow/ChannelAsFlow.class","size":6764,"crc":-771293790},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1.class","size":4732,"crc":-480520779},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$2.class","size":3348,"crc":-1143238936},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$delayFlow$1.class","size":3439,"crc":696319481},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$collectWhile$collector$1.class","size":3557,"crc":-52107807},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2.class","size":4566,"crc":-441470071},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collectIndexed$2$emit$1.class","size":1790,"crc":1602472941},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$collect$3$emit$1.class","size":1734,"crc":201049043},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$fold$2.class","size":3537,"crc":-1998917906},{"key":"kotlinx/coroutines/flow/SubscribedFlowCollector.class","name":"kotlinx/coroutines/flow/SubscribedFlowCollector.class","size":4602,"crc":430835549},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$dropWhile$1$1.class","size":3532,"crc":-466698686},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt.class","size":13393,"crc":-1449899860},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$1.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt$catchImpl$1.class","size":1677,"crc":2126687486},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1$emit$1.class","size":1888,"crc":381123400},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt.class","size":8877,"crc":1065100257},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$sample$2$1$1.class","size":5474,"crc":-207850230},{"key":"kotlinx/coroutines/flow/FlowKt__ErrorsKt.class","name":"kotlinx/coroutines/flow/FlowKt__ErrorsKt.class","size":8831,"crc":-1470104302},{"key":"kotlinx/coroutines/flow/StartedLazily$command$1$1.class","name":"kotlinx/coroutines/flow/StartedLazily$command$1$1.class","size":3130,"crc":1855206383},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$lastOrNull$1.class","size":1624,"crc":414331905},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$5.class","size":4110,"crc":281905670},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1$emit$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1$emit$1.class","size":1969,"crc":-972666949},{"key":"kotlinx/coroutines/flow/AbstractFlow$collect$1.class","name":"kotlinx/coroutines/flow/AbstractFlow$collect$1.class","size":1757,"crc":-1029244249},{"key":"kotlinx/coroutines/flow/FlowKt__CollectKt$launchIn$1.class","name":"kotlinx/coroutines/flow/FlowKt__CollectKt$launchIn$1.class","size":3601,"crc":23399412},{"key":"kotlinx/coroutines/flow/EmptyFlow.class","name":"kotlinx/coroutines/flow/EmptyFlow.class","size":1413,"crc":1237828880},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1.class","size":4379,"crc":-2048840641},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$1.class","size":3241,"crc":-1213817800},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$$inlined$combineTransformUnsafe$FlowKt__ZipKt$5$1.class","size":4198,"crc":-1624649338},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningReduce$1$1.class","size":3709,"crc":-1424023897},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1.class","size":3917,"crc":-431918844},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1$2$1.class","size":1878,"crc":1513354789},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineUnsafe$$inlined$unsafeFlow$1$1.class","size":1743,"crc":-552515265},{"key":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__EmittersKt$onEmpty$1$1.class","size":2773,"crc":-1374029294},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$3.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$3.class","size":1710,"crc":-1552726715},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$runningFold$1$1.class","size":3540,"crc":-1884904850},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$flowOf$$inlined$unsafeFlow$1.class","size":3608,"crc":1564003978},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$unsafeFlow$2.class","size":3947,"crc":1200714951},{"key":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2.class","name":"kotlinx/coroutines/flow/DistinctFlowImpl$collect$2.class","size":3745,"crc":1219266739},{"key":"kotlinx/coroutines/flow/SubscribedSharedFlow.class","name":"kotlinx/coroutines/flow/SubscribedSharedFlow.class","size":3609,"crc":1390335156},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$2$2.class","size":4436,"crc":2094957155},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filterIsInstance$$inlined$filter$1.class","size":3433,"crc":1291373569},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flattenConcat$1$1.class","size":3009,"crc":1598697104},{"key":"kotlinx/coroutines/flow/LintKt.class","name":"kotlinx/coroutines/flow/LintKt.class","size":10681,"crc":-13054809},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combine$$inlined$combineUnsafe$FlowKt__ZipKt$1$2.class","size":4410,"crc":-992111192},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$first$$inlined$collectWhile$2.class","size":3680,"crc":-2037579641},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$map$$inlined$unsafeTransform$1$1.class","size":1748,"crc":1627885281},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$drop$2$1.class","size":2785,"crc":169346238},{"key":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$2.class","name":"kotlinx/coroutines/flow/FlowKt__DelayKt$debounce$2.class","size":1401,"crc":-1993047535},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$7$2.class","size":3930,"crc":-29266504},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$filter$$inlined$unsafeTransform$1.class","size":3485,"crc":575182277},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt.class","size":9477,"crc":439975920},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$6.class","size":4006,"crc":-196382056},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2$WhenMappings.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharing$1$2$WhenMappings.class","size":851,"crc":1386498319},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$4.class","size":4009,"crc":-254714324},{"key":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1.class","name":"kotlinx/coroutines/flow/FlowKt__MergeKt$flatMapMerge$$inlined$map$1.class","size":3044,"crc":1463922117},{"key":"kotlinx/coroutines/flow/SharingConfig.class","name":"kotlinx/coroutines/flow/SharingConfig.class","size":1636,"crc":2121009094},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$single$1.class","size":1608,"crc":-1953786219},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$1.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$1.class","size":1688,"crc":1509455720},{"key":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultAreEquivalent$1.class","name":"kotlinx/coroutines/flow/FlowKt__DistinctKt$defaultAreEquivalent$1.class","size":1678,"crc":1695098240},{"key":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$2.class","name":"kotlinx/coroutines/flow/FlowKt__ZipKt$combineTransform$6$2.class","size":3930,"crc":-689061022},{"key":"kotlinx/coroutines/flow/AbstractFlow.class","name":"kotlinx/coroutines/flow/AbstractFlow.class","size":3159,"crc":-1284495285},{"key":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__TransformKt$withIndex$1$1.class","size":3525,"crc":240285415},{"key":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$emitAllImpl$1.class","name":"kotlinx/coroutines/flow/FlowKt__ChannelsKt$emitAllImpl$1.class","size":1849,"crc":552795142},{"key":"kotlinx/coroutines/flow/StateFlowImpl.class","name":"kotlinx/coroutines/flow/StateFlowImpl.class","size":11222,"crc":1953618475},{"key":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$2.class","name":"kotlinx/coroutines/flow/FlowKt__MigrationKt$onErrorReturn$2.class","size":3951,"crc":1265475708},{"key":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$1.class","name":"kotlinx/coroutines/flow/FlowKt__ReduceKt$reduce$1.class","size":1661,"crc":420492905},{"key":"kotlinx/coroutines/flow/SharedFlowImpl$Emitter.class","name":"kotlinx/coroutines/flow/SharedFlowImpl$Emitter.class","size":2020,"crc":1327701042},{"key":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1$1.class","name":"kotlinx/coroutines/flow/FlowKt__ShareKt$launchSharingDeferred$1$1.class","size":3734,"crc":-1415350274},{"key":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2$1.class","name":"kotlinx/coroutines/flow/FlowKt__BuildersKt$asFlow$$inlined$unsafeFlow$2$1.class","size":1962,"crc":-793927257},{"key":"kotlinx/coroutines/flow/StateFlowSlot.class","name":"kotlinx/coroutines/flow/StateFlowSlot.class","size":6049,"crc":-704149459},{"key":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1.class","name":"kotlinx/coroutines/flow/FlowKt__LimitKt$transformWhile$1.class","size":5324,"crc":-204583194},{"key":"kotlinx/coroutines/DisposeOnCancel.class","name":"kotlinx/coroutines/DisposeOnCancel.class","size":1809,"crc":732268543},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcher$Key.class","size":1700,"crc":368684412},{"key":"kotlinx/coroutines/Deferred.class","name":"kotlinx/coroutines/Deferred.class","size":1455,"crc":-1360442875},{"key":"kotlinx/coroutines/DisposeOnCompletion.class","name":"kotlinx/coroutines/DisposeOnCompletion.class","size":1416,"crc":-372842674},{"key":"kotlinx/coroutines/RunnableKt$Runnable$1.class","name":"kotlinx/coroutines/RunnableKt$Runnable$1.class","size":1230,"crc":1753011103},{"key":"kotlinx/coroutines/ExecutorCoroutineDispatcher.class","name":"kotlinx/coroutines/ExecutorCoroutineDispatcher.class","size":1230,"crc":1634011348},{"key":"kotlinx/coroutines/JobImpl.class","name":"kotlinx/coroutines/JobImpl.class","size":2430,"crc":940896491},{"key":"kotlinx/coroutines/YieldContext.class","name":"kotlinx/coroutines/YieldContext.class","size":1181,"crc":245877953},{"key":"kotlinx/coroutines/AwaitKt.class","name":"kotlinx/coroutines/AwaitKt.class","size":5715,"crc":-900574499},{"key":"kotlinx/coroutines/CoroutineScope.class","name":"kotlinx/coroutines/CoroutineScope.class","size":625,"crc":92126250},{"key":"kotlinx/coroutines/JobCancellationException.class","name":"kotlinx/coroutines/JobCancellationException.class","size":3721,"crc":-1506509831},{"key":"kotlinx/coroutines/CoroutineId.class","name":"kotlinx/coroutines/CoroutineId.class","size":5008,"crc":-131509926},{"key":"kotlinx/coroutines/CoroutineName$Key.class","name":"kotlinx/coroutines/CoroutineName$Key.class","size":1048,"crc":-846792829},{"key":"kotlinx/coroutines/JobKt.class","name":"kotlinx/coroutines/JobKt.class","size":6133,"crc":103469669},{"key":"kotlinx/coroutines/CompletionHandlerBase.class","name":"kotlinx/coroutines/CompletionHandlerBase.class","size":1156,"crc":-467376288},{"key":"kotlinx/coroutines/Deferred$DefaultImpls.class","name":"kotlinx/coroutines/Deferred$DefaultImpls.class","size":3827,"crc":779693838},{"key":"kotlinx/coroutines/ResumeAwaitOnCompletion.class","name":"kotlinx/coroutines/ResumeAwaitOnCompletion.class","size":2773,"crc":1979742846},{"key":"kotlinx/coroutines/AwaitKt$joinAll$1.class","name":"kotlinx/coroutines/AwaitKt$joinAll$1.class","size":1465,"crc":-1807626051},{"key":"kotlinx/coroutines/Active.class","name":"kotlinx/coroutines/Active.class","size":902,"crc":1368958330},{"key":"kotlinx/coroutines/CoroutineStart$WhenMappings.class","name":"kotlinx/coroutines/CoroutineStart$WhenMappings.class","size":696,"crc":-322758076},{"key":"kotlinx/coroutines/DiagnosticCoroutineContextException.class","name":"kotlinx/coroutines/DiagnosticCoroutineContextException.class","size":1897,"crc":581838207},{"key":"kotlinx/coroutines/Job$Key.class","name":"kotlinx/coroutines/Job$Key.class","size":885,"crc":1588266140},{"key":"kotlinx/coroutines/ChildContinuation.class","name":"kotlinx/coroutines/ChildContinuation.class","size":1867,"crc":-1676998315},{"key":"kotlinx/coroutines/CoroutineExceptionHandlerKt.class","name":"kotlinx/coroutines/CoroutineExceptionHandlerKt.class","size":3579,"crc":669627325},{"key":"kotlinx/coroutines/DispatchedCoroutine.class","name":"kotlinx/coroutines/DispatchedCoroutine.class","size":4240,"crc":-535106305},{"key":"kotlinx/coroutines/AwaitKt$joinAll$3.class","name":"kotlinx/coroutines/AwaitKt$joinAll$3.class","size":1406,"crc":1030454751},{"key":"kotlinx/coroutines/DebugStringsKt.class","name":"kotlinx/coroutines/DebugStringsKt.class","size":2861,"crc":1615672593},{"key":"kotlinx/coroutines/CoroutineScopeKt.class","name":"kotlinx/coroutines/CoroutineScopeKt.class","size":6712,"crc":2087896032},{"key":"kotlinx/coroutines/DisposableFutureHandle.class","name":"kotlinx/coroutines/DisposableFutureHandle.class","size":1564,"crc":-1551165029},{"key":"kotlinx/coroutines/CompletedExceptionally.class","name":"kotlinx/coroutines/CompletedExceptionally.class","size":2200,"crc":234794842},{"key":"kotlinx/coroutines/CancelFutureOnCompletion.class","name":"kotlinx/coroutines/CancelFutureOnCompletion.class","size":1547,"crc":-1984817589},{"key":"kotlinx/coroutines/ParentJob.class","name":"kotlinx/coroutines/ParentJob.class","size":1030,"crc":-486969955},{"key":"kotlinx/coroutines/LazyDeferredCoroutine.class","name":"kotlinx/coroutines/LazyDeferredCoroutine.class","size":2156,"crc":740058240},{"key":"kotlinx/coroutines/Incomplete.class","name":"kotlinx/coroutines/Incomplete.class","size":642,"crc":-1224083286},{"key":"kotlinx/coroutines/CoroutinesInternalError.class","name":"kotlinx/coroutines/CoroutinesInternalError.class","size":855,"crc":1172606776},{"key":"kotlinx/coroutines/CoroutineContextKt.class","name":"kotlinx/coroutines/CoroutineContextKt.class","size":8901,"crc":1848854320},{"key":"kotlinx/coroutines/CancellableContinuation$DefaultImpls.class","name":"kotlinx/coroutines/CancellableContinuation$DefaultImpls.class","size":1214,"crc":1861733685},{"key":"kotlinx/coroutines/RunnableKt.class","name":"kotlinx/coroutines/RunnableKt.class","size":1108,"crc":2032056737},{"key":"kotlinx/coroutines/DebugKt.class","name":"kotlinx/coroutines/DebugKt.class","size":3422,"crc":-1315452998},{"key":"kotlinx/coroutines/CompletionStateKt.class","name":"kotlinx/coroutines/CompletionStateKt.class","size":4464,"crc":-117603660},{"key":"kotlinx/coroutines/TimeoutCoroutine.class","name":"kotlinx/coroutines/TimeoutCoroutine.class","size":2284,"crc":-500362956},{"key":"kotlinx/coroutines/CoroutineExceptionHandlerImplKt.class","name":"kotlinx/coroutines/CoroutineExceptionHandlerImplKt.class","size":3453,"crc":435064895},{"key":"kotlinx/coroutines/ChildHandleNode.class","name":"kotlinx/coroutines/ChildHandleNode.class","size":2093,"crc":431156052},{"key":"kotlinx/coroutines/CancelHandlerBase.class","name":"kotlinx/coroutines/CancelHandlerBase.class","size":1014,"crc":-1840819903},{"key":"kotlinx/coroutines/Delay.class","name":"kotlinx/coroutines/Delay.class","size":1808,"crc":-693053735},{"key":"kotlinx/coroutines/JobSupportKt.class","name":"kotlinx/coroutines/JobSupportKt.class","size":3272,"crc":2014317998},{"key":"kotlinx/coroutines/ThreadContextElement$DefaultImpls.class","name":"kotlinx/coroutines/ThreadContextElement$DefaultImpls.class","size":3080,"crc":1390402691},{"key":"kotlinx/coroutines/CompletedWithCancellation.class","name":"kotlinx/coroutines/CompletedWithCancellation.class","size":3362,"crc":1948476848},{"key":"kotlinx/coroutines/ChildJob$DefaultImpls.class","name":"kotlinx/coroutines/ChildJob$DefaultImpls.class","size":3482,"crc":-1091624664},{"key":"kotlinx/coroutines/SchedulerTaskKt.class","name":"kotlinx/coroutines/SchedulerTaskKt.class","size":1501,"crc":114100850},{"key":"kotlinx/coroutines/DisposableHandle.class","name":"kotlinx/coroutines/DisposableHandle.class","size":418,"crc":-1848736747},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedTaskQueue.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedTaskQueue.class","size":1089,"crc":-1973769157},{"key":"kotlinx/coroutines/EventLoopImplPlatform.class","name":"kotlinx/coroutines/EventLoopImplPlatform.class","size":1776,"crc":-1168424299},{"key":"kotlinx/coroutines/TimeoutKt$withTimeoutOrNull$1.class","name":"kotlinx/coroutines/TimeoutKt$withTimeoutOrNull$1.class","size":1644,"crc":1927484381},{"key":"kotlinx/coroutines/DispatchersKt.class","name":"kotlinx/coroutines/DispatchersKt.class","size":549,"crc":924074478},{"key":"kotlinx/coroutines/CompletableJob$DefaultImpls.class","name":"kotlinx/coroutines/CompletableJob$DefaultImpls.class","size":3565,"crc":1245119123},{"key":"kotlinx/coroutines/intrinsics/CancellableKt.class","name":"kotlinx/coroutines/intrinsics/CancellableKt.class","size":5589,"crc":1685699922},{"key":"kotlinx/coroutines/intrinsics/UndispatchedKt.class","name":"kotlinx/coroutines/intrinsics/UndispatchedKt.class","size":12616,"crc":-225996307},{"key":"kotlinx/coroutines/ExceptionsKt.class","name":"kotlinx/coroutines/ExceptionsKt.class","size":1793,"crc":-2027420945},{"key":"kotlinx/coroutines/CoroutineContextKt$foldCopies$1.class","name":"kotlinx/coroutines/CoroutineContextKt$foldCopies$1.class","size":2160,"crc":-1181767972},{"key":"kotlinx/coroutines/CancellableContinuation.class","name":"kotlinx/coroutines/CancellableContinuation.class","size":3172,"crc":-490611146},{"key":"kotlinx/coroutines/CoroutineExceptionHandler.class","name":"kotlinx/coroutines/CoroutineExceptionHandler.class","size":1193,"crc":1617063336},{"key":"kotlinx/coroutines/CoroutineExceptionHandler$DefaultImpls.class","name":"kotlinx/coroutines/CoroutineExceptionHandler$DefaultImpls.class","size":2905,"crc":-1391844390},{"key":"kotlinx/coroutines/CompletableDeferred.class","name":"kotlinx/coroutines/CompletableDeferred.class","size":986,"crc":-2044329642},{"key":"kotlinx/coroutines/GlobalScope.class","name":"kotlinx/coroutines/GlobalScope.class","size":1196,"crc":-213318019},{"key":"kotlinx/coroutines/EventLoopImplBase.class","name":"kotlinx/coroutines/EventLoopImplBase.class","size":13951,"crc":2006481204},{"key":"kotlinx/coroutines/JobSupport$AwaitContinuation.class","name":"kotlinx/coroutines/JobSupport$AwaitContinuation.class","size":2624,"crc":-2038097548},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl.class","size":7352,"crc":-981963950},{"key":"kotlinx/coroutines/selects/SelectClause1.class","name":"kotlinx/coroutines/selects/SelectClause1.class","size":1202,"crc":34058934},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$1.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$1.class","size":2241,"crc":-2058518463},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$2.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$2.class","size":2325,"crc":-675861665},{"key":"kotlinx/coroutines/selects/SelectInstance.class","name":"kotlinx/coroutines/selects/SelectInstance.class","size":1797,"crc":-1496653830},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$onTimeout$1.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$onTimeout$1.class","size":1937,"crc":-28608411},{"key":"kotlinx/coroutines/selects/SeqNumber.class","name":"kotlinx/coroutines/selects/SeqNumber.class","size":1123,"crc":-236379160},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$DisposeNode.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$DisposeNode.class","size":1078,"crc":-974213804},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$onTimeout$$inlined$Runnable$1.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$onTimeout$$inlined$Runnable$1.class","size":1814,"crc":-830863451},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$AtomicSelectOp.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$AtomicSelectOp.class","size":4989,"crc":-1287642699},{"key":"kotlinx/coroutines/selects/SelectClause2.class","name":"kotlinx/coroutines/selects/SelectClause2.class","size":1282,"crc":-1089555230},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$SelectOnCancelling.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$SelectOnCancelling.class","size":1776,"crc":1582934493},{"key":"kotlinx/coroutines/selects/WhileSelectKt$whileSelect$1.class","name":"kotlinx/coroutines/selects/WhileSelectKt$whileSelect$1.class","size":1685,"crc":584877765},{"key":"kotlinx/coroutines/selects/SelectBuilder$DefaultImpls.class","name":"kotlinx/coroutines/selects/SelectBuilder$DefaultImpls.class","size":1261,"crc":799605812},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl$PairSelectOp.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl$PairSelectOp.class","size":2663,"crc":-2119743431},{"key":"kotlinx/coroutines/selects/WhileSelectKt.class","name":"kotlinx/coroutines/selects/WhileSelectKt.class","size":3851,"crc":1053095965},{"key":"kotlinx/coroutines/selects/SelectUnbiasedKt.class","name":"kotlinx/coroutines/selects/SelectUnbiasedKt.class","size":2549,"crc":-222689099},{"key":"kotlinx/coroutines/selects/SelectBuilderImpl.class","name":"kotlinx/coroutines/selects/SelectBuilderImpl.class","size":20257,"crc":1638021679},{"key":"kotlinx/coroutines/selects/SelectBuilder.class","name":"kotlinx/coroutines/selects/SelectBuilder.class","size":2864,"crc":-135997452},{"key":"kotlinx/coroutines/selects/SelectClause0.class","name":"kotlinx/coroutines/selects/SelectClause0.class","size":1122,"crc":522217324},{"key":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$3.class","name":"kotlinx/coroutines/selects/UnbiasedSelectBuilderImpl$invoke$3.class","size":2484,"crc":-622864117},{"key":"kotlinx/coroutines/selects/SelectKt.class","name":"kotlinx/coroutines/selects/SelectKt.class","size":4837,"crc":918791984},{"key":"kotlinx/coroutines/InactiveNodeList.class","name":"kotlinx/coroutines/InactiveNodeList.class","size":1505,"crc":1529896678},{"key":"kotlinx/coroutines/BeforeResumeCancelHandler.class","name":"kotlinx/coroutines/BeforeResumeCancelHandler.class","size":609,"crc":-288960833},{"key":"kotlinx/coroutines/JobKt__FutureKt.class","name":"kotlinx/coroutines/JobKt__FutureKt.class","size":1980,"crc":2118760778},{"key":"kotlinx/coroutines/InterruptibleKt.class","name":"kotlinx/coroutines/InterruptibleKt.class","size":3650,"crc":41791879},{"key":"kotlinx/coroutines/Dispatchers.class","name":"kotlinx/coroutines/Dispatchers.class","size":2549,"crc":455212629},{"key":"kotlinx/coroutines/DeferredCoroutine.class","name":"kotlinx/coroutines/DeferredCoroutine.class","size":3201,"crc":1111760964},{"key":"kotlinx/coroutines/JobSupport$ChildCompletion.class","name":"kotlinx/coroutines/JobSupport$ChildCompletion.class","size":1994,"crc":-1870059567},{"key":"kotlinx/coroutines/RemoveOnCancel.class","name":"kotlinx/coroutines/RemoveOnCancel.class","size":1877,"crc":-471519885},{"key":"kotlinx/coroutines/ResumeOnCompletion.class","name":"kotlinx/coroutines/ResumeOnCompletion.class","size":1684,"crc":414982253},{"key":"kotlinx/coroutines/AbstractTimeSourceKt.class","name":"kotlinx/coroutines/AbstractTimeSourceKt.class","size":2747,"crc":710259852},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterIndexed$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterIndexed$1.class","size":5531,"crc":1651287980},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveSelect.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveSelect.class","size":6680,"crc":78200878},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$toList$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$toList$1.class","size":1827,"crc":749967314},{"key":"kotlinx/coroutines/channels/ActorCoroutine.class","name":"kotlinx/coroutines/channels/ActorCoroutine.class","size":3373,"crc":958153753},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$map$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$map$1.class","size":6960,"crc":-155619609},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$drop$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$drop$1.class","size":5589,"crc":2134521579},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Subscriber.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Subscriber.class","size":2222,"crc":-1200340265},{"key":"kotlinx/coroutines/channels/ProducerCoroutine.class","name":"kotlinx/coroutines/channels/ProducerCoroutine.class","size":2923,"crc":-1518996615},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$State.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$State.class","size":1604,"crc":1041006091},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$1.class","size":1982,"crc":218971029},{"key":"kotlinx/coroutines/channels/BroadcastKt$broadcast$2.class","name":"kotlinx/coroutines/channels/BroadcastKt$broadcast$2.class","size":4438,"crc":-1386887273},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3$WhenMappings.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3$WhenMappings.class","size":748,"crc":381664387},{"key":"kotlinx/coroutines/channels/Send.class","name":"kotlinx/coroutines/channels/Send.class","size":1567,"crc":-99852693},{"key":"kotlinx/coroutines/channels/BroadcastChannel.class","name":"kotlinx/coroutines/channels/BroadcastChannel.class","size":1619,"crc":1708406772},{"key":"kotlinx/coroutines/channels/BroadcastChannel$DefaultImpls.class","name":"kotlinx/coroutines/channels/BroadcastChannel$DefaultImpls.class","size":1988,"crc":1886885143},{"key":"kotlinx/coroutines/channels/SendElement.class","name":"kotlinx/coroutines/channels/SendElement.class","size":4375,"crc":1378182755},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Companion.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Companion.class","size":1198,"crc":-1816529445},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$any$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$any$1.class","size":1701,"crc":-224463549},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinct$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinct$1.class","size":3077,"crc":-262525825},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAtOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAtOrNull$1.class","size":1827,"crc":455548811},{"key":"kotlinx/coroutines/channels/ReceiveChannel.class","name":"kotlinx/coroutines/channels/ReceiveChannel.class","size":3802,"crc":1242433884},{"key":"kotlinx/coroutines/channels/ChannelIterator$next0$1.class","name":"kotlinx/coroutines/channels/ChannelIterator$next0$1.class","size":1696,"crc":-1553615833},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$takeWhile$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$takeWhile$1.class","size":5127,"crc":729629450},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$1.class","size":1857,"crc":-1915826772},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$2.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$2.class","size":7458,"crc":-827468812},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Closed.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$Closed.class","size":1589,"crc":-231386016},{"key":"kotlinx/coroutines/channels/ProducerScope$DefaultImpls.class","name":"kotlinx/coroutines/channels/ProducerScope$DefaultImpls.class","size":1282,"crc":-1562759662},{"key":"kotlinx/coroutines/channels/LazyBroadcastCoroutine.class","name":"kotlinx/coroutines/channels/LazyBroadcastCoroutine.class","size":2965,"crc":339013171},{"key":"kotlinx/coroutines/channels/SendChannel.class","name":"kotlinx/coroutines/channels/SendChannel.class","size":2467,"crc":508915076},{"key":"kotlinx/coroutines/channels/RendezvousChannel.class","name":"kotlinx/coroutines/channels/RendezvousChannel.class","size":1572,"crc":-1936420265},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$mapIndexed$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$mapIndexed$1.class","size":5477,"crc":-797670885},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$indexOf$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$indexOf$1.class","size":1817,"crc":-765448289},{"key":"kotlinx/coroutines/channels/AbstractSendChannel.class","name":"kotlinx/coroutines/channels/AbstractSendChannel.class","size":26686,"crc":-1322932153},{"key":"kotlinx/coroutines/channels/ProduceKt.class","name":"kotlinx/coroutines/channels/ProduceKt.class","size":11061,"crc":711733303},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$first$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$first$1.class","size":1743,"crc":1244233227},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filter$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filter$1.class","size":5090,"crc":217840694},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$maxWith$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$maxWith$1.class","size":1874,"crc":812371237},{"key":"kotlinx/coroutines/channels/AbstractChannelKt.class","name":"kotlinx/coroutines/channels/AbstractChannelKt.class","size":3079,"crc":1996256651},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$enqueueSend$$inlined$addLastIfPrevAndIf$1.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$enqueueSend$$inlined$addLastIfPrevAndIf$1.class","size":2680,"crc":-839170932},{"key":"kotlinx/coroutines/channels/AbstractChannel.class","name":"kotlinx/coroutines/channels/AbstractChannel.class","size":24434,"crc":-1362120636},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$3.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt$consumeEach$3.class","size":1978,"crc":-983000658},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$none$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$none$1.class","size":1705,"crc":891216341},{"key":"kotlinx/coroutines/channels/ChannelResult$Failed.class","name":"kotlinx/coroutines/channels/ChannelResult$Failed.class","size":834,"crc":1819096401},{"key":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt.class","name":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt.class","size":3476,"crc":1167498935},{"key":"kotlinx/coroutines/channels/Channel$Factory.class","name":"kotlinx/coroutines/channels/Channel$Factory.class","size":1578,"crc":2106114359},{"key":"kotlinx/coroutines/channels/SendElementWithUndeliveredHandler.class","name":"kotlinx/coroutines/channels/SendElementWithUndeliveredHandler.class","size":2347,"crc":-153783235},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$fixedPeriodTicker$1.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$fixedPeriodTicker$1.class","size":1814,"crc":-904174359},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$onSend$1.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$onSend$1.class","size":2421,"crc":1996822384},{"key":"kotlinx/coroutines/channels/BroadcastKt$broadcast$$inlined$CoroutineExceptionHandler$1.class","name":"kotlinx/coroutines/channels/BroadcastKt$broadcast$$inlined$CoroutineExceptionHandler$1.class","size":2324,"crc":1908456684},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNull$1.class","size":3301,"crc":1676565888},{"key":"kotlinx/coroutines/channels/TickerMode.class","name":"kotlinx/coroutines/channels/TickerMode.class","size":1498,"crc":-731133691},{"key":"kotlinx/coroutines/channels/AbstractChannel$onReceiveCatching$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$onReceiveCatching$1.class","size":2343,"crc":-1913771265},{"key":"kotlinx/coroutines/channels/BroadcastCoroutine.class","name":"kotlinx/coroutines/channels/BroadcastCoroutine.class","size":8275,"crc":-604198760},{"key":"kotlinx/coroutines/channels/ProduceKt$awaitClose$1.class","name":"kotlinx/coroutines/channels/ProduceKt$awaitClose$1.class","size":1588,"crc":840921706},{"key":"kotlinx/coroutines/channels/Channel$DefaultImpls.class","name":"kotlinx/coroutines/channels/Channel$DefaultImpls.class","size":3604,"crc":-978504223},{"key":"kotlinx/coroutines/channels/ProduceKt$awaitClose$4$1.class","name":"kotlinx/coroutines/channels/ProduceKt$awaitClose$4$1.class","size":1913,"crc":-646956303},{"key":"kotlinx/coroutines/channels/ChannelResult$Companion.class","name":"kotlinx/coroutines/channels/ChannelResult$Companion.class","size":2333,"crc":-895513092},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumes$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumes$1.class","size":1848,"crc":304518944},{"key":"kotlinx/coroutines/channels/ChannelCoroutine.class","name":"kotlinx/coroutines/channels/ChannelCoroutine.class","size":9434,"crc":208633307},{"key":"kotlinx/coroutines/channels/ChannelIterator.class","name":"kotlinx/coroutines/channels/ChannelIterator.class","size":1304,"crc":687859850},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$TryOfferDesc.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$TryOfferDesc.class","size":3826,"crc":1977896537},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumesAll$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$consumesAll$1.class","size":2895,"crc":1022514476},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toMap$2.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toMap$2.class","size":1827,"crc":511289852},{"key":"kotlinx/coroutines/channels/AbstractChannel$enqueueReceiveInternal$$inlined$addLastIfPrevAndIf$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$enqueueReceiveInternal$$inlined$addLastIfPrevAndIf$1.class","size":2683,"crc":-1248158543},{"key":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$sendBlocking$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$sendBlocking$1.class","size":3769,"crc":-1470954701},{"key":"kotlinx/coroutines/channels/ProduceKt$awaitClose$2.class","name":"kotlinx/coroutines/channels/ProduceKt$awaitClose$2.class","size":1245,"crc":-1364103200},{"key":"kotlinx/coroutines/channels/SendChannel$DefaultImpls.class","name":"kotlinx/coroutines/channels/SendChannel$DefaultImpls.class","size":2134,"crc":1587296967},{"key":"kotlinx/coroutines/channels/ReceiveChannel$DefaultImpls.class","name":"kotlinx/coroutines/channels/ReceiveChannel$DefaultImpls.class","size":5145,"crc":-869562481},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$firstOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$firstOrNull$1.class","size":1767,"crc":-1395858236},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toChannel$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toChannel$1.class","size":1897,"crc":817500285},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$onSend$1.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel$onSend$1.class","size":2479,"crc":-1669344532},{"key":"kotlinx/coroutines/channels/LazyActorCoroutine.class","name":"kotlinx/coroutines/channels/LazyActorCoroutine.class","size":5034,"crc":334560314},{"key":"kotlinx/coroutines/channels/Channel.class","name":"kotlinx/coroutines/channels/Channel.class","size":1469,"crc":1518937623},{"key":"kotlinx/coroutines/channels/AbstractChannel$RemoveReceiveOnCancel.class","name":"kotlinx/coroutines/channels/AbstractChannel$RemoveReceiveOnCancel.class","size":2397,"crc":754614124},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$3.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNotNullTo$3.class","size":1921,"crc":1855505061},{"key":"kotlinx/coroutines/channels/LinkedListChannel.class","name":"kotlinx/coroutines/channels/LinkedListChannel.class","size":6655,"crc":1803367822},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElementWithUndeliveredHandler.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElementWithUndeliveredHandler.class","size":2610,"crc":-2127084230},{"key":"kotlinx/coroutines/channels/ChannelKt.class","name":"kotlinx/coroutines/channels/ChannelKt.class","size":5683,"crc":-1235548551},{"key":"kotlinx/coroutines/channels/ActorKt.class","name":"kotlinx/coroutines/channels/ActorKt.class","size":4181,"crc":-1248837919},{"key":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1.class","name":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1.class","size":2524,"crc":803105920},{"key":"kotlinx/coroutines/channels/ArrayBroadcastChannel$Subscriber.class","name":"kotlinx/coroutines/channels/ArrayBroadcastChannel$Subscriber.class","size":8863,"crc":891384156},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toCollection$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$toCollection$1.class","size":1845,"crc":432242902},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$requireNoNulls$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$requireNoNulls$1.class","size":3815,"crc":971708969},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$withIndex$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$withIndex$1.class","size":4824,"crc":-541992702},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveHasNext.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveHasNext.class","size":5898,"crc":-934192042},{"key":"kotlinx/coroutines/channels/Receive.class","name":"kotlinx/coroutines/channels/Receive.class","size":2037,"crc":-61168777},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$minWith$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$minWith$1.class","size":1874,"crc":-1772906507},{"key":"kotlinx/coroutines/channels/TickerChannelsKt.class","name":"kotlinx/coroutines/channels/TickerChannelsKt.class","size":7524,"crc":-1901098315},{"key":"kotlinx/coroutines/channels/ChannelResult.class","name":"kotlinx/coroutines/channels/ChannelResult.class","size":4760,"crc":180300630},{"key":"kotlinx/coroutines/channels/ActorScope$DefaultImpls.class","name":"kotlinx/coroutines/channels/ActorScope$DefaultImpls.class","size":3056,"crc":1657257971},{"key":"kotlinx/coroutines/channels/AbstractChannel$onReceive$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$onReceive$1.class","size":2152,"crc":458214447},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinctBy$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$distinctBy$1.class","size":5538,"crc":-22265331},{"key":"kotlinx/coroutines/channels/ChannelResult$Closed.class","name":"kotlinx/coroutines/channels/ChannelResult$Closed.class","size":1967,"crc":-594679674},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$fixedDelayTicker$1.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$fixedDelayTicker$1.class","size":1712,"crc":451225309},{"key":"kotlinx/coroutines/channels/BroadcastKt.class","name":"kotlinx/coroutines/channels/BroadcastKt.class","size":6440,"crc":-1428910003},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$singleOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$singleOrNull$1.class","size":1806,"crc":63048849},{"key":"kotlinx/coroutines/channels/ChannelsKt.class","name":"kotlinx/coroutines/channels/ChannelsKt.class","size":19013,"crc":917364759},{"key":"kotlinx/coroutines/channels/AbstractChannel$Itr.class","name":"kotlinx/coroutines/channels/AbstractChannel$Itr.class","size":7238,"crc":412988841},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastIndexOf$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastIndexOf$1.class","size":1868,"crc":1070769703},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$single$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$single$1.class","size":1773,"crc":979284159},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$SendBuffered.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$SendBuffered.class","size":3440,"crc":-787345040},{"key":"kotlinx/coroutines/channels/ProducerScope.class","name":"kotlinx/coroutines/channels/ProducerScope.class","size":1091,"crc":480912477},{"key":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1$registerSelectClause1$1.class","name":"kotlinx/coroutines/channels/ReceiveChannel$onReceiveOrNull$1$registerSelectClause1$1.class","size":4606,"crc":-611066317},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$take$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$take$1.class","size":5393,"crc":1927924320},{"key":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$trySendBlocking$2.class","name":"kotlinx/coroutines/channels/ChannelsKt__ChannelsKt$trySendBlocking$2.class","size":5245,"crc":-1799450732},{"key":"kotlinx/coroutines/channels/ReceiveChannel$receiveOrNull$1.class","name":"kotlinx/coroutines/channels/ReceiveChannel$receiveOrNull$1.class","size":1699,"crc":307160940},{"key":"kotlinx/coroutines/channels/ConflatedBroadcastChannel.class","name":"kotlinx/coroutines/channels/ConflatedBroadcastChannel.class","size":16535,"crc":2108675102},{"key":"kotlinx/coroutines/channels/ActorScope.class","name":"kotlinx/coroutines/channels/ActorScope.class","size":1185,"crc":-2060279663},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$SendSelect.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$SendSelect.class","size":5551,"crc":-1396225292},{"key":"kotlinx/coroutines/channels/ArrayBroadcastChannel.class","name":"kotlinx/coroutines/channels/ArrayBroadcastChannel.class","size":13104,"crc":180826361},{"key":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3.class","name":"kotlinx/coroutines/channels/TickerChannelsKt$ticker$3.class","size":4359,"crc":1410339322},{"key":"kotlinx/coroutines/channels/Closed.class","name":"kotlinx/coroutines/channels/Closed.class","size":5025,"crc":1738038493},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNot$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$filterNot$1.class","size":3799,"crc":299215704},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt.class","size":51178,"crc":1007382374},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$last$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$last$1.class","size":1788,"crc":2063160994},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$count$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$count$1.class","size":1749,"crc":-1241197118},{"key":"kotlinx/coroutines/channels/BufferOverflow.class","name":"kotlinx/coroutines/channels/BufferOverflow.class","size":1491,"crc":1252654038},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAt$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$elementAt$1.class","size":1803,"crc":-975641155},{"key":"kotlinx/coroutines/channels/BroadcastChannelKt.class","name":"kotlinx/coroutines/channels/BroadcastChannelKt.class","size":1642,"crc":-1537654397},{"key":"kotlinx/coroutines/channels/ReceiveOrClosed.class","name":"kotlinx/coroutines/channels/ReceiveOrClosed.class","size":1381,"crc":-1126968294},{"key":"kotlinx/coroutines/channels/AbstractChannel$TryPollDesc.class","name":"kotlinx/coroutines/channels/AbstractChannel$TryPollDesc.class","size":3660,"crc":-1692410089},{"key":"kotlinx/coroutines/channels/ArrayChannel$WhenMappings.class","name":"kotlinx/coroutines/channels/ArrayChannel$WhenMappings.class","size":752,"crc":687303467},{"key":"kotlinx/coroutines/channels/ChannelIterator$DefaultImpls.class","name":"kotlinx/coroutines/channels/ChannelIterator$DefaultImpls.class","size":1980,"crc":-2035120000},{"key":"kotlinx/coroutines/channels/ClosedSendChannelException.class","name":"kotlinx/coroutines/channels/ClosedSendChannelException.class","size":826,"crc":-1763797345},{"key":"kotlinx/coroutines/channels/ConflatedChannel.class","name":"kotlinx/coroutines/channels/ConflatedChannel.class","size":11387,"crc":-324438631},{"key":"kotlinx/coroutines/channels/AbstractChannel$receiveCatching$1.class","name":"kotlinx/coroutines/channels/AbstractChannel$receiveCatching$1.class","size":2092,"crc":1610448838},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastOrNull$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$lastOrNull$1.class","size":1819,"crc":264606312},{"key":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt.class","name":"kotlinx/coroutines/channels/ChannelsKt__Channels_commonKt.class","size":12990,"crc":796861983},{"key":"kotlinx/coroutines/channels/ArrayChannel.class","name":"kotlinx/coroutines/channels/ArrayChannel.class","size":16476,"crc":-1078335344},{"key":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElement.class","name":"kotlinx/coroutines/channels/AbstractChannel$ReceiveElement.class","size":5646,"crc":1085963497},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$zip$1.class","size":1636,"crc":-302362492},{"key":"kotlinx/coroutines/channels/BroadcastKt$broadcast$1.class","name":"kotlinx/coroutines/channels/BroadcastKt$broadcast$1.class","size":1875,"crc":-47967219},{"key":"kotlinx/coroutines/channels/ClosedReceiveChannelException.class","name":"kotlinx/coroutines/channels/ClosedReceiveChannelException.class","size":835,"crc":1645190014},{"key":"kotlinx/coroutines/channels/AbstractSendChannel$SendBufferedDesc.class","name":"kotlinx/coroutines/channels/AbstractSendChannel$SendBufferedDesc.class","size":2474,"crc":-1831327389},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$flatMap$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$flatMap$1.class","size":5259,"crc":-1422537467},{"key":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$dropWhile$1.class","name":"kotlinx/coroutines/channels/ChannelsKt__DeprecatedKt$dropWhile$1.class","size":5475,"crc":-1358759934},{"key":"kotlinx/coroutines/SupervisorKt.class","name":"kotlinx/coroutines/SupervisorKt.class","size":3471,"crc":-485202909},{"key":"kotlinx/coroutines/JobSupport.class","name":"kotlinx/coroutines/JobSupport.class","size":54473,"crc":-250952274},{"key":"kotlinx/coroutines/ResumeUndispatchedRunnable.class","name":"kotlinx/coroutines/ResumeUndispatchedRunnable.class","size":1966,"crc":1428917907},{"key":"kotlinx/coroutines/DispatcherExecutor.class","name":"kotlinx/coroutines/DispatcherExecutor.class","size":1603,"crc":-13366299},{"key":"kotlinx/coroutines/DefaultExecutor.class","name":"kotlinx/coroutines/DefaultExecutor.class","size":8305,"crc":1543979234},{"key":"kotlinx/coroutines/Delay$DefaultImpls.class","name":"kotlinx/coroutines/Delay$DefaultImpls.class","size":3304,"crc":1758101404},{"key":"kotlinx/coroutines/Unconfined.class","name":"kotlinx/coroutines/Unconfined.class","size":2543,"crc":1213235409},{"key":"kotlinx/coroutines/EventLoopImplBase$DelayedRunnableTask.class","name":"kotlinx/coroutines/EventLoopImplBase$DelayedRunnableTask.class","size":1584,"crc":1844290249},{"key":"kotlinx/coroutines/DispatchedTaskKt.class","name":"kotlinx/coroutines/DispatchedTaskKt.class","size":9066,"crc":-2053335748},{"key":"kotlinx/coroutines/CancelledContinuation.class","name":"kotlinx/coroutines/CancelledContinuation.class","size":2166,"crc":-2142906901},{"key":"kotlinx/coroutines/CompletableDeferredKt.class","name":"kotlinx/coroutines/CompletableDeferredKt.class","size":2931,"crc":1440113957},{"key":"kotlinx/coroutines/CancellableContinuationImplKt.class","name":"kotlinx/coroutines/CancellableContinuationImplKt.class","size":1007,"crc":-892839573},{"key":"kotlinx/coroutines/CopyableThrowable.class","name":"kotlinx/coroutines/CopyableThrowable.class","size":758,"crc":-2141716476},{"key":"kotlinx/coroutines/JobSupport$addLastAtomic$$inlined$addLastIf$1.class","name":"kotlinx/coroutines/JobSupport$addLastAtomic$$inlined$addLastIf$1.class","size":2651,"crc":-420923278},{"key":"kotlinx/coroutines/YieldContext$Key.class","name":"kotlinx/coroutines/YieldContext$Key.class","size":1040,"crc":1146657988},{"key":"kotlinx/coroutines/ThreadPoolDispatcherKt.class","name":"kotlinx/coroutines/ThreadPoolDispatcherKt.class","size":3578,"crc":-1937167736},{"key":"kotlinx/coroutines/ExecutorsKt.class","name":"kotlinx/coroutines/ExecutorsKt.class","size":2147,"crc":-1650460488},{"key":"kotlinx/coroutines/CoroutineStart.class","name":"kotlinx/coroutines/CoroutineStart.class","size":4086,"crc":1545828684},{"key":"kotlinx/coroutines/CoroutineDispatcher$Key$1.class","name":"kotlinx/coroutines/CoroutineDispatcher$Key$1.class","size":1693,"crc":-2036888570},{"key":"kotlinx/coroutines/AbstractTimeSource.class","name":"kotlinx/coroutines/AbstractTimeSource.class","size":1341,"crc":-524179290},{"key":"kotlinx/coroutines/DispatchedTask.class","name":"kotlinx/coroutines/DispatchedTask.class","size":9100,"crc":-1725602664},{"key":"META-INF/com.android.tools/r8/coroutines.pro","name":"META-INF/com.android.tools/r8/coroutines.pro","size":1190,"crc":-1302300043},{"key":"META-INF/com.android.tools/proguard/coroutines.pro","name":"META-INF/com.android.tools/proguard/coroutines.pro","size":1345,"crc":-571694184},{"key":"META-INF/proguard/coroutines.pro","name":"META-INF/proguard/coroutines.pro","size":1363,"crc":1916402070},{"key":"DebugProbesKt.bin","name":"DebugProbesKt.bin","size":1738,"crc":2094978271},{"key":"META-INF/kotlinx_coroutines_core.version","name":"META-INF/kotlinx_coroutines_core.version","size":5,"crc":282843805}] \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties b/app/build/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties new file mode 100644 index 0000000..5d47593 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties @@ -0,0 +1,17 @@ +#Sun May 10 10:40:27 CST 2026 +blog.wiwi.hoops.app-main-18\:/drawable/ic_launcher_foreground.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_ic_launcher_foreground.xml.flat +blog.wiwi.hoops.app-main-18\:/drawable/splash_icon.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_splash_icon.xml.flat +blog.wiwi.hoops.app-main-18\:/mipmap-anydpi-v26/ic_launcher.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher.xml.flat +blog.wiwi.hoops.app-main-18\:/mipmap-anydpi-v26/ic_launcher_round.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat +blog.wiwi.hoops.app-main-18\:/mipmap-hdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-hdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-mdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-mdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-xhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-xhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-xxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-xxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-xxxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher.png.flat +blog.wiwi.hoops.app-main-18\:/mipmap-xxxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher_round.png.flat +blog.wiwi.hoops.app-main-18\:/xml/backup_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_backup_rules.xml.flat +blog.wiwi.hoops.app-main-18\:/xml/data_extraction_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_data_extraction_rules.xml.flat diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000..ae95348 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,11 @@ + + + "Antwoord" + "Video" + "Wys af" + "Lui af" + "Inkomende oproep" + "Oproep aan die gang" + "Keur tans \'n inkomende oproep" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000..9d9afe3 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,11 @@ + + + "መልስ" + "ቪዲዮ" + "አትቀበል" + "ስልኩን ዝጋ" + "ገቢ ጥሪ" + "እየተካሄደ ያለ ጥሪ" + "ገቢ ጥሪ ማጣራት" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000..5dc236b --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,11 @@ + + + "ردّ" + "فيديو" + "رفض" + "قطع الاتصال" + "مكالمة واردة" + "مكالمة جارية" + "يتم فحص المكالمة الواردة" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml new file mode 100644 index 0000000..1a02846 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml @@ -0,0 +1,11 @@ + + + "উত্তৰ দিয়ক" + "ভিডিঅ’" + "প্ৰত্যাখ্যান কৰক" + "কল কাটি দিয়ক" + "অন্তৰ্গামী কল" + "চলি থকা কল" + "এটা অন্তৰ্গামী কলৰ পৰীক্ষা কৰি থকা হৈছে" + "৯৯৯+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml new file mode 100644 index 0000000..6091e61 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml @@ -0,0 +1,11 @@ + + + "Cavab verin" + "Video" + "İmtina edin" + "Dəstəyi asın" + "Gələn zəng" + "Davam edən zəng" + "Gələn zəng göstərilir" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000..459d678 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,11 @@ + + + "Odgovori" + "Video" + "Odbij" + "Prekini vezu" + "Dolazni poziv" + "Poziv je u toku" + "Proverava se dolazni poziv" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml new file mode 100644 index 0000000..b1a983d --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml @@ -0,0 +1,11 @@ + + + "Адказаць" + "Відэа" + "Адхіліць" + "Завяршыць" + "Уваходны выклік" + "Бягучы выклік" + "Фільтраванне ўваходнага выкліку" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000..f4ebc6b --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,11 @@ + + + "Отговор" + "Видеообаждане" + "Отхвърляне" + "Затваряне" + "Входящо обаждане" + "Текущо обаждане" + "Преглежда се входящо обаждане" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml new file mode 100644 index 0000000..11ca786 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml @@ -0,0 +1,11 @@ + + + "উত্তর দিন" + "ভিডিও" + "বাতিল করুন" + "কল কেটে দিন" + "ইনকামিং কল" + "চালু থাকা কল" + "ইনকামিং কল স্ক্রিনিং করা হচ্ছে" + "৯৯৯+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml new file mode 100644 index 0000000..bb86d53 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml @@ -0,0 +1,11 @@ + + + "Odgovori" + "Video" + "Odbaci" + "Prekini vezu" + "Dolazni poziv" + "Poziv u toku" + "Filtriranje dolaznog poziva" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000..eb5f138 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,11 @@ + + + "Respon" + "Vídeo" + "Rebutja" + "Penja" + "Trucada entrant" + "Trucada en curs" + "S\'està filtrant una trucada entrant" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000..ddd6a04 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,11 @@ + + + "Přijmout" + "Video" + "Odmítnout" + "Zavěsit" + "Příchozí hovor" + "Probíhající hovor" + "Prověřování příchozího hovoru" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000..0b781c2 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,11 @@ + + + "Besvar" + "Video" + "Afvis" + "Læg på" + "Indgående opkald" + "Igangværende opkald" + "Et indgående opkald screenes" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000..f177880 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,11 @@ + + + "Annehmen" + "Video" + "Ablehnen" + "Auflegen" + "Eingehender Anruf" + "Aktueller Anruf" + "Filter für eingehenden Anruf" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000..fcf0d3a --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,11 @@ + + + "Απάντηση" + "Βίντεο" + "Απόρριψη" + "Τερματισμός" + "Εισερχόμενη κλήση" + "Κλήση σε εξέλιξη" + "Διαλογή εισερχόμενης κλήσης" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000..0c59a73 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang up" + "Incoming call" + "On-going call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000..c55e620 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang Up" + "Incoming call" + "Ongoing call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000..0c59a73 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang up" + "Incoming call" + "On-going call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000..0c59a73 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,11 @@ + + + "Answer" + "Video" + "Decline" + "Hang up" + "Incoming call" + "On-going call" + "Screening an incoming call" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000..ff291e4 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,11 @@ + + + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‎‏‏‏‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‎‏‎‏‎‎‎Answer‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‏‎‎‏‏‏‎‎‎‏‎‎‎‏‎‏‎‏‎‎‏‏‎‎‏‏‎‎‏‎‎‎‎‏‎‏‎‏‎‎‏‏‎‏‎‎‏‎‎‎‎‎‎Video‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‏‎‎‎‏‏‎‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‏‎‎‏‎‎Decline‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‏‎‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‎‏‏‎‏‏‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‏‎‏‏‏‎Hang Up‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‎‏‎‎‎‎‏‎‎‎‎‏‎‏‏‎‎‎‏‏‏‎‏‏‎‎‎‏‎‎‎‏‏‎‏‎‎‎‏‎‏‏‎‏‏‏‎Incoming call‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‎‏‏‏‏‏‏‏‎‏‎‎‎‏‎‏‏‎‎‏‏‏‏‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‏‎‎‏‎‏‏‏‏‏‎‎Ongoing call‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎‎‏‎‏‎‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎Screening an incoming call‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000..4617964 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,11 @@ + + + "Responder" + "Video" + "Rechazar" + "Colgar" + "Llamada entrante" + "Llamada en curso" + "Filtrando una llamada entrante" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000..1eefca1 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,11 @@ + + + "Responder" + "Vídeo" + "Rechazar" + "Colgar" + "Llamada entrante" + "Llamada en curso" + "Filtrando una llamada entrante" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml new file mode 100644 index 0000000..474fa34 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml @@ -0,0 +1,11 @@ + + + "Vasta" + "Video" + "Keeldu" + "Lõpeta kõne" + "Sissetulev kõne" + "Käimasolev kõne" + "Sissetuleva kõne filtreerimine" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml new file mode 100644 index 0000000..0e99bd1 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml @@ -0,0 +1,11 @@ + + + "Erantzun" + "Bideoa" + "Baztertu" + "Amaitu deia" + "Sarrerako deia" + "Deia abian da" + "Sarrerako dei bat bistaratzen" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000..2e7c01f --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,11 @@ + + + "پاسخ دادن" + "ویدیو" + "رد کردن" + "قطع تماس" + "تماس ورودی" + "تماس درحال انجام" + "درحال غربال کردن تماس ورودی" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000..8019b82 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,11 @@ + + + "Vastaa" + "Video" + "Hylkää" + "Lopeta puhelu" + "Saapuva puhelu" + "Käynnissä oleva puhelu" + "Seulotaan saapuvaa puhelua" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000..ba18c39 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,11 @@ + + + "Répondre" + "Vidéo" + "Refuser" + "Raccrocher" + "Appel entrant" + "Appel en cours" + "Filtrer un appel entrant" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000..5ef64cd --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,11 @@ + + + "Répondre" + "Vidéo" + "Refuser" + "Raccrocher" + "Appel entrant" + "Appel en cours" + "Filtrage d\'un appel entrant" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml new file mode 100644 index 0000000..3f27ff2 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml @@ -0,0 +1,11 @@ + + + "Contestar" + "Vídeo" + "Rexeitar" + "Colgar" + "Chamada entrante" + "Chamada en curso" + "Filtrando chamada entrante" + ">999" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml new file mode 100644 index 0000000..9749808 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml @@ -0,0 +1,11 @@ + + + "જવાબ" + "વીડિયો" + "નકારો" + "સમાપ્ત કરો" + "ઇનકમિંગ કૉલ" + "ચાલુ કૉલ" + "ઇનકમિંગ કૉલનું સ્ક્રીનિંગ થાય છે" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000..f019f8f --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,11 @@ + + + "जवाब दें" + "वीडियो" + "अस्वीकार करें" + "कॉल काटें" + "आने वाला (इनकमिंग) कॉल" + "पहले से जारी कॉल" + "इनकमिंग कॉल को स्क्रीन किया जा रहा है" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000..e6750e6 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,11 @@ + + + "Odgovori" + "Videozapis" + "Odbij" + "Prekini" + "Dolazni poziv" + "Poziv u tijeku" + "Filtriranje dolaznog poziva" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000..ead6317 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,11 @@ + + + "Fogadás" + "Videó" + "Elutasítás" + "Befejezés" + "Bejövő hívás" + "Hívás folyamatban" + "Bejövő hívás szűrése" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml new file mode 100644 index 0000000..8629a55 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml @@ -0,0 +1,11 @@ + + + "Պատասխանել" + "Տեսազանգ" + "Մերժել" + "Ավարտել" + "Մուտքային զանգ" + "Ընթացիկ զանգ" + "Մուտքային զանգի զտում" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000..e61f5d4 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,11 @@ + + + "Jawab" + "Video" + "Tolak" + "Tutup" + "Panggilan masuk" + "Panggilan sedang berlangsung" + "Menyaring panggilan masuk" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml new file mode 100644 index 0000000..60be2ec --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml @@ -0,0 +1,11 @@ + + + "Svara" + "Myndsímtal" + "Hafna" + "Leggja á" + "Símtal berst" + "Símtal í gangi" + "Síar símtal sem berst" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000..715fa29 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,11 @@ + + + "Rispondi" + "Video" + "Rifiuta" + "Riaggancia" + "Chiamata in arrivo" + "Chiamata in corso" + "Applicazione filtro a chiamata in arrivo" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000..91cbb13 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,11 @@ + + + "מענה" + "וידאו" + "דחייה" + "ניתוק" + "שיחה נכנסת" + "שיחה פעילה" + "סינון שיחה נכנסת" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000..8f05d3d --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,11 @@ + + + "応答" + "ビデオ" + "拒否" + "通話終了" + "着信" + "通話中" + "着信をスクリーニング中" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml new file mode 100644 index 0000000..9c11251 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml @@ -0,0 +1,11 @@ + + + "პასუხი" + "ვიდეო" + "უარყოფა" + "გათიშვა" + "შემომავალი ზარი" + "მიმდინარე ზარი" + "შემომავალი ზარების გაცხრილვა" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml new file mode 100644 index 0000000..7462e07 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml @@ -0,0 +1,11 @@ + + + "Жауап" + "Бейне" + "Қабылдамау" + "Тұтқаны қою" + "Кіріс қоңырау" + "Қоңырау" + "Келген қоңырауды сүзу" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml new file mode 100644 index 0000000..78aa9f2 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml @@ -0,0 +1,11 @@ + + + "ឆ្លើយ" + "វីដេអូ" + "បដិសេធ" + "ដាក់​ចុះ" + "ការ​ហៅ​ចូល" + "ការ​ហៅដែលកំពុងដំណើរការ" + "កំពុងពិនិត្យការ​ហៅ​ចូល" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml new file mode 100644 index 0000000..08ec938 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml @@ -0,0 +1,11 @@ + + + "ಉತ್ತರಿಸಿ" + "ವೀಡಿಯೊ" + "ನಿರಾಕರಿಸಿ" + "ಕರೆ ಕೊನೆಗೊಳಿಸಿ" + "ಒಳಬರುವ ಕರೆ" + "ಚಾಲ್ತಿಯಲ್ಲಿರುವ ಕರೆ" + "ಒಳಬರುವ ಕರೆಯನ್ನು ಸ್ಕ್ರೀನ್ ಮಾಡಲಾಗುತ್ತಿದೆ" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000..adabc72 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,11 @@ + + + "통화" + "동영상" + "거절" + "전화 끊기" + "수신 전화" + "진행 중인 통화" + "수신 전화 검사 중" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml new file mode 100644 index 0000000..dff8410 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml @@ -0,0 +1,11 @@ + + + "Жооп берүү" + "Видео" + "Четке кагуу" + "Чалууну бүтүрүү" + "Кирүүчү чалуу" + "Учурдагы чалуу" + "Кирүүчү чалууну иргөө" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lo/values-lo.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lo/values-lo.xml new file mode 100644 index 0000000..180f20b --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lo/values-lo.xml @@ -0,0 +1,11 @@ + + + "ຮັບສາຍ" + "ວິດີໂອ" + "ປະຕິເສດ" + "ວາງສາຍ" + "ສາຍໂທເຂົ້າ" + "ສາຍໂທອອກ" + "ກຳລັງກວດສອບສາຍໂທເຂົ້າ" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lt/values-lt.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lt/values-lt.xml new file mode 100644 index 0000000..5cf8025 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lt/values-lt.xml @@ -0,0 +1,11 @@ + + + "Atsakyti" + "Vaizdo įrašas" + "Atmesti" + "Baigti pok." + "Gaunamasis skambutis" + "Vykstantis skambutis" + "Gaunamojo skambučio tikrinimas" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lv/values-lv.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lv/values-lv.xml new file mode 100644 index 0000000..8726095 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-lv/values-lv.xml @@ -0,0 +1,11 @@ + + + "Atbildēt" + "Video" + "Noraidīt" + "Pārtraukt" + "Ienākošais zvans" + "Pašreizējais zvans" + "Ienākošā zvana filtrēšana" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mk/values-mk.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mk/values-mk.xml new file mode 100644 index 0000000..8b0854d --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mk/values-mk.xml @@ -0,0 +1,11 @@ + + + "Одговори" + "Видео" + "Одбиј" + "Спушти" + "Дојдовен повик" + "Тековен повик" + "Проверка на дојдовен повик" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ml/values-ml.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ml/values-ml.xml new file mode 100644 index 0000000..82eddad --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ml/values-ml.xml @@ -0,0 +1,11 @@ + + + "മറുപടി നൽകുക" + "വീഡിയോ" + "നിരസിക്കുക" + "കോൾ നിർത്തുക" + "ഇൻകമിംഗ് കോൾ" + "സജീവമായ കോൾ" + "ഇൻകമിംഗ് കോൾ സ്‌ക്രീൻ ചെയ്യുന്നു" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mn/values-mn.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mn/values-mn.xml new file mode 100644 index 0000000..6e948b5 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mn/values-mn.xml @@ -0,0 +1,11 @@ + + + "Хариулах" + "Видео" + "Татгалзах" + "Таслах" + "Ирсэн дуудлага" + "Дуудлага хийгдэж байна" + "Ирсэн дуудлагыг харуулж байна" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mr/values-mr.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mr/values-mr.xml new file mode 100644 index 0000000..c9cd0ec --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-mr/values-mr.xml @@ -0,0 +1,11 @@ + + + "उत्तर द्या" + "व्हिडिओ" + "नकार द्या" + "कॉल बंद करा" + "इनकमिंग कॉल" + "सुरू असलेला कॉल" + "इनकमिंग कॉल स्क्रीन करत आहे" + "९९९+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ms/values-ms.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ms/values-ms.xml new file mode 100644 index 0000000..82f4359 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ms/values-ms.xml @@ -0,0 +1,11 @@ + + + "Jawab" + "Video" + "Tolak" + "Tamatkan Panggilan" + "Panggilan masuk" + "Panggilan sedang berlangsung" + "Menyaring panggilan masuk" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-my/values-my.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-my/values-my.xml new file mode 100644 index 0000000..0194115 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-my/values-my.xml @@ -0,0 +1,11 @@ + + + "ဖုန်းကိုင်ရန်" + "ဗီဒီယို" + "ငြင်းပယ်ရန်" + "ဖုန်းချရန်" + "အဝင်ခေါ်ဆိုမှု" + "လက်ရှိခေါ်ဆိုမှု" + "အဝင်ခေါ်ဆိုမှုကို စစ်ဆေးနေသည်" + "၉၉၉+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-nb/values-nb.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-nb/values-nb.xml new file mode 100644 index 0000000..4297d80 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-nb/values-nb.xml @@ -0,0 +1,11 @@ + + + "Svar" + "Video" + "Avvis" + "Legg på" + "Innkommende anrop" + "Pågående samtale" + "Filtrerer et innkommende anrop" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ne/values-ne.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ne/values-ne.xml new file mode 100644 index 0000000..19328ff --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ne/values-ne.xml @@ -0,0 +1,11 @@ + + + "जवाफ दिनुहोस्" + "भिडियो" + "काट्नुहोस्" + "फोन राख्नुहोस्" + "आगमन कल" + "भइरहेको कल" + "आगमन कल जाँचिँदै छ" + "९९९+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml new file mode 100644 index 0000000..78f9680 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml @@ -0,0 +1,4 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v27/values-v27.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v27/values-v27.xml new file mode 100644 index 0000000..a4534f6 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v27/values-v27.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v29/values-v29.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v29/values-v29.xml new file mode 100644 index 0000000..230cb2b --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v29/values-v29.xml @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v31/values-v31.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v31/values-v31.xml new file mode 100644 index 0000000..7150959 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v31/values-v31.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000..f906ef6 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,11 @@ + + + "Trả lời" + "Video" + "Từ chối" + "Kết thúc" + "Cuộc gọi đến" + "Cuộc gọi đang thực hiện" + "Đang sàng lọc cuộc gọi đến" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml new file mode 100644 index 0000000..95e2f7b --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml @@ -0,0 +1,11 @@ + + + 128dp + 103dp + 34dp + 28dp + ?splashScreenIconSize + 90dp + 72dp + 10000 + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000..194e4f9 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,11 @@ + + + "接听" + "视频通话" + "拒接" + "挂断" + "来电" + "正在通话" + "正在过滤来电" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000..3dfd5d5 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,11 @@ + + + "接聽" + "視像" + "拒接" + "掛斷" + "來電" + "通話中" + "正在過濾來電" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000..0bc44e2 --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,11 @@ + + + "接聽" + "視訊" + "拒接" + "掛斷" + "來電" + "通話中" + "正在過濾來電" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000..b07042b --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,11 @@ + + + "Phendula" + "Ividiyo" + "Yenqaba" + "Vala Ucingo" + "Ikholi engenayo" + "Ikholi eqhubekayo" + "Ukuveza ikholi engenayo" + "999+" + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml new file mode 100644 index 0000000..ab9440d --- /dev/null +++ b/app/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml @@ -0,0 +1,289 @@ + + + + + + + + + + #1f000000 + #8a000000 + #C2410C + #1d873b + #d93025 + #FAFAF7 + #1A1A1A + #ffffffff + #ff9e9e9e + #FAFAF7 + 4dp + 6dp + 8dp + 4dp + 2dp + 320dp + 320dp + 32dp + 13sp + 12dp + 8dp + 64dp + 64dp + 10dp + @dimen/notification_content_margin_start + 16dp + 4dp + 3dp + 24dp + 13sp + 10dp + 5dp + 410dp + 342dp + 109dp + 92dp + ?splashScreenIconSize + 288dp + 240dp + #3333B5E5 + #0cffffff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10000 + 999 + androidx.startup + Hoops + Answer + Video + Decline + Hang Up + Incoming call + Ongoing call + Screening an incoming call + 999+ + + + + + + + + + + 128dp103dp34dp28dp?splashScreenIconSize90dp72dp10000410dp342dp109dp92dp?splashScreenIconSize288dp240dp10000"Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""Sagutin""Video""Tanggihan""Ibaba""Papasok na tawag""Kasalukuyang tawag""Nagsi-screen ng papasok na tawag""999+""Odbierz""Wideo""Odrzuć""Rozłącz""Połączenie przychodzące""Trwa połączenie""Filtruję połączenie przychodzące""999+""Одговори""Видео""Одбиј""Прекини везу""Долазни позив""Позив је у току""Проверава се долазни позив""999+""উত্তর দিন""ভিডিও""বাতিল করুন""কল কেটে দিন""ইনকামিং কল""চালু থাকা কল""ইনকামিং কল স্ক্রিনিং করা হচ্ছে""৯৯৯+""Svara""Video""Avvisa""Lägg på""Inkommande samtal""Pågående samtal""Ett inkommande samtal filtreras""999+""Responder""Vídeo""Rechazar""Colgar""Llamada entrante""Llamada en curso""Filtrando una llamada entrante""999+""જવાબ""વીડિયો""નકારો""સમાપ્ત કરો""ઇનકમિંગ કૉલ""ચાલુ કૉલ""ઇનકમિંગ કૉલનું સ્ક્રીનિંગ થાય છે""999+""Répondre""Vidéo""Refuser""Raccrocher""Appel entrant""Appel en cours""Filtrage d\'un appel entrant""999+""پاسخ دادن""ویدیو""رد کردن""قطع تماس""تماس ورودی""تماس درحال انجام""درحال غربال کردن تماس ورودی""999+""जवाब दें""वीडियो""अस्वीकार करें""कॉल काटें""आने वाला (इनकमिंग) कॉल""पहले से जारी कॉल""इनकमिंग कॉल को स्क्रीन किया जा रहा है""999+""Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""Vasta""Video""Keeldu""Lõpeta kõne""Sissetulev kõne""Käimasolev kõne""Sissetuleva kõne filtreerimine""999+""Ответить""Видео""Отклонить""Завершить""Входящий вызов""Текущий вызов""Фильтрация входящего вызова"">999""Annehmen""Video""Ablehnen""Auflegen""Eingehender Anruf""Aktueller Anruf""Filter für eingehenden Anruf""999+""Svar""Video""Avvis""Legg på""Innkommende anrop""Pågående samtale""Filtrerer et innkommende anrop""999+""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‎‏‏‏‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‎‏‎‏‎‎‎Answer‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‏‎‎‏‏‏‎‎‎‏‎‎‎‏‎‏‎‏‎‎‏‏‎‎‏‏‎‎‏‎‎‎‎‏‎‏‎‏‎‎‏‏‎‏‎‎‏‎‎‎‎‎‎Video‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‏‎‎‎‏‏‎‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‏‎‎‏‎‎Decline‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‏‎‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‎‏‏‎‏‏‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‏‎‏‏‏‎Hang Up‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‎‏‎‎‎‎‏‎‎‎‎‏‎‏‏‎‎‎‏‏‏‎‏‏‎‎‎‏‎‎‎‏‏‎‏‎‎‎‏‎‏‏‎‏‏‏‎Incoming call‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‎‏‏‏‏‏‏‏‎‏‎‎‎‏‎‏‏‎‎‏‏‏‏‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‏‎‎‏‎‏‏‏‏‏‎‎Ongoing call‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎‎‏‎‏‎‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎Screening an incoming call‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎""Răspunde""Video""Respinge""Închide""Apel primit""Apel în desfășurare""Se filtrează un apel primit""999+""ဖုန်းကိုင်ရန်""ဗီဒီယို""ငြင်းပယ်ရန်""ဖုန်းချရန်""အဝင်ခေါ်ဆိုမှု""လက်ရှိခေါ်ဆိုမှု""အဝင်ခေါ်ဆိုမှုကို စစ်ဆေးနေသည်""၉၉၉+""Përgjigju""Video""Refuzo""Mbyll""Telefonatë hyrëse""Telefonatë në vazhdim""Po filtron një telefonatë hyrëse""999+""Одговори""Видео""Одбиј""Спушти""Дојдовен повик""Тековен повик""Проверка на дојдовен повик""999+""Respon""Vídeo""Rebutja""Penja""Trucada entrant""Trucada en curs""S\'està filtrant una trucada entrant""999+""Պատասխանել""Տեսազանգ""Մերժել""Ավարտել""Մուտքային զանգ""Ընթացիկ զանգ""Մուտքային զանգի զտում""999+""Atbildēt""Video""Noraidīt""Pārtraukt""Ienākošais zvans""Pašreizējais zvans""Ienākošā zvana filtrēšana""999+""応答""ビデオ""拒否""通話終了""着信""通話中""着信をスクリーニング中""999+"#1f000000#8a000000#1d873b#d93025#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp4dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999AnswerVideoDeclineHang UpIncoming callOngoing callScreening an incoming call999+#FAFAF7#1A1A1A#C2410C + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties b/app/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties new file mode 100644 index 0000000..af8afdc --- /dev/null +++ b/app/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties @@ -0,0 +1,17 @@ +#Sun May 10 10:40:27 CST 2026 +blog.wiwi.hoops.app-main-4\:/drawable/ic_launcher_foreground.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/ic_launcher_foreground.xml +blog.wiwi.hoops.app-main-4\:/drawable/splash_icon.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/splash_icon.xml +blog.wiwi.hoops.app-main-4\:/mipmap-anydpi-v26/ic_launcher.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher.xml +blog.wiwi.hoops.app-main-4\:/mipmap-anydpi-v26/ic_launcher_round.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher_round.xml +blog.wiwi.hoops.app-main-4\:/mipmap-hdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-4\:/mipmap-hdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-4\:/mipmap-mdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-4\:/mipmap-mdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-4\:/mipmap-xhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-4\:/mipmap-xhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-4\:/mipmap-xxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-4\:/mipmap-xxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-4\:/mipmap-xxxhdpi/ic_launcher.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher.png +blog.wiwi.hoops.app-main-4\:/mipmap-xxxhdpi/ic_launcher_round.png=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher_round.png +blog.wiwi.hoops.app-main-4\:/xml/backup_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/backup_rules.xml +blog.wiwi.hoops.app-main-4\:/xml/data_extraction_rules.xml=/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/data_extraction_rules.xml diff --git a/app/build/intermediates/incremental/release/packageReleaseResources/merged.dir/values/values.xml b/app/build/intermediates/incremental/release/packageReleaseResources/merged.dir/values/values.xml new file mode 100644 index 0000000..6855cdf --- /dev/null +++ b/app/build/intermediates/incremental/release/packageReleaseResources/merged.dir/values/values.xml @@ -0,0 +1,23 @@ + + + #C2410C + #FAFAF7 + #1A1A1A + #FAFAF7 + Hoops + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/release/packageReleaseResources/merger.xml b/app/build/intermediates/incremental/release/packageReleaseResources/merger.xml new file mode 100644 index 0000000..fa05b75 --- /dev/null +++ b/app/build/intermediates/incremental/release/packageReleaseResources/merger.xml @@ -0,0 +1,15 @@ + +#FAFAF7Hoops#FAFAF7#1A1A1A#C2410C \ No newline at end of file diff --git a/app/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/app_debug.kotlin_module b/app/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/app_debug.kotlin_module new file mode 100644 index 0000000..1e9f2ca Binary files /dev/null and b/app/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/app_debug.kotlin_module differ diff --git a/app/build/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/app_release.kotlin_module b/app/build/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/app_release.kotlin_module new file mode 100644 index 0000000..1e9f2ca Binary files /dev/null and b/app/build/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/app_release.kotlin_module differ diff --git a/app/build/intermediates/java_res/release/processReleaseJavaRes/out/kotlin-tooling-metadata.json b/app/build/intermediates/java_res/release/processReleaseJavaRes/out/kotlin-tooling-metadata.json new file mode 100644 index 0000000..c2c8112 --- /dev/null +++ b/app/build/intermediates/java_res/release/processReleaseJavaRes/out/kotlin-tooling-metadata.json @@ -0,0 +1,24 @@ +{ + "schemaVersion": "1.1.0", + "buildSystem": "Gradle", + "buildSystemVersion": "8.13", + "buildPlugin": "org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper", + "buildPluginVersion": "1.9.24", + "projectSettings": { + "isHmppEnabled": true, + "isCompatibilityMetadataVariantEnabled": false, + "isKPMEnabled": false + }, + "projectTargets": [ + { + "target": "org.jetbrains.kotlin.gradle.plugin.mpp.KotlinAndroidTarget", + "platformType": "androidJvm", + "extras": { + "android": { + "sourceCompatibility": "17", + "targetCompatibility": "17" + } + } + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ b/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ new file mode 100644 index 0000000..dc511af Binary files /dev/null and b/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ differ diff --git a/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/output-metadata.json b/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/output-metadata.json new file mode 100644 index 0000000..8728ced --- /dev/null +++ b/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "LINKED_RESOURCES_BINARY_FORMAT", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "linked-resources-binary-format-debug.ap_" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/linked-resources-binary-format.ap_ b/app/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/linked-resources-binary-format.ap_ new file mode 100644 index 0000000..cfddfcd Binary files /dev/null and b/app/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/linked-resources-binary-format.ap_ differ diff --git a/app/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/output-metadata.json b/app/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/output-metadata.json new file mode 100644 index 0000000..58cc2f4 --- /dev/null +++ b/app/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "LINKED_RESOURCES_BINARY_FORMAT", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops.test", + "variantName": "debugAndroidTest", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 0, + "versionName": "", + "outputFile": "linked-resources-binary-format.ap_" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/linked_resources_binary_format/release/processReleaseResources/linked-resources-binary-format-release.ap_ b/app/build/intermediates/linked_resources_binary_format/release/processReleaseResources/linked-resources-binary-format-release.ap_ new file mode 100644 index 0000000..37649af Binary files /dev/null and b/app/build/intermediates/linked_resources_binary_format/release/processReleaseResources/linked-resources-binary-format-release.ap_ differ diff --git a/app/build/intermediates/linked_resources_binary_format/release/processReleaseResources/output-metadata.json b/app/build/intermediates/linked_resources_binary_format/release/processReleaseResources/output-metadata.json new file mode 100644 index 0000000..6c1c75b --- /dev/null +++ b/app/build/intermediates/linked_resources_binary_format/release/processReleaseResources/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "LINKED_RESOURCES_BINARY_FORMAT", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "release", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "linked-resources-binary-format-release.ap_" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt new file mode 100644 index 0000000..1be47fb --- /dev/null +++ b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt @@ -0,0 +1 @@ +Cache for Android Lint31.13.2 diff --git a/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/activity/group-index.xml b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/activity/group-index.xml new file mode 100644 index 0000000..49f54e5 --- /dev/null +++ b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/activity/group-index.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/core/group-index.xml b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/core/group-index.xml new file mode 100644 index 0000000..b5a7076 --- /dev/null +++ b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/androidx/core/group-index.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/master-index.xml b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/master-index.xml new file mode 100644 index 0000000..2e8418a --- /dev/null +++ b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/maven.google/master-index.xml @@ -0,0 +1,326 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/sdk_index/snapshot.gz b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/sdk_index/snapshot.gz new file mode 100644 index 0000000..f295af9 Binary files /dev/null and b/app/build/intermediates/lint-cache/lintVitalAnalyzeRelease/sdk_index/snapshot.gz differ diff --git a/app/build/intermediates/lint-cache/lintVitalReportRelease/lint-cache-version.txt b/app/build/intermediates/lint-cache/lintVitalReportRelease/lint-cache-version.txt new file mode 100644 index 0000000..1be47fb --- /dev/null +++ b/app/build/intermediates/lint-cache/lintVitalReportRelease/lint-cache-version.txt @@ -0,0 +1 @@ +Cache for Android Lint31.13.2 diff --git a/app/build/intermediates/lint_vital_intermediate_text_report/release/lintVitalReportRelease/lint-results-release.txt b/app/build/intermediates/lint_vital_intermediate_text_report/release/lintVitalReportRelease/lint-results-release.txt new file mode 100644 index 0000000..0196588 --- /dev/null +++ b/app/build/intermediates/lint_vital_intermediate_text_report/release/lintVitalReportRelease/lint-results-release.txt @@ -0,0 +1 @@ +No issues found. diff --git a/app/build/intermediates/lint_vital_output/release/lintVitalRelease/lint-vital-output.dat b/app/build/intermediates/lint_vital_output/release/lintVitalRelease/lint-vital-output.dat new file mode 100644 index 0000000..e69de29 diff --git a/app/build/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml b/app/build/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml new file mode 100644 index 0000000..d866923 --- /dev/null +++ b/app/build/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml @@ -0,0 +1 @@ +http://schemas.android.com/apk/res-auto;;${\:app*release*MAIN*sourceProvider*0*resDir*0}/values/colors.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/values/ic_launcher_background.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/drawable/ic_launcher_foreground.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/drawable/splash_icon.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-anydpi-v26/ic_launcher_round.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-hdpi/ic_launcher_round.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-mdpi/ic_launcher_round.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-xhdpi/ic_launcher_round.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-xxhdpi/ic_launcher_round.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-xxxhdpi/ic_launcher_round.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-anydpi-v26/ic_launcher.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-hdpi/ic_launcher.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-mdpi/ic_launcher.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-xhdpi/ic_launcher.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-xxhdpi/ic_launcher.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/mipmap-xxxhdpi/ic_launcher.png,${\:app*release*MAIN*sourceProvider*0*resDir*0}/values/strings.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/values/themes.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/xml/data_extraction_rules.xml,${\:app*release*MAIN*sourceProvider*0*resDir*0}/xml/backup_rules.xml,+color:ball,0,V400040085,26000400a7,;"#C2410C";paper,0,V400020037,270002005a,;"#FAFAF7";ic_launcher_background,1,V400020037,380002006b,;"#FAFAF7";ink,0,V40003005f,2500030080,;"#1A1A1A";+drawable:ic_launcher_foreground,2,F;splash_icon,3,F;+mipmap:ic_launcher_round,4,F;ic_launcher_round,5,F;ic_launcher_round,6,F;ic_launcher_round,7,F;ic_launcher_round,8,F;ic_launcher_round,9,F;ic_launcher,10,F;ic_launcher,11,F;ic_launcher,12,F;ic_launcher,13,F;ic_launcher,14,F;ic_launcher,15,F;+string:app_name,16,V400020037,2a0002005d,;"Hoops";+style:Theme.Hoops,17,V40010024a,c00160405,;Dandroid\:Theme.Material.Light.NoActionBar,android\:windowBackground:@color/paper,android\:statusBarColor:@android\:color/transparent,android\:navigationBarColor:@android\:color/transparent,android\:windowLightStatusBar:true,android\:windowLightNavigationBar:true,;Theme.Hoops.Splash,17,V4000600aa,c000d022c,;DTheme.SplashScreen,windowSplashScreenBackground:@color/paper,windowSplashScreenAnimatedIcon:@drawable/splash_icon,postSplashScreenTheme:@style/Theme.Hoops,;+xml:data_extraction_rules,18,F;backup_rules,19,F; \ No newline at end of file diff --git a/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/module.xml b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/module.xml new file mode 100644 index 0000000..83c2833 --- /dev/null +++ b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/module.xml @@ -0,0 +1,19 @@ + + + + diff --git a/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release-artifact-dependencies.xml b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release-artifact-dependencies.xml new file mode 100644 index 0000000..e3480d4 --- /dev/null +++ b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release-artifact-dependencies.xml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release-artifact-libraries.xml b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release-artifact-libraries.xml new file mode 100644 index 0000000..56cbd0b --- /dev/null +++ b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release-artifact-libraries.xml @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release.xml b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release.xml new file mode 100644 index 0000000..f44d93a --- /dev/null +++ b/app/build/intermediates/lint_vital_report_lint_model/release/generateReleaseLintVitalReportModel/release.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + diff --git a/app/build/intermediates/lint_vital_return_value/release/lintVitalReportRelease/return-value-release.txt b/app/build/intermediates/lint_vital_return_value/release/lintVitalReportRelease/return-value-release.txt new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/app/build/intermediates/lint_vital_return_value/release/lintVitalReportRelease/return-value-release.txt @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt new file mode 100644 index 0000000..cf98cea --- /dev/null +++ b/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt @@ -0,0 +1,15 @@ +R_DEF: Internal format may change without notice +local +color ball +color ic_launcher_background +color ink +color paper +drawable ic_launcher_foreground +drawable splash_icon +mipmap ic_launcher +mipmap ic_launcher_round +string app_name +style Theme.Hoops +style Theme.Hoops.Splash +xml backup_rules +xml data_extraction_rules diff --git a/app/build/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt b/app/build/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt new file mode 100644 index 0000000..cf98cea --- /dev/null +++ b/app/build/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt @@ -0,0 +1,15 @@ +R_DEF: Internal format may change without notice +local +color ball +color ic_launcher_background +color ink +color paper +drawable ic_launcher_foreground +drawable splash_icon +mipmap ic_launcher +mipmap ic_launcher_round +string app_name +style Theme.Hoops +style Theme.Hoops.Splash +xml backup_rules +xml data_extraction_rules diff --git a/app/build/intermediates/manifest_merge_blame_file/debug/processDebugMainManifest/manifest-merger-blame-debug-report.txt b/app/build/intermediates/manifest_merge_blame_file/debug/processDebugMainManifest/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000..da5a28d --- /dev/null +++ b/app/build/intermediates/manifest_merge_blame_file/debug/processDebugMainManifest/manifest-merger-blame-debug-report.txt @@ -0,0 +1,124 @@ +1 +2 +6 +7 +10 +11 [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:22:5-24:47 +12 android:name="blog.wiwi.hoops.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" +12-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:23:9-81 +13 android:protectionLevel="signature" /> +13-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:24:9-44 +14 +15 +15-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:5-97 +15-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:22-94 +16 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:7:5-30:19 +17 android:allowBackup="true" +17-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:8:9-35 +18 android:appComponentFactory="androidx.core.app.CoreComponentFactory" +18-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:18-86 +19 android:dataExtractionRules="@xml/data_extraction_rules" +19-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:9:9-65 +20 android:debuggable="true" +21 android:extractNativeLibs="false" +22 android:fullBackupContent="@xml/backup_rules" +22-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:10:9-54 +23 android:hasFragileUserData="false" +23-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:15:9-43 +24 android:icon="@mipmap/ic_launcher" +24-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:11:9-43 +25 android:label="@string/app_name" +25-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:12:9-41 +26 android:roundIcon="@mipmap/ic_launcher_round" +26-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:13:9-54 +27 android:supportsRtl="true" +27-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:14:9-35 +28 android:theme="@style/Theme.Hoops.Splash" +28-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:17:9-50 +29 android:usesCleartextTraffic="false" > +29-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:16:9-45 +30 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:20:9-29:20 +31 android:name="blog.wiwi.hoops.MainActivity" +31-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:21:13-41 +32 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|uiMode|density" +32-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:23:13-102 +33 android:exported="true" +33-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:22:13-36 +34 android:screenOrientation="unspecified" > +34-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:24:13-52 +35 +35-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:25:13-28:29 +36 +36-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:17-69 +36-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:25-66 +37 +38 +38-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:17-77 +38-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:27-74 +39 +40 +41 +42 [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:24:9-32:20 +43 android:name="androidx.startup.InitializationProvider" +43-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:25:13-67 +44 android:authorities="blog.wiwi.hoops.androidx-startup" +44-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:26:13-68 +45 android:exported="false" > +45-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:27:13-37 +46 [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:29:13-31:52 +47 android:name="androidx.profileinstaller.ProfileInstallerInitializer" +47-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:30:17-85 +48 android:value="androidx.startup" /> +48-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:31:17-49 +49 +50 +51 [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:34:9-52:20 +52 android:name="androidx.profileinstaller.ProfileInstallReceiver" +52-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:35:13-76 +53 android:directBootAware="false" +53-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:36:13-44 +54 android:enabled="true" +54-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:37:13-35 +55 android:exported="true" +55-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:38:13-36 +56 android:permission="android.permission.DUMP" > +56-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:39:13-57 +57 +57-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:40:13-42:29 +58 +58-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:17-91 +58-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:25-88 +59 +60 +60-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:43:13-45:29 +61 +61-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:17-85 +61-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:25-82 +62 +63 +63-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:46:13-48:29 +64 +64-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:17-88 +64-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:25-85 +65 +66 +66-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:49:13-51:29 +67 +67-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:17-95 +67-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:25-92 +68 +69 +70 +71 +72 diff --git a/app/build/intermediates/manifest_merge_blame_file/debugAndroidTest/processDebugAndroidTestManifest/manifest-merger-blame-debug-androidTest-report.txt b/app/build/intermediates/manifest_merge_blame_file/debugAndroidTest/processDebugAndroidTestManifest/manifest-merger-blame-debug-androidTest-report.txt new file mode 100644 index 0000000..755133e --- /dev/null +++ b/app/build/intermediates/manifest_merge_blame_file/debugAndroidTest/processDebugAndroidTestManifest/manifest-merger-blame-debug-androidTest-report.txt @@ -0,0 +1,34 @@ +1 +2 +4 +5 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:5:5-74 +6 android:minSdkVersion="24" +6-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:5:15-41 +7 android:targetSdkVersion="34" /> +7-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:5:42-71 +8 +9 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:11:5-15:65 +10 android:name="android.test.InstrumentationTestRunner" +10-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:11:22-75 +11 android:functionalTest="false" +11-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:14:22-52 +12 android:handleProfiling="false" +12-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:13:22-53 +13 android:label="Tests for blog.wiwi.hoops" +13-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:15:22-63 +14 android:targetPackage="blog.wiwi.hoops" /> +14-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:12:22-61 +15 +16 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:7:5-9:19 +17 android:debuggable="true" +18 android:extractNativeLibs="false" > +19 +19-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:8:9-60 +19-->/home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest12195643056926545565.xml:8:23-57 +20 +21 +22 diff --git a/app/build/intermediates/manifest_merge_blame_file/release/processReleaseMainManifest/manifest-merger-blame-release-report.txt b/app/build/intermediates/manifest_merge_blame_file/release/processReleaseMainManifest/manifest-merger-blame-release-report.txt new file mode 100644 index 0000000..d6e78c6 --- /dev/null +++ b/app/build/intermediates/manifest_merge_blame_file/release/processReleaseMainManifest/manifest-merger-blame-release-report.txt @@ -0,0 +1,123 @@ +1 +2 +6 +7 +10 +11 [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:22:5-24:47 +12 android:name="blog.wiwi.hoops.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" +12-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:23:9-81 +13 android:protectionLevel="signature" /> +13-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:24:9-44 +14 +15 +15-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:5-97 +15-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:22-94 +16 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:7:5-30:19 +17 android:allowBackup="true" +17-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:8:9-35 +18 android:appComponentFactory="androidx.core.app.CoreComponentFactory" +18-->[androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:18-86 +19 android:dataExtractionRules="@xml/data_extraction_rules" +19-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:9:9-65 +20 android:extractNativeLibs="false" +21 android:fullBackupContent="@xml/backup_rules" +21-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:10:9-54 +22 android:hasFragileUserData="false" +22-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:15:9-43 +23 android:icon="@mipmap/ic_launcher" +23-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:11:9-43 +24 android:label="@string/app_name" +24-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:12:9-41 +25 android:roundIcon="@mipmap/ic_launcher_round" +25-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:13:9-54 +26 android:supportsRtl="true" +26-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:14:9-35 +27 android:theme="@style/Theme.Hoops.Splash" +27-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:17:9-50 +28 android:usesCleartextTraffic="false" > +28-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:16:9-45 +29 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:20:9-29:20 +30 android:name="blog.wiwi.hoops.MainActivity" +30-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:21:13-41 +31 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|uiMode|density" +31-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:23:13-102 +32 android:exported="true" +32-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:22:13-36 +33 android:screenOrientation="unspecified" > +33-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:24:13-52 +34 +34-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:25:13-28:29 +35 +35-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:17-69 +35-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:25-66 +36 +37 +37-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:17-77 +37-->/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:27-74 +38 +39 +40 +41 [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:24:9-32:20 +42 android:name="androidx.startup.InitializationProvider" +42-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:25:13-67 +43 android:authorities="blog.wiwi.hoops.androidx-startup" +43-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:26:13-68 +44 android:exported="false" > +44-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:27:13-37 +45 [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:29:13-31:52 +46 android:name="androidx.profileinstaller.ProfileInstallerInitializer" +46-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:30:17-85 +47 android:value="androidx.startup" /> +47-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:31:17-49 +48 +49 +50 [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:34:9-52:20 +51 android:name="androidx.profileinstaller.ProfileInstallReceiver" +51-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:35:13-76 +52 android:directBootAware="false" +52-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:36:13-44 +53 android:enabled="true" +53-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:37:13-35 +54 android:exported="true" +54-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:38:13-36 +55 android:permission="android.permission.DUMP" > +55-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:39:13-57 +56 +56-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:40:13-42:29 +57 +57-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:17-91 +57-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:25-88 +58 +59 +59-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:43:13-45:29 +60 +60-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:17-85 +60-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:25-82 +61 +62 +62-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:46:13-48:29 +63 +63-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:17-88 +63-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:25-85 +64 +65 +65-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:49:13-51:29 +66 +66-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:17-95 +66-->[androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:25-92 +67 +68 +69 +70 +71 diff --git a/app/build/intermediates/merged_art_profile/release/mergeReleaseArtProfile/baseline-prof.txt b/app/build/intermediates/merged_art_profile/release/mergeReleaseArtProfile/baseline-prof.txt new file mode 100644 index 0000000..501e390 --- /dev/null +++ b/app/build/intermediates/merged_art_profile/release/mergeReleaseArtProfile/baseline-prof.txt @@ -0,0 +1,342 @@ +# Baseline profiles for androidx.activity + +HSPLandroidx/activity/ComponentActivity$1;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$2;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$5;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/ComponentActivity$6;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$7;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$7;->onContextAvailable(Landroid/content/Context;)V +HSPLandroidx/activity/ComponentActivity;->()V +HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V +HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/activity/OnBackPressedCallback;->(Z)V +HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V +HSPLandroidx/activity/OnBackPressedCallback;->remove()V +HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable; +HSPLandroidx/activity/contextaware/ContextAwareHelper;->()V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V +HSPLandroidx/activity/result/ActivityResultLauncher;->()V +HSPLandroidx/activity/result/ActivityResultRegistry$3;->(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;ILandroidx/activity/result/contract/ActivityResultContract;)V +HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;->(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V +HSPLandroidx/activity/result/ActivityResultRegistry;->()V +HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V +HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I +HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher; +HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)I +HSPLandroidx/activity/result/contract/ActivityResultContract;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V +Landroidx/activity/Cancellable; +Landroidx/activity/ComponentActivity$1; +Landroidx/activity/ComponentActivity$2; +Landroidx/activity/ComponentActivity$3; +Landroidx/activity/ComponentActivity$4; +Landroidx/activity/ComponentActivity$5; +Landroidx/activity/ComponentActivity$6; +Landroidx/activity/ComponentActivity$7; +Landroidx/activity/ComponentActivity$NonConfigurationInstances; +Landroidx/activity/ComponentActivity; +Landroidx/activity/OnBackPressedCallback; +Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable; +Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable; +Landroidx/activity/OnBackPressedDispatcher; +Landroidx/activity/OnBackPressedDispatcherOwner; +Landroidx/activity/contextaware/ContextAware; +Landroidx/activity/contextaware/ContextAwareHelper; +Landroidx/activity/contextaware/OnContextAvailableListener; +Landroidx/activity/result/ActivityResult; +Landroidx/activity/result/ActivityResultCallback; +Landroidx/activity/result/ActivityResultCaller; +Landroidx/activity/result/ActivityResultLauncher; +Landroidx/activity/result/ActivityResultRegistry$3; +Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract; +Landroidx/activity/result/ActivityResultRegistry; +Landroidx/activity/result/ActivityResultRegistryOwner; +Landroidx/activity/result/contract/ActivityResultContract; +Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions; +Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult; +PLandroidx/activity/ComponentActivity$1;->run()V +PLandroidx/activity/ComponentActivity;->access$001(Landroidx/activity/ComponentActivity;)V +PLandroidx/activity/ComponentActivity;->onBackPressed()V +PLandroidx/activity/OnBackPressedCallback;->isEnabled()Z +PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V +PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V +PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V +PLandroidx/activity/OnBackPressedDispatcher;->onBackPressed()V +PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V +PLandroidx/activity/result/ActivityResultRegistry$3;->unregister()V +PLandroidx/activity/result/ActivityResultRegistry;->unregister(Ljava/lang/String;)V + +Landroidx/activity/Cancellable; +Landroidx/activity/ComponentActivity; +HSPLandroidx/activity/ComponentActivity;->()V +HSPLandroidx/activity/ComponentActivity;->(I)V +HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/ComponentActivity;->createFullyDrawnExecutor()Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor; +HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V +HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras; +HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle; +HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry; +HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore; +HSPLandroidx/activity/ComponentActivity;->lambda$new$2$androidx-activity-ComponentActivity(Landroid/content/Context;)V +HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V +HSPLandroidx/activity/ComponentActivity;->onTrimMemory(I)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda1; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda2; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda3; +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->onContextAvailable(Landroid/content/Context;)V +Landroidx/activity/ComponentActivity$1; +HSPLandroidx/activity/ComponentActivity$1;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$2; +HSPLandroidx/activity/ComponentActivity$2;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentActivity$3; +HSPLandroidx/activity/ComponentActivity$3;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/ComponentActivity$4; +HSPLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/ComponentActivity$5; +HSPLandroidx/activity/ComponentActivity$5;->(Landroidx/activity/ComponentActivity;)V +HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/ComponentActivity$Api33Impl; +HSPLandroidx/activity/ComponentActivity$Api33Impl;->getOnBackInvokedDispatcher(Landroid/app/Activity;)Landroid/window/OnBackInvokedDispatcher; +Landroidx/activity/ComponentActivity$NonConfigurationInstances; +Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor; +Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl; +HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->(Landroidx/activity/ComponentActivity;)V +Landroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0; +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/view/Window;I)V +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/view/Window;Z)V +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/Window;I)V +HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/Window;Z)V +Landroidx/activity/EdgeToEdge; +HSPLandroidx/activity/EdgeToEdge;->()V +HSPLandroidx/activity/EdgeToEdge;->enable$default(Landroidx/activity/ComponentActivity;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;ILjava/lang/Object;)V +HSPLandroidx/activity/EdgeToEdge;->enable(Landroidx/activity/ComponentActivity;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;)V +Landroidx/activity/EdgeToEdgeApi29; +HSPLandroidx/activity/EdgeToEdgeApi29;->()V +HSPLandroidx/activity/EdgeToEdgeApi29;->setUp(Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;Landroid/view/Window;Landroid/view/View;ZZ)V +Landroidx/activity/EdgeToEdgeImpl; +Landroidx/activity/FullyDrawnReporter; +HSPLandroidx/activity/FullyDrawnReporter;->(Ljava/util/concurrent/Executor;Lkotlin/jvm/functions/Function0;)V +Landroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0; +HSPLandroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;->(Landroidx/activity/FullyDrawnReporter;)V +Landroidx/activity/FullyDrawnReporterOwner; +Landroidx/activity/OnBackPressedCallback; +HSPLandroidx/activity/OnBackPressedCallback;->(Z)V +HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V +HSPLandroidx/activity/OnBackPressedCallback;->isEnabled()Z +HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V +HSPLandroidx/activity/OnBackPressedCallback;->setEnabledChangedCallback$activity_release(Lkotlin/jvm/functions/Function0;)V +Landroidx/activity/OnBackPressedDispatcher; +HSPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable; +HSPLandroidx/activity/OnBackPressedDispatcher;->hasEnabledCallbacks()Z +HSPLandroidx/activity/OnBackPressedDispatcher;->setOnBackInvokedDispatcher(Landroid/window/OnBackInvokedDispatcher;)V +HSPLandroidx/activity/OnBackPressedDispatcher;->updateBackInvokedCallbackState$activity_release()V +Landroidx/activity/OnBackPressedDispatcher$1; +HSPLandroidx/activity/OnBackPressedDispatcher$1;->(Landroidx/activity/OnBackPressedDispatcher;)V +HSPLandroidx/activity/OnBackPressedDispatcher$1;->invoke()Ljava/lang/Object; +HSPLandroidx/activity/OnBackPressedDispatcher$1;->invoke()V +Landroidx/activity/OnBackPressedDispatcher$2; +HSPLandroidx/activity/OnBackPressedDispatcher$2;->(Landroidx/activity/OnBackPressedDispatcher;)V +Landroidx/activity/OnBackPressedDispatcher$Api33Impl; +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl;->()V +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl;->()V +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl;->createOnBackInvokedCallback(Lkotlin/jvm/functions/Function0;)Landroid/window/OnBackInvokedCallback; +Landroidx/activity/OnBackPressedDispatcher$Api33Impl$$ExternalSyntheticLambda0; +HSPLandroidx/activity/OnBackPressedDispatcher$Api33Impl$$ExternalSyntheticLambda0;->(Lkotlin/jvm/functions/Function0;)V +Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable; +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V +HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable; +HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V +Landroidx/activity/OnBackPressedDispatcherOwner; +Landroidx/activity/R$id; +Landroidx/activity/SystemBarStyle; +HSPLandroidx/activity/SystemBarStyle;->()V +HSPLandroidx/activity/SystemBarStyle;->(III)V +HSPLandroidx/activity/SystemBarStyle;->(IIILkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/activity/SystemBarStyle;->getNightMode$activity_release()I +HSPLandroidx/activity/SystemBarStyle;->getScrimWithEnforcedContrast$activity_release(Z)I +HSPLandroidx/activity/SystemBarStyle;->isDark$activity_release(Landroid/content/res/Resources;)Z +Landroidx/activity/SystemBarStyle$Companion; +HSPLandroidx/activity/SystemBarStyle$Companion;->()V +HSPLandroidx/activity/SystemBarStyle$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +HSPLandroidx/activity/SystemBarStyle$Companion;->auto(II)Landroidx/activity/SystemBarStyle; +Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner; +HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->set(Landroid/view/View;Landroidx/activity/OnBackPressedDispatcherOwner;)V +Landroidx/activity/contextaware/ContextAware; +Landroidx/activity/contextaware/ContextAwareHelper; +HSPLandroidx/activity/contextaware/ContextAwareHelper;->()V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V +HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V +Landroidx/activity/contextaware/OnContextAvailableListener; +Landroidx/activity/result/ActivityResult; +Landroidx/activity/result/ActivityResultCallback; +Landroidx/activity/result/ActivityResultCaller; +Landroidx/activity/result/ActivityResultLauncher; +HSPLandroidx/activity/result/ActivityResultLauncher;->()V +Landroidx/activity/result/ActivityResultRegistry; +HSPLandroidx/activity/result/ActivityResultRegistry;->()V +HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V +HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I +HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher; +HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)V +Landroidx/activity/result/ActivityResultRegistry$3; +HSPLandroidx/activity/result/ActivityResultRegistry$3;->(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;)V +Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract; +HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;->(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V +Landroidx/activity/result/ActivityResultRegistryOwner; +Landroidx/activity/result/contract/ActivityResultContract; +HSPLandroidx/activity/result/contract/ActivityResultContract;->()V +Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions; +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V +Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion; +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult; +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V +Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion; +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;->()V +HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V +# Baseline profiles for lifecycle-livedata-core + +HSPLandroidx/lifecycle/LiveData$1;->(Landroidx/lifecycle/LiveData;)V +HSPLandroidx/lifecycle/LiveData$1;->run()V +HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->shouldBeActive()Z +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->shouldBeActive()Z +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->activeStateChanged(Z)V +HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->detachObserver()V +HSPLandroidx/lifecycle/LiveData;->()V +HSPLandroidx/lifecycle/LiveData;->()V +HSPLandroidx/lifecycle/LiveData;->assertMainThread(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LiveData;->changeActiveCounter(I)V +HSPLandroidx/lifecycle/LiveData;->considerNotify(Landroidx/lifecycle/LiveData$ObserverWrapper;)V +HSPLandroidx/lifecycle/LiveData;->dispatchingValue(Landroidx/lifecycle/LiveData$ObserverWrapper;)V +HSPLandroidx/lifecycle/LiveData;->getValue()Ljava/lang/Object; +HSPLandroidx/lifecycle/LiveData;->getVersion()I +HSPLandroidx/lifecycle/LiveData;->hasActiveObservers()Z +HSPLandroidx/lifecycle/LiveData;->observe(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->observeForever(Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->onActive()V +HSPLandroidx/lifecycle/LiveData;->onInactive()V +HSPLandroidx/lifecycle/LiveData;->postValue(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/LiveData;->removeObserver(Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/LiveData;->setValue(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->onChanged(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->plug()V +HSPLandroidx/lifecycle/MediatorLiveData$Source;->unplug()V +HSPLandroidx/lifecycle/MediatorLiveData;->()V +HSPLandroidx/lifecycle/MediatorLiveData;->addSource(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V +HSPLandroidx/lifecycle/MediatorLiveData;->onActive()V +HSPLandroidx/lifecycle/MediatorLiveData;->onInactive()V +HSPLandroidx/lifecycle/MediatorLiveData;->removeSource(Landroidx/lifecycle/LiveData;)V +HSPLandroidx/lifecycle/MutableLiveData;->()V +HSPLandroidx/lifecycle/MutableLiveData;->setValue(Ljava/lang/Object;)V +PLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->detachObserver()V + +# Baseline profiles for Lifecycle ViewModel + +HSPLandroidx/lifecycle/ViewModel;->()V +HSPLandroidx/lifecycle/ViewModelLazy;->(Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V +HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Ljava/lang/Object; +HSPLandroidx/lifecycle/ViewModelProvider;->(Landroidx/lifecycle/ViewModelStore;Landroidx/lifecycle/ViewModelProvider$Factory;)V +HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/String;Ljava/lang/Class;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelStore;->()V +HSPLandroidx/lifecycle/ViewModelStore;->get(Ljava/lang/String;)Landroidx/lifecycle/ViewModel; +HSPLandroidx/lifecycle/ViewModelStore;->put(Ljava/lang/String;Landroidx/lifecycle/ViewModel;)V +PLandroidx/lifecycle/ViewModel;->clear()V +PLandroidx/lifecycle/ViewModel;->onCleared()V +PLandroidx/lifecycle/ViewModelStore;->clear()V + +# Baseline Profile rules for lifecycle-runtime + +HPLandroidx/lifecycle/LifecycleRegistry;->backwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->(Landroidx/lifecycle/LifecycleObserver;Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->dispatchEvent(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;Z)V +HSPLandroidx/lifecycle/LifecycleRegistry;->addObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->calculateTargetState(Landroidx/lifecycle/LifecycleObserver;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->enforceMainThreadIfNeeded(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->forwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->getCurrentState()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->isSynced()Z +HSPLandroidx/lifecycle/LifecycleRegistry;->min(Landroidx/lifecycle/Lifecycle$State;Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->moveToState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->popParentState()V +HSPLandroidx/lifecycle/LifecycleRegistry;->pushParentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->removeObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->sync()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->registerIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->()V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroid/app/Activity;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchCreate(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchResume(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchStart(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->injectIfNeededIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->onActivityCreated(Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment;->onResume()V +HSPLandroidx/lifecycle/ReportFragment;->onStart()V +HSPLandroidx/lifecycle/ViewTreeLifecycleOwner;->set(Landroid/view/View;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/ViewTreeViewModelStoreOwner;->set(Landroid/view/View;Landroidx/lifecycle/ViewModelStoreOwner;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPrePaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment;->onDestroy()V +PLandroidx/lifecycle/ReportFragment;->onPause()V +PLandroidx/lifecycle/ReportFragment;->onStop()V + +# Baseline Profile Rules for androidx.startup + +Landroidx/startup/AppInitializer; +HSPLandroidx/startup/AppInitializer;->**(**)** diff --git a/app/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/base.jar b/app/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/base.jar new file mode 100644 index 0000000..5830dd0 Binary files /dev/null and b/app/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/base.jar differ diff --git a/app/build/intermediates/merged_java_res/debugAndroidTest/mergeDebugAndroidTestJavaResource/feature-app.jar b/app/build/intermediates/merged_java_res/debugAndroidTest/mergeDebugAndroidTestJavaResource/feature-app.jar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/app/build/intermediates/merged_java_res/debugAndroidTest/mergeDebugAndroidTestJavaResource/feature-app.jar differ diff --git a/app/build/intermediates/merged_java_res/release/mergeReleaseJavaResource/base.jar b/app/build/intermediates/merged_java_res/release/mergeReleaseJavaResource/base.jar new file mode 100644 index 0000000..5830dd0 Binary files /dev/null and b/app/build/intermediates/merged_java_res/release/mergeReleaseJavaResource/base.jar differ diff --git a/app/build/intermediates/merged_manifest/debug/processDebugMainManifest/AndroidManifest.xml b/app/build/intermediates/merged_manifest/debug/processDebugMainManifest/AndroidManifest.xml new file mode 100644 index 0000000..7faebcc --- /dev/null +++ b/app/build/intermediates/merged_manifest/debug/processDebugMainManifest/AndroidManifest.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/merged_manifest/release/processReleaseMainManifest/AndroidManifest.xml b/app/build/intermediates/merged_manifest/release/processReleaseMainManifest/AndroidManifest.xml new file mode 100644 index 0000000..7539b33 --- /dev/null +++ b/app/build/intermediates/merged_manifest/release/processReleaseMainManifest/AndroidManifest.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml b/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml new file mode 100644 index 0000000..7faebcc --- /dev/null +++ b/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/merged_manifests/debug/processDebugManifest/output-metadata.json b/app/build/intermediates/merged_manifests/debug/processDebugManifest/output-metadata.json new file mode 100644 index 0000000..b2cc256 --- /dev/null +++ b/app/build/intermediates/merged_manifests/debug/processDebugManifest/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "MERGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/merged_manifests/release/processReleaseManifest/AndroidManifest.xml b/app/build/intermediates/merged_manifests/release/processReleaseManifest/AndroidManifest.xml new file mode 100644 index 0000000..7539b33 --- /dev/null +++ b/app/build/intermediates/merged_manifests/release/processReleaseManifest/AndroidManifest.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/merged_manifests/release/processReleaseManifest/output-metadata.json b/app/build/intermediates/merged_manifests/release/processReleaseManifest/output-metadata.json new file mode 100644 index 0000000..a0b781d --- /dev/null +++ b/app/build/intermediates/merged_manifests/release/processReleaseManifest/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "MERGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "release", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_foreground.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_foreground.xml.flat new file mode 100644 index 0000000..6d18399 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_foreground.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_splash_icon.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_splash_icon.xml.flat new file mode 100644 index 0000000..8dd289b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_splash_icon.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher.xml.flat new file mode 100644 index 0000000..009756b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat new file mode 100644 index 0000000..9242448 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher.png.flat new file mode 100644 index 0000000..e7f2f56 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..73795cd Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher.png.flat new file mode 100644 index 0000000..b864a90 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..70ea183 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..0273b92 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..d5fc3d5 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..b4e2558 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..591ae5b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..193c86d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..47d7def Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-af_values-af.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-af_values-af.arsc.flat new file mode 100644 index 0000000..30f20d2 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-af_values-af.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-am_values-am.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-am_values-am.arsc.flat new file mode 100644 index 0000000..ce17a55 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-am_values-am.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ar_values-ar.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ar_values-ar.arsc.flat new file mode 100644 index 0000000..0256590 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ar_values-ar.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-as_values-as.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-as_values-as.arsc.flat new file mode 100644 index 0000000..21c40c2 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-as_values-as.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-az_values-az.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-az_values-az.arsc.flat new file mode 100644 index 0000000..538fe32 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-az_values-az.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat new file mode 100644 index 0000000..9b2c680 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-be_values-be.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-be_values-be.arsc.flat new file mode 100644 index 0000000..51e25e8 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-be_values-be.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bg_values-bg.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bg_values-bg.arsc.flat new file mode 100644 index 0000000..54663cd Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bg_values-bg.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bn_values-bn.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bn_values-bn.arsc.flat new file mode 100644 index 0000000..ecab041 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bn_values-bn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bs_values-bs.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bs_values-bs.arsc.flat new file mode 100644 index 0000000..7d8e9b9 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bs_values-bs.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ca_values-ca.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ca_values-ca.arsc.flat new file mode 100644 index 0000000..304a849 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ca_values-ca.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-cs_values-cs.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-cs_values-cs.arsc.flat new file mode 100644 index 0000000..29b3e3c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-cs_values-cs.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-da_values-da.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-da_values-da.arsc.flat new file mode 100644 index 0000000..5065bd0 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-da_values-da.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-de_values-de.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-de_values-de.arsc.flat new file mode 100644 index 0000000..d96089b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-de_values-de.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-el_values-el.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-el_values-el.arsc.flat new file mode 100644 index 0000000..e242e42 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-el_values-el.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rAU_values-en-rAU.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rAU_values-en-rAU.arsc.flat new file mode 100644 index 0000000..7bed186 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rAU_values-en-rAU.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rCA_values-en-rCA.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rCA_values-en-rCA.arsc.flat new file mode 100644 index 0000000..3874b5b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rCA_values-en-rCA.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rGB_values-en-rGB.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rGB_values-en-rGB.arsc.flat new file mode 100644 index 0000000..9517381 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rGB_values-en-rGB.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rIN_values-en-rIN.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rIN_values-en-rIN.arsc.flat new file mode 100644 index 0000000..0c73c57 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rIN_values-en-rIN.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rXC_values-en-rXC.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rXC_values-en-rXC.arsc.flat new file mode 100644 index 0000000..d5aee70 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rXC_values-en-rXC.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es-rUS_values-es-rUS.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es-rUS_values-es-rUS.arsc.flat new file mode 100644 index 0000000..11a8bdf Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es-rUS_values-es-rUS.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es_values-es.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es_values-es.arsc.flat new file mode 100644 index 0000000..4cc3062 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es_values-es.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-et_values-et.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-et_values-et.arsc.flat new file mode 100644 index 0000000..f254fad Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-et_values-et.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-eu_values-eu.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-eu_values-eu.arsc.flat new file mode 100644 index 0000000..3fd2689 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-eu_values-eu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fa_values-fa.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fa_values-fa.arsc.flat new file mode 100644 index 0000000..ae03d66 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fa_values-fa.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fi_values-fi.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fi_values-fi.arsc.flat new file mode 100644 index 0000000..00ee9a8 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fi_values-fi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr-rCA_values-fr-rCA.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr-rCA_values-fr-rCA.arsc.flat new file mode 100644 index 0000000..2defd3c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr-rCA_values-fr-rCA.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr_values-fr.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr_values-fr.arsc.flat new file mode 100644 index 0000000..e4ccb24 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr_values-fr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gl_values-gl.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gl_values-gl.arsc.flat new file mode 100644 index 0000000..cf1b461 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gl_values-gl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gu_values-gu.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gu_values-gu.arsc.flat new file mode 100644 index 0000000..7513dbd Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gu_values-gu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hi_values-hi.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hi_values-hi.arsc.flat new file mode 100644 index 0000000..710d06a Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hi_values-hi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hr_values-hr.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hr_values-hr.arsc.flat new file mode 100644 index 0000000..554922f Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hr_values-hr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hu_values-hu.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hu_values-hu.arsc.flat new file mode 100644 index 0000000..659929d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hu_values-hu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hy_values-hy.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hy_values-hy.arsc.flat new file mode 100644 index 0000000..10bd32b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hy_values-hy.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-in_values-in.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-in_values-in.arsc.flat new file mode 100644 index 0000000..bfb7a9a Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-in_values-in.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-is_values-is.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-is_values-is.arsc.flat new file mode 100644 index 0000000..dd0d54e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-is_values-is.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-it_values-it.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-it_values-it.arsc.flat new file mode 100644 index 0000000..c86857b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-it_values-it.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-iw_values-iw.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-iw_values-iw.arsc.flat new file mode 100644 index 0000000..35a6876 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-iw_values-iw.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ja_values-ja.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ja_values-ja.arsc.flat new file mode 100644 index 0000000..08aaad4 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ja_values-ja.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ka_values-ka.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ka_values-ka.arsc.flat new file mode 100644 index 0000000..92694c5 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ka_values-ka.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kk_values-kk.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kk_values-kk.arsc.flat new file mode 100644 index 0000000..9961aec Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kk_values-kk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-km_values-km.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-km_values-km.arsc.flat new file mode 100644 index 0000000..c909fa0 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-km_values-km.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kn_values-kn.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kn_values-kn.arsc.flat new file mode 100644 index 0000000..b8e2a32 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kn_values-kn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ko_values-ko.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ko_values-ko.arsc.flat new file mode 100644 index 0000000..294fbb5 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ko_values-ko.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ky_values-ky.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ky_values-ky.arsc.flat new file mode 100644 index 0000000..27afb38 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ky_values-ky.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lo_values-lo.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lo_values-lo.arsc.flat new file mode 100644 index 0000000..2b2bfb5 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lo_values-lo.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lt_values-lt.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lt_values-lt.arsc.flat new file mode 100644 index 0000000..44b9e0e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lt_values-lt.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lv_values-lv.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lv_values-lv.arsc.flat new file mode 100644 index 0000000..c58237e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lv_values-lv.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mk_values-mk.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mk_values-mk.arsc.flat new file mode 100644 index 0000000..8ae06ed Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mk_values-mk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ml_values-ml.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ml_values-ml.arsc.flat new file mode 100644 index 0000000..29f7f9f Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ml_values-ml.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mn_values-mn.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mn_values-mn.arsc.flat new file mode 100644 index 0000000..702c4e1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mn_values-mn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mr_values-mr.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mr_values-mr.arsc.flat new file mode 100644 index 0000000..5577f7e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mr_values-mr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ms_values-ms.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ms_values-ms.arsc.flat new file mode 100644 index 0000000..c5e3cc8 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ms_values-ms.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-my_values-my.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-my_values-my.arsc.flat new file mode 100644 index 0000000..7a321f6 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-my_values-my.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nb_values-nb.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nb_values-nb.arsc.flat new file mode 100644 index 0000000..109360f Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nb_values-nb.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ne_values-ne.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ne_values-ne.arsc.flat new file mode 100644 index 0000000..3cc29aa Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ne_values-ne.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-night-v8_values-night-v8.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-night-v8_values-night-v8.arsc.flat new file mode 100644 index 0000000..f284c6d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-night-v8_values-night-v8.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nl_values-nl.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nl_values-nl.arsc.flat new file mode 100644 index 0000000..f03720d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nl_values-nl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-or_values-or.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-or_values-or.arsc.flat new file mode 100644 index 0000000..829af72 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-or_values-or.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pa_values-pa.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pa_values-pa.arsc.flat new file mode 100644 index 0000000..c9b62a5 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pa_values-pa.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pl_values-pl.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pl_values-pl.arsc.flat new file mode 100644 index 0000000..8852653 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pl_values-pl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rBR_values-pt-rBR.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rBR_values-pt-rBR.arsc.flat new file mode 100644 index 0000000..2532cfe Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rBR_values-pt-rBR.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rPT_values-pt-rPT.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rPT_values-pt-rPT.arsc.flat new file mode 100644 index 0000000..b0d9080 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rPT_values-pt-rPT.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt_values-pt.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt_values-pt.arsc.flat new file mode 100644 index 0000000..8c6efff Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt_values-pt.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ro_values-ro.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ro_values-ro.arsc.flat new file mode 100644 index 0000000..da2db6e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ro_values-ro.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ru_values-ru.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ru_values-ru.arsc.flat new file mode 100644 index 0000000..e9966b8 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ru_values-ru.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-si_values-si.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-si_values-si.arsc.flat new file mode 100644 index 0000000..a757da7 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-si_values-si.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sk_values-sk.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sk_values-sk.arsc.flat new file mode 100644 index 0000000..e896c31 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sk_values-sk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sl_values-sl.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sl_values-sl.arsc.flat new file mode 100644 index 0000000..a58821f Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sl_values-sl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sq_values-sq.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sq_values-sq.arsc.flat new file mode 100644 index 0000000..c695245 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sq_values-sq.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sr_values-sr.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sr_values-sr.arsc.flat new file mode 100644 index 0000000..9002ada Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sr_values-sr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sv_values-sv.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sv_values-sv.arsc.flat new file mode 100644 index 0000000..a80b025 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sv_values-sv.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sw_values-sw.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sw_values-sw.arsc.flat new file mode 100644 index 0000000..c7feb2c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sw_values-sw.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ta_values-ta.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ta_values-ta.arsc.flat new file mode 100644 index 0000000..dbb7717 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ta_values-ta.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-te_values-te.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-te_values-te.arsc.flat new file mode 100644 index 0000000..cca8c7b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-te_values-te.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-th_values-th.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-th_values-th.arsc.flat new file mode 100644 index 0000000..d9c221f Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-th_values-th.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tl_values-tl.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tl_values-tl.arsc.flat new file mode 100644 index 0000000..d63172e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tl_values-tl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tr_values-tr.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tr_values-tr.arsc.flat new file mode 100644 index 0000000..40e0a2b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tr_values-tr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uk_values-uk.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uk_values-uk.arsc.flat new file mode 100644 index 0000000..f20ba2b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uk_values-uk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ur_values-ur.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ur_values-ur.arsc.flat new file mode 100644 index 0000000..5109835 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ur_values-ur.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uz_values-uz.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uz_values-uz.arsc.flat new file mode 100644 index 0000000..2a3fe8d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uz_values-uz.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v21_values-v21.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v21_values-v21.arsc.flat new file mode 100644 index 0000000..32f35c8 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v21_values-v21.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v27_values-v27.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v27_values-v27.arsc.flat new file mode 100644 index 0000000..95d1abd Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v27_values-v27.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v29_values-v29.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v29_values-v29.arsc.flat new file mode 100644 index 0000000..b50a5af Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v29_values-v29.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v31_values-v31.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v31_values-v31.arsc.flat new file mode 100644 index 0000000..00e74db Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v31_values-v31.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-vi_values-vi.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-vi_values-vi.arsc.flat new file mode 100644 index 0000000..b9c0662 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-vi_values-vi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-watch-v20_values-watch-v20.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-watch-v20_values-watch-v20.arsc.flat new file mode 100644 index 0000000..4889ee1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-watch-v20_values-watch-v20.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rCN_values-zh-rCN.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rCN_values-zh-rCN.arsc.flat new file mode 100644 index 0000000..389b28b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rCN_values-zh-rCN.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rHK_values-zh-rHK.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rHK_values-zh-rHK.arsc.flat new file mode 100644 index 0000000..ac55d01 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rHK_values-zh-rHK.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rTW_values-zh-rTW.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rTW_values-zh-rTW.arsc.flat new file mode 100644 index 0000000..106390a Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rTW_values-zh-rTW.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zu_values-zu.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zu_values-zu.arsc.flat new file mode 100644 index 0000000..5a32706 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zu_values-zu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/values_values.arsc.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/values_values.arsc.flat new file mode 100644 index 0000000..852d572 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/values_values.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat new file mode 100644 index 0000000..f99cc0a Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat new file mode 100644 index 0000000..16e27ce Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_ic_launcher_foreground.xml.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_ic_launcher_foreground.xml.flat new file mode 100644 index 0000000..93f9b34 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_ic_launcher_foreground.xml.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_splash_icon.xml.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_splash_icon.xml.flat new file mode 100644 index 0000000..d9e7b90 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/drawable_splash_icon.xml.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher.xml.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher.xml.flat new file mode 100644 index 0000000..4773a55 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher.xml.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat new file mode 100644 index 0000000..f7bba1b Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher.png.flat new file mode 100644 index 0000000..e892e69 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..e431c30 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-hdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher.png.flat new file mode 100644 index 0000000..5be13de Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..4e29ea3 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-mdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..7f45f8f Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..9f72000 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xhdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..6642d1d Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..b69de77 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxhdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000..d5077ed Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher_round.png.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher_round.png.flat new file mode 100644 index 0000000..bc80e4c Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/mipmap-xxxhdpi_ic_launcher_round.png.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-af_values-af.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-af_values-af.arsc.flat new file mode 100644 index 0000000..b75aa03 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-af_values-af.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-am_values-am.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-am_values-am.arsc.flat new file mode 100644 index 0000000..5fe8f81 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-am_values-am.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ar_values-ar.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ar_values-ar.arsc.flat new file mode 100644 index 0000000..5214713 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ar_values-ar.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-as_values-as.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-as_values-as.arsc.flat new file mode 100644 index 0000000..e7845b6 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-as_values-as.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-az_values-az.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-az_values-az.arsc.flat new file mode 100644 index 0000000..38a841f Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-az_values-az.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat new file mode 100644 index 0000000..f20c894 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-be_values-be.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-be_values-be.arsc.flat new file mode 100644 index 0000000..c595b9b Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-be_values-be.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bg_values-bg.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bg_values-bg.arsc.flat new file mode 100644 index 0000000..c13f083 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bg_values-bg.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bn_values-bn.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bn_values-bn.arsc.flat new file mode 100644 index 0000000..3ab7376 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bn_values-bn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bs_values-bs.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bs_values-bs.arsc.flat new file mode 100644 index 0000000..cfe84ee Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-bs_values-bs.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ca_values-ca.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ca_values-ca.arsc.flat new file mode 100644 index 0000000..fc0ad34 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ca_values-ca.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-cs_values-cs.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-cs_values-cs.arsc.flat new file mode 100644 index 0000000..837e02a Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-cs_values-cs.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-da_values-da.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-da_values-da.arsc.flat new file mode 100644 index 0000000..dbcc9bb Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-da_values-da.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-de_values-de.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-de_values-de.arsc.flat new file mode 100644 index 0000000..524b7ca Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-de_values-de.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-el_values-el.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-el_values-el.arsc.flat new file mode 100644 index 0000000..d6ea332 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-el_values-el.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rAU_values-en-rAU.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rAU_values-en-rAU.arsc.flat new file mode 100644 index 0000000..4a0f8a0 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rAU_values-en-rAU.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rCA_values-en-rCA.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rCA_values-en-rCA.arsc.flat new file mode 100644 index 0000000..2b53a37 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rCA_values-en-rCA.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rGB_values-en-rGB.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rGB_values-en-rGB.arsc.flat new file mode 100644 index 0000000..709a58d Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rGB_values-en-rGB.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rIN_values-en-rIN.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rIN_values-en-rIN.arsc.flat new file mode 100644 index 0000000..0850c37 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rIN_values-en-rIN.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rXC_values-en-rXC.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rXC_values-en-rXC.arsc.flat new file mode 100644 index 0000000..3b0cca4 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-en-rXC_values-en-rXC.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-es-rUS_values-es-rUS.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-es-rUS_values-es-rUS.arsc.flat new file mode 100644 index 0000000..3f0b616 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-es-rUS_values-es-rUS.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-es_values-es.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-es_values-es.arsc.flat new file mode 100644 index 0000000..d8465c7 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-es_values-es.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-et_values-et.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-et_values-et.arsc.flat new file mode 100644 index 0000000..17ad814 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-et_values-et.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-eu_values-eu.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-eu_values-eu.arsc.flat new file mode 100644 index 0000000..390b801 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-eu_values-eu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fa_values-fa.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fa_values-fa.arsc.flat new file mode 100644 index 0000000..c597441 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fa_values-fa.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fi_values-fi.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fi_values-fi.arsc.flat new file mode 100644 index 0000000..3847cec Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fi_values-fi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fr-rCA_values-fr-rCA.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fr-rCA_values-fr-rCA.arsc.flat new file mode 100644 index 0000000..2e1df28 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fr-rCA_values-fr-rCA.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fr_values-fr.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fr_values-fr.arsc.flat new file mode 100644 index 0000000..7ac053c Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-fr_values-fr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-gl_values-gl.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-gl_values-gl.arsc.flat new file mode 100644 index 0000000..db82e03 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-gl_values-gl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-gu_values-gu.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-gu_values-gu.arsc.flat new file mode 100644 index 0000000..a48ef26 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-gu_values-gu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hi_values-hi.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hi_values-hi.arsc.flat new file mode 100644 index 0000000..140b631 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hi_values-hi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hr_values-hr.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hr_values-hr.arsc.flat new file mode 100644 index 0000000..98fe56e Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hr_values-hr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hu_values-hu.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hu_values-hu.arsc.flat new file mode 100644 index 0000000..a68747d Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hu_values-hu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hy_values-hy.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hy_values-hy.arsc.flat new file mode 100644 index 0000000..f5a43a2 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-hy_values-hy.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-in_values-in.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-in_values-in.arsc.flat new file mode 100644 index 0000000..76412d0 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-in_values-in.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-is_values-is.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-is_values-is.arsc.flat new file mode 100644 index 0000000..7c2b4d6 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-is_values-is.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-it_values-it.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-it_values-it.arsc.flat new file mode 100644 index 0000000..2858885 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-it_values-it.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-iw_values-iw.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-iw_values-iw.arsc.flat new file mode 100644 index 0000000..18c01a6 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-iw_values-iw.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ja_values-ja.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ja_values-ja.arsc.flat new file mode 100644 index 0000000..e93e612 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ja_values-ja.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ka_values-ka.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ka_values-ka.arsc.flat new file mode 100644 index 0000000..a268a2c Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ka_values-ka.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-kk_values-kk.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-kk_values-kk.arsc.flat new file mode 100644 index 0000000..bd61303 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-kk_values-kk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-km_values-km.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-km_values-km.arsc.flat new file mode 100644 index 0000000..a019007 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-km_values-km.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-kn_values-kn.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-kn_values-kn.arsc.flat new file mode 100644 index 0000000..29f2a0b Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-kn_values-kn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ko_values-ko.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ko_values-ko.arsc.flat new file mode 100644 index 0000000..5faa507 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ko_values-ko.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ky_values-ky.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ky_values-ky.arsc.flat new file mode 100644 index 0000000..3f69414 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ky_values-ky.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lo_values-lo.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lo_values-lo.arsc.flat new file mode 100644 index 0000000..0c86d35 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lo_values-lo.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lt_values-lt.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lt_values-lt.arsc.flat new file mode 100644 index 0000000..867f44d Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lt_values-lt.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lv_values-lv.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lv_values-lv.arsc.flat new file mode 100644 index 0000000..e423958 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-lv_values-lv.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mk_values-mk.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mk_values-mk.arsc.flat new file mode 100644 index 0000000..89a4a86 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mk_values-mk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ml_values-ml.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ml_values-ml.arsc.flat new file mode 100644 index 0000000..cf0db52 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ml_values-ml.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mn_values-mn.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mn_values-mn.arsc.flat new file mode 100644 index 0000000..97917d3 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mn_values-mn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mr_values-mr.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mr_values-mr.arsc.flat new file mode 100644 index 0000000..d7bcf22 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-mr_values-mr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ms_values-ms.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ms_values-ms.arsc.flat new file mode 100644 index 0000000..4edf1ba Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ms_values-ms.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-my_values-my.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-my_values-my.arsc.flat new file mode 100644 index 0000000..48aa5a9 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-my_values-my.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-nb_values-nb.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-nb_values-nb.arsc.flat new file mode 100644 index 0000000..4c6b829 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-nb_values-nb.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ne_values-ne.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ne_values-ne.arsc.flat new file mode 100644 index 0000000..d8522ad Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ne_values-ne.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-night-v8_values-night-v8.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-night-v8_values-night-v8.arsc.flat new file mode 100644 index 0000000..2a0540a Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-night-v8_values-night-v8.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-nl_values-nl.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-nl_values-nl.arsc.flat new file mode 100644 index 0000000..5f8258b Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-nl_values-nl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-or_values-or.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-or_values-or.arsc.flat new file mode 100644 index 0000000..45b7962 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-or_values-or.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pa_values-pa.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pa_values-pa.arsc.flat new file mode 100644 index 0000000..0167ba6 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pa_values-pa.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pl_values-pl.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pl_values-pl.arsc.flat new file mode 100644 index 0000000..e451d78 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pl_values-pl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt-rBR_values-pt-rBR.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt-rBR_values-pt-rBR.arsc.flat new file mode 100644 index 0000000..5b94dbe Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt-rBR_values-pt-rBR.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt-rPT_values-pt-rPT.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt-rPT_values-pt-rPT.arsc.flat new file mode 100644 index 0000000..3a6fbf6 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt-rPT_values-pt-rPT.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt_values-pt.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt_values-pt.arsc.flat new file mode 100644 index 0000000..d472281 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-pt_values-pt.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ro_values-ro.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ro_values-ro.arsc.flat new file mode 100644 index 0000000..57d21a9 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ro_values-ro.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ru_values-ru.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ru_values-ru.arsc.flat new file mode 100644 index 0000000..e788488 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ru_values-ru.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-si_values-si.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-si_values-si.arsc.flat new file mode 100644 index 0000000..9929573 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-si_values-si.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sk_values-sk.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sk_values-sk.arsc.flat new file mode 100644 index 0000000..2bad00d Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sk_values-sk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sl_values-sl.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sl_values-sl.arsc.flat new file mode 100644 index 0000000..d548fd2 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sl_values-sl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sq_values-sq.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sq_values-sq.arsc.flat new file mode 100644 index 0000000..3cfd30a Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sq_values-sq.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sr_values-sr.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sr_values-sr.arsc.flat new file mode 100644 index 0000000..d0f3975 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sr_values-sr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sv_values-sv.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sv_values-sv.arsc.flat new file mode 100644 index 0000000..893126f Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sv_values-sv.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sw_values-sw.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sw_values-sw.arsc.flat new file mode 100644 index 0000000..8e7a383 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-sw_values-sw.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ta_values-ta.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ta_values-ta.arsc.flat new file mode 100644 index 0000000..8e9dabc Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ta_values-ta.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-te_values-te.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-te_values-te.arsc.flat new file mode 100644 index 0000000..790261e Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-te_values-te.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-th_values-th.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-th_values-th.arsc.flat new file mode 100644 index 0000000..90d32b8 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-th_values-th.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-tl_values-tl.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-tl_values-tl.arsc.flat new file mode 100644 index 0000000..2857972 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-tl_values-tl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-tr_values-tr.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-tr_values-tr.arsc.flat new file mode 100644 index 0000000..d178bba Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-tr_values-tr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-uk_values-uk.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-uk_values-uk.arsc.flat new file mode 100644 index 0000000..584cc5f Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-uk_values-uk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ur_values-ur.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ur_values-ur.arsc.flat new file mode 100644 index 0000000..0e5ce0d Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-ur_values-ur.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-uz_values-uz.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-uz_values-uz.arsc.flat new file mode 100644 index 0000000..4bb3050 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-uz_values-uz.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v21_values-v21.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v21_values-v21.arsc.flat new file mode 100644 index 0000000..5381cd5 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v21_values-v21.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v27_values-v27.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v27_values-v27.arsc.flat new file mode 100644 index 0000000..ee68bb4 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v27_values-v27.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v29_values-v29.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v29_values-v29.arsc.flat new file mode 100644 index 0000000..28ae131 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v29_values-v29.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v31_values-v31.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v31_values-v31.arsc.flat new file mode 100644 index 0000000..b519321 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-v31_values-v31.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-vi_values-vi.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-vi_values-vi.arsc.flat new file mode 100644 index 0000000..3b5804d Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-vi_values-vi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-watch-v20_values-watch-v20.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-watch-v20_values-watch-v20.arsc.flat new file mode 100644 index 0000000..10cdcbe Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-watch-v20_values-watch-v20.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rCN_values-zh-rCN.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rCN_values-zh-rCN.arsc.flat new file mode 100644 index 0000000..cfb0646 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rCN_values-zh-rCN.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rHK_values-zh-rHK.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rHK_values-zh-rHK.arsc.flat new file mode 100644 index 0000000..b66e91f Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rHK_values-zh-rHK.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rTW_values-zh-rTW.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rTW_values-zh-rTW.arsc.flat new file mode 100644 index 0000000..5716fc1 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zh-rTW_values-zh-rTW.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zu_values-zu.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zu_values-zu.arsc.flat new file mode 100644 index 0000000..2ea471b Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values-zu_values-zu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/values_values.arsc.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/values_values.arsc.flat new file mode 100644 index 0000000..2a00c92 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/values_values.arsc.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_backup_rules.xml.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_backup_rules.xml.flat new file mode 100644 index 0000000..c298c64 Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_backup_rules.xml.flat differ diff --git a/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_data_extraction_rules.xml.flat b/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_data_extraction_rules.xml.flat new file mode 100644 index 0000000..004048e Binary files /dev/null and b/app/build/intermediates/merged_res/release/mergeReleaseResources/xml_data_extraction_rules.xml.flat differ diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/mergeDebugResources.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/mergeDebugResources.json new file mode 100644 index 0000000..0c7497a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/mergeDebugResources.json @@ -0,0 +1,1571 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-bn_values-bn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,358,461,562,664,784", + "endColumns": "98,101,101,102,100,101,119,100", + "endOffsets": "149,251,353,456,557,659,779,880" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-es-rUS_values-es-rUS.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-be_values-be.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,562,665,786", + "endColumns": "97,101,99,100,105,102,120,100", + "endOffsets": "148,250,350,451,557,660,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ml_values-ml.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,362,466,569,670,792", + "endColumns": "101,102,101,103,102,100,121,100", + "endOffsets": "152,255,357,461,564,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-zh-rHK_values-zh-rHK.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-v31_values-v31.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v31/values-v31.xml", + "from": { + "startLines": "2,9", + "startColumns": "4,4", + "startOffsets": "55,473", + "endLines": "8,13", + "endColumns": "12,12", + "endOffsets": "468,697" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-it_values-it.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,565,672,802", + "endColumns": "97,101,98,101,108,106,129,100", + "endOffsets": "148,250,349,451,560,667,797,898" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-zh-rTW_values-zh-rTW.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-v29_values-v29.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v29/values-v29.xml", + "from": { + "startLines": "2,7", + "startColumns": "4,4", + "startOffsets": "55,374", + "endLines": "6,8", + "endColumns": "12,12", + "endOffsets": "369,464" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-si_values-si.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,365,470,569,673,787", + "endColumns": "101,102,104,104,98,103,113,100", + "endOffsets": "152,255,360,465,564,668,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-sr_values-sr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ky_values-ky.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,360,467,571,675,786", + "endColumns": "99,101,102,106,103,103,110,100", + "endOffsets": "150,252,355,462,566,670,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-te_values-te.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,265,367,468,574,681,805", + "endColumns": "101,107,101,100,105,106,123,100", + "endOffsets": "152,260,362,463,569,676,800,901" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-da_values-da.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,350,448,555,664,782", + "endColumns": "95,101,96,97,106,108,117,100", + "endOffsets": "146,248,345,443,550,659,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-hr_values-hr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,260,357,456,560,664,781", + "endColumns": "97,106,96,98,103,103,116,100", + "endOffsets": "148,255,352,451,555,659,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-tr_values-tr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,449,551,657,768", + "endColumns": "96,101,97,96,101,105,110,100", + "endOffsets": "147,249,347,444,546,652,763,864" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-es_values-es.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ar_values-ar.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,250,345,448,551,653,767", + "endColumns": "92,101,94,102,102,101,113,100", + "endOffsets": "143,245,340,443,546,648,762,863" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-kn_values-kn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,357,463,564,672,800", + "endColumns": "97,102,100,105,100,107,127,100", + "endOffsets": "148,251,352,458,559,667,795,896" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ur_values-ur.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,357,461,564,662,776", + "endColumns": "97,101,101,103,102,97,113,100", + "endOffsets": "148,250,352,456,559,657,771,872" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ms_values-ms.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,459,565,683,798", + "endColumns": "94,101,96,109,105,117,114,100", + "endOffsets": "145,247,344,454,560,678,793,894" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-my_values-my.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,262,365,467,572,678,797", + "endColumns": "102,103,102,101,104,105,118,100", + "endOffsets": "153,257,360,462,567,673,792,893" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-nl_values-nl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,359,459,566,670,789", + "endColumns": "101,101,99,99,106,103,118,100", + "endOffsets": "152,254,354,454,561,665,784,885" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-pt-rPT_values-pt-rPT.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,666,787", + "endColumns": "96,101,98,99,106,105,120,100", + "endOffsets": "147,249,348,448,555,661,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-de_values-de.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,455,563,668,786", + "endColumns": "97,101,99,99,107,104,117,100", + "endOffsets": "148,250,350,450,558,663,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-fa_values-fa.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,355,455,556,662,779", + "endColumns": "98,101,98,99,100,105,116,100", + "endOffsets": "149,251,350,450,551,657,774,875" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-bs_values-bs.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,457,561,663,780", + "endColumns": "97,101,97,103,103,101,116,100", + "endOffsets": "148,250,348,452,556,658,775,876" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-tl_values-tl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,355,452,559,667,789", + "endColumns": "96,101,100,96,106,107,121,100", + "endOffsets": "147,249,350,447,554,662,784,885" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-en-rXC_values-en-rXC.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,251,456,657,858,1065,1270,1482", + "endColumns": "195,204,200,200,206,204,211,203", + "endOffsets": "246,451,652,853,1060,1265,1477,1681" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-en-rGB_values-en-rGB.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ta_values-ta.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,558,673,801", + "endColumns": "95,102,98,97,106,114,127,100", + "endOffsets": "146,249,348,446,553,668,796,897" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-iw_values-iw.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,445,546,646,752", + "endColumns": "93,101,96,96,100,99,105,100", + "endOffsets": "144,246,343,440,541,641,747,848" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ro_values-ro.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,454,556,665,782", + "endColumns": "97,101,99,98,101,108,116,100", + "endOffsets": "148,250,350,449,551,660,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-night-v8_values-night-v8.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "85", + "endOffsets": "136" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-v21_values-v21.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,237,304,368,484,610,736,864,1036", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "117,63,66,63,115,125,125,127,12,12", + "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-hy_values-hy.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,260,358,457,562,664,775", + "endColumns": "99,104,97,98,104,101,110,100", + "endOffsets": "150,255,353,452,557,659,770,871" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-as_values-as.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,259,367,472,576,676,805", + "endColumns": "100,102,107,104,103,99,128,100", + "endOffsets": "151,254,362,467,571,671,800,901" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-mn_values-mn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,454,559,671,790", + "endColumns": "97,101,100,97,104,111,118,100", + "endOffsets": "148,250,351,449,554,666,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-el_values-el.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,567,673,790", + "endColumns": "97,102,99,102,107,105,116,100", + "endOffsets": "148,251,351,454,562,668,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ka_values-ka.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,557,661,779", + "endColumns": "95,101,98,98,105,103,117,100", + "endOffsets": "146,248,347,446,552,656,774,875" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-sl_values-sl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,456,559,661,778", + "endColumns": "96,101,97,103,102,101,116,100", + "endOffsets": "147,249,347,451,554,656,773,874" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-en-rAU_values-en-rAU.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-zu_values-zu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,257,356,459,565,672,785", + "endColumns": "97,103,98,102,105,106,112,100", + "endOffsets": "148,252,351,454,560,667,780,881" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-cs_values-cs.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,455,560,667,786", + "endColumns": "97,101,100,98,104,106,118,100", + "endOffsets": "148,250,351,450,555,662,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-zh-rCN_values-zh-rCN.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,248,342,436,529,623,719", + "endColumns": "91,100,93,93,92,93,95,100", + "endOffsets": "142,243,337,431,524,618,714,815" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-bg_values-bg.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,262,364,465,572,677,796", + "endColumns": "96,109,101,100,106,104,118,100", + "endOffsets": "147,257,359,460,567,672,791,892" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-pl_values-pl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,451,565,670,792", + "endColumns": "96,101,97,98,113,104,121,100", + "endOffsets": "147,249,347,446,560,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-v27_values-v27.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v27/values-v27.xml", + "from": { + "startLines": "2,3,4,7", + "startColumns": "4,4,4,4", + "startOffsets": "55,136,229,405", + "endLines": "2,3,6,9", + "endColumns": "80,92,12,12", + "endOffsets": "131,224,400,588" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-nb_values-nb.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,447,555,661,781", + "endColumns": "93,101,96,98,107,105,119,100", + "endOffsets": "144,246,343,442,550,656,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ja_values-ja.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,437,530,623,724", + "endColumns": "91,99,93,95,92,92,100,100", + "endOffsets": "142,242,336,432,525,618,719,820" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-en-rCA_values-en-rCA.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,657,773", + "endColumns": "95,101,98,98,103,101,115,100", + "endOffsets": "146,248,347,446,550,652,768,869" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-sv_values-sv.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,449,557,662,783", + "endColumns": "94,101,97,98,107,104,120,100", + "endOffsets": "145,247,345,444,552,657,778,879" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-sq_values-sq.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,354,451,559,670,792", + "endColumns": "98,101,97,96,107,110,121,100", + "endOffsets": "149,251,349,446,554,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-kk_values-kk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,354,457,561,658,769", + "endColumns": "94,101,101,102,103,96,110,100", + "endOffsets": "145,247,349,452,556,653,764,865" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-en-rIN_values-en-rIN.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-is_values-is.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,354,454,557,661,772", + "endColumns": "94,106,96,99,102,103,110,100", + "endOffsets": "145,252,349,449,552,656,767,868" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-mk_values-mk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,450,555,658,774", + "endColumns": "97,101,96,97,104,102,115,100", + "endOffsets": "148,250,347,445,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-hu_values-hu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,356,457,560,667,777", + "endColumns": "96,101,101,100,102,106,109,100", + "endOffsets": "147,249,351,452,555,662,772,873" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ko_values-ko.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,438,534,632,732", + "endColumns": "91,99,93,96,95,97,99,100", + "endOffsets": "142,242,336,433,529,627,727,828" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-az_values-az.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,258,361,465,566,671,782", + "endColumns": "100,101,102,103,100,104,110,100", + "endOffsets": "151,253,356,460,561,666,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ru_values-ru.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,457,562,665,782", + "endColumns": "97,101,100,100,104,102,116,100", + "endOffsets": "148,250,351,452,557,660,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-lv_values-lv.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,563,671,786", + "endColumns": "97,101,99,100,106,107,114,100", + "endOffsets": "148,250,350,451,558,666,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-af_values-af.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,451,558,667,787", + "endColumns": "97,101,97,97,106,108,119,100", + "endOffsets": "148,250,348,446,553,662,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-or_values-or.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,260,363,468,569,671,790", + "endColumns": "102,101,102,104,100,101,118,100", + "endOffsets": "153,255,358,463,564,666,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-lo_values-lo.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,552,650,761", + "endColumns": "95,102,98,97,100,97,110,100", + "endOffsets": "146,249,348,446,547,645,756,857" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-km_values-km.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,253,351,451,552,664,776", + "endColumns": "94,102,97,99,100,111,111,100", + "endOffsets": "145,248,346,446,547,659,771,872" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-th_values-th.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,352,450,553,658,770", + "endColumns": "95,102,97,97,102,104,111,100", + "endOffsets": "146,249,347,445,548,653,765,866" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-et_values-et.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,453,559,664,784", + "endColumns": "94,101,97,102,105,104,119,100", + "endOffsets": "145,247,345,448,554,659,779,880" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-fr_values-fr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,782", + "endColumns": "97,101,98,101,103,103,117,100", + "endOffsets": "148,250,349,451,555,659,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-lt_values-lt.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,263,362,465,576,686,806", + "endColumns": "97,109,98,102,110,109,119,100", + "endOffsets": "148,258,357,460,571,681,801,902" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-pt-rBR_values-pt-rBR.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-uk_values-uk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,358,459,564,669,782", + "endColumns": "99,101,100,100,104,104,112,100", + "endOffsets": "150,252,353,454,559,664,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-mr_values-mr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,259,360,463,565,670,787", + "endColumns": "99,103,100,102,101,104,116,100", + "endOffsets": "150,254,355,458,560,665,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-gl_values-gl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,783", + "endColumns": "98,101,99,97,106,105,115,100", + "endOffsets": "149,251,351,449,556,662,778,879" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-sw_values-sw.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,449,556,663,778", + "endColumns": "93,101,96,100,106,106,114,100", + "endOffsets": "144,246,343,444,551,658,773,874" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-pt_values-pt.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-in_values-in.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,446,552,670,785", + "endColumns": "94,101,96,96,105,117,114,100", + "endOffsets": "145,247,344,441,547,665,780,881" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ne_values-ne.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,261,363,469,567,667,775", + "endColumns": "102,102,101,105,97,99,107,100", + "endOffsets": "153,256,358,464,562,662,770,871" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-eu_values-eu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,564,667,786", + "endColumns": "97,102,99,102,104,102,118,100", + "endOffsets": "148,251,351,454,559,662,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-vi_values-vi.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,556,669,785", + "endColumns": "96,101,98,99,102,112,115,100", + "endOffsets": "147,249,348,448,551,664,780,881" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-am_values-am.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,248,345,444,540,642,742", + "endColumns": "92,99,96,98,95,101,99,100", + "endOffsets": "143,243,340,439,535,637,737,838" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-fr-rCA_values-fr-rCA.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,778", + "endColumns": "97,101,98,101,103,103,113,100", + "endOffsets": "148,250,349,451,555,659,773,874" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-watch-v20_values-watch-v20.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,129,205,280,357,428,496,566", + "endColumns": "73,75,74,76,70,67,69,67", + "endOffsets": "124,200,275,352,423,491,561,629" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-sk_values-sk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,354,452,562,670,792", + "endColumns": "95,101,100,97,109,107,121,100", + "endOffsets": "146,248,349,447,557,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-hi_values-hi.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,361,462,575,681,808", + "endColumns": "97,102,104,100,112,105,126,100", + "endOffsets": "148,251,356,457,570,676,803,904" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-fi_values-fi.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,351,456,561,673,789", + "endColumns": "95,101,97,104,104,111,115,100", + "endOffsets": "146,248,346,451,556,668,784,885" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-uz_values-uz.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,360,460,568,672,791", + "endColumns": "101,101,100,99,107,103,118,100", + "endOffsets": "152,254,355,455,563,667,786,887" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-ca_values-ca.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,449,555,660,786", + "endColumns": "95,101,98,96,105,104,125,100", + "endOffsets": "146,248,347,444,550,655,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values_values.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,32,45", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,174,243,315,378,450,524,600,676,753,824,893,964,1032,1113,1205,1298,1407,1528,1988,2763", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,31,44,48", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "110,169,238,310,373,445,519,595,671,748,819,888,959,1027,1108,1200,1293,1402,1523,1983,2758,3031" + }, + "to": { + "startLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,121,123,151,160,173", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "115,175,234,303,375,438,2573,2647,2723,2799,2876,2947,3016,6388,7234,7315,7407,7500,7609,9262,9722,10497", + "endLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,122,124,159,172,176", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "170,229,298,370,433,505,2642,2718,2794,2871,2942,3011,3082,6451,7310,7402,7495,7604,7725,9717,10492,10765" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/ic_launcher_background.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "56", + "endOffsets": "107" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "840", + "endColumns": "56", + "endOffsets": "892" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/strings.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "109", + "startColumns": "4", + "startOffsets": "6609", + "endColumns": "42", + "endOffsets": "6647" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/colors.xml", + "from": { + "startLines": "4,3,2", + "startColumns": "4,4,4", + "startOffsets": "133,95,55", + "endColumns": "38,37,39", + "endOffsets": "167,128,90" + }, + "to": { + "startLines": "11,15,18", + "startColumns": "4,4,4", + "startOffsets": "670,897,1067", + "endColumns": "38,37,39", + "endOffsets": "704,930,1102" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "49", + "endOffsets": "100" + }, + "to": { + "startLines": "105", + "startColumns": "4", + "startOffsets": "6338", + "endColumns": "49", + "endOffsets": "6383" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,98,99,103,104,105,106,112,122,155,176,209", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,187,275,340,406,475,538,608,676,748,818,879,953,1026,1087,1148,1210,1274,1336,1397,1465,1565,1625,1691,1764,1833,1890,1942,2004,2076,2152,2217,2276,2335,2395,2455,2515,2575,2635,2695,2755,2815,2875,2935,2994,3054,3114,3174,3234,3294,3354,3414,3474,3534,3594,3653,3713,3773,3832,3891,3950,4009,4068,4127,4162,4197,4252,4315,4370,4428,4486,4547,4610,4667,4718,4768,4829,4886,4952,4986,5021,5056,5126,5193,5265,5334,5403,5477,5549,5637,5708,5825,6026,6136,6337,6466,6538,6605,6808,7109,8840,9521,10203", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,102,103,104,105,111,121,154,175,208,214", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,182,270,335,401,470,533,603,671,743,813,874,948,1021,1082,1143,1205,1269,1331,1392,1460,1560,1620,1686,1759,1828,1885,1937,1999,2071,2147,2212,2271,2330,2390,2450,2510,2570,2630,2690,2750,2810,2870,2930,2989,3049,3109,3169,3229,3289,3349,3409,3469,3529,3589,3648,3708,3768,3827,3886,3945,4004,4063,4122,4157,4192,4247,4310,4365,4423,4481,4542,4605,4662,4713,4763,4824,4881,4947,4981,5016,5051,5121,5188,5260,5329,5398,5472,5544,5632,5703,5820,6021,6131,6332,6461,6533,6600,6803,7104,8835,9516,10198,10365" + }, + "to": { + "startLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,126,130,131,135,177,178,179,185,195,228,249,282", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,510,582,709,774,935,1004,1107,1177,1245,1317,1387,1448,1522,1595,1656,1717,1779,1843,1905,1966,2034,2134,2194,2260,2333,2402,2459,2511,3087,3159,3235,3300,3359,3418,3478,3538,3598,3658,3718,3778,3838,3898,3958,4018,4077,4137,4197,4257,4317,4377,4437,4497,4557,4617,4677,4736,4796,4856,4915,4974,5033,5092,5151,5210,5245,5322,5377,5440,5495,5553,5611,5672,5735,5792,5843,5893,5954,6011,6077,6111,6146,6456,6652,6719,6791,6860,6929,7003,7075,7163,7730,7847,8048,8158,8359,10770,10842,10909,11112,11413,13144,13825,14507", + "endLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,129,130,134,135,177,178,184,194,227,248,281,287", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,577,665,769,835,999,1062,1172,1240,1312,1382,1443,1517,1590,1651,1712,1774,1838,1900,1961,2029,2129,2189,2255,2328,2397,2454,2506,2568,3154,3230,3295,3354,3413,3473,3533,3593,3653,3713,3773,3833,3893,3953,4013,4072,4132,4192,4252,4312,4372,4432,4492,4552,4612,4672,4731,4791,4851,4910,4969,5028,5087,5146,5205,5240,5275,5372,5435,5490,5548,5606,5667,5730,5787,5838,5888,5949,6006,6072,6106,6141,6176,6521,6714,6786,6855,6924,6998,7070,7158,7229,7842,8043,8153,8354,8483,10837,10904,11107,11408,13139,13820,14502,14669" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/themes.xml", + "from": { + "startLines": "16,6", + "startColumns": "4,4", + "startOffsets": "586,170", + "endLines": "22,13", + "endColumns": "12,12", + "endOffsets": "1029,556" + }, + "to": { + "startLines": "136,143", + "startColumns": "4,4", + "startOffsets": "8488,8936", + "endLines": "142,150", + "endColumns": "12,12", + "endOffsets": "8931,9257" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "82", + "endOffsets": "133" + }, + "to": { + "startLines": "108", + "startColumns": "4", + "startOffsets": "6526", + "endColumns": "82", + "endOffsets": "6604" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "53", + "endOffsets": "104" + }, + "to": { + "startLines": "104", + "startColumns": "4", + "startOffsets": "6284", + "endColumns": "53", + "endOffsets": "6333" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/res/values/values.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,97", + "endColumns": "41,59", + "endOffsets": "92,152" + }, + "to": { + "startLines": "85,103", + "startColumns": "4,4", + "startOffsets": "5280,6224", + "endColumns": "41,59", + "endOffsets": "5317,6279" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "102", + "startColumns": "4", + "startOffsets": "6181", + "endColumns": "42", + "endOffsets": "6219" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-gu_values-gu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,252,349,451,553,651,773", + "endColumns": "93,102,96,101,101,97,121,100", + "endOffsets": "144,247,344,446,548,646,768,869" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-debug-17:/values-pa_values-pa.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,358,459,561,659,788", + "endColumns": "97,101,102,100,101,97,128,100", + "endOffsets": "148,250,353,454,556,654,783,884" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-af.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-af.json new file mode 100644 index 0000000..b6395e5 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-af.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-af/values-af.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,451,558,667,787", + "endColumns": "97,101,97,97,106,108,119,100", + "endOffsets": "148,250,348,446,553,662,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-am.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-am.json new file mode 100644 index 0000000..3372107 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-am.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-am/values-am.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,248,345,444,540,642,742", + "endColumns": "92,99,96,98,95,101,99,100", + "endOffsets": "143,243,340,439,535,637,737,838" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ar.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ar.json new file mode 100644 index 0000000..0508a2c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ar.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ar/values-ar.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,250,345,448,551,653,767", + "endColumns": "92,101,94,102,102,101,113,100", + "endOffsets": "143,245,340,443,546,648,762,863" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-as.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-as.json new file mode 100644 index 0000000..8915b9c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-as.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-as/values-as.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,259,367,472,576,676,805", + "endColumns": "100,102,107,104,103,99,128,100", + "endOffsets": "151,254,362,467,571,671,800,901" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-az.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-az.json new file mode 100644 index 0000000..4eb0bc4 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-az.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-az/values-az.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,258,361,465,566,671,782", + "endColumns": "100,101,102,103,100,104,110,100", + "endOffsets": "151,253,356,460,561,666,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-b+sr+Latn.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-b+sr+Latn.json new file mode 100644 index 0000000..4fd5d4e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-b+sr+Latn/values-b+sr+Latn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-be.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-be.json new file mode 100644 index 0000000..3cdf0c9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-be.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-be/values-be.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,562,665,786", + "endColumns": "97,101,99,100,105,102,120,100", + "endOffsets": "148,250,350,451,557,660,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bg.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bg.json new file mode 100644 index 0000000..8081e95 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bg.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-bg/values-bg.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,262,364,465,572,677,796", + "endColumns": "96,109,101,100,106,104,118,100", + "endOffsets": "147,257,359,460,567,672,791,892" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bn.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bn.json new file mode 100644 index 0000000..b96e3de --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-bn/values-bn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,358,461,562,664,784", + "endColumns": "98,101,101,102,100,101,119,100", + "endOffsets": "149,251,353,456,557,659,779,880" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bs.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bs.json new file mode 100644 index 0000000..53e3d21 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bs.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-bs/values-bs.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,457,561,663,780", + "endColumns": "97,101,97,103,103,101,116,100", + "endOffsets": "148,250,348,452,556,658,775,876" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ca.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ca.json new file mode 100644 index 0000000..a0b1f35 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ca.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ca/values-ca.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,449,555,660,786", + "endColumns": "95,101,98,96,105,104,125,100", + "endOffsets": "146,248,347,444,550,655,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-cs.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-cs.json new file mode 100644 index 0000000..4ac7e0b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-cs.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-cs/values-cs.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,455,560,667,786", + "endColumns": "97,101,100,98,104,106,118,100", + "endOffsets": "148,250,351,450,555,662,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-da.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-da.json new file mode 100644 index 0000000..9114f24 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-da.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-da/values-da.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,350,448,555,664,782", + "endColumns": "95,101,96,97,106,108,117,100", + "endOffsets": "146,248,345,443,550,659,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-de.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-de.json new file mode 100644 index 0000000..8b7fb97 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-de.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-de/values-de.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,455,563,668,786", + "endColumns": "97,101,99,99,107,104,117,100", + "endOffsets": "148,250,350,450,558,663,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-el.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-el.json new file mode 100644 index 0000000..ef5bf36 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-el.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-el/values-el.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,567,673,790", + "endColumns": "97,102,99,102,107,105,116,100", + "endOffsets": "148,251,351,454,562,668,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rAU.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rAU.json new file mode 100644 index 0000000..c4a8315 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rAU.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rCA.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rCA.json new file mode 100644 index 0000000..5b07511 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rCA.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-en-rCA/values-en-rCA.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,657,773", + "endColumns": "95,101,98,98,103,101,115,100", + "endOffsets": "146,248,347,446,550,652,768,869" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rGB.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rGB.json new file mode 100644 index 0000000..8199401 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rGB.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rIN.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rIN.json new file mode 100644 index 0000000..ea3550a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rXC.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rXC.json new file mode 100644 index 0000000..f4d5444 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rXC.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-en-rXC/values-en-rXC.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,251,456,657,858,1065,1270,1482", + "endColumns": "195,204,200,200,206,204,211,203", + "endOffsets": "246,451,652,853,1060,1265,1477,1681" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es-rUS.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es-rUS.json new file mode 100644 index 0000000..fd8cf05 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es-rUS.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es.json new file mode 100644 index 0000000..eeb9499 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-es/values-es.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-et.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-et.json new file mode 100644 index 0000000..32ffb38 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-et.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-et/values-et.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,453,559,664,784", + "endColumns": "94,101,97,102,105,104,119,100", + "endOffsets": "145,247,345,448,554,659,779,880" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-eu.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-eu.json new file mode 100644 index 0000000..17f93d3 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-eu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-eu/values-eu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,564,667,786", + "endColumns": "97,102,99,102,104,102,118,100", + "endOffsets": "148,251,351,454,559,662,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fa.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fa.json new file mode 100644 index 0000000..e0aeafd --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fa.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-fa/values-fa.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,355,455,556,662,779", + "endColumns": "98,101,98,99,100,105,116,100", + "endOffsets": "149,251,350,450,551,657,774,875" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fi.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fi.json new file mode 100644 index 0000000..5e4a3f5 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-fi/values-fi.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,351,456,561,673,789", + "endColumns": "95,101,97,104,104,111,115,100", + "endOffsets": "146,248,346,451,556,668,784,885" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr-rCA.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr-rCA.json new file mode 100644 index 0000000..808964d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr-rCA.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,778", + "endColumns": "97,101,98,101,103,103,113,100", + "endOffsets": "148,250,349,451,555,659,773,874" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr.json new file mode 100644 index 0000000..98b81dc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-fr/values-fr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,782", + "endColumns": "97,101,98,101,103,103,117,100", + "endOffsets": "148,250,349,451,555,659,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gl.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gl.json new file mode 100644 index 0000000..77e0d79 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-gl/values-gl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,783", + "endColumns": "98,101,99,97,106,105,115,100", + "endOffsets": "149,251,351,449,556,662,778,879" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gu.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gu.json new file mode 100644 index 0000000..8f5dd70 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-gu/values-gu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,252,349,451,553,651,773", + "endColumns": "93,102,96,101,101,97,121,100", + "endOffsets": "144,247,344,446,548,646,768,869" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hi.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hi.json new file mode 100644 index 0000000..a765be9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-hi/values-hi.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,361,462,575,681,808", + "endColumns": "97,102,104,100,112,105,126,100", + "endOffsets": "148,251,356,457,570,676,803,904" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hr.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hr.json new file mode 100644 index 0000000..63f0413 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-hr/values-hr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,260,357,456,560,664,781", + "endColumns": "97,106,96,98,103,103,116,100", + "endOffsets": "148,255,352,451,555,659,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hu.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hu.json new file mode 100644 index 0000000..a913bbd --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-hu/values-hu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,356,457,560,667,777", + "endColumns": "96,101,101,100,102,106,109,100", + "endOffsets": "147,249,351,452,555,662,772,873" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hy.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hy.json new file mode 100644 index 0000000..adac44c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hy.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-hy/values-hy.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,260,358,457,562,664,775", + "endColumns": "99,104,97,98,104,101,110,100", + "endOffsets": "150,255,353,452,557,659,770,871" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-in.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-in.json new file mode 100644 index 0000000..85fff88 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-in.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-in/values-in.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,446,552,670,785", + "endColumns": "94,101,96,96,105,117,114,100", + "endOffsets": "145,247,344,441,547,665,780,881" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-is.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-is.json new file mode 100644 index 0000000..f5e076f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-is.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-is/values-is.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,354,454,557,661,772", + "endColumns": "94,106,96,99,102,103,110,100", + "endOffsets": "145,252,349,449,552,656,767,868" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-it.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-it.json new file mode 100644 index 0000000..32bedeb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-it.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-it/values-it.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,565,672,802", + "endColumns": "97,101,98,101,108,106,129,100", + "endOffsets": "148,250,349,451,560,667,797,898" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-iw.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-iw.json new file mode 100644 index 0000000..2f31081 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-iw.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-iw/values-iw.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,445,546,646,752", + "endColumns": "93,101,96,96,100,99,105,100", + "endOffsets": "144,246,343,440,541,641,747,848" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ja.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ja.json new file mode 100644 index 0000000..0535d9b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ja.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ja/values-ja.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,437,530,623,724", + "endColumns": "91,99,93,95,92,92,100,100", + "endOffsets": "142,242,336,432,525,618,719,820" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ka.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ka.json new file mode 100644 index 0000000..f3234ca --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ka.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ka/values-ka.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,557,661,779", + "endColumns": "95,101,98,98,105,103,117,100", + "endOffsets": "146,248,347,446,552,656,774,875" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kk.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kk.json new file mode 100644 index 0000000..65c3e6f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-kk/values-kk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,354,457,561,658,769", + "endColumns": "94,101,101,102,103,96,110,100", + "endOffsets": "145,247,349,452,556,653,764,865" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-km.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-km.json new file mode 100644 index 0000000..90e43d6 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-km.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-km/values-km.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,253,351,451,552,664,776", + "endColumns": "94,102,97,99,100,111,111,100", + "endOffsets": "145,248,346,446,547,659,771,872" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kn.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kn.json new file mode 100644 index 0000000..98cbeda --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-kn/values-kn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,357,463,564,672,800", + "endColumns": "97,102,100,105,100,107,127,100", + "endOffsets": "148,251,352,458,559,667,795,896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ko.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ko.json new file mode 100644 index 0000000..4837baf --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ko.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ko/values-ko.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,438,534,632,732", + "endColumns": "91,99,93,96,95,97,99,100", + "endOffsets": "142,242,336,433,529,627,727,828" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ky.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ky.json new file mode 100644 index 0000000..4b5cf59 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ky.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ky/values-ky.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,360,467,571,675,786", + "endColumns": "99,101,102,106,103,103,110,100", + "endOffsets": "150,252,355,462,566,670,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lo.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lo.json new file mode 100644 index 0000000..2209106 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lo.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-lo/values-lo.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,552,650,761", + "endColumns": "95,102,98,97,100,97,110,100", + "endOffsets": "146,249,348,446,547,645,756,857" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lt.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lt.json new file mode 100644 index 0000000..4b23216 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lt.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-lt/values-lt.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,263,362,465,576,686,806", + "endColumns": "97,109,98,102,110,109,119,100", + "endOffsets": "148,258,357,460,571,681,801,902" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lv.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lv.json new file mode 100644 index 0000000..efc58ee --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lv.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-lv/values-lv.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,563,671,786", + "endColumns": "97,101,99,100,106,107,114,100", + "endOffsets": "148,250,350,451,558,666,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mk.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mk.json new file mode 100644 index 0000000..5ffd049 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-mk/values-mk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,450,555,658,774", + "endColumns": "97,101,96,97,104,102,115,100", + "endOffsets": "148,250,347,445,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ml.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ml.json new file mode 100644 index 0000000..9109812 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ml.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ml/values-ml.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,362,466,569,670,792", + "endColumns": "101,102,101,103,102,100,121,100", + "endOffsets": "152,255,357,461,564,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mn.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mn.json new file mode 100644 index 0000000..e4fb289 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-mn/values-mn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,454,559,671,790", + "endColumns": "97,101,100,97,104,111,118,100", + "endOffsets": "148,250,351,449,554,666,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mr.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mr.json new file mode 100644 index 0000000..026eef9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-mr/values-mr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,259,360,463,565,670,787", + "endColumns": "99,103,100,102,101,104,116,100", + "endOffsets": "150,254,355,458,560,665,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ms.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ms.json new file mode 100644 index 0000000..be3b2f4 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ms.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ms/values-ms.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,459,565,683,798", + "endColumns": "94,101,96,109,105,117,114,100", + "endOffsets": "145,247,344,454,560,678,793,894" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-my.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-my.json new file mode 100644 index 0000000..e1e6cb2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-my.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-my/values-my.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,262,365,467,572,678,797", + "endColumns": "102,103,102,101,104,105,118,100", + "endOffsets": "153,257,360,462,567,673,792,893" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nb.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nb.json new file mode 100644 index 0000000..4f17f0a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nb.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-nb/values-nb.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,447,555,661,781", + "endColumns": "93,101,96,98,107,105,119,100", + "endOffsets": "144,246,343,442,550,656,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ne.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ne.json new file mode 100644 index 0000000..d876bf1 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ne.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ne/values-ne.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,261,363,469,567,667,775", + "endColumns": "102,102,101,105,97,99,107,100", + "endOffsets": "153,256,358,464,562,662,770,871" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-night-v8.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-night-v8.json new file mode 100644 index 0000000..862da0d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-night-v8.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-night-v8/values-night-v8.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "85", + "endOffsets": "136" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nl.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nl.json new file mode 100644 index 0000000..ce4d9e8 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-nl/values-nl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,359,459,566,670,789", + "endColumns": "101,101,99,99,106,103,118,100", + "endOffsets": "152,254,354,454,561,665,784,885" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-or.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-or.json new file mode 100644 index 0000000..1f0d93d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-or.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-or/values-or.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,260,363,468,569,671,790", + "endColumns": "102,101,102,104,100,101,118,100", + "endOffsets": "153,255,358,463,564,666,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pa.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pa.json new file mode 100644 index 0000000..1129fa0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pa.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-pa/values-pa.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,358,459,561,659,788", + "endColumns": "97,101,102,100,101,97,128,100", + "endOffsets": "148,250,353,454,556,654,783,884" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pl.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pl.json new file mode 100644 index 0000000..6d2ad0e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-pl/values-pl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,451,565,670,792", + "endColumns": "96,101,97,98,113,104,121,100", + "endOffsets": "147,249,347,446,560,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rBR.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rBR.json new file mode 100644 index 0000000..c98b5fc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rBR.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rPT.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rPT.json new file mode 100644 index 0000000..3a5f3e6 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rPT.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,666,787", + "endColumns": "96,101,98,99,106,105,120,100", + "endOffsets": "147,249,348,448,555,661,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt.json new file mode 100644 index 0000000..eec5eae --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-pt/values-pt.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ro.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ro.json new file mode 100644 index 0000000..9d78b2e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ro.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ro/values-ro.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,454,556,665,782", + "endColumns": "97,101,99,98,101,108,116,100", + "endOffsets": "148,250,350,449,551,660,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ru.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ru.json new file mode 100644 index 0000000..322ce5d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ru.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ru/values-ru.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,457,562,665,782", + "endColumns": "97,101,100,100,104,102,116,100", + "endOffsets": "148,250,351,452,557,660,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-si.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-si.json new file mode 100644 index 0000000..4e1794a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-si.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-si/values-si.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,365,470,569,673,787", + "endColumns": "101,102,104,104,98,103,113,100", + "endOffsets": "152,255,360,465,564,668,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sk.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sk.json new file mode 100644 index 0000000..006d6fe --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-sk/values-sk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,354,452,562,670,792", + "endColumns": "95,101,100,97,109,107,121,100", + "endOffsets": "146,248,349,447,557,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sl.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sl.json new file mode 100644 index 0000000..be26ac4 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-sl/values-sl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,456,559,661,778", + "endColumns": "96,101,97,103,102,101,116,100", + "endOffsets": "147,249,347,451,554,656,773,874" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sq.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sq.json new file mode 100644 index 0000000..f43cca0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sq.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-sq/values-sq.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,354,451,559,670,792", + "endColumns": "98,101,97,96,107,110,121,100", + "endOffsets": "149,251,349,446,554,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sr.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sr.json new file mode 100644 index 0000000..72f518c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-sr/values-sr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sv.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sv.json new file mode 100644 index 0000000..bd0c34e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sv.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-sv/values-sv.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,449,557,662,783", + "endColumns": "94,101,97,98,107,104,120,100", + "endOffsets": "145,247,345,444,552,657,778,879" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sw.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sw.json new file mode 100644 index 0000000..c670eae --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sw.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-sw/values-sw.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,449,556,663,778", + "endColumns": "93,101,96,100,106,106,114,100", + "endOffsets": "144,246,343,444,551,658,773,874" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ta.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ta.json new file mode 100644 index 0000000..d60be48 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ta.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ta/values-ta.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,558,673,801", + "endColumns": "95,102,98,97,106,114,127,100", + "endOffsets": "146,249,348,446,553,668,796,897" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-te.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-te.json new file mode 100644 index 0000000..70b52ce --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-te.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-te/values-te.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,265,367,468,574,681,805", + "endColumns": "101,107,101,100,105,106,123,100", + "endOffsets": "152,260,362,463,569,676,800,901" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-th.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-th.json new file mode 100644 index 0000000..b536e89 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-th.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-th/values-th.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,352,450,553,658,770", + "endColumns": "95,102,97,97,102,104,111,100", + "endOffsets": "146,249,347,445,548,653,765,866" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tl.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tl.json new file mode 100644 index 0000000..597b58d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-tl/values-tl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,355,452,559,667,789", + "endColumns": "96,101,100,96,106,107,121,100", + "endOffsets": "147,249,350,447,554,662,784,885" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tr.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tr.json new file mode 100644 index 0000000..d6cdd82 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-tr/values-tr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,449,551,657,768", + "endColumns": "96,101,97,96,101,105,110,100", + "endOffsets": "147,249,347,444,546,652,763,864" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uk.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uk.json new file mode 100644 index 0000000..6e3e544 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-uk/values-uk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,358,459,564,669,782", + "endColumns": "99,101,100,100,104,104,112,100", + "endOffsets": "150,252,353,454,559,664,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ur.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ur.json new file mode 100644 index 0000000..82b3bfb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ur.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-ur/values-ur.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,357,461,564,662,776", + "endColumns": "97,101,101,103,102,97,113,100", + "endOffsets": "148,250,352,456,559,657,771,872" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uz.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uz.json new file mode 100644 index 0000000..8aac423 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uz.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-uz/values-uz.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,360,460,568,672,791", + "endColumns": "101,101,100,99,107,103,118,100", + "endOffsets": "152,254,355,455,563,667,786,887" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v21.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v21.json new file mode 100644 index 0000000..581e068 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v21.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-v21/values-v21.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,237,304,368,484,610,736,864,1036", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "117,63,66,63,115,125,125,127,12,12", + "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v27.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v27.json new file mode 100644 index 0000000..aa7934a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v27.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-v27/values-v27.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v27/values-v27.xml", + "from": { + "startLines": "2,3,4,7", + "startColumns": "4,4,4,4", + "startOffsets": "55,136,229,405", + "endLines": "2,3,6,9", + "endColumns": "80,92,12,12", + "endOffsets": "131,224,400,588" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v29.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v29.json new file mode 100644 index 0000000..bb042fb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v29.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-v29/values-v29.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v29/values-v29.xml", + "from": { + "startLines": "2,7", + "startColumns": "4,4", + "startOffsets": "55,374", + "endLines": "6,8", + "endColumns": "12,12", + "endOffsets": "369,464" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v31.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v31.json new file mode 100644 index 0000000..42011c2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v31.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-v31/values-v31.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v31/values-v31.xml", + "from": { + "startLines": "2,9", + "startColumns": "4,4", + "startOffsets": "55,473", + "endLines": "8,13", + "endColumns": "12,12", + "endOffsets": "468,697" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-vi.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-vi.json new file mode 100644 index 0000000..6625966 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-vi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-vi/values-vi.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,556,669,785", + "endColumns": "96,101,98,99,102,112,115,100", + "endOffsets": "147,249,348,448,551,664,780,881" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-watch-v20.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-watch-v20.json new file mode 100644 index 0000000..0ce4c72 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-watch-v20.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-watch-v20/values-watch-v20.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,129,205,280,357,428,496,566", + "endColumns": "73,75,74,76,70,67,69,67", + "endOffsets": "124,200,275,352,423,491,561,629" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rCN.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rCN.json new file mode 100644 index 0000000..fa65716 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rCN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,248,342,436,529,623,719", + "endColumns": "91,100,93,93,92,93,95,100", + "endOffsets": "142,243,337,431,524,618,714,815" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rHK.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rHK.json new file mode 100644 index 0000000..78aa3b2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rHK.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rTW.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rTW.json new file mode 100644 index 0000000..6aaa726 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rTW.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zu.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zu.json new file mode 100644 index 0000000..f788d84 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values-zu/values-zu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,257,356,459,565,672,785", + "endColumns": "97,103,98,102,105,106,112,100", + "endOffsets": "148,252,351,454,560,667,780,881" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values.json new file mode 100644 index 0000000..16354dc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values.json @@ -0,0 +1,202 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeDebugResources-15:/values/values.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,32,45", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,174,243,315,378,450,524,600,676,753,824,893,964,1032,1113,1205,1298,1407,1528,1988,2763", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,31,44,48", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "110,169,238,310,373,445,519,595,671,748,819,888,959,1027,1108,1200,1293,1402,1523,1983,2758,3031" + }, + "to": { + "startLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,121,123,151,160,173", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "115,175,234,303,375,438,2573,2647,2723,2799,2876,2947,3016,6388,7234,7315,7407,7500,7609,9262,9722,10497", + "endLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,122,124,159,172,176", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "170,229,298,370,433,505,2642,2718,2794,2871,2942,3011,3082,6451,7310,7402,7495,7604,7725,9717,10492,10765" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/ic_launcher_background.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "56", + "endOffsets": "107" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "840", + "endColumns": "56", + "endOffsets": "892" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/strings.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "109", + "startColumns": "4", + "startOffsets": "6609", + "endColumns": "42", + "endOffsets": "6647" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/colors.xml", + "from": { + "startLines": "4,3,2", + "startColumns": "4,4,4", + "startOffsets": "133,95,55", + "endColumns": "38,37,39", + "endOffsets": "167,128,90" + }, + "to": { + "startLines": "11,15,18", + "startColumns": "4,4,4", + "startOffsets": "670,897,1067", + "endColumns": "38,37,39", + "endOffsets": "704,930,1102" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "49", + "endOffsets": "100" + }, + "to": { + "startLines": "105", + "startColumns": "4", + "startOffsets": "6338", + "endColumns": "49", + "endOffsets": "6383" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,98,99,103,104,105,106,112,122,155,176,209", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,187,275,340,406,475,538,608,676,748,818,879,953,1026,1087,1148,1210,1274,1336,1397,1465,1565,1625,1691,1764,1833,1890,1942,2004,2076,2152,2217,2276,2335,2395,2455,2515,2575,2635,2695,2755,2815,2875,2935,2994,3054,3114,3174,3234,3294,3354,3414,3474,3534,3594,3653,3713,3773,3832,3891,3950,4009,4068,4127,4162,4197,4252,4315,4370,4428,4486,4547,4610,4667,4718,4768,4829,4886,4952,4986,5021,5056,5126,5193,5265,5334,5403,5477,5549,5637,5708,5825,6026,6136,6337,6466,6538,6605,6808,7109,8840,9521,10203", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,102,103,104,105,111,121,154,175,208,214", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,182,270,335,401,470,533,603,671,743,813,874,948,1021,1082,1143,1205,1269,1331,1392,1460,1560,1620,1686,1759,1828,1885,1937,1999,2071,2147,2212,2271,2330,2390,2450,2510,2570,2630,2690,2750,2810,2870,2930,2989,3049,3109,3169,3229,3289,3349,3409,3469,3529,3589,3648,3708,3768,3827,3886,3945,4004,4063,4122,4157,4192,4247,4310,4365,4423,4481,4542,4605,4662,4713,4763,4824,4881,4947,4981,5016,5051,5121,5188,5260,5329,5398,5472,5544,5632,5703,5820,6021,6131,6332,6461,6533,6600,6803,7104,8835,9516,10198,10365" + }, + "to": { + "startLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,126,130,131,135,177,178,179,185,195,228,249,282", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,510,582,709,774,935,1004,1107,1177,1245,1317,1387,1448,1522,1595,1656,1717,1779,1843,1905,1966,2034,2134,2194,2260,2333,2402,2459,2511,3087,3159,3235,3300,3359,3418,3478,3538,3598,3658,3718,3778,3838,3898,3958,4018,4077,4137,4197,4257,4317,4377,4437,4497,4557,4617,4677,4736,4796,4856,4915,4974,5033,5092,5151,5210,5245,5322,5377,5440,5495,5553,5611,5672,5735,5792,5843,5893,5954,6011,6077,6111,6146,6456,6652,6719,6791,6860,6929,7003,7075,7163,7730,7847,8048,8158,8359,10770,10842,10909,11112,11413,13144,13825,14507", + "endLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,129,130,134,135,177,178,184,194,227,248,281,287", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,577,665,769,835,999,1062,1172,1240,1312,1382,1443,1517,1590,1651,1712,1774,1838,1900,1961,2029,2129,2189,2255,2328,2397,2454,2506,2568,3154,3230,3295,3354,3413,3473,3533,3593,3653,3713,3773,3833,3893,3953,4013,4072,4132,4192,4252,4312,4372,4432,4492,4552,4612,4672,4731,4791,4851,4910,4969,5028,5087,5146,5205,5240,5275,5372,5435,5490,5548,5606,5667,5730,5787,5838,5888,5949,6006,6072,6106,6141,6176,6521,6714,6786,6855,6924,6998,7070,7158,7229,7842,8043,8153,8354,8483,10837,10904,11107,11408,13139,13820,14502,14669" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/themes.xml", + "from": { + "startLines": "16,6", + "startColumns": "4,4", + "startOffsets": "586,170", + "endLines": "22,13", + "endColumns": "12,12", + "endOffsets": "1029,556" + }, + "to": { + "startLines": "136,143", + "startColumns": "4,4", + "startOffsets": "8488,8936", + "endLines": "142,150", + "endColumns": "12,12", + "endOffsets": "8931,9257" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "82", + "endOffsets": "133" + }, + "to": { + "startLines": "108", + "startColumns": "4", + "startOffsets": "6526", + "endColumns": "82", + "endOffsets": "6604" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "53", + "endOffsets": "104" + }, + "to": { + "startLines": "104", + "startColumns": "4", + "startOffsets": "6284", + "endColumns": "53", + "endOffsets": "6333" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/res/values/values.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,97", + "endColumns": "41,59", + "endOffsets": "92,152" + }, + "to": { + "startLines": "85,103", + "startColumns": "4,4", + "startOffsets": "5280,6224", + "endColumns": "41,59", + "endOffsets": "5317,6279" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "102", + "startColumns": "4", + "startOffsets": "6181", + "endColumns": "42", + "endOffsets": "6219" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json new file mode 100644 index 0000000..b5237dc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json @@ -0,0 +1,66 @@ +[ + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-xhdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-xhdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-mdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-mdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-xxhdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-xxhdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-xhdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-xhdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-xxxhdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-xxxhdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-xxhdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-xxhdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-anydpi-v26_ic_launcher.xml.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-anydpi-v26/ic_launcher.xml" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-anydpi-v26_ic_launcher_round.xml.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-anydpi-v26/ic_launcher_round.xml" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/drawable_ic_launcher_foreground.xml.flat", + "source": "blog.wiwi.hoops.app-main-19:/drawable/ic_launcher_foreground.xml" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-mdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-mdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/xml_data_extraction_rules.xml.flat", + "source": "blog.wiwi.hoops.app-main-19:/xml/data_extraction_rules.xml" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/xml_backup_rules.xml.flat", + "source": "blog.wiwi.hoops.app-main-19:/xml/backup_rules.xml" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/drawable_splash_icon.xml.flat", + "source": "blog.wiwi.hoops.app-main-19:/drawable/splash_icon.xml" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-hdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-hdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-xxxhdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-xxxhdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-debug-17:/mipmap-hdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-19:/mipmap-hdpi/ic_launcher_round.png" + } +] \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/mergeReleaseResources.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/mergeReleaseResources.json new file mode 100644 index 0000000..b241b1f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/mergeReleaseResources.json @@ -0,0 +1,1571 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-zu_values-zu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,257,356,459,565,672,785", + "endColumns": "97,103,98,102,105,106,112,100", + "endOffsets": "148,252,351,454,560,667,780,881" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-lt_values-lt.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,263,362,465,576,686,806", + "endColumns": "97,109,98,102,110,109,119,100", + "endOffsets": "148,258,357,460,571,681,801,902" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-pl_values-pl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,451,565,670,792", + "endColumns": "96,101,97,98,113,104,121,100", + "endOffsets": "147,249,347,446,560,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-am_values-am.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,248,345,444,540,642,742", + "endColumns": "92,99,96,98,95,101,99,100", + "endOffsets": "143,243,340,439,535,637,737,838" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-vi_values-vi.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,556,669,785", + "endColumns": "96,101,98,99,102,112,115,100", + "endOffsets": "147,249,348,448,551,664,780,881" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-v21_values-v21.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,237,304,368,484,610,736,864,1036", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "117,63,66,63,115,125,125,127,12,12", + "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-km_values-km.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,253,351,451,552,664,776", + "endColumns": "94,102,97,99,100,111,111,100", + "endOffsets": "145,248,346,446,547,659,771,872" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-gl_values-gl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,783", + "endColumns": "98,101,99,97,106,105,115,100", + "endOffsets": "149,251,351,449,556,662,778,879" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-gu_values-gu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,252,349,451,553,651,773", + "endColumns": "93,102,96,101,101,97,121,100", + "endOffsets": "144,247,344,446,548,646,768,869" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-kk_values-kk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,354,457,561,658,769", + "endColumns": "94,101,101,102,103,96,110,100", + "endOffsets": "145,247,349,452,556,653,764,865" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-lv_values-lv.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,563,671,786", + "endColumns": "97,101,99,100,106,107,114,100", + "endOffsets": "148,250,350,451,558,666,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-uk_values-uk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,358,459,564,669,782", + "endColumns": "99,101,100,100,104,104,112,100", + "endOffsets": "150,252,353,454,559,664,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-mr_values-mr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,259,360,463,565,670,787", + "endColumns": "99,103,100,102,101,104,116,100", + "endOffsets": "150,254,355,458,560,665,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ne_values-ne.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,261,363,469,567,667,775", + "endColumns": "102,102,101,105,97,99,107,100", + "endOffsets": "153,256,358,464,562,662,770,871" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-fa_values-fa.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,355,455,556,662,779", + "endColumns": "98,101,98,99,100,105,116,100", + "endOffsets": "149,251,350,450,551,657,774,875" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ko_values-ko.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,438,534,632,732", + "endColumns": "91,99,93,96,95,97,99,100", + "endOffsets": "142,242,336,433,529,627,727,828" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-my_values-my.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,262,365,467,572,678,797", + "endColumns": "102,103,102,101,104,105,118,100", + "endOffsets": "153,257,360,462,567,673,792,893" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-eu_values-eu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,564,667,786", + "endColumns": "97,102,99,102,104,102,118,100", + "endOffsets": "148,251,351,454,559,662,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ur_values-ur.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,357,461,564,662,776", + "endColumns": "97,101,101,103,102,97,113,100", + "endOffsets": "148,250,352,456,559,657,771,872" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-en-rIN_values-en-rIN.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-or_values-or.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,260,363,468,569,671,790", + "endColumns": "102,101,102,104,100,101,118,100", + "endOffsets": "153,255,358,463,564,666,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-zh-rCN_values-zh-rCN.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,248,342,436,529,623,719", + "endColumns": "91,100,93,93,92,93,95,100", + "endOffsets": "142,243,337,431,524,618,714,815" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-af_values-af.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,451,558,667,787", + "endColumns": "97,101,97,97,106,108,119,100", + "endOffsets": "148,250,348,446,553,662,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ro_values-ro.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,454,556,665,782", + "endColumns": "97,101,99,98,101,108,116,100", + "endOffsets": "148,250,350,449,551,660,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ru_values-ru.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,457,562,665,782", + "endColumns": "97,101,100,100,104,102,116,100", + "endOffsets": "148,250,351,452,557,660,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-et_values-et.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,453,559,664,784", + "endColumns": "94,101,97,102,105,104,119,100", + "endOffsets": "145,247,345,448,554,659,779,880" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-fr_values-fr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,782", + "endColumns": "97,101,98,101,103,103,117,100", + "endOffsets": "148,250,349,451,555,659,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-sk_values-sk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,354,452,562,670,792", + "endColumns": "95,101,100,97,109,107,121,100", + "endOffsets": "146,248,349,447,557,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-nl_values-nl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,359,459,566,670,789", + "endColumns": "101,101,99,99,106,103,118,100", + "endOffsets": "152,254,354,454,561,665,784,885" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-lo_values-lo.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,552,650,761", + "endColumns": "95,102,98,97,100,97,110,100", + "endOffsets": "146,249,348,446,547,645,756,857" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-pt-rBR_values-pt-rBR.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-tr_values-tr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,449,551,657,768", + "endColumns": "96,101,97,96,101,105,110,100", + "endOffsets": "147,249,347,444,546,652,763,864" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ml_values-ml.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,362,466,569,670,792", + "endColumns": "101,102,101,103,102,100,121,100", + "endOffsets": "152,255,357,461,564,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-uz_values-uz.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,360,460,568,672,791", + "endColumns": "101,101,100,99,107,103,118,100", + "endOffsets": "152,254,355,455,563,667,786,887" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-fi_values-fi.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,351,456,561,673,789", + "endColumns": "95,101,97,104,104,111,115,100", + "endOffsets": "146,248,346,451,556,668,784,885" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-watch-v20_values-watch-v20.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,129,205,280,357,428,496,566", + "endColumns": "73,75,74,76,70,67,69,67", + "endOffsets": "124,200,275,352,423,491,561,629" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-hu_values-hu.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,356,457,560,667,777", + "endColumns": "96,101,101,100,102,106,109,100", + "endOffsets": "147,249,351,452,555,662,772,873" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-is_values-is.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,354,454,557,661,772", + "endColumns": "94,106,96,99,102,103,110,100", + "endOffsets": "145,252,349,449,552,656,767,868" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-sw_values-sw.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,449,556,663,778", + "endColumns": "93,101,96,100,106,106,114,100", + "endOffsets": "144,246,343,444,551,658,773,874" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-sr_values-sr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-pa_values-pa.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,358,459,561,659,788", + "endColumns": "97,101,102,100,101,97,128,100", + "endOffsets": "148,250,353,454,556,654,783,884" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-da_values-da.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,350,448,555,664,782", + "endColumns": "95,101,96,97,106,108,117,100", + "endOffsets": "146,248,345,443,550,659,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ca_values-ca.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,449,555,660,786", + "endColumns": "95,101,98,96,105,104,125,100", + "endOffsets": "146,248,347,444,550,655,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-pt_values-pt.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-in_values-in.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,446,552,670,785", + "endColumns": "94,101,96,96,105,117,114,100", + "endOffsets": "145,247,344,441,547,665,780,881" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-hi_values-hi.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,361,462,575,681,808", + "endColumns": "97,102,104,100,112,105,126,100", + "endOffsets": "148,251,356,457,570,676,803,904" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-cs_values-cs.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,455,560,667,786", + "endColumns": "97,101,100,98,104,106,118,100", + "endOffsets": "148,250,351,450,555,662,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-zh-rTW_values-zh-rTW.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-te_values-te.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,265,367,468,574,681,805", + "endColumns": "101,107,101,100,105,106,123,100", + "endOffsets": "152,260,362,463,569,676,800,901" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-zh-rHK_values-zh-rHK.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-kn_values-kn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,357,463,564,672,800", + "endColumns": "97,102,100,105,100,107,127,100", + "endOffsets": "148,251,352,458,559,667,795,896" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-tl_values-tl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,355,452,559,667,789", + "endColumns": "96,101,100,96,106,107,121,100", + "endOffsets": "147,249,350,447,554,662,784,885" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-en-rAU_values-en-rAU.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-en-rCA_values-en-rCA.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,657,773", + "endColumns": "95,101,98,98,103,101,115,100", + "endOffsets": "146,248,347,446,550,652,768,869" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-si_values-si.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,365,470,569,673,787", + "endColumns": "101,102,104,104,98,103,113,100", + "endOffsets": "152,255,360,465,564,668,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-night-v8_values-night-v8.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "85", + "endOffsets": "136" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-v31_values-v31.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v31/values-v31.xml", + "from": { + "startLines": "2,9", + "startColumns": "4,4", + "startOffsets": "55,473", + "endLines": "8,13", + "endColumns": "12,12", + "endOffsets": "468,697" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ms_values-ms.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,459,565,683,798", + "endColumns": "94,101,96,109,105,117,114,100", + "endOffsets": "145,247,344,454,560,678,793,894" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values_values.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,32,45", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,174,243,315,378,450,524,600,676,753,824,893,964,1032,1113,1205,1298,1407,1528,1988,2763", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,31,44,48", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "110,169,238,310,373,445,519,595,671,748,819,888,959,1027,1108,1200,1293,1402,1523,1983,2758,3031" + }, + "to": { + "startLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,121,123,151,160,173", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "115,175,234,303,375,438,2573,2647,2723,2799,2876,2947,3016,6388,7234,7315,7407,7500,7609,9262,9722,10497", + "endLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,122,124,159,172,176", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "170,229,298,370,433,505,2642,2718,2794,2871,2942,3011,3082,6451,7310,7402,7495,7604,7725,9717,10492,10765" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/ic_launcher_background.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "56", + "endOffsets": "107" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "840", + "endColumns": "56", + "endOffsets": "892" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/strings.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "109", + "startColumns": "4", + "startOffsets": "6609", + "endColumns": "42", + "endOffsets": "6647" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/colors.xml", + "from": { + "startLines": "4,3,2", + "startColumns": "4,4,4", + "startOffsets": "133,95,55", + "endColumns": "38,37,39", + "endOffsets": "167,128,90" + }, + "to": { + "startLines": "11,15,18", + "startColumns": "4,4,4", + "startOffsets": "670,897,1067", + "endColumns": "38,37,39", + "endOffsets": "704,930,1102" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "49", + "endOffsets": "100" + }, + "to": { + "startLines": "105", + "startColumns": "4", + "startOffsets": "6338", + "endColumns": "49", + "endOffsets": "6383" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,98,99,103,104,105,106,112,122,155,176,209", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,187,275,340,406,475,538,608,676,748,818,879,953,1026,1087,1148,1210,1274,1336,1397,1465,1565,1625,1691,1764,1833,1890,1942,2004,2076,2152,2217,2276,2335,2395,2455,2515,2575,2635,2695,2755,2815,2875,2935,2994,3054,3114,3174,3234,3294,3354,3414,3474,3534,3594,3653,3713,3773,3832,3891,3950,4009,4068,4127,4162,4197,4252,4315,4370,4428,4486,4547,4610,4667,4718,4768,4829,4886,4952,4986,5021,5056,5126,5193,5265,5334,5403,5477,5549,5637,5708,5825,6026,6136,6337,6466,6538,6605,6808,7109,8840,9521,10203", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,102,103,104,105,111,121,154,175,208,214", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,182,270,335,401,470,533,603,671,743,813,874,948,1021,1082,1143,1205,1269,1331,1392,1460,1560,1620,1686,1759,1828,1885,1937,1999,2071,2147,2212,2271,2330,2390,2450,2510,2570,2630,2690,2750,2810,2870,2930,2989,3049,3109,3169,3229,3289,3349,3409,3469,3529,3589,3648,3708,3768,3827,3886,3945,4004,4063,4122,4157,4192,4247,4310,4365,4423,4481,4542,4605,4662,4713,4763,4824,4881,4947,4981,5016,5051,5121,5188,5260,5329,5398,5472,5544,5632,5703,5820,6021,6131,6332,6461,6533,6600,6803,7104,8835,9516,10198,10365" + }, + "to": { + "startLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,126,130,131,135,177,178,179,185,195,228,249,282", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,510,582,709,774,935,1004,1107,1177,1245,1317,1387,1448,1522,1595,1656,1717,1779,1843,1905,1966,2034,2134,2194,2260,2333,2402,2459,2511,3087,3159,3235,3300,3359,3418,3478,3538,3598,3658,3718,3778,3838,3898,3958,4018,4077,4137,4197,4257,4317,4377,4437,4497,4557,4617,4677,4736,4796,4856,4915,4974,5033,5092,5151,5210,5245,5322,5377,5440,5495,5553,5611,5672,5735,5792,5843,5893,5954,6011,6077,6111,6146,6456,6652,6719,6791,6860,6929,7003,7075,7163,7730,7847,8048,8158,8359,10770,10842,10909,11112,11413,13144,13825,14507", + "endLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,129,130,134,135,177,178,184,194,227,248,281,287", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,577,665,769,835,999,1062,1172,1240,1312,1382,1443,1517,1590,1651,1712,1774,1838,1900,1961,2029,2129,2189,2255,2328,2397,2454,2506,2568,3154,3230,3295,3354,3413,3473,3533,3593,3653,3713,3773,3833,3893,3953,4013,4072,4132,4192,4252,4312,4372,4432,4492,4552,4612,4672,4731,4791,4851,4910,4969,5028,5087,5146,5205,5240,5275,5372,5435,5490,5548,5606,5667,5730,5787,5838,5888,5949,6006,6072,6106,6141,6176,6521,6714,6786,6855,6924,6998,7070,7158,7229,7842,8043,8153,8354,8483,10837,10904,11107,11408,13139,13820,14502,14669" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/themes.xml", + "from": { + "startLines": "16,6", + "startColumns": "4,4", + "startOffsets": "586,170", + "endLines": "22,13", + "endColumns": "12,12", + "endOffsets": "1029,556" + }, + "to": { + "startLines": "136,143", + "startColumns": "4,4", + "startOffsets": "8488,8936", + "endLines": "142,150", + "endColumns": "12,12", + "endOffsets": "8931,9257" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "82", + "endOffsets": "133" + }, + "to": { + "startLines": "108", + "startColumns": "4", + "startOffsets": "6526", + "endColumns": "82", + "endOffsets": "6604" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "53", + "endOffsets": "104" + }, + "to": { + "startLines": "104", + "startColumns": "4", + "startOffsets": "6284", + "endColumns": "53", + "endOffsets": "6333" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/res/values/values.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,97", + "endColumns": "41,59", + "endOffsets": "92,152" + }, + "to": { + "startLines": "85,103", + "startColumns": "4,4", + "startOffsets": "5280,6224", + "endColumns": "41,59", + "endOffsets": "5317,6279" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "102", + "startColumns": "4", + "startOffsets": "6181", + "endColumns": "42", + "endOffsets": "6219" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-hr_values-hr.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,260,357,456,560,664,781", + "endColumns": "97,106,96,98,103,103,116,100", + "endOffsets": "148,255,352,451,555,659,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ta_values-ta.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,558,673,801", + "endColumns": "95,102,98,97,106,114,127,100", + "endOffsets": "146,249,348,446,553,668,796,897" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-iw_values-iw.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,445,546,646,752", + "endColumns": "93,101,96,96,100,99,105,100", + "endOffsets": "144,246,343,440,541,641,747,848" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ar_values-ar.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,250,345,448,551,653,767", + "endColumns": "92,101,94,102,102,101,113,100", + "endOffsets": "143,245,340,443,546,648,762,863" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-be_values-be.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,562,665,786", + "endColumns": "97,101,99,100,105,102,120,100", + "endOffsets": "148,250,350,451,557,660,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-bg_values-bg.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,262,364,465,572,677,796", + "endColumns": "96,109,101,100,106,104,118,100", + "endOffsets": "147,257,359,460,567,672,791,892" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-fr-rCA_values-fr-rCA.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,778", + "endColumns": "97,101,98,101,103,103,113,100", + "endOffsets": "148,250,349,451,555,659,773,874" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-as_values-as.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,259,367,472,576,676,805", + "endColumns": "100,102,107,104,103,99,128,100", + "endOffsets": "151,254,362,467,571,671,800,901" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-mn_values-mn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,454,559,671,790", + "endColumns": "97,101,100,97,104,111,118,100", + "endOffsets": "148,250,351,449,554,666,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-sl_values-sl.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,456,559,661,778", + "endColumns": "96,101,97,103,102,101,116,100", + "endOffsets": "147,249,347,451,554,656,773,874" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-th_values-th.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,352,450,553,658,770", + "endColumns": "95,102,97,97,102,104,111,100", + "endOffsets": "146,249,347,445,548,653,765,866" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-v27_values-v27.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v27/values-v27.xml", + "from": { + "startLines": "2,3,4,7", + "startColumns": "4,4,4,4", + "startOffsets": "55,136,229,405", + "endLines": "2,3,6,9", + "endColumns": "80,92,12,12", + "endOffsets": "131,224,400,588" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-hy_values-hy.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,260,358,457,562,664,775", + "endColumns": "99,104,97,98,104,101,110,100", + "endOffsets": "150,255,353,452,557,659,770,871" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-sv_values-sv.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,449,557,662,783", + "endColumns": "94,101,97,98,107,104,120,100", + "endOffsets": "145,247,345,444,552,657,778,879" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-es_values-es.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-nb_values-nb.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,447,555,661,781", + "endColumns": "93,101,96,98,107,105,119,100", + "endOffsets": "144,246,343,442,550,656,776,877" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-v29_values-v29.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v29/values-v29.xml", + "from": { + "startLines": "2,7", + "startColumns": "4,4", + "startOffsets": "55,374", + "endLines": "6,8", + "endColumns": "12,12", + "endOffsets": "369,464" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-mk_values-mk.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,450,555,658,774", + "endColumns": "97,101,96,97,104,102,115,100", + "endOffsets": "148,250,347,445,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-bn_values-bn.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,358,461,562,664,784", + "endColumns": "98,101,101,102,100,101,119,100", + "endOffsets": "149,251,353,456,557,659,779,880" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-de_values-de.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,455,563,668,786", + "endColumns": "97,101,99,99,107,104,117,100", + "endOffsets": "148,250,350,450,558,663,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-az_values-az.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,258,361,465,566,671,782", + "endColumns": "100,101,102,103,100,104,110,100", + "endOffsets": "151,253,356,460,561,666,777,878" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-pt-rPT_values-pt-rPT.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,666,787", + "endColumns": "96,101,98,99,106,105,120,100", + "endOffsets": "147,249,348,448,555,661,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-bs_values-bs.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,457,561,663,780", + "endColumns": "97,101,97,103,103,101,116,100", + "endOffsets": "148,250,348,452,556,658,775,876" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-el_values-el.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,567,673,790", + "endColumns": "97,102,99,102,107,105,116,100", + "endOffsets": "148,251,351,454,562,668,785,886" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ka_values-ka.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,557,661,779", + "endColumns": "95,101,98,98,105,103,117,100", + "endOffsets": "146,248,347,446,552,656,774,875" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ky_values-ky.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,360,467,571,675,786", + "endColumns": "99,101,102,106,103,103,110,100", + "endOffsets": "150,252,355,462,566,670,781,882" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-en-rXC_values-en-rXC.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,251,456,657,858,1065,1270,1482", + "endColumns": "195,204,200,200,206,204,211,203", + "endOffsets": "246,451,652,853,1060,1265,1477,1681" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-sq_values-sq.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,354,451,559,670,792", + "endColumns": "98,101,97,96,107,110,121,100", + "endOffsets": "149,251,349,446,554,665,787,888" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-en-rGB_values-en-rGB.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-it_values-it.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,565,672,802", + "endColumns": "97,101,98,101,108,106,129,100", + "endOffsets": "148,250,349,451,560,667,797,898" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-es-rUS_values-es-rUS.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + }, + { + "outputFile": "blog.wiwi.hoops.app-release-17:/values-ja_values-ja.arsc.flat", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,437,530,623,724", + "endColumns": "91,99,93,95,92,92,100,100", + "endOffsets": "142,242,336,432,525,618,719,820" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-af.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-af.json new file mode 100644 index 0000000..fd48ed0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-af.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-af/values-af.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,451,558,667,787", + "endColumns": "97,101,97,97,106,108,119,100", + "endOffsets": "148,250,348,446,553,662,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-am.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-am.json new file mode 100644 index 0000000..3cfb8a2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-am.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-am/values-am.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,248,345,444,540,642,742", + "endColumns": "92,99,96,98,95,101,99,100", + "endOffsets": "143,243,340,439,535,637,737,838" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ar.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ar.json new file mode 100644 index 0000000..93a41fa --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ar.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ar/values-ar.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,148,250,345,448,551,653,767", + "endColumns": "92,101,94,102,102,101,113,100", + "endOffsets": "143,245,340,443,546,648,762,863" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-as.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-as.json new file mode 100644 index 0000000..74012d0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-as.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-as/values-as.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,259,367,472,576,676,805", + "endColumns": "100,102,107,104,103,99,128,100", + "endOffsets": "151,254,362,467,571,671,800,901" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-az.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-az.json new file mode 100644 index 0000000..33fc3af --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-az.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-az/values-az.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,156,258,361,465,566,671,782", + "endColumns": "100,101,102,103,100,104,110,100", + "endOffsets": "151,253,356,460,561,666,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-b+sr+Latn.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-b+sr+Latn.json new file mode 100644 index 0000000..5a975b5 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-b+sr+Latn/values-b+sr+Latn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-be.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-be.json new file mode 100644 index 0000000..2f5f01d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-be.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-be/values-be.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,562,665,786", + "endColumns": "97,101,99,100,105,102,120,100", + "endOffsets": "148,250,350,451,557,660,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bg.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bg.json new file mode 100644 index 0000000..8838164 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bg.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-bg/values-bg.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,262,364,465,572,677,796", + "endColumns": "96,109,101,100,106,104,118,100", + "endOffsets": "147,257,359,460,567,672,791,892" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bn.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bn.json new file mode 100644 index 0000000..e3d3949 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-bn/values-bn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,358,461,562,664,784", + "endColumns": "98,101,101,102,100,101,119,100", + "endOffsets": "149,251,353,456,557,659,779,880" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bs.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bs.json new file mode 100644 index 0000000..8555b04 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-bs.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-bs/values-bs.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,353,457,561,663,780", + "endColumns": "97,101,97,103,103,101,116,100", + "endOffsets": "148,250,348,452,556,658,775,876" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ca.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ca.json new file mode 100644 index 0000000..96cf210 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ca.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ca/values-ca.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,449,555,660,786", + "endColumns": "95,101,98,96,105,104,125,100", + "endOffsets": "146,248,347,444,550,655,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-cs.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-cs.json new file mode 100644 index 0000000..aa9b630 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-cs.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-cs/values-cs.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,455,560,667,786", + "endColumns": "97,101,100,98,104,106,118,100", + "endOffsets": "148,250,351,450,555,662,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-da.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-da.json new file mode 100644 index 0000000..d87f5d7 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-da.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-da/values-da.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,350,448,555,664,782", + "endColumns": "95,101,96,97,106,108,117,100", + "endOffsets": "146,248,345,443,550,659,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-de.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-de.json new file mode 100644 index 0000000..d0b9f1c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-de.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-de/values-de.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,455,563,668,786", + "endColumns": "97,101,99,99,107,104,117,100", + "endOffsets": "148,250,350,450,558,663,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-el.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-el.json new file mode 100644 index 0000000..0bf91b1 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-el.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-el/values-el.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,567,673,790", + "endColumns": "97,102,99,102,107,105,116,100", + "endOffsets": "148,251,351,454,562,668,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rAU.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rAU.json new file mode 100644 index 0000000..d41873d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rAU.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rCA.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rCA.json new file mode 100644 index 0000000..4c93c1f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rCA.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-en-rCA/values-en-rCA.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,657,773", + "endColumns": "95,101,98,98,103,101,115,100", + "endOffsets": "146,248,347,446,550,652,768,869" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rGB.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rGB.json new file mode 100644 index 0000000..816b312 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rGB.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rIN.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rIN.json new file mode 100644 index 0000000..e784f13 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,555,658,774", + "endColumns": "95,101,98,98,103,102,115,100", + "endOffsets": "146,248,347,446,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rXC.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rXC.json new file mode 100644 index 0000000..e66c32f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-en-rXC.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-en-rXC/values-en-rXC.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,251,456,657,858,1065,1270,1482", + "endColumns": "195,204,200,200,206,204,211,203", + "endOffsets": "246,451,652,853,1060,1265,1477,1681" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-es-rUS.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-es-rUS.json new file mode 100644 index 0000000..e6cae10 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-es-rUS.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-es.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-es.json new file mode 100644 index 0000000..33a413b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-es.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-es/values-es.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,787", + "endColumns": "98,101,99,97,106,105,119,100", + "endOffsets": "149,251,351,449,556,662,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-et.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-et.json new file mode 100644 index 0000000..1802ffa --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-et.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-et/values-et.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,453,559,664,784", + "endColumns": "94,101,97,102,105,104,119,100", + "endOffsets": "145,247,345,448,554,659,779,880" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-eu.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-eu.json new file mode 100644 index 0000000..46a4fa0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-eu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-eu/values-eu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,356,459,564,667,786", + "endColumns": "97,102,99,102,104,102,118,100", + "endOffsets": "148,251,351,454,559,662,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fa.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fa.json new file mode 100644 index 0000000..a013c5b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fa.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-fa/values-fa.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,355,455,556,662,779", + "endColumns": "98,101,98,99,100,105,116,100", + "endOffsets": "149,251,350,450,551,657,774,875" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fi.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fi.json new file mode 100644 index 0000000..c51f1d9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-fi/values-fi.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,351,456,561,673,789", + "endColumns": "95,101,97,104,104,111,115,100", + "endOffsets": "146,248,346,451,556,668,784,885" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fr-rCA.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fr-rCA.json new file mode 100644 index 0000000..3409a4e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fr-rCA.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,778", + "endColumns": "97,101,98,101,103,103,113,100", + "endOffsets": "148,250,349,451,555,659,773,874" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fr.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fr.json new file mode 100644 index 0000000..fdd08c8 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-fr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-fr/values-fr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,560,664,782", + "endColumns": "97,101,98,101,103,103,117,100", + "endOffsets": "148,250,349,451,555,659,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-gl.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-gl.json new file mode 100644 index 0000000..24885e1 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-gl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-gl/values-gl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,356,454,561,667,783", + "endColumns": "98,101,99,97,106,105,115,100", + "endOffsets": "149,251,351,449,556,662,778,879" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-gu.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-gu.json new file mode 100644 index 0000000..de476b2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-gu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-gu/values-gu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,252,349,451,553,651,773", + "endColumns": "93,102,96,101,101,97,121,100", + "endOffsets": "144,247,344,446,548,646,768,869" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hi.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hi.json new file mode 100644 index 0000000..89e4bff --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-hi/values-hi.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,361,462,575,681,808", + "endColumns": "97,102,104,100,112,105,126,100", + "endOffsets": "148,251,356,457,570,676,803,904" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hr.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hr.json new file mode 100644 index 0000000..608a895 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-hr/values-hr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,260,357,456,560,664,781", + "endColumns": "97,106,96,98,103,103,116,100", + "endOffsets": "148,255,352,451,555,659,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hu.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hu.json new file mode 100644 index 0000000..23fd718 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-hu/values-hu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,356,457,560,667,777", + "endColumns": "96,101,101,100,102,106,109,100", + "endOffsets": "147,249,351,452,555,662,772,873" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hy.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hy.json new file mode 100644 index 0000000..7af6ac3 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-hy.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-hy/values-hy.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,260,358,457,562,664,775", + "endColumns": "99,104,97,98,104,101,110,100", + "endOffsets": "150,255,353,452,557,659,770,871" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-in.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-in.json new file mode 100644 index 0000000..30ec59d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-in.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-in/values-in.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,446,552,670,785", + "endColumns": "94,101,96,96,105,117,114,100", + "endOffsets": "145,247,344,441,547,665,780,881" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-is.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-is.json new file mode 100644 index 0000000..7798173 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-is.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-is/values-is.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,354,454,557,661,772", + "endColumns": "94,106,96,99,102,103,110,100", + "endOffsets": "145,252,349,449,552,656,767,868" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-it.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-it.json new file mode 100644 index 0000000..95544e8 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-it.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-it/values-it.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,354,456,565,672,802", + "endColumns": "97,101,98,101,108,106,129,100", + "endOffsets": "148,250,349,451,560,667,797,898" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-iw.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-iw.json new file mode 100644 index 0000000..7002b7f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-iw.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-iw/values-iw.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,445,546,646,752", + "endColumns": "93,101,96,96,100,99,105,100", + "endOffsets": "144,246,343,440,541,641,747,848" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ja.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ja.json new file mode 100644 index 0000000..200f77f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ja.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ja/values-ja.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,437,530,623,724", + "endColumns": "91,99,93,95,92,92,100,100", + "endOffsets": "142,242,336,432,525,618,719,820" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ka.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ka.json new file mode 100644 index 0000000..a2946cd --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ka.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ka/values-ka.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,352,451,557,661,779", + "endColumns": "95,101,98,98,105,103,117,100", + "endOffsets": "146,248,347,446,552,656,774,875" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-kk.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-kk.json new file mode 100644 index 0000000..d5ffa88 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-kk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-kk/values-kk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,354,457,561,658,769", + "endColumns": "94,101,101,102,103,96,110,100", + "endOffsets": "145,247,349,452,556,653,764,865" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-km.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-km.json new file mode 100644 index 0000000..4a3522f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-km.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-km/values-km.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,253,351,451,552,664,776", + "endColumns": "94,102,97,99,100,111,111,100", + "endOffsets": "145,248,346,446,547,659,771,872" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-kn.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-kn.json new file mode 100644 index 0000000..8304ab5 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-kn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-kn/values-kn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,256,357,463,564,672,800", + "endColumns": "97,102,100,105,100,107,127,100", + "endOffsets": "148,251,352,458,559,667,795,896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ko.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ko.json new file mode 100644 index 0000000..ef933d2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ko.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ko/values-ko.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,247,341,438,534,632,732", + "endColumns": "91,99,93,96,95,97,99,100", + "endOffsets": "142,242,336,433,529,627,727,828" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ky.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ky.json new file mode 100644 index 0000000..e701759 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ky.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ky/values-ky.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,360,467,571,675,786", + "endColumns": "99,101,102,106,103,103,110,100", + "endOffsets": "150,252,355,462,566,670,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lo.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lo.json new file mode 100644 index 0000000..41265be --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lo.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-lo/values-lo.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,552,650,761", + "endColumns": "95,102,98,97,100,97,110,100", + "endOffsets": "146,249,348,446,547,645,756,857" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lt.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lt.json new file mode 100644 index 0000000..fb4db1c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lt.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-lt/values-lt.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,263,362,465,576,686,806", + "endColumns": "97,109,98,102,110,109,119,100", + "endOffsets": "148,258,357,460,571,681,801,902" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lv.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lv.json new file mode 100644 index 0000000..5b895f8 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-lv.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-lv/values-lv.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,456,563,671,786", + "endColumns": "97,101,99,100,106,107,114,100", + "endOffsets": "148,250,350,451,558,666,781,882" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mk.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mk.json new file mode 100644 index 0000000..23d3283 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-mk/values-mk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,450,555,658,774", + "endColumns": "97,101,96,97,104,102,115,100", + "endOffsets": "148,250,347,445,550,653,769,870" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ml.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ml.json new file mode 100644 index 0000000..9d9ca0c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ml.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ml/values-ml.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,362,466,569,670,792", + "endColumns": "101,102,101,103,102,100,121,100", + "endOffsets": "152,255,357,461,564,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mn.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mn.json new file mode 100644 index 0000000..0fe356a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-mn/values-mn.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,454,559,671,790", + "endColumns": "97,101,100,97,104,111,118,100", + "endOffsets": "148,250,351,449,554,666,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mr.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mr.json new file mode 100644 index 0000000..e354ca5 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-mr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-mr/values-mr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,259,360,463,565,670,787", + "endColumns": "99,103,100,102,101,104,116,100", + "endOffsets": "150,254,355,458,560,665,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ms.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ms.json new file mode 100644 index 0000000..4a1852d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ms.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ms/values-ms.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,349,459,565,683,798", + "endColumns": "94,101,96,109,105,117,114,100", + "endOffsets": "145,247,344,454,560,678,793,894" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-my.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-my.json new file mode 100644 index 0000000..956c58c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-my.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-my/values-my.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,262,365,467,572,678,797", + "endColumns": "102,103,102,101,104,105,118,100", + "endOffsets": "153,257,360,462,567,673,792,893" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-nb.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-nb.json new file mode 100644 index 0000000..b3ecf9c --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-nb.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-nb/values-nb.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,447,555,661,781", + "endColumns": "93,101,96,98,107,105,119,100", + "endOffsets": "144,246,343,442,550,656,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ne.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ne.json new file mode 100644 index 0000000..41cd0dc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ne.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ne/values-ne.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,261,363,469,567,667,775", + "endColumns": "102,102,101,105,97,99,107,100", + "endOffsets": "153,256,358,464,562,662,770,871" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-night-v8.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-night-v8.json new file mode 100644 index 0000000..b8b7cdb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-night-v8.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-night-v8/values-night-v8.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "85", + "endOffsets": "136" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-nl.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-nl.json new file mode 100644 index 0000000..4ab4eaf --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-nl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-nl/values-nl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,359,459,566,670,789", + "endColumns": "101,101,99,99,106,103,118,100", + "endOffsets": "152,254,354,454,561,665,784,885" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-or.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-or.json new file mode 100644 index 0000000..3010fb6 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-or.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-or/values-or.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,158,260,363,468,569,671,790", + "endColumns": "102,101,102,104,100,101,118,100", + "endOffsets": "153,255,358,463,564,666,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pa.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pa.json new file mode 100644 index 0000000..4bc63d4 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pa.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-pa/values-pa.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,358,459,561,659,788", + "endColumns": "97,101,102,100,101,97,128,100", + "endOffsets": "148,250,353,454,556,654,783,884" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pl.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pl.json new file mode 100644 index 0000000..d505f81 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-pl/values-pl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,451,565,670,792", + "endColumns": "96,101,97,98,113,104,121,100", + "endOffsets": "147,249,347,446,560,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt-rBR.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt-rBR.json new file mode 100644 index 0000000..eef9927 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt-rBR.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt-rPT.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt-rPT.json new file mode 100644 index 0000000..ec5b571 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt-rPT.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,666,787", + "endColumns": "96,101,98,99,106,105,120,100", + "endOffsets": "147,249,348,448,555,661,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt.json new file mode 100644 index 0000000..68ff30e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-pt.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-pt/values-pt.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,560,670,790", + "endColumns": "96,101,98,99,106,109,119,100", + "endOffsets": "147,249,348,448,555,665,785,886" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ro.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ro.json new file mode 100644 index 0000000..c8df2fd --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ro.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ro/values-ro.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,355,454,556,665,782", + "endColumns": "97,101,99,98,101,108,116,100", + "endOffsets": "148,250,350,449,551,660,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ru.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ru.json new file mode 100644 index 0000000..8bb1a26 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ru.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ru/values-ru.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,356,457,562,665,782", + "endColumns": "97,101,100,100,104,102,116,100", + "endOffsets": "148,250,351,452,557,660,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-si.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-si.json new file mode 100644 index 0000000..84040d4 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-si.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-si/values-si.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,260,365,470,569,673,787", + "endColumns": "101,102,104,104,98,103,113,100", + "endOffsets": "152,255,360,465,564,668,782,883" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sk.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sk.json new file mode 100644 index 0000000..b1931b9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-sk/values-sk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,253,354,452,562,670,792", + "endColumns": "95,101,100,97,109,107,121,100", + "endOffsets": "146,248,349,447,557,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sl.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sl.json new file mode 100644 index 0000000..a0ce3be --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-sl/values-sl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,456,559,661,778", + "endColumns": "96,101,97,103,102,101,116,100", + "endOffsets": "147,249,347,451,554,656,773,874" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sq.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sq.json new file mode 100644 index 0000000..923afb9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sq.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-sq/values-sq.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,154,256,354,451,559,670,792", + "endColumns": "98,101,97,96,107,110,121,100", + "endOffsets": "149,251,349,446,554,665,787,888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sr.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sr.json new file mode 100644 index 0000000..fc7e904 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-sr/values-sr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,352,456,560,665,781", + "endColumns": "97,101,96,103,103,104,115,100", + "endOffsets": "148,250,347,451,555,660,776,877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sv.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sv.json new file mode 100644 index 0000000..24c721e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sv.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-sv/values-sv.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,150,252,350,449,557,662,783", + "endColumns": "94,101,97,98,107,104,120,100", + "endOffsets": "145,247,345,444,552,657,778,879" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sw.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sw.json new file mode 100644 index 0000000..b5335fb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-sw.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-sw/values-sw.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,149,251,348,449,556,663,778", + "endColumns": "93,101,96,100,106,106,114,100", + "endOffsets": "144,246,343,444,551,658,773,874" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ta.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ta.json new file mode 100644 index 0000000..d96a14a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ta.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ta/values-ta.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,353,451,558,673,801", + "endColumns": "95,102,98,97,106,114,127,100", + "endOffsets": "146,249,348,446,553,668,796,897" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-te.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-te.json new file mode 100644 index 0000000..2f5ba05 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-te.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-te/values-te.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,265,367,468,574,681,805", + "endColumns": "101,107,101,100,105,106,123,100", + "endOffsets": "152,260,362,463,569,676,800,901" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-th.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-th.json new file mode 100644 index 0000000..9f43723 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-th.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-th/values-th.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,151,254,352,450,553,658,770", + "endColumns": "95,102,97,97,102,104,111,100", + "endOffsets": "146,249,347,445,548,653,765,866" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-tl.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-tl.json new file mode 100644 index 0000000..f58a3c3 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-tl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-tl/values-tl.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,355,452,559,667,789", + "endColumns": "96,101,100,96,106,107,121,100", + "endOffsets": "147,249,350,447,554,662,784,885" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-tr.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-tr.json new file mode 100644 index 0000000..1c2d7d7 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-tr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-tr/values-tr.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,352,449,551,657,768", + "endColumns": "96,101,97,96,101,105,110,100", + "endOffsets": "147,249,347,444,546,652,763,864" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-uk.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-uk.json new file mode 100644 index 0000000..84b99f1 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-uk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-uk/values-uk.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,155,257,358,459,564,669,782", + "endColumns": "99,101,100,100,104,104,112,100", + "endOffsets": "150,252,353,454,559,664,777,878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ur.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ur.json new file mode 100644 index 0000000..7129cc6 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-ur.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-ur/values-ur.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,255,357,461,564,662,776", + "endColumns": "97,101,101,103,102,97,113,100", + "endOffsets": "148,250,352,456,559,657,771,872" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-uz.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-uz.json new file mode 100644 index 0000000..d1ec7e8 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-uz.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-uz/values-uz.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,157,259,360,460,568,672,791", + "endColumns": "101,101,100,99,107,103,118,100", + "endOffsets": "152,254,355,455,563,667,786,887" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v21.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v21.json new file mode 100644 index 0000000..5c0a4d1 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v21.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-v21/values-v21.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,237,304,368,484,610,736,864,1036", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "117,63,66,63,115,125,125,127,12,12", + "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v27.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v27.json new file mode 100644 index 0000000..e72ee6a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v27.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-v27/values-v27.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v27/values-v27.xml", + "from": { + "startLines": "2,3,4,7", + "startColumns": "4,4,4,4", + "startOffsets": "55,136,229,405", + "endLines": "2,3,6,9", + "endColumns": "80,92,12,12", + "endOffsets": "131,224,400,588" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v29.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v29.json new file mode 100644 index 0000000..0936dc2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v29.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-v29/values-v29.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v29/values-v29.xml", + "from": { + "startLines": "2,7", + "startColumns": "4,4", + "startOffsets": "55,374", + "endLines": "6,8", + "endColumns": "12,12", + "endOffsets": "369,464" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v31.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v31.json new file mode 100644 index 0000000..fc2e483 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-v31.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-v31/values-v31.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-v31/values-v31.xml", + "from": { + "startLines": "2,9", + "startColumns": "4,4", + "startOffsets": "55,473", + "endLines": "8,13", + "endColumns": "12,12", + "endOffsets": "468,697" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-vi.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-vi.json new file mode 100644 index 0000000..6cb950b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-vi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-vi/values-vi.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,152,254,353,453,556,669,785", + "endColumns": "96,101,98,99,102,112,115,100", + "endOffsets": "147,249,348,448,551,664,780,881" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-watch-v20.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-watch-v20.json new file mode 100644 index 0000000..ec01615 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-watch-v20.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-watch-v20/values-watch-v20.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,129,205,280,357,428,496,566", + "endColumns": "73,75,74,76,70,67,69,67", + "endOffsets": "124,200,275,352,423,491,561,629" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rCN.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rCN.json new file mode 100644 index 0000000..4c85dc0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rCN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,248,342,436,529,623,719", + "endColumns": "91,100,93,93,92,93,95,100", + "endOffsets": "142,243,337,431,524,618,714,815" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rHK.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rHK.json new file mode 100644 index 0000000..befd0e5 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rHK.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rTW.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rTW.json new file mode 100644 index 0000000..323933f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zh-rTW.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,147,246,340,434,527,620,716", + "endColumns": "91,98,93,93,92,92,95,100", + "endOffsets": "142,241,335,429,522,615,711,812" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zu.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zu.json new file mode 100644 index 0000000..6963a84 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values-zu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values-zu/values-zu.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,153,257,356,459,565,672,785", + "endColumns": "97,103,98,102,105,106,112,100", + "endOffsets": "148,252,351,454,560,667,780,881" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values.json new file mode 100644 index 0000000..c22914b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/multi-v2/values.json @@ -0,0 +1,202 @@ +{ + "logs": [ + { + "outputFile": "blog.wiwi.hoops.app-mergeReleaseResources-15:/values/values.xml", + "map": [ + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,32,45", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,174,243,315,378,450,524,600,676,753,824,893,964,1032,1113,1205,1298,1407,1528,1988,2763", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,31,44,48", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "110,169,238,310,373,445,519,595,671,748,819,888,959,1027,1108,1200,1293,1402,1523,1983,2758,3031" + }, + "to": { + "startLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,121,123,151,160,173", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "115,175,234,303,375,438,2573,2647,2723,2799,2876,2947,3016,6388,7234,7315,7407,7500,7609,9262,9722,10497", + "endLines": "3,4,5,6,7,8,41,42,43,44,45,46,47,106,118,119,120,122,124,159,172,176", + "endColumns": "59,58,68,71,62,71,73,75,75,76,70,68,70,67,80,91,92,12,12,12,12,12", + "endOffsets": "170,229,298,370,433,505,2642,2718,2794,2871,2942,3011,3082,6451,7310,7402,7495,7604,7725,9717,10492,10765" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/ic_launcher_background.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "56", + "endOffsets": "107" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "840", + "endColumns": "56", + "endOffsets": "892" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/strings.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "109", + "startColumns": "4", + "startOffsets": "6609", + "endColumns": "42", + "endOffsets": "6647" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/colors.xml", + "from": { + "startLines": "4,3,2", + "startColumns": "4,4,4", + "startOffsets": "133,95,55", + "endColumns": "38,37,39", + "endOffsets": "167,128,90" + }, + "to": { + "startLines": "11,15,18", + "startColumns": "4,4,4", + "startOffsets": "670,897,1067", + "endColumns": "38,37,39", + "endOffsets": "704,930,1102" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "49", + "endOffsets": "100" + }, + "to": { + "startLines": "105", + "startColumns": "4", + "startOffsets": "6338", + "endColumns": "49", + "endOffsets": "6383" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,98,99,103,104,105,106,112,122,155,176,209", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,187,275,340,406,475,538,608,676,748,818,879,953,1026,1087,1148,1210,1274,1336,1397,1465,1565,1625,1691,1764,1833,1890,1942,2004,2076,2152,2217,2276,2335,2395,2455,2515,2575,2635,2695,2755,2815,2875,2935,2994,3054,3114,3174,3234,3294,3354,3414,3474,3534,3594,3653,3713,3773,3832,3891,3950,4009,4068,4127,4162,4197,4252,4315,4370,4428,4486,4547,4610,4667,4718,4768,4829,4886,4952,4986,5021,5056,5126,5193,5265,5334,5403,5477,5549,5637,5708,5825,6026,6136,6337,6466,6538,6605,6808,7109,8840,9521,10203", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,102,103,104,105,111,121,154,175,208,214", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,182,270,335,401,470,533,603,671,743,813,874,948,1021,1082,1143,1205,1269,1331,1392,1460,1560,1620,1686,1759,1828,1885,1937,1999,2071,2147,2212,2271,2330,2390,2450,2510,2570,2630,2690,2750,2810,2870,2930,2989,3049,3109,3169,3229,3289,3349,3409,3469,3529,3589,3648,3708,3768,3827,3886,3945,4004,4063,4122,4157,4192,4247,4310,4365,4423,4481,4542,4605,4662,4713,4763,4824,4881,4947,4981,5016,5051,5121,5188,5260,5329,5398,5472,5544,5632,5703,5820,6021,6131,6332,6461,6533,6600,6803,7104,8835,9516,10198,10365" + }, + "to": { + "startLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,126,130,131,135,177,178,179,185,195,228,249,282", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,510,582,709,774,935,1004,1107,1177,1245,1317,1387,1448,1522,1595,1656,1717,1779,1843,1905,1966,2034,2134,2194,2260,2333,2402,2459,2511,3087,3159,3235,3300,3359,3418,3478,3538,3598,3658,3718,3778,3838,3898,3958,4018,4077,4137,4197,4257,4317,4377,4437,4497,4557,4617,4677,4736,4796,4856,4915,4974,5033,5092,5151,5210,5245,5322,5377,5440,5495,5553,5611,5672,5735,5792,5843,5893,5954,6011,6077,6111,6146,6456,6652,6719,6791,6860,6929,7003,7075,7163,7730,7847,8048,8158,8359,10770,10842,10909,11112,11413,13144,13825,14507", + "endLines": "2,9,10,12,13,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,107,110,111,112,113,114,115,116,117,125,129,130,134,135,177,178,184,194,227,248,281,287", + "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,577,665,769,835,999,1062,1172,1240,1312,1382,1443,1517,1590,1651,1712,1774,1838,1900,1961,2029,2129,2189,2255,2328,2397,2454,2506,2568,3154,3230,3295,3354,3413,3473,3533,3593,3653,3713,3773,3833,3893,3953,4013,4072,4132,4192,4252,4312,4372,4432,4492,4552,4612,4672,4731,4791,4851,4910,4969,5028,5087,5146,5205,5240,5275,5372,5435,5490,5548,5606,5667,5730,5787,5838,5888,5949,6006,6072,6106,6141,6176,6521,6714,6786,6855,6924,6998,7070,7158,7229,7842,8043,8153,8354,8483,10837,10904,11107,11408,13139,13820,14502,14669" + } + }, + { + "source": "/home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res/values/themes.xml", + "from": { + "startLines": "16,6", + "startColumns": "4,4", + "startOffsets": "586,170", + "endLines": "22,13", + "endColumns": "12,12", + "endOffsets": "1029,556" + }, + "to": { + "startLines": "136,143", + "startColumns": "4,4", + "startOffsets": "8488,8936", + "endLines": "142,150", + "endColumns": "12,12", + "endOffsets": "8931,9257" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "82", + "endOffsets": "133" + }, + "to": { + "startLines": "108", + "startColumns": "4", + "startOffsets": "6526", + "endColumns": "82", + "endOffsets": "6604" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "53", + "endOffsets": "104" + }, + "to": { + "startLines": "104", + "startColumns": "4", + "startOffsets": "6284", + "endColumns": "53", + "endOffsets": "6333" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/res/values/values.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,97", + "endColumns": "41,59", + "endOffsets": "92,152" + }, + "to": { + "startLines": "85,103", + "startColumns": "4,4", + "startOffsets": "5280,6224", + "endColumns": "41,59", + "endOffsets": "5317,6279" + } + }, + { + "source": "/home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "102", + "startColumns": "4", + "startOffsets": "6181", + "endColumns": "42", + "endOffsets": "6219" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/single/mergeReleaseResources.json b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/single/mergeReleaseResources.json new file mode 100644 index 0000000..3a7babb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/release/mergeReleaseResources/out/single/mergeReleaseResources.json @@ -0,0 +1,66 @@ +[ + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-xxhdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-xxhdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-xxhdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-xxhdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/xml_backup_rules.xml.flat", + "source": "blog.wiwi.hoops.app-main-18:/xml/backup_rules.xml" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-xxxhdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-xxxhdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/xml_data_extraction_rules.xml.flat", + "source": "blog.wiwi.hoops.app-main-18:/xml/data_extraction_rules.xml" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-hdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-hdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/drawable_splash_icon.xml.flat", + "source": "blog.wiwi.hoops.app-main-18:/drawable/splash_icon.xml" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-xxxhdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-xxxhdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-hdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-hdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/drawable_ic_launcher_foreground.xml.flat", + "source": "blog.wiwi.hoops.app-main-18:/drawable/ic_launcher_foreground.xml" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-anydpi-v26_ic_launcher.xml.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-anydpi-v26/ic_launcher.xml" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-xhdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-xhdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-anydpi-v26_ic_launcher_round.xml.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-anydpi-v26/ic_launcher_round.xml" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-mdpi_ic_launcher.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-mdpi/ic_launcher.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-mdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-mdpi/ic_launcher_round.png" + }, + { + "merged": "blog.wiwi.hoops.app-release-17:/mipmap-xhdpi_ic_launcher_round.png.flat", + "source": "blog.wiwi.hoops.app-main-18:/mipmap-xhdpi/ic_launcher_round.png" + } +] \ No newline at end of file diff --git a/app/build/intermediates/metadata_library_dependencies_report/release/collectReleaseDependencies/dependencies.pb b/app/build/intermediates/metadata_library_dependencies_report/release/collectReleaseDependencies/dependencies.pb new file mode 100644 index 0000000..58bcf43 Binary files /dev/null and b/app/build/intermediates/metadata_library_dependencies_report/release/collectReleaseDependencies/dependencies.pb differ diff --git a/app/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/app/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/app/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/app/build/intermediates/navigation_json/release/extractDeepLinksRelease/navigation.json b/app/build/intermediates/navigation_json/release/extractDeepLinksRelease/navigation.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/app/build/intermediates/navigation_json/release/extractDeepLinksRelease/navigation.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/app/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/app/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt new file mode 100644 index 0000000..08f4ebe --- /dev/null +++ b/app/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt @@ -0,0 +1 @@ +0 Warning/Error \ No newline at end of file diff --git a/app/build/intermediates/nested_resources_validation_report/debugAndroidTest/generateDebugAndroidTestResources/nestedResourcesValidationReport.txt b/app/build/intermediates/nested_resources_validation_report/debugAndroidTest/generateDebugAndroidTestResources/nestedResourcesValidationReport.txt new file mode 100644 index 0000000..08f4ebe --- /dev/null +++ b/app/build/intermediates/nested_resources_validation_report/debugAndroidTest/generateDebugAndroidTestResources/nestedResourcesValidationReport.txt @@ -0,0 +1 @@ +0 Warning/Error \ No newline at end of file diff --git a/app/build/intermediates/nested_resources_validation_report/release/generateReleaseResources/nestedResourcesValidationReport.txt b/app/build/intermediates/nested_resources_validation_report/release/generateReleaseResources/nestedResourcesValidationReport.txt new file mode 100644 index 0000000..08f4ebe --- /dev/null +++ b/app/build/intermediates/nested_resources_validation_report/release/generateReleaseResources/nestedResourcesValidationReport.txt @@ -0,0 +1 @@ +0 Warning/Error \ No newline at end of file diff --git a/app/build/intermediates/optimized_processed_res/release/optimizeReleaseResources/output-metadata.json b/app/build/intermediates/optimized_processed_res/release/optimizeReleaseResources/output-metadata.json new file mode 100644 index 0000000..a8b4376 --- /dev/null +++ b/app/build/intermediates/optimized_processed_res/release/optimizeReleaseResources/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "OPTIMIZED_PROCESSED_RES", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "release", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "resources-release-optimize.ap_" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/optimized_processed_res/release/optimizeReleaseResources/resources-release-optimize.ap_ b/app/build/intermediates/optimized_processed_res/release/optimizeReleaseResources/resources-release-optimize.ap_ new file mode 100644 index 0000000..952fe2b Binary files /dev/null and b/app/build/intermediates/optimized_processed_res/release/optimizeReleaseResources/resources-release-optimize.ap_ differ diff --git a/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/AndroidManifest.xml b/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/AndroidManifest.xml new file mode 100644 index 0000000..7faebcc --- /dev/null +++ b/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/AndroidManifest.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/output-metadata.json b/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/output-metadata.json new file mode 100644 index 0000000..9433c98 --- /dev/null +++ b/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "PACKAGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/AndroidManifest.xml b/app/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/AndroidManifest.xml new file mode 100644 index 0000000..0686322 --- /dev/null +++ b/app/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/output-metadata.json b/app/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/output-metadata.json new file mode 100644 index 0000000..e3a14f0 --- /dev/null +++ b/app/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/output-metadata.json @@ -0,0 +1,18 @@ +{ + "version": 3, + "artifactType": { + "type": "PACKAGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops.test", + "variantName": "debugAndroidTest", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/packaged_manifests/release/processReleaseManifestForPackage/AndroidManifest.xml b/app/build/intermediates/packaged_manifests/release/processReleaseManifestForPackage/AndroidManifest.xml new file mode 100644 index 0000000..7539b33 --- /dev/null +++ b/app/build/intermediates/packaged_manifests/release/processReleaseManifestForPackage/AndroidManifest.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_manifests/release/processReleaseManifestForPackage/output-metadata.json b/app/build/intermediates/packaged_manifests/release/processReleaseManifestForPackage/output-metadata.json new file mode 100644 index 0000000..cf55957 --- /dev/null +++ b/app/build/intermediates/packaged_manifests/release/processReleaseManifestForPackage/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "PACKAGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "release", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_foreground.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..6c2a347 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_foreground.xml @@ -0,0 +1,16 @@ + + + + + diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/splash_icon.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/splash_icon.xml new file mode 100644 index 0000000..ac217ad --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/splash_icon.xml @@ -0,0 +1,16 @@ + + + + + diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..5c84730 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher_round.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..5c84730 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher.png new file mode 100644 index 0000000..ae7d2c1 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..c1b3fca Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher.png new file mode 100644 index 0000000..b80eb04 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..1ae6217 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher.png new file mode 100644 index 0000000..a45e98e Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..ff5ff64 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher.png new file mode 100644 index 0000000..ae420f0 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..c95501b Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher.png new file mode 100644 index 0000000..af188ae Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..28810a6 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml new file mode 100644 index 0000000..6855cdf --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml @@ -0,0 +1,23 @@ + + + #C2410C + #FAFAF7 + #1A1A1A + #FAFAF7 + Hoops + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml new file mode 100644 index 0000000..adba704 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml @@ -0,0 +1,4 @@ + + + + diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml new file mode 100644 index 0000000..7f39a10 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/ic_launcher_foreground.xml b/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..6c2a347 --- /dev/null +++ b/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/ic_launcher_foreground.xml @@ -0,0 +1,16 @@ + + + + + diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/splash_icon.xml b/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/splash_icon.xml new file mode 100644 index 0000000..ac217ad --- /dev/null +++ b/app/build/intermediates/packaged_res/release/packageReleaseResources/drawable/splash_icon.xml @@ -0,0 +1,16 @@ + + + + + diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher.xml b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..5c84730 --- /dev/null +++ b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher_round.xml b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..5c84730 --- /dev/null +++ b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher.png new file mode 100644 index 0000000..ae7d2c1 Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..c1b3fca Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-hdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher.png new file mode 100644 index 0000000..b80eb04 Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..1ae6217 Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-mdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher.png new file mode 100644 index 0000000..a45e98e Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..ff5ff64 Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xhdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher.png new file mode 100644 index 0000000..ae420f0 Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..c95501b Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxhdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher.png new file mode 100644 index 0000000..af188ae Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher_round.png b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher_round.png new file mode 100644 index 0000000..28810a6 Binary files /dev/null and b/app/build/intermediates/packaged_res/release/packageReleaseResources/mipmap-xxxhdpi-v4/ic_launcher_round.png differ diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/values/values.xml b/app/build/intermediates/packaged_res/release/packageReleaseResources/values/values.xml new file mode 100644 index 0000000..6855cdf --- /dev/null +++ b/app/build/intermediates/packaged_res/release/packageReleaseResources/values/values.xml @@ -0,0 +1,23 @@ + + + #C2410C + #FAFAF7 + #1A1A1A + #FAFAF7 + Hoops + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/backup_rules.xml b/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/backup_rules.xml new file mode 100644 index 0000000..adba704 --- /dev/null +++ b/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/backup_rules.xml @@ -0,0 +1,4 @@ + + + + diff --git a/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/data_extraction_rules.xml b/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/data_extraction_rules.xml new file mode 100644 index 0000000..7f39a10 --- /dev/null +++ b/app/build/intermediates/packaged_res/release/packageReleaseResources/xml/data_extraction_rules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/blog/wiwi/hoops/MainActivity.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/blog/wiwi/hoops/MainActivity.dex new file mode 100644 index 0000000..3c936df Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/blog/wiwi/hoops/MainActivity.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_0.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_0.jar new file mode 100644 index 0000000..89bce99 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_0.jar differ diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_1.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_1.jar new file mode 100644 index 0000000..66cc627 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_1.jar differ diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_2.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_2.jar new file mode 100644 index 0000000..b2d86d6 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_2.jar differ diff --git a/app/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/e624ada134c81cb38a7e4cb107fe8ead630d0b2b84b37a20a080951102546d26_1.jar b/app/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/e624ada134c81cb38a7e4cb107fe8ead630d0b2b84b37a20a080951102546d26_1.jar new file mode 100644 index 0000000..b26cac2 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/e624ada134c81cb38a7e4cb107fe8ead630d0b2b84b37a20a080951102546d26_1.jar differ diff --git a/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/blog/wiwi/hoops/MainActivity.dex b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/blog/wiwi/hoops/MainActivity.dex new file mode 100644 index 0000000..407d3e1 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/blog/wiwi/hoops/MainActivity.dex differ diff --git a/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_0.jar b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_0.jar new file mode 100644 index 0000000..3ac49f4 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_0.jar differ diff --git a/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_1.jar b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_1.jar new file mode 100644 index 0000000..2f78e79 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_1.jar differ diff --git a/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_2.jar b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_2.jar new file mode 100644 index 0000000..ff829de Binary files /dev/null and b/app/build/intermediates/project_dex_archive/release/dexBuilderRelease/out/ec7abf546db19a75bbcdd23b1daa6344a2d34a10d836e6e6a20c63c029bd4bdf_2.jar differ diff --git a/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt b/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt new file mode 100644 index 0000000..b7b173c --- /dev/null +++ b/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt @@ -0,0 +1,255 @@ +int attr alpha 0x7f010000 +int attr font 0x7f010001 +int attr fontProviderAuthority 0x7f010002 +int attr fontProviderCerts 0x7f010003 +int attr fontProviderFetchStrategy 0x7f010004 +int attr fontProviderFetchTimeout 0x7f010005 +int attr fontProviderPackage 0x7f010006 +int attr fontProviderQuery 0x7f010007 +int attr fontProviderSystemFontFamily 0x7f010008 +int attr fontStyle 0x7f010009 +int attr fontVariationSettings 0x7f01000a +int attr fontWeight 0x7f01000b +int attr lStar 0x7f01000c +int attr nestedScrollViewStyle 0x7f01000d +int attr postSplashScreenTheme 0x7f01000e +int attr queryPatterns 0x7f01000f +int attr shortcutMatchRequired 0x7f010010 +int attr splashScreenIconSize 0x7f010011 +int attr ttcIndex 0x7f010012 +int attr windowSplashScreenAnimatedIcon 0x7f010013 +int attr windowSplashScreenAnimationDuration 0x7f010014 +int attr windowSplashScreenBackground 0x7f010015 +int attr windowSplashScreenIconBackgroundColor 0x7f010016 +int color androidx_core_ripple_material_light 0x7f020000 +int color androidx_core_secondary_text_default_material_light 0x7f020001 +int color ball 0x7f020002 +int color call_notification_answer_color 0x7f020003 +int color call_notification_decline_color 0x7f020004 +int color ic_launcher_background 0x7f020005 +int color ink 0x7f020006 +int color notification_action_color_filter 0x7f020007 +int color notification_icon_bg_color 0x7f020008 +int color paper 0x7f020009 +int dimen compat_button_inset_horizontal_material 0x7f030000 +int dimen compat_button_inset_vertical_material 0x7f030001 +int dimen compat_button_padding_horizontal_material 0x7f030002 +int dimen compat_button_padding_vertical_material 0x7f030003 +int dimen compat_control_corner_material 0x7f030004 +int dimen compat_notification_large_icon_max_height 0x7f030005 +int dimen compat_notification_large_icon_max_width 0x7f030006 +int dimen notification_action_icon_size 0x7f030007 +int dimen notification_action_text_size 0x7f030008 +int dimen notification_big_circle_margin 0x7f030009 +int dimen notification_content_margin_start 0x7f03000a +int dimen notification_large_icon_height 0x7f03000b +int dimen notification_large_icon_width 0x7f03000c +int dimen notification_main_column_padding_top 0x7f03000d +int dimen notification_media_narrow_margin 0x7f03000e +int dimen notification_right_icon_size 0x7f03000f +int dimen notification_right_side_padding_top 0x7f030010 +int dimen notification_small_icon_background_padding 0x7f030011 +int dimen notification_small_icon_size_as_large 0x7f030012 +int dimen notification_subtext_size 0x7f030013 +int dimen notification_top_pad 0x7f030014 +int dimen notification_top_pad_large_text 0x7f030015 +int dimen splashscreen_icon_mask_size_no_background 0x7f030016 +int dimen splashscreen_icon_mask_size_with_background 0x7f030017 +int dimen splashscreen_icon_mask_stroke_no_background 0x7f030018 +int dimen splashscreen_icon_mask_stroke_with_background 0x7f030019 +int dimen splashscreen_icon_size 0x7f03001a +int dimen splashscreen_icon_size_no_background 0x7f03001b +int dimen splashscreen_icon_size_with_background 0x7f03001c +int drawable compat_splash_screen 0x7f040000 +int drawable compat_splash_screen_no_icon_background 0x7f040001 +int drawable ic_call_answer 0x7f040002 +int drawable ic_call_answer_low 0x7f040003 +int drawable ic_call_answer_video 0x7f040004 +int drawable ic_call_answer_video_low 0x7f040005 +int drawable ic_call_decline 0x7f040006 +int drawable ic_call_decline_low 0x7f040007 +int drawable ic_launcher_foreground 0x7f040008 +int drawable icon_background 0x7f040009 +int drawable notification_action_background 0x7f04000a +int drawable notification_bg 0x7f04000b +int drawable notification_bg_low 0x7f04000c +int drawable notification_bg_low_normal 0x7f04000d +int drawable notification_bg_low_pressed 0x7f04000e +int drawable notification_bg_normal 0x7f04000f +int drawable notification_bg_normal_pressed 0x7f040010 +int drawable notification_icon_background 0x7f040011 +int drawable notification_oversize_large_icon_bg 0x7f040012 +int drawable notification_template_icon_bg 0x7f040013 +int drawable notification_template_icon_low_bg 0x7f040014 +int drawable notification_tile_bg 0x7f040015 +int drawable notify_panel_notification_icon_bg 0x7f040016 +int drawable splash_icon 0x7f040017 +int id accessibility_action_clickable_span 0x7f050000 +int id accessibility_custom_action_0 0x7f050001 +int id accessibility_custom_action_1 0x7f050002 +int id accessibility_custom_action_10 0x7f050003 +int id accessibility_custom_action_11 0x7f050004 +int id accessibility_custom_action_12 0x7f050005 +int id accessibility_custom_action_13 0x7f050006 +int id accessibility_custom_action_14 0x7f050007 +int id accessibility_custom_action_15 0x7f050008 +int id accessibility_custom_action_16 0x7f050009 +int id accessibility_custom_action_17 0x7f05000a +int id accessibility_custom_action_18 0x7f05000b +int id accessibility_custom_action_19 0x7f05000c +int id accessibility_custom_action_2 0x7f05000d +int id accessibility_custom_action_20 0x7f05000e +int id accessibility_custom_action_21 0x7f05000f +int id accessibility_custom_action_22 0x7f050010 +int id accessibility_custom_action_23 0x7f050011 +int id accessibility_custom_action_24 0x7f050012 +int id accessibility_custom_action_25 0x7f050013 +int id accessibility_custom_action_26 0x7f050014 +int id accessibility_custom_action_27 0x7f050015 +int id accessibility_custom_action_28 0x7f050016 +int id accessibility_custom_action_29 0x7f050017 +int id accessibility_custom_action_3 0x7f050018 +int id accessibility_custom_action_30 0x7f050019 +int id accessibility_custom_action_31 0x7f05001a +int id accessibility_custom_action_4 0x7f05001b +int id accessibility_custom_action_5 0x7f05001c +int id accessibility_custom_action_6 0x7f05001d +int id accessibility_custom_action_7 0x7f05001e +int id accessibility_custom_action_8 0x7f05001f +int id accessibility_custom_action_9 0x7f050020 +int id action_container 0x7f050021 +int id action_divider 0x7f050022 +int id action_image 0x7f050023 +int id action_text 0x7f050024 +int id actions 0x7f050025 +int id async 0x7f050026 +int id blocking 0x7f050027 +int id chronometer 0x7f050028 +int id dialog_button 0x7f050029 +int id edit_text_id 0x7f05002a +int id forever 0x7f05002b +int id hide_ime_id 0x7f05002c +int id icon 0x7f05002d +int id icon_group 0x7f05002e +int id info 0x7f05002f +int id italic 0x7f050030 +int id line1 0x7f050031 +int id line3 0x7f050032 +int id normal 0x7f050033 +int id notification_background 0x7f050034 +int id notification_main_column 0x7f050035 +int id notification_main_column_container 0x7f050036 +int id report_drawn 0x7f050037 +int id right_icon 0x7f050038 +int id right_side 0x7f050039 +int id splashscreen_icon_view 0x7f05003a +int id tag_accessibility_actions 0x7f05003b +int id tag_accessibility_clickable_spans 0x7f05003c +int id tag_accessibility_heading 0x7f05003d +int id tag_accessibility_pane_title 0x7f05003e +int id tag_on_apply_window_listener 0x7f05003f +int id tag_on_receive_content_listener 0x7f050040 +int id tag_on_receive_content_mime_types 0x7f050041 +int id tag_screen_reader_focusable 0x7f050042 +int id tag_state_description 0x7f050043 +int id tag_transition_group 0x7f050044 +int id tag_unhandled_key_event_manager 0x7f050045 +int id tag_unhandled_key_listeners 0x7f050046 +int id tag_window_insets_animation_callback 0x7f050047 +int id text 0x7f050048 +int id text2 0x7f050049 +int id time 0x7f05004a +int id title 0x7f05004b +int id view_tree_lifecycle_owner 0x7f05004c +int id view_tree_on_back_pressed_dispatcher_owner 0x7f05004d +int id view_tree_saved_state_registry_owner 0x7f05004e +int id view_tree_view_model_store_owner 0x7f05004f +int integer default_icon_animation_duration 0x7f060000 +int integer status_bar_notification_info_maxnum 0x7f060001 +int layout custom_dialog 0x7f070000 +int layout ime_base_split_test_activity 0x7f070001 +int layout ime_secondary_split_test_activity 0x7f070002 +int layout notification_action 0x7f070003 +int layout notification_action_tombstone 0x7f070004 +int layout notification_template_custom_big 0x7f070005 +int layout notification_template_icon_group 0x7f070006 +int layout notification_template_part_chronometer 0x7f070007 +int layout notification_template_part_time 0x7f070008 +int layout splash_screen_view 0x7f070009 +int mipmap ic_launcher 0x7f080000 +int mipmap ic_launcher_round 0x7f080001 +int string androidx_startup 0x7f090000 +int string app_name 0x7f090001 +int string call_notification_answer_action 0x7f090002 +int string call_notification_answer_video_action 0x7f090003 +int string call_notification_decline_action 0x7f090004 +int string call_notification_hang_up_action 0x7f090005 +int string call_notification_incoming_text 0x7f090006 +int string call_notification_ongoing_text 0x7f090007 +int string call_notification_screening_text 0x7f090008 +int string status_bar_notification_info_overflow 0x7f090009 +int style Base_Theme_SplashScreen 0x7f0a0000 +int style Base_Theme_SplashScreen_DayNight 0x7f0a0001 +int style Base_Theme_SplashScreen_Light 0x7f0a0002 +int style Base_v21_Theme_SplashScreen 0x7f0a0003 +int style Base_v21_Theme_SplashScreen_Light 0x7f0a0004 +int style Base_v27_Theme_SplashScreen 0x7f0a0005 +int style Base_v27_Theme_SplashScreen_Light 0x7f0a0006 +int style TextAppearance_Compat_Notification 0x7f0a0007 +int style TextAppearance_Compat_Notification_Info 0x7f0a0008 +int style TextAppearance_Compat_Notification_Line2 0x7f0a0009 +int style TextAppearance_Compat_Notification_Time 0x7f0a000a +int style TextAppearance_Compat_Notification_Title 0x7f0a000b +int style Theme_Hoops 0x7f0a000c +int style Theme_Hoops_Splash 0x7f0a000d +int style Theme_SplashScreen 0x7f0a000e +int style Theme_SplashScreen_Common 0x7f0a000f +int style Theme_SplashScreen_IconBackground 0x7f0a0010 +int style Widget_Compat_NotificationActionContainer 0x7f0a0011 +int style Widget_Compat_NotificationActionText 0x7f0a0012 +int[] styleable Capability { 0x7f01000f, 0x7f010010 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f010000, 0x7f01000c } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_lStar 2 +int styleable ColorStateListItem_alpha 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable FontFamily { 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f010001, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f010012 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontWeight 1 +int styleable FontFamilyFont_android_fontStyle 2 +int styleable FontFamilyFont_android_ttcIndex 3 +int styleable FontFamilyFont_android_fontVariationSettings 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } +int styleable GradientColor_android_startColor 0 +int styleable GradientColor_android_endColor 1 +int styleable GradientColor_android_type 2 +int styleable GradientColor_android_centerX 3 +int styleable GradientColor_android_centerY 4 +int styleable GradientColor_android_gradientRadius 5 +int styleable GradientColor_android_tileMode 6 +int styleable GradientColor_android_centerColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_endX 10 +int styleable GradientColor_android_endY 11 +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int xml backup_rules 0x7f0c0000 +int xml data_extraction_rules 0x7f0c0001 diff --git a/app/build/intermediates/runtime_symbol_list/debugAndroidTest/processDebugAndroidTestResources/R.txt b/app/build/intermediates/runtime_symbol_list/debugAndroidTest/processDebugAndroidTestResources/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/app/build/intermediates/runtime_symbol_list/release/processReleaseResources/R.txt b/app/build/intermediates/runtime_symbol_list/release/processReleaseResources/R.txt new file mode 100644 index 0000000..b7b173c --- /dev/null +++ b/app/build/intermediates/runtime_symbol_list/release/processReleaseResources/R.txt @@ -0,0 +1,255 @@ +int attr alpha 0x7f010000 +int attr font 0x7f010001 +int attr fontProviderAuthority 0x7f010002 +int attr fontProviderCerts 0x7f010003 +int attr fontProviderFetchStrategy 0x7f010004 +int attr fontProviderFetchTimeout 0x7f010005 +int attr fontProviderPackage 0x7f010006 +int attr fontProviderQuery 0x7f010007 +int attr fontProviderSystemFontFamily 0x7f010008 +int attr fontStyle 0x7f010009 +int attr fontVariationSettings 0x7f01000a +int attr fontWeight 0x7f01000b +int attr lStar 0x7f01000c +int attr nestedScrollViewStyle 0x7f01000d +int attr postSplashScreenTheme 0x7f01000e +int attr queryPatterns 0x7f01000f +int attr shortcutMatchRequired 0x7f010010 +int attr splashScreenIconSize 0x7f010011 +int attr ttcIndex 0x7f010012 +int attr windowSplashScreenAnimatedIcon 0x7f010013 +int attr windowSplashScreenAnimationDuration 0x7f010014 +int attr windowSplashScreenBackground 0x7f010015 +int attr windowSplashScreenIconBackgroundColor 0x7f010016 +int color androidx_core_ripple_material_light 0x7f020000 +int color androidx_core_secondary_text_default_material_light 0x7f020001 +int color ball 0x7f020002 +int color call_notification_answer_color 0x7f020003 +int color call_notification_decline_color 0x7f020004 +int color ic_launcher_background 0x7f020005 +int color ink 0x7f020006 +int color notification_action_color_filter 0x7f020007 +int color notification_icon_bg_color 0x7f020008 +int color paper 0x7f020009 +int dimen compat_button_inset_horizontal_material 0x7f030000 +int dimen compat_button_inset_vertical_material 0x7f030001 +int dimen compat_button_padding_horizontal_material 0x7f030002 +int dimen compat_button_padding_vertical_material 0x7f030003 +int dimen compat_control_corner_material 0x7f030004 +int dimen compat_notification_large_icon_max_height 0x7f030005 +int dimen compat_notification_large_icon_max_width 0x7f030006 +int dimen notification_action_icon_size 0x7f030007 +int dimen notification_action_text_size 0x7f030008 +int dimen notification_big_circle_margin 0x7f030009 +int dimen notification_content_margin_start 0x7f03000a +int dimen notification_large_icon_height 0x7f03000b +int dimen notification_large_icon_width 0x7f03000c +int dimen notification_main_column_padding_top 0x7f03000d +int dimen notification_media_narrow_margin 0x7f03000e +int dimen notification_right_icon_size 0x7f03000f +int dimen notification_right_side_padding_top 0x7f030010 +int dimen notification_small_icon_background_padding 0x7f030011 +int dimen notification_small_icon_size_as_large 0x7f030012 +int dimen notification_subtext_size 0x7f030013 +int dimen notification_top_pad 0x7f030014 +int dimen notification_top_pad_large_text 0x7f030015 +int dimen splashscreen_icon_mask_size_no_background 0x7f030016 +int dimen splashscreen_icon_mask_size_with_background 0x7f030017 +int dimen splashscreen_icon_mask_stroke_no_background 0x7f030018 +int dimen splashscreen_icon_mask_stroke_with_background 0x7f030019 +int dimen splashscreen_icon_size 0x7f03001a +int dimen splashscreen_icon_size_no_background 0x7f03001b +int dimen splashscreen_icon_size_with_background 0x7f03001c +int drawable compat_splash_screen 0x7f040000 +int drawable compat_splash_screen_no_icon_background 0x7f040001 +int drawable ic_call_answer 0x7f040002 +int drawable ic_call_answer_low 0x7f040003 +int drawable ic_call_answer_video 0x7f040004 +int drawable ic_call_answer_video_low 0x7f040005 +int drawable ic_call_decline 0x7f040006 +int drawable ic_call_decline_low 0x7f040007 +int drawable ic_launcher_foreground 0x7f040008 +int drawable icon_background 0x7f040009 +int drawable notification_action_background 0x7f04000a +int drawable notification_bg 0x7f04000b +int drawable notification_bg_low 0x7f04000c +int drawable notification_bg_low_normal 0x7f04000d +int drawable notification_bg_low_pressed 0x7f04000e +int drawable notification_bg_normal 0x7f04000f +int drawable notification_bg_normal_pressed 0x7f040010 +int drawable notification_icon_background 0x7f040011 +int drawable notification_oversize_large_icon_bg 0x7f040012 +int drawable notification_template_icon_bg 0x7f040013 +int drawable notification_template_icon_low_bg 0x7f040014 +int drawable notification_tile_bg 0x7f040015 +int drawable notify_panel_notification_icon_bg 0x7f040016 +int drawable splash_icon 0x7f040017 +int id accessibility_action_clickable_span 0x7f050000 +int id accessibility_custom_action_0 0x7f050001 +int id accessibility_custom_action_1 0x7f050002 +int id accessibility_custom_action_10 0x7f050003 +int id accessibility_custom_action_11 0x7f050004 +int id accessibility_custom_action_12 0x7f050005 +int id accessibility_custom_action_13 0x7f050006 +int id accessibility_custom_action_14 0x7f050007 +int id accessibility_custom_action_15 0x7f050008 +int id accessibility_custom_action_16 0x7f050009 +int id accessibility_custom_action_17 0x7f05000a +int id accessibility_custom_action_18 0x7f05000b +int id accessibility_custom_action_19 0x7f05000c +int id accessibility_custom_action_2 0x7f05000d +int id accessibility_custom_action_20 0x7f05000e +int id accessibility_custom_action_21 0x7f05000f +int id accessibility_custom_action_22 0x7f050010 +int id accessibility_custom_action_23 0x7f050011 +int id accessibility_custom_action_24 0x7f050012 +int id accessibility_custom_action_25 0x7f050013 +int id accessibility_custom_action_26 0x7f050014 +int id accessibility_custom_action_27 0x7f050015 +int id accessibility_custom_action_28 0x7f050016 +int id accessibility_custom_action_29 0x7f050017 +int id accessibility_custom_action_3 0x7f050018 +int id accessibility_custom_action_30 0x7f050019 +int id accessibility_custom_action_31 0x7f05001a +int id accessibility_custom_action_4 0x7f05001b +int id accessibility_custom_action_5 0x7f05001c +int id accessibility_custom_action_6 0x7f05001d +int id accessibility_custom_action_7 0x7f05001e +int id accessibility_custom_action_8 0x7f05001f +int id accessibility_custom_action_9 0x7f050020 +int id action_container 0x7f050021 +int id action_divider 0x7f050022 +int id action_image 0x7f050023 +int id action_text 0x7f050024 +int id actions 0x7f050025 +int id async 0x7f050026 +int id blocking 0x7f050027 +int id chronometer 0x7f050028 +int id dialog_button 0x7f050029 +int id edit_text_id 0x7f05002a +int id forever 0x7f05002b +int id hide_ime_id 0x7f05002c +int id icon 0x7f05002d +int id icon_group 0x7f05002e +int id info 0x7f05002f +int id italic 0x7f050030 +int id line1 0x7f050031 +int id line3 0x7f050032 +int id normal 0x7f050033 +int id notification_background 0x7f050034 +int id notification_main_column 0x7f050035 +int id notification_main_column_container 0x7f050036 +int id report_drawn 0x7f050037 +int id right_icon 0x7f050038 +int id right_side 0x7f050039 +int id splashscreen_icon_view 0x7f05003a +int id tag_accessibility_actions 0x7f05003b +int id tag_accessibility_clickable_spans 0x7f05003c +int id tag_accessibility_heading 0x7f05003d +int id tag_accessibility_pane_title 0x7f05003e +int id tag_on_apply_window_listener 0x7f05003f +int id tag_on_receive_content_listener 0x7f050040 +int id tag_on_receive_content_mime_types 0x7f050041 +int id tag_screen_reader_focusable 0x7f050042 +int id tag_state_description 0x7f050043 +int id tag_transition_group 0x7f050044 +int id tag_unhandled_key_event_manager 0x7f050045 +int id tag_unhandled_key_listeners 0x7f050046 +int id tag_window_insets_animation_callback 0x7f050047 +int id text 0x7f050048 +int id text2 0x7f050049 +int id time 0x7f05004a +int id title 0x7f05004b +int id view_tree_lifecycle_owner 0x7f05004c +int id view_tree_on_back_pressed_dispatcher_owner 0x7f05004d +int id view_tree_saved_state_registry_owner 0x7f05004e +int id view_tree_view_model_store_owner 0x7f05004f +int integer default_icon_animation_duration 0x7f060000 +int integer status_bar_notification_info_maxnum 0x7f060001 +int layout custom_dialog 0x7f070000 +int layout ime_base_split_test_activity 0x7f070001 +int layout ime_secondary_split_test_activity 0x7f070002 +int layout notification_action 0x7f070003 +int layout notification_action_tombstone 0x7f070004 +int layout notification_template_custom_big 0x7f070005 +int layout notification_template_icon_group 0x7f070006 +int layout notification_template_part_chronometer 0x7f070007 +int layout notification_template_part_time 0x7f070008 +int layout splash_screen_view 0x7f070009 +int mipmap ic_launcher 0x7f080000 +int mipmap ic_launcher_round 0x7f080001 +int string androidx_startup 0x7f090000 +int string app_name 0x7f090001 +int string call_notification_answer_action 0x7f090002 +int string call_notification_answer_video_action 0x7f090003 +int string call_notification_decline_action 0x7f090004 +int string call_notification_hang_up_action 0x7f090005 +int string call_notification_incoming_text 0x7f090006 +int string call_notification_ongoing_text 0x7f090007 +int string call_notification_screening_text 0x7f090008 +int string status_bar_notification_info_overflow 0x7f090009 +int style Base_Theme_SplashScreen 0x7f0a0000 +int style Base_Theme_SplashScreen_DayNight 0x7f0a0001 +int style Base_Theme_SplashScreen_Light 0x7f0a0002 +int style Base_v21_Theme_SplashScreen 0x7f0a0003 +int style Base_v21_Theme_SplashScreen_Light 0x7f0a0004 +int style Base_v27_Theme_SplashScreen 0x7f0a0005 +int style Base_v27_Theme_SplashScreen_Light 0x7f0a0006 +int style TextAppearance_Compat_Notification 0x7f0a0007 +int style TextAppearance_Compat_Notification_Info 0x7f0a0008 +int style TextAppearance_Compat_Notification_Line2 0x7f0a0009 +int style TextAppearance_Compat_Notification_Time 0x7f0a000a +int style TextAppearance_Compat_Notification_Title 0x7f0a000b +int style Theme_Hoops 0x7f0a000c +int style Theme_Hoops_Splash 0x7f0a000d +int style Theme_SplashScreen 0x7f0a000e +int style Theme_SplashScreen_Common 0x7f0a000f +int style Theme_SplashScreen_IconBackground 0x7f0a0010 +int style Widget_Compat_NotificationActionContainer 0x7f0a0011 +int style Widget_Compat_NotificationActionText 0x7f0a0012 +int[] styleable Capability { 0x7f01000f, 0x7f010010 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f010000, 0x7f01000c } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_lStar 2 +int styleable ColorStateListItem_alpha 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable FontFamily { 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f010001, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f010012 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontWeight 1 +int styleable FontFamilyFont_android_fontStyle 2 +int styleable FontFamilyFont_android_ttcIndex 3 +int styleable FontFamilyFont_android_fontVariationSettings 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } +int styleable GradientColor_android_startColor 0 +int styleable GradientColor_android_endColor 1 +int styleable GradientColor_android_type 2 +int styleable GradientColor_android_centerX 3 +int styleable GradientColor_android_centerY 4 +int styleable GradientColor_android_gradientRadius 5 +int styleable GradientColor_android_tileMode 6 +int styleable GradientColor_android_centerColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_endX 10 +int styleable GradientColor_android_endY 11 +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int xml backup_rules 0x7f0c0000 +int xml data_extraction_rules 0x7f0c0001 diff --git a/app/build/intermediates/sdk_dependency_data/release/sdkReleaseDependencyData/sdkDependencyData.pb b/app/build/intermediates/sdk_dependency_data/release/sdkReleaseDependencyData/sdkDependencyData.pb new file mode 100644 index 0000000..3bc826e Binary files /dev/null and b/app/build/intermediates/sdk_dependency_data/release/sdkReleaseDependencyData/sdkDependencyData.pb differ diff --git a/app/build/intermediates/signing_config_versions/debug/writeDebugSigningConfigVersions/signing-config-versions.json b/app/build/intermediates/signing_config_versions/debug/writeDebugSigningConfigVersions/signing-config-versions.json new file mode 100644 index 0000000..51f6368 --- /dev/null +++ b/app/build/intermediates/signing_config_versions/debug/writeDebugSigningConfigVersions/signing-config-versions.json @@ -0,0 +1 @@ +{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} \ No newline at end of file diff --git a/app/build/intermediates/signing_config_versions/debugAndroidTest/writeDebugAndroidTestSigningConfigVersions/signing-config-versions.json b/app/build/intermediates/signing_config_versions/debugAndroidTest/writeDebugAndroidTestSigningConfigVersions/signing-config-versions.json new file mode 100644 index 0000000..51f6368 --- /dev/null +++ b/app/build/intermediates/signing_config_versions/debugAndroidTest/writeDebugAndroidTestSigningConfigVersions/signing-config-versions.json @@ -0,0 +1 @@ +{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} \ No newline at end of file diff --git a/app/build/intermediates/signing_config_versions/release/writeReleaseSigningConfigVersions/signing-config-versions.json b/app/build/intermediates/signing_config_versions/release/writeReleaseSigningConfigVersions/signing-config-versions.json new file mode 100644 index 0000000..51f6368 --- /dev/null +++ b/app/build/intermediates/signing_config_versions/release/writeReleaseSigningConfigVersions/signing-config-versions.json @@ -0,0 +1 @@ +{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} \ No newline at end of file diff --git a/app/build/intermediates/source_set_path_map/debug/mapDebugSourceSetPaths/file-map.txt b/app/build/intermediates/source_set_path_map/debug/mapDebugSourceSetPaths/file-map.txt new file mode 100644 index 0000000..149a9c3 --- /dev/null +++ b/app/build/intermediates/source_set_path_map/debug/mapDebugSourceSetPaths/file-map.txt @@ -0,0 +1,21 @@ +blog.wiwi.hoops.app-core-ktx-1.13.1-0 /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/res +blog.wiwi.hoops.app-startup-runtime-1.1.1-1 /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/res +blog.wiwi.hoops.app-lifecycle-viewmodel-savedstate-2.6.2-2 /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/res +blog.wiwi.hoops.app-lifecycle-viewmodel-2.6.2-3 /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/res +blog.wiwi.hoops.app-activity-1.9.0-4 /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/res +blog.wiwi.hoops.app-lifecycle-livedata-core-2.6.2-5 /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/res +blog.wiwi.hoops.app-core-1.13.1-6 /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res +blog.wiwi.hoops.app-profileinstaller-1.3.1-7 /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/res +blog.wiwi.hoops.app-core-splashscreen-1.0.1-8 /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res +blog.wiwi.hoops.app-core-runtime-2.2.0-9 /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/res +blog.wiwi.hoops.app-lifecycle-runtime-2.6.2-10 /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/res +blog.wiwi.hoops.app-annotation-experimental-1.4.0-11 /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/res +blog.wiwi.hoops.app-savedstate-1.2.1-12 /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/res +blog.wiwi.hoops.app-pngs-13 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/res/pngs/debug +blog.wiwi.hoops.app-resValues-14 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/res/resValues/debug +blog.wiwi.hoops.app-updated_navigation_xml-15 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/updated_navigation_xml/debug +blog.wiwi.hoops.app-packageDebugResources-16 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir +blog.wiwi.hoops.app-packageDebugResources-17 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir +blog.wiwi.hoops.app-debug-18 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debug/mergeDebugResources +blog.wiwi.hoops.app-debug-19 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/debug/res +blog.wiwi.hoops.app-main-20 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res diff --git a/app/build/intermediates/source_set_path_map/debugAndroidTest/mapDebugAndroidTestSourceSetPaths/file-map.txt b/app/build/intermediates/source_set_path_map/debugAndroidTest/mapDebugAndroidTestSourceSetPaths/file-map.txt new file mode 100644 index 0000000..b458934 --- /dev/null +++ b/app/build/intermediates/source_set_path_map/debugAndroidTest/mapDebugAndroidTestSourceSetPaths/file-map.txt @@ -0,0 +1,5 @@ +blog.wiwi.hoops.test.app-androidTest-0 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/res/resValues/androidTest/debug +blog.wiwi.hoops.test.app-updated_navigation_xml-1 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/updated_navigation_xml/debugAndroidTest +blog.wiwi.hoops.test.app-mergeDebugAndroidTestResources-2 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir +blog.wiwi.hoops.test.app-mergeDebugAndroidTestResources-3 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/stripped.dir +blog.wiwi.hoops.test.app-debugAndroidTest-4 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources diff --git a/app/build/intermediates/source_set_path_map/release/mapReleaseSourceSetPaths/file-map.txt b/app/build/intermediates/source_set_path_map/release/mapReleaseSourceSetPaths/file-map.txt new file mode 100644 index 0000000..c652fd3 --- /dev/null +++ b/app/build/intermediates/source_set_path_map/release/mapReleaseSourceSetPaths/file-map.txt @@ -0,0 +1,21 @@ +blog.wiwi.hoops.app-core-ktx-1.13.1-0 /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/res +blog.wiwi.hoops.app-startup-runtime-1.1.1-1 /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/res +blog.wiwi.hoops.app-lifecycle-viewmodel-savedstate-2.6.2-2 /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/res +blog.wiwi.hoops.app-lifecycle-viewmodel-2.6.2-3 /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/res +blog.wiwi.hoops.app-activity-1.9.0-4 /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/res +blog.wiwi.hoops.app-lifecycle-livedata-core-2.6.2-5 /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/res +blog.wiwi.hoops.app-core-1.13.1-6 /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/res +blog.wiwi.hoops.app-profileinstaller-1.3.1-7 /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/res +blog.wiwi.hoops.app-core-splashscreen-1.0.1-8 /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/res +blog.wiwi.hoops.app-core-runtime-2.2.0-9 /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/res +blog.wiwi.hoops.app-lifecycle-runtime-2.6.2-10 /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/res +blog.wiwi.hoops.app-annotation-experimental-1.4.0-11 /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/res +blog.wiwi.hoops.app-savedstate-1.2.1-12 /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/res +blog.wiwi.hoops.app-pngs-13 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/res/pngs/release +blog.wiwi.hoops.app-resValues-14 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/res/resValues/release +blog.wiwi.hoops.app-updated_navigation_xml-15 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/generated/updated_navigation_xml/release +blog.wiwi.hoops.app-packageReleaseResources-16 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/incremental/release/packageReleaseResources/merged.dir +blog.wiwi.hoops.app-packageReleaseResources-17 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/incremental/release/packageReleaseResources/stripped.dir +blog.wiwi.hoops.app-release-18 /home/wiwi/Documents/Hoops-android/hoops-android/app/build/intermediates/merged_res/release/mergeReleaseResources +blog.wiwi.hoops.app-main-19 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/res +blog.wiwi.hoops.app-release-20 /home/wiwi/Documents/Hoops-android/hoops-android/app/src/release/res diff --git a/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt b/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt new file mode 100644 index 0000000..7f891ec --- /dev/null +++ b/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt @@ -0,0 +1,217 @@ +blog.wiwi.hoops:xml/data_extraction_rules = 0x7f0c0001 +blog.wiwi.hoops:xml/backup_rules = 0x7f0c0000 +blog.wiwi.hoops:styleable/GradientColorItem = 0x7f0b0005 +blog.wiwi.hoops:styleable/ColorStateListItem = 0x7f0b0001 +blog.wiwi.hoops:styleable/Capability = 0x7f0b0000 +blog.wiwi.hoops:style/Widget.Compat.NotificationActionText = 0x7f0a0012 +blog.wiwi.hoops:style/Theme.SplashScreen.Common = 0x7f0a000f +blog.wiwi.hoops:style/Theme.SplashScreen = 0x7f0a000e +blog.wiwi.hoops:style/Theme.Hoops = 0x7f0a000c +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Info = 0x7f0a0008 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification = 0x7f0a0007 +blog.wiwi.hoops:style/Base.v27.Theme.SplashScreen = 0x7f0a0005 +blog.wiwi.hoops:id/accessibility_custom_action_8 = 0x7f05001f +blog.wiwi.hoops:id/accessibility_custom_action_14 = 0x7f050007 +blog.wiwi.hoops:style/Base.v21.Theme.SplashScreen.Light = 0x7f0a0004 +blog.wiwi.hoops:style/Widget.Compat.NotificationActionContainer = 0x7f0a0011 +blog.wiwi.hoops:id/icon_group = 0x7f05002e +blog.wiwi.hoops:style/Base.Theme.SplashScreen = 0x7f0a0000 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Title = 0x7f0a000b +blog.wiwi.hoops:string/call_notification_screening_text = 0x7f090008 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Time = 0x7f0a000a +blog.wiwi.hoops:string/call_notification_decline_action = 0x7f090004 +blog.wiwi.hoops:string/androidx_startup = 0x7f090000 +blog.wiwi.hoops:dimen/splashscreen_icon_mask_size_no_background = 0x7f030016 +blog.wiwi.hoops:layout/notification_template_icon_group = 0x7f070006 +blog.wiwi.hoops:layout/notification_template_custom_big = 0x7f070005 +blog.wiwi.hoops:layout/notification_action_tombstone = 0x7f070004 +blog.wiwi.hoops:layout/notification_action = 0x7f070003 +blog.wiwi.hoops:layout/ime_base_split_test_activity = 0x7f070001 +blog.wiwi.hoops:attr/lStar = 0x7f01000c +blog.wiwi.hoops:id/forever = 0x7f05002b +blog.wiwi.hoops:integer/status_bar_notification_info_maxnum = 0x7f060001 +blog.wiwi.hoops:integer/default_icon_animation_duration = 0x7f060000 +blog.wiwi.hoops:id/view_tree_view_model_store_owner = 0x7f05004f +blog.wiwi.hoops:id/accessibility_custom_action_1 = 0x7f050002 +blog.wiwi.hoops:id/time = 0x7f05004a +blog.wiwi.hoops:id/tag_window_insets_animation_callback = 0x7f050047 +blog.wiwi.hoops:attr/fontProviderSystemFontFamily = 0x7f010008 +blog.wiwi.hoops:id/tag_unhandled_key_listeners = 0x7f050046 +blog.wiwi.hoops:id/tag_unhandled_key_event_manager = 0x7f050045 +blog.wiwi.hoops:drawable/notification_bg_low_normal = 0x7f04000d +blog.wiwi.hoops:style/Base.v27.Theme.SplashScreen.Light = 0x7f0a0006 +blog.wiwi.hoops:attr/fontProviderFetchStrategy = 0x7f010004 +blog.wiwi.hoops:id/tag_accessibility_pane_title = 0x7f05003e +blog.wiwi.hoops:id/tag_transition_group = 0x7f050044 +blog.wiwi.hoops:styleable/GradientColor = 0x7f0b0004 +blog.wiwi.hoops:id/text2 = 0x7f050049 +blog.wiwi.hoops:id/tag_state_description = 0x7f050043 +blog.wiwi.hoops:id/tag_screen_reader_focusable = 0x7f050042 +blog.wiwi.hoops:id/tag_on_receive_content_mime_types = 0x7f050041 +blog.wiwi.hoops:id/right_side = 0x7f050039 +blog.wiwi.hoops:id/right_icon = 0x7f050038 +blog.wiwi.hoops:layout/notification_template_part_chronometer = 0x7f070007 +blog.wiwi.hoops:id/notification_main_column_container = 0x7f050036 +blog.wiwi.hoops:id/notification_background = 0x7f050034 +blog.wiwi.hoops:id/normal = 0x7f050033 +blog.wiwi.hoops:id/line3 = 0x7f050032 +blog.wiwi.hoops:layout/splash_screen_view = 0x7f070009 +blog.wiwi.hoops:id/italic = 0x7f050030 +blog.wiwi.hoops:id/info = 0x7f05002f +blog.wiwi.hoops:style/Base.v21.Theme.SplashScreen = 0x7f0a0003 +blog.wiwi.hoops:attr/fontWeight = 0x7f01000b +blog.wiwi.hoops:id/icon = 0x7f05002d +blog.wiwi.hoops:drawable/notification_template_icon_low_bg = 0x7f040014 +blog.wiwi.hoops:id/hide_ime_id = 0x7f05002c +blog.wiwi.hoops:id/chronometer = 0x7f050028 +blog.wiwi.hoops:styleable/FontFamily = 0x7f0b0002 +blog.wiwi.hoops:id/blocking = 0x7f050027 +blog.wiwi.hoops:id/async = 0x7f050026 +blog.wiwi.hoops:mipmap/ic_launcher = 0x7f080000 +blog.wiwi.hoops:dimen/notification_main_column_padding_top = 0x7f03000d +blog.wiwi.hoops:id/action_text = 0x7f050024 +blog.wiwi.hoops:style/Base.Theme.SplashScreen.Light = 0x7f0a0002 +blog.wiwi.hoops:drawable/notification_template_icon_bg = 0x7f040013 +blog.wiwi.hoops:id/tag_accessibility_actions = 0x7f05003b +blog.wiwi.hoops:id/accessibility_custom_action_20 = 0x7f05000e +blog.wiwi.hoops:id/action_image = 0x7f050023 +blog.wiwi.hoops:id/edit_text_id = 0x7f05002a +blog.wiwi.hoops:id/action_container = 0x7f050021 +blog.wiwi.hoops:id/accessibility_custom_action_7 = 0x7f05001e +blog.wiwi.hoops:drawable/compat_splash_screen = 0x7f040000 +blog.wiwi.hoops:id/view_tree_saved_state_registry_owner = 0x7f05004e +blog.wiwi.hoops:id/accessibility_custom_action_4 = 0x7f05001b +blog.wiwi.hoops:id/accessibility_custom_action_31 = 0x7f05001a +blog.wiwi.hoops:id/accessibility_custom_action_27 = 0x7f050015 +blog.wiwi.hoops:style/Theme.Hoops.Splash = 0x7f0a000d +blog.wiwi.hoops:id/accessibility_custom_action_26 = 0x7f050014 +blog.wiwi.hoops:id/accessibility_custom_action_25 = 0x7f050013 +blog.wiwi.hoops:id/accessibility_custom_action_24 = 0x7f050012 +blog.wiwi.hoops:id/accessibility_custom_action_19 = 0x7f05000c +blog.wiwi.hoops:dimen/notification_right_side_padding_top = 0x7f030010 +blog.wiwi.hoops:id/accessibility_custom_action_18 = 0x7f05000b +blog.wiwi.hoops:id/accessibility_custom_action_9 = 0x7f050020 +blog.wiwi.hoops:dimen/compat_control_corner_material = 0x7f030004 +blog.wiwi.hoops:drawable/icon_background = 0x7f040009 +blog.wiwi.hoops:id/accessibility_custom_action_16 = 0x7f050009 +blog.wiwi.hoops:id/report_drawn = 0x7f050037 +blog.wiwi.hoops:dimen/compat_notification_large_icon_max_width = 0x7f030006 +blog.wiwi.hoops:drawable/ic_call_answer_video = 0x7f040004 +blog.wiwi.hoops:id/accessibility_custom_action_13 = 0x7f050006 +blog.wiwi.hoops:string/call_notification_answer_video_action = 0x7f090003 +blog.wiwi.hoops:id/accessibility_custom_action_11 = 0x7f050004 +blog.wiwi.hoops:id/view_tree_lifecycle_owner = 0x7f05004c +blog.wiwi.hoops:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f05004d +blog.wiwi.hoops:dimen/splashscreen_icon_size_no_background = 0x7f03001b +blog.wiwi.hoops:id/tag_on_receive_content_listener = 0x7f050040 +blog.wiwi.hoops:dimen/compat_button_padding_vertical_material = 0x7f030003 +blog.wiwi.hoops:drawable/notification_tile_bg = 0x7f040015 +blog.wiwi.hoops:layout/ime_secondary_split_test_activity = 0x7f070002 +blog.wiwi.hoops:drawable/ic_call_decline_low = 0x7f040007 +blog.wiwi.hoops:drawable/notification_bg = 0x7f04000b +blog.wiwi.hoops:dimen/splashscreen_icon_size = 0x7f03001a +blog.wiwi.hoops:drawable/notification_bg_low = 0x7f04000c +blog.wiwi.hoops:drawable/notify_panel_notification_icon_bg = 0x7f040016 +blog.wiwi.hoops:drawable/notification_bg_low_pressed = 0x7f04000e +blog.wiwi.hoops:id/title = 0x7f05004b +blog.wiwi.hoops:id/accessibility_custom_action_29 = 0x7f050017 +blog.wiwi.hoops:attr/windowSplashScreenIconBackgroundColor = 0x7f010016 +blog.wiwi.hoops:id/accessibility_custom_action_28 = 0x7f050016 +blog.wiwi.hoops:drawable/ic_launcher_foreground = 0x7f040008 +blog.wiwi.hoops:id/accessibility_custom_action_3 = 0x7f050018 +blog.wiwi.hoops:dimen/notification_action_text_size = 0x7f030008 +blog.wiwi.hoops:drawable/notification_action_background = 0x7f04000a +blog.wiwi.hoops:color/notification_icon_bg_color = 0x7f020008 +blog.wiwi.hoops:drawable/ic_call_answer_video_low = 0x7f040005 +blog.wiwi.hoops:id/accessibility_custom_action_23 = 0x7f050011 +blog.wiwi.hoops:dimen/notification_large_icon_height = 0x7f03000b +blog.wiwi.hoops:dimen/splashscreen_icon_mask_stroke_with_background = 0x7f030019 +blog.wiwi.hoops:string/call_notification_answer_action = 0x7f090002 +blog.wiwi.hoops:attr/alpha = 0x7f010000 +blog.wiwi.hoops:id/accessibility_custom_action_2 = 0x7f05000d +blog.wiwi.hoops:drawable/ic_call_answer = 0x7f040002 +blog.wiwi.hoops:layout/custom_dialog = 0x7f070000 +blog.wiwi.hoops:id/accessibility_custom_action_0 = 0x7f050001 +blog.wiwi.hoops:id/line1 = 0x7f050031 +blog.wiwi.hoops:dimen/notification_subtext_size = 0x7f030013 +blog.wiwi.hoops:drawable/compat_splash_screen_no_icon_background = 0x7f040001 +blog.wiwi.hoops:dimen/notification_small_icon_background_padding = 0x7f030011 +blog.wiwi.hoops:id/accessibility_custom_action_15 = 0x7f050008 +blog.wiwi.hoops:dimen/splashscreen_icon_mask_stroke_no_background = 0x7f030018 +blog.wiwi.hoops:mipmap/ic_launcher_round = 0x7f080001 +blog.wiwi.hoops:dimen/splashscreen_icon_mask_size_with_background = 0x7f030017 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Line2 = 0x7f0a0009 +blog.wiwi.hoops:string/call_notification_incoming_text = 0x7f090006 +blog.wiwi.hoops:dimen/notification_top_pad_large_text = 0x7f030015 +blog.wiwi.hoops:id/accessibility_custom_action_6 = 0x7f05001d +blog.wiwi.hoops:attr/ttcIndex = 0x7f010012 +blog.wiwi.hoops:dimen/notification_right_icon_size = 0x7f03000f +blog.wiwi.hoops:dimen/notification_media_narrow_margin = 0x7f03000e +blog.wiwi.hoops:id/accessibility_custom_action_10 = 0x7f050003 +blog.wiwi.hoops:id/accessibility_action_clickable_span = 0x7f050000 +blog.wiwi.hoops:id/accessibility_custom_action_5 = 0x7f05001c +blog.wiwi.hoops:dimen/notification_big_circle_margin = 0x7f030009 +blog.wiwi.hoops:drawable/notification_bg_normal = 0x7f04000f +blog.wiwi.hoops:string/status_bar_notification_info_overflow = 0x7f090009 +blog.wiwi.hoops:string/call_notification_ongoing_text = 0x7f090007 +blog.wiwi.hoops:dimen/notification_content_margin_start = 0x7f03000a +blog.wiwi.hoops:id/accessibility_custom_action_21 = 0x7f05000f +blog.wiwi.hoops:attr/fontStyle = 0x7f010009 +blog.wiwi.hoops:id/tag_accessibility_clickable_spans = 0x7f05003c +blog.wiwi.hoops:dimen/notification_large_icon_width = 0x7f03000c +blog.wiwi.hoops:dimen/notification_top_pad = 0x7f030014 +blog.wiwi.hoops:id/tag_accessibility_heading = 0x7f05003d +blog.wiwi.hoops:color/call_notification_decline_color = 0x7f020004 +blog.wiwi.hoops:attr/nestedScrollViewStyle = 0x7f01000d +blog.wiwi.hoops:attr/fontProviderFetchTimeout = 0x7f010005 +blog.wiwi.hoops:dimen/notification_action_icon_size = 0x7f030007 +blog.wiwi.hoops:drawable/ic_call_decline = 0x7f040006 +blog.wiwi.hoops:id/text = 0x7f050048 +blog.wiwi.hoops:id/tag_on_apply_window_listener = 0x7f05003f +blog.wiwi.hoops:id/dialog_button = 0x7f050029 +blog.wiwi.hoops:drawable/notification_bg_normal_pressed = 0x7f040010 +blog.wiwi.hoops:string/call_notification_hang_up_action = 0x7f090005 +blog.wiwi.hoops:attr/windowSplashScreenAnimationDuration = 0x7f010014 +blog.wiwi.hoops:dimen/compat_button_inset_horizontal_material = 0x7f030000 +blog.wiwi.hoops:color/ink = 0x7f020006 +blog.wiwi.hoops:color/paper = 0x7f020009 +blog.wiwi.hoops:color/call_notification_answer_color = 0x7f020003 +blog.wiwi.hoops:attr/windowSplashScreenAnimatedIcon = 0x7f010013 +blog.wiwi.hoops:color/notification_action_color_filter = 0x7f020007 +blog.wiwi.hoops:dimen/splashscreen_icon_size_with_background = 0x7f03001c +blog.wiwi.hoops:color/ic_launcher_background = 0x7f020005 +blog.wiwi.hoops:string/app_name = 0x7f090001 +blog.wiwi.hoops:attr/splashScreenIconSize = 0x7f010011 +blog.wiwi.hoops:color/ball = 0x7f020002 +blog.wiwi.hoops:id/accessibility_custom_action_30 = 0x7f050019 +blog.wiwi.hoops:attr/windowSplashScreenBackground = 0x7f010015 +blog.wiwi.hoops:id/action_divider = 0x7f050022 +blog.wiwi.hoops:attr/fontProviderAuthority = 0x7f010002 +blog.wiwi.hoops:attr/shortcutMatchRequired = 0x7f010010 +blog.wiwi.hoops:style/Theme.SplashScreen.IconBackground = 0x7f0a0010 +blog.wiwi.hoops:dimen/compat_notification_large_icon_max_height = 0x7f030005 +blog.wiwi.hoops:dimen/notification_small_icon_size_as_large = 0x7f030012 +blog.wiwi.hoops:dimen/compat_button_padding_horizontal_material = 0x7f030002 +blog.wiwi.hoops:id/splashscreen_icon_view = 0x7f05003a +blog.wiwi.hoops:attr/queryPatterns = 0x7f01000f +blog.wiwi.hoops:attr/postSplashScreenTheme = 0x7f01000e +blog.wiwi.hoops:color/androidx_core_secondary_text_default_material_light = 0x7f020001 +blog.wiwi.hoops:style/Base.Theme.SplashScreen.DayNight = 0x7f0a0001 +blog.wiwi.hoops:id/accessibility_custom_action_17 = 0x7f05000a +blog.wiwi.hoops:attr/fontProviderCerts = 0x7f010003 +blog.wiwi.hoops:attr/fontVariationSettings = 0x7f01000a +blog.wiwi.hoops:attr/fontProviderPackage = 0x7f010006 +blog.wiwi.hoops:layout/notification_template_part_time = 0x7f070008 +blog.wiwi.hoops:attr/font = 0x7f010001 +blog.wiwi.hoops:id/actions = 0x7f050025 +blog.wiwi.hoops:drawable/ic_call_answer_low = 0x7f040003 +blog.wiwi.hoops:attr/fontProviderQuery = 0x7f010007 +blog.wiwi.hoops:id/accessibility_custom_action_12 = 0x7f050005 +blog.wiwi.hoops:styleable/FontFamilyFont = 0x7f0b0003 +blog.wiwi.hoops:drawable/splash_icon = 0x7f040017 +blog.wiwi.hoops:dimen/compat_button_inset_vertical_material = 0x7f030001 +blog.wiwi.hoops:drawable/notification_oversize_large_icon_bg = 0x7f040012 +blog.wiwi.hoops:id/notification_main_column = 0x7f050035 +blog.wiwi.hoops:id/accessibility_custom_action_22 = 0x7f050010 +blog.wiwi.hoops:drawable/notification_icon_background = 0x7f040011 +blog.wiwi.hoops:color/androidx_core_ripple_material_light = 0x7f020000 diff --git a/app/build/intermediates/stable_resource_ids_file/debugAndroidTest/processDebugAndroidTestResources/stableIds.txt b/app/build/intermediates/stable_resource_ids_file/debugAndroidTest/processDebugAndroidTestResources/stableIds.txt new file mode 100644 index 0000000..e69de29 diff --git a/app/build/intermediates/stable_resource_ids_file/release/processReleaseResources/stableIds.txt b/app/build/intermediates/stable_resource_ids_file/release/processReleaseResources/stableIds.txt new file mode 100644 index 0000000..7f891ec --- /dev/null +++ b/app/build/intermediates/stable_resource_ids_file/release/processReleaseResources/stableIds.txt @@ -0,0 +1,217 @@ +blog.wiwi.hoops:xml/data_extraction_rules = 0x7f0c0001 +blog.wiwi.hoops:xml/backup_rules = 0x7f0c0000 +blog.wiwi.hoops:styleable/GradientColorItem = 0x7f0b0005 +blog.wiwi.hoops:styleable/ColorStateListItem = 0x7f0b0001 +blog.wiwi.hoops:styleable/Capability = 0x7f0b0000 +blog.wiwi.hoops:style/Widget.Compat.NotificationActionText = 0x7f0a0012 +blog.wiwi.hoops:style/Theme.SplashScreen.Common = 0x7f0a000f +blog.wiwi.hoops:style/Theme.SplashScreen = 0x7f0a000e +blog.wiwi.hoops:style/Theme.Hoops = 0x7f0a000c +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Info = 0x7f0a0008 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification = 0x7f0a0007 +blog.wiwi.hoops:style/Base.v27.Theme.SplashScreen = 0x7f0a0005 +blog.wiwi.hoops:id/accessibility_custom_action_8 = 0x7f05001f +blog.wiwi.hoops:id/accessibility_custom_action_14 = 0x7f050007 +blog.wiwi.hoops:style/Base.v21.Theme.SplashScreen.Light = 0x7f0a0004 +blog.wiwi.hoops:style/Widget.Compat.NotificationActionContainer = 0x7f0a0011 +blog.wiwi.hoops:id/icon_group = 0x7f05002e +blog.wiwi.hoops:style/Base.Theme.SplashScreen = 0x7f0a0000 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Title = 0x7f0a000b +blog.wiwi.hoops:string/call_notification_screening_text = 0x7f090008 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Time = 0x7f0a000a +blog.wiwi.hoops:string/call_notification_decline_action = 0x7f090004 +blog.wiwi.hoops:string/androidx_startup = 0x7f090000 +blog.wiwi.hoops:dimen/splashscreen_icon_mask_size_no_background = 0x7f030016 +blog.wiwi.hoops:layout/notification_template_icon_group = 0x7f070006 +blog.wiwi.hoops:layout/notification_template_custom_big = 0x7f070005 +blog.wiwi.hoops:layout/notification_action_tombstone = 0x7f070004 +blog.wiwi.hoops:layout/notification_action = 0x7f070003 +blog.wiwi.hoops:layout/ime_base_split_test_activity = 0x7f070001 +blog.wiwi.hoops:attr/lStar = 0x7f01000c +blog.wiwi.hoops:id/forever = 0x7f05002b +blog.wiwi.hoops:integer/status_bar_notification_info_maxnum = 0x7f060001 +blog.wiwi.hoops:integer/default_icon_animation_duration = 0x7f060000 +blog.wiwi.hoops:id/view_tree_view_model_store_owner = 0x7f05004f +blog.wiwi.hoops:id/accessibility_custom_action_1 = 0x7f050002 +blog.wiwi.hoops:id/time = 0x7f05004a +blog.wiwi.hoops:id/tag_window_insets_animation_callback = 0x7f050047 +blog.wiwi.hoops:attr/fontProviderSystemFontFamily = 0x7f010008 +blog.wiwi.hoops:id/tag_unhandled_key_listeners = 0x7f050046 +blog.wiwi.hoops:id/tag_unhandled_key_event_manager = 0x7f050045 +blog.wiwi.hoops:drawable/notification_bg_low_normal = 0x7f04000d +blog.wiwi.hoops:style/Base.v27.Theme.SplashScreen.Light = 0x7f0a0006 +blog.wiwi.hoops:attr/fontProviderFetchStrategy = 0x7f010004 +blog.wiwi.hoops:id/tag_accessibility_pane_title = 0x7f05003e +blog.wiwi.hoops:id/tag_transition_group = 0x7f050044 +blog.wiwi.hoops:styleable/GradientColor = 0x7f0b0004 +blog.wiwi.hoops:id/text2 = 0x7f050049 +blog.wiwi.hoops:id/tag_state_description = 0x7f050043 +blog.wiwi.hoops:id/tag_screen_reader_focusable = 0x7f050042 +blog.wiwi.hoops:id/tag_on_receive_content_mime_types = 0x7f050041 +blog.wiwi.hoops:id/right_side = 0x7f050039 +blog.wiwi.hoops:id/right_icon = 0x7f050038 +blog.wiwi.hoops:layout/notification_template_part_chronometer = 0x7f070007 +blog.wiwi.hoops:id/notification_main_column_container = 0x7f050036 +blog.wiwi.hoops:id/notification_background = 0x7f050034 +blog.wiwi.hoops:id/normal = 0x7f050033 +blog.wiwi.hoops:id/line3 = 0x7f050032 +blog.wiwi.hoops:layout/splash_screen_view = 0x7f070009 +blog.wiwi.hoops:id/italic = 0x7f050030 +blog.wiwi.hoops:id/info = 0x7f05002f +blog.wiwi.hoops:style/Base.v21.Theme.SplashScreen = 0x7f0a0003 +blog.wiwi.hoops:attr/fontWeight = 0x7f01000b +blog.wiwi.hoops:id/icon = 0x7f05002d +blog.wiwi.hoops:drawable/notification_template_icon_low_bg = 0x7f040014 +blog.wiwi.hoops:id/hide_ime_id = 0x7f05002c +blog.wiwi.hoops:id/chronometer = 0x7f050028 +blog.wiwi.hoops:styleable/FontFamily = 0x7f0b0002 +blog.wiwi.hoops:id/blocking = 0x7f050027 +blog.wiwi.hoops:id/async = 0x7f050026 +blog.wiwi.hoops:mipmap/ic_launcher = 0x7f080000 +blog.wiwi.hoops:dimen/notification_main_column_padding_top = 0x7f03000d +blog.wiwi.hoops:id/action_text = 0x7f050024 +blog.wiwi.hoops:style/Base.Theme.SplashScreen.Light = 0x7f0a0002 +blog.wiwi.hoops:drawable/notification_template_icon_bg = 0x7f040013 +blog.wiwi.hoops:id/tag_accessibility_actions = 0x7f05003b +blog.wiwi.hoops:id/accessibility_custom_action_20 = 0x7f05000e +blog.wiwi.hoops:id/action_image = 0x7f050023 +blog.wiwi.hoops:id/edit_text_id = 0x7f05002a +blog.wiwi.hoops:id/action_container = 0x7f050021 +blog.wiwi.hoops:id/accessibility_custom_action_7 = 0x7f05001e +blog.wiwi.hoops:drawable/compat_splash_screen = 0x7f040000 +blog.wiwi.hoops:id/view_tree_saved_state_registry_owner = 0x7f05004e +blog.wiwi.hoops:id/accessibility_custom_action_4 = 0x7f05001b +blog.wiwi.hoops:id/accessibility_custom_action_31 = 0x7f05001a +blog.wiwi.hoops:id/accessibility_custom_action_27 = 0x7f050015 +blog.wiwi.hoops:style/Theme.Hoops.Splash = 0x7f0a000d +blog.wiwi.hoops:id/accessibility_custom_action_26 = 0x7f050014 +blog.wiwi.hoops:id/accessibility_custom_action_25 = 0x7f050013 +blog.wiwi.hoops:id/accessibility_custom_action_24 = 0x7f050012 +blog.wiwi.hoops:id/accessibility_custom_action_19 = 0x7f05000c +blog.wiwi.hoops:dimen/notification_right_side_padding_top = 0x7f030010 +blog.wiwi.hoops:id/accessibility_custom_action_18 = 0x7f05000b +blog.wiwi.hoops:id/accessibility_custom_action_9 = 0x7f050020 +blog.wiwi.hoops:dimen/compat_control_corner_material = 0x7f030004 +blog.wiwi.hoops:drawable/icon_background = 0x7f040009 +blog.wiwi.hoops:id/accessibility_custom_action_16 = 0x7f050009 +blog.wiwi.hoops:id/report_drawn = 0x7f050037 +blog.wiwi.hoops:dimen/compat_notification_large_icon_max_width = 0x7f030006 +blog.wiwi.hoops:drawable/ic_call_answer_video = 0x7f040004 +blog.wiwi.hoops:id/accessibility_custom_action_13 = 0x7f050006 +blog.wiwi.hoops:string/call_notification_answer_video_action = 0x7f090003 +blog.wiwi.hoops:id/accessibility_custom_action_11 = 0x7f050004 +blog.wiwi.hoops:id/view_tree_lifecycle_owner = 0x7f05004c +blog.wiwi.hoops:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f05004d +blog.wiwi.hoops:dimen/splashscreen_icon_size_no_background = 0x7f03001b +blog.wiwi.hoops:id/tag_on_receive_content_listener = 0x7f050040 +blog.wiwi.hoops:dimen/compat_button_padding_vertical_material = 0x7f030003 +blog.wiwi.hoops:drawable/notification_tile_bg = 0x7f040015 +blog.wiwi.hoops:layout/ime_secondary_split_test_activity = 0x7f070002 +blog.wiwi.hoops:drawable/ic_call_decline_low = 0x7f040007 +blog.wiwi.hoops:drawable/notification_bg = 0x7f04000b +blog.wiwi.hoops:dimen/splashscreen_icon_size = 0x7f03001a +blog.wiwi.hoops:drawable/notification_bg_low = 0x7f04000c +blog.wiwi.hoops:drawable/notify_panel_notification_icon_bg = 0x7f040016 +blog.wiwi.hoops:drawable/notification_bg_low_pressed = 0x7f04000e +blog.wiwi.hoops:id/title = 0x7f05004b +blog.wiwi.hoops:id/accessibility_custom_action_29 = 0x7f050017 +blog.wiwi.hoops:attr/windowSplashScreenIconBackgroundColor = 0x7f010016 +blog.wiwi.hoops:id/accessibility_custom_action_28 = 0x7f050016 +blog.wiwi.hoops:drawable/ic_launcher_foreground = 0x7f040008 +blog.wiwi.hoops:id/accessibility_custom_action_3 = 0x7f050018 +blog.wiwi.hoops:dimen/notification_action_text_size = 0x7f030008 +blog.wiwi.hoops:drawable/notification_action_background = 0x7f04000a +blog.wiwi.hoops:color/notification_icon_bg_color = 0x7f020008 +blog.wiwi.hoops:drawable/ic_call_answer_video_low = 0x7f040005 +blog.wiwi.hoops:id/accessibility_custom_action_23 = 0x7f050011 +blog.wiwi.hoops:dimen/notification_large_icon_height = 0x7f03000b +blog.wiwi.hoops:dimen/splashscreen_icon_mask_stroke_with_background = 0x7f030019 +blog.wiwi.hoops:string/call_notification_answer_action = 0x7f090002 +blog.wiwi.hoops:attr/alpha = 0x7f010000 +blog.wiwi.hoops:id/accessibility_custom_action_2 = 0x7f05000d +blog.wiwi.hoops:drawable/ic_call_answer = 0x7f040002 +blog.wiwi.hoops:layout/custom_dialog = 0x7f070000 +blog.wiwi.hoops:id/accessibility_custom_action_0 = 0x7f050001 +blog.wiwi.hoops:id/line1 = 0x7f050031 +blog.wiwi.hoops:dimen/notification_subtext_size = 0x7f030013 +blog.wiwi.hoops:drawable/compat_splash_screen_no_icon_background = 0x7f040001 +blog.wiwi.hoops:dimen/notification_small_icon_background_padding = 0x7f030011 +blog.wiwi.hoops:id/accessibility_custom_action_15 = 0x7f050008 +blog.wiwi.hoops:dimen/splashscreen_icon_mask_stroke_no_background = 0x7f030018 +blog.wiwi.hoops:mipmap/ic_launcher_round = 0x7f080001 +blog.wiwi.hoops:dimen/splashscreen_icon_mask_size_with_background = 0x7f030017 +blog.wiwi.hoops:style/TextAppearance.Compat.Notification.Line2 = 0x7f0a0009 +blog.wiwi.hoops:string/call_notification_incoming_text = 0x7f090006 +blog.wiwi.hoops:dimen/notification_top_pad_large_text = 0x7f030015 +blog.wiwi.hoops:id/accessibility_custom_action_6 = 0x7f05001d +blog.wiwi.hoops:attr/ttcIndex = 0x7f010012 +blog.wiwi.hoops:dimen/notification_right_icon_size = 0x7f03000f +blog.wiwi.hoops:dimen/notification_media_narrow_margin = 0x7f03000e +blog.wiwi.hoops:id/accessibility_custom_action_10 = 0x7f050003 +blog.wiwi.hoops:id/accessibility_action_clickable_span = 0x7f050000 +blog.wiwi.hoops:id/accessibility_custom_action_5 = 0x7f05001c +blog.wiwi.hoops:dimen/notification_big_circle_margin = 0x7f030009 +blog.wiwi.hoops:drawable/notification_bg_normal = 0x7f04000f +blog.wiwi.hoops:string/status_bar_notification_info_overflow = 0x7f090009 +blog.wiwi.hoops:string/call_notification_ongoing_text = 0x7f090007 +blog.wiwi.hoops:dimen/notification_content_margin_start = 0x7f03000a +blog.wiwi.hoops:id/accessibility_custom_action_21 = 0x7f05000f +blog.wiwi.hoops:attr/fontStyle = 0x7f010009 +blog.wiwi.hoops:id/tag_accessibility_clickable_spans = 0x7f05003c +blog.wiwi.hoops:dimen/notification_large_icon_width = 0x7f03000c +blog.wiwi.hoops:dimen/notification_top_pad = 0x7f030014 +blog.wiwi.hoops:id/tag_accessibility_heading = 0x7f05003d +blog.wiwi.hoops:color/call_notification_decline_color = 0x7f020004 +blog.wiwi.hoops:attr/nestedScrollViewStyle = 0x7f01000d +blog.wiwi.hoops:attr/fontProviderFetchTimeout = 0x7f010005 +blog.wiwi.hoops:dimen/notification_action_icon_size = 0x7f030007 +blog.wiwi.hoops:drawable/ic_call_decline = 0x7f040006 +blog.wiwi.hoops:id/text = 0x7f050048 +blog.wiwi.hoops:id/tag_on_apply_window_listener = 0x7f05003f +blog.wiwi.hoops:id/dialog_button = 0x7f050029 +blog.wiwi.hoops:drawable/notification_bg_normal_pressed = 0x7f040010 +blog.wiwi.hoops:string/call_notification_hang_up_action = 0x7f090005 +blog.wiwi.hoops:attr/windowSplashScreenAnimationDuration = 0x7f010014 +blog.wiwi.hoops:dimen/compat_button_inset_horizontal_material = 0x7f030000 +blog.wiwi.hoops:color/ink = 0x7f020006 +blog.wiwi.hoops:color/paper = 0x7f020009 +blog.wiwi.hoops:color/call_notification_answer_color = 0x7f020003 +blog.wiwi.hoops:attr/windowSplashScreenAnimatedIcon = 0x7f010013 +blog.wiwi.hoops:color/notification_action_color_filter = 0x7f020007 +blog.wiwi.hoops:dimen/splashscreen_icon_size_with_background = 0x7f03001c +blog.wiwi.hoops:color/ic_launcher_background = 0x7f020005 +blog.wiwi.hoops:string/app_name = 0x7f090001 +blog.wiwi.hoops:attr/splashScreenIconSize = 0x7f010011 +blog.wiwi.hoops:color/ball = 0x7f020002 +blog.wiwi.hoops:id/accessibility_custom_action_30 = 0x7f050019 +blog.wiwi.hoops:attr/windowSplashScreenBackground = 0x7f010015 +blog.wiwi.hoops:id/action_divider = 0x7f050022 +blog.wiwi.hoops:attr/fontProviderAuthority = 0x7f010002 +blog.wiwi.hoops:attr/shortcutMatchRequired = 0x7f010010 +blog.wiwi.hoops:style/Theme.SplashScreen.IconBackground = 0x7f0a0010 +blog.wiwi.hoops:dimen/compat_notification_large_icon_max_height = 0x7f030005 +blog.wiwi.hoops:dimen/notification_small_icon_size_as_large = 0x7f030012 +blog.wiwi.hoops:dimen/compat_button_padding_horizontal_material = 0x7f030002 +blog.wiwi.hoops:id/splashscreen_icon_view = 0x7f05003a +blog.wiwi.hoops:attr/queryPatterns = 0x7f01000f +blog.wiwi.hoops:attr/postSplashScreenTheme = 0x7f01000e +blog.wiwi.hoops:color/androidx_core_secondary_text_default_material_light = 0x7f020001 +blog.wiwi.hoops:style/Base.Theme.SplashScreen.DayNight = 0x7f0a0001 +blog.wiwi.hoops:id/accessibility_custom_action_17 = 0x7f05000a +blog.wiwi.hoops:attr/fontProviderCerts = 0x7f010003 +blog.wiwi.hoops:attr/fontVariationSettings = 0x7f01000a +blog.wiwi.hoops:attr/fontProviderPackage = 0x7f010006 +blog.wiwi.hoops:layout/notification_template_part_time = 0x7f070008 +blog.wiwi.hoops:attr/font = 0x7f010001 +blog.wiwi.hoops:id/actions = 0x7f050025 +blog.wiwi.hoops:drawable/ic_call_answer_low = 0x7f040003 +blog.wiwi.hoops:attr/fontProviderQuery = 0x7f010007 +blog.wiwi.hoops:id/accessibility_custom_action_12 = 0x7f050005 +blog.wiwi.hoops:styleable/FontFamilyFont = 0x7f0b0003 +blog.wiwi.hoops:drawable/splash_icon = 0x7f040017 +blog.wiwi.hoops:dimen/compat_button_inset_vertical_material = 0x7f030001 +blog.wiwi.hoops:drawable/notification_oversize_large_icon_bg = 0x7f040012 +blog.wiwi.hoops:id/notification_main_column = 0x7f050035 +blog.wiwi.hoops:id/accessibility_custom_action_22 = 0x7f050010 +blog.wiwi.hoops:drawable/notification_icon_background = 0x7f040011 +blog.wiwi.hoops:color/androidx_core_ripple_material_light = 0x7f020000 diff --git a/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt b/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt new file mode 100644 index 0000000..84f9656 --- /dev/null +++ b/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt @@ -0,0 +1,218 @@ +blog.wiwi.hoops +attr alpha +attr font +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr lStar +attr nestedScrollViewStyle +attr postSplashScreenTheme +attr queryPatterns +attr shortcutMatchRequired +attr splashScreenIconSize +attr ttcIndex +attr windowSplashScreenAnimatedIcon +attr windowSplashScreenAnimationDuration +attr windowSplashScreenBackground +attr windowSplashScreenIconBackgroundColor +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color ball +color call_notification_answer_color +color call_notification_decline_color +color ic_launcher_background +color ink +color notification_action_color_filter +color notification_icon_bg_color +color paper +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen splashscreen_icon_mask_size_no_background +dimen splashscreen_icon_mask_size_with_background +dimen splashscreen_icon_mask_stroke_no_background +dimen splashscreen_icon_mask_stroke_with_background +dimen splashscreen_icon_size +dimen splashscreen_icon_size_no_background +dimen splashscreen_icon_size_with_background +drawable compat_splash_screen +drawable compat_splash_screen_no_icon_background +drawable ic_call_answer +drawable ic_call_answer_low +drawable ic_call_answer_video +drawable ic_call_answer_video_low +drawable ic_call_decline +drawable ic_call_decline_low +drawable ic_launcher_foreground +drawable icon_background +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_oversize_large_icon_bg +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable splash_icon +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id action_container +id action_divider +id action_image +id action_text +id actions +id async +id blocking +id chronometer +id dialog_button +id edit_text_id +id forever +id hide_ime_id +id icon +id icon_group +id info +id italic +id line1 +id line3 +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id report_drawn +id right_icon +id right_side +id splashscreen_icon_view +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_on_apply_window_listener +id tag_on_receive_content_listener +id tag_on_receive_content_mime_types +id tag_screen_reader_focusable +id tag_state_description +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +id text +id text2 +id time +id title +id view_tree_lifecycle_owner +id view_tree_on_back_pressed_dispatcher_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +integer default_icon_animation_duration +integer status_bar_notification_info_maxnum +layout custom_dialog +layout ime_base_split_test_activity +layout ime_secondary_split_test_activity +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +layout splash_screen_view +mipmap ic_launcher +mipmap ic_launcher_round +string androidx_startup +string app_name +string call_notification_answer_action +string call_notification_answer_video_action +string call_notification_decline_action +string call_notification_hang_up_action +string call_notification_incoming_text +string call_notification_ongoing_text +string call_notification_screening_text +string status_bar_notification_info_overflow +style Base_Theme_SplashScreen +style Base_Theme_SplashScreen_DayNight +style Base_Theme_SplashScreen_Light +style Base_v21_Theme_SplashScreen +style Base_v21_Theme_SplashScreen_Light +style Base_v27_Theme_SplashScreen +style Base_v27_Theme_SplashScreen_Light +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +style Theme_Hoops +style Theme_Hoops_Splash +style Theme_SplashScreen +style Theme_SplashScreen_Common +style Theme_SplashScreen_IconBackground +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +styleable Capability queryPatterns shortcutMatchRequired +styleable ColorStateListItem android_color android_alpha android_lStar alpha lStar +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily +styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex +styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY +styleable GradientColorItem android_color android_offset +xml backup_rules +xml data_extraction_rules diff --git a/app/build/intermediates/symbol_list_with_package_name/release/processReleaseResources/package-aware-r.txt b/app/build/intermediates/symbol_list_with_package_name/release/processReleaseResources/package-aware-r.txt new file mode 100644 index 0000000..84f9656 --- /dev/null +++ b/app/build/intermediates/symbol_list_with_package_name/release/processReleaseResources/package-aware-r.txt @@ -0,0 +1,218 @@ +blog.wiwi.hoops +attr alpha +attr font +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr lStar +attr nestedScrollViewStyle +attr postSplashScreenTheme +attr queryPatterns +attr shortcutMatchRequired +attr splashScreenIconSize +attr ttcIndex +attr windowSplashScreenAnimatedIcon +attr windowSplashScreenAnimationDuration +attr windowSplashScreenBackground +attr windowSplashScreenIconBackgroundColor +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color ball +color call_notification_answer_color +color call_notification_decline_color +color ic_launcher_background +color ink +color notification_action_color_filter +color notification_icon_bg_color +color paper +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen splashscreen_icon_mask_size_no_background +dimen splashscreen_icon_mask_size_with_background +dimen splashscreen_icon_mask_stroke_no_background +dimen splashscreen_icon_mask_stroke_with_background +dimen splashscreen_icon_size +dimen splashscreen_icon_size_no_background +dimen splashscreen_icon_size_with_background +drawable compat_splash_screen +drawable compat_splash_screen_no_icon_background +drawable ic_call_answer +drawable ic_call_answer_low +drawable ic_call_answer_video +drawable ic_call_answer_video_low +drawable ic_call_decline +drawable ic_call_decline_low +drawable ic_launcher_foreground +drawable icon_background +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_oversize_large_icon_bg +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable splash_icon +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id action_container +id action_divider +id action_image +id action_text +id actions +id async +id blocking +id chronometer +id dialog_button +id edit_text_id +id forever +id hide_ime_id +id icon +id icon_group +id info +id italic +id line1 +id line3 +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id report_drawn +id right_icon +id right_side +id splashscreen_icon_view +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_on_apply_window_listener +id tag_on_receive_content_listener +id tag_on_receive_content_mime_types +id tag_screen_reader_focusable +id tag_state_description +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +id text +id text2 +id time +id title +id view_tree_lifecycle_owner +id view_tree_on_back_pressed_dispatcher_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +integer default_icon_animation_duration +integer status_bar_notification_info_maxnum +layout custom_dialog +layout ime_base_split_test_activity +layout ime_secondary_split_test_activity +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +layout splash_screen_view +mipmap ic_launcher +mipmap ic_launcher_round +string androidx_startup +string app_name +string call_notification_answer_action +string call_notification_answer_video_action +string call_notification_decline_action +string call_notification_hang_up_action +string call_notification_incoming_text +string call_notification_ongoing_text +string call_notification_screening_text +string status_bar_notification_info_overflow +style Base_Theme_SplashScreen +style Base_Theme_SplashScreen_DayNight +style Base_Theme_SplashScreen_Light +style Base_v21_Theme_SplashScreen +style Base_v21_Theme_SplashScreen_Light +style Base_v27_Theme_SplashScreen +style Base_v27_Theme_SplashScreen_Light +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +style Theme_Hoops +style Theme_Hoops_Splash +style Theme_SplashScreen +style Theme_SplashScreen_Common +style Theme_SplashScreen_IconBackground +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +styleable Capability queryPatterns shortcutMatchRequired +styleable ColorStateListItem android_color android_alpha android_lStar alpha lStar +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily +styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex +styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY +styleable GradientColorItem android_color android_offset +xml backup_rules +xml data_extraction_rules diff --git a/app/build/intermediates/version_control_info_file/release/extractReleaseVersionControlInfo/version-control-info.textproto b/app/build/intermediates/version_control_info_file/release/extractReleaseVersionControlInfo/version-control-info.textproto new file mode 100644 index 0000000..cd34013 --- /dev/null +++ b/app/build/intermediates/version_control_info_file/release/extractReleaseVersionControlInfo/version-control-info.textproto @@ -0,0 +1 @@ +generate_error_reason: NO_VALID_GIT_FOUND diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000..1a94959 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000..c4a5886 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000..3a23d86 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000..a94ec1f Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream new file mode 100644 index 0000000..f5d1bde Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at new file mode 100644 index 0000000..53b2d29 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i new file mode 100644 index 0000000..f99d54d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000..f5d1bde Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000..56a9f4e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000..f99d54d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000..e6326a5 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000..56a9f4e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000..6bd28fe Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000..5c39e34 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000..ae67705 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000..79ad34c Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000..01bdaa1 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000..c8309aa Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000..142f6ca Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000..1a94959 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000..c4a5886 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000..1e605ae Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000..a94ec1f Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000..4ef55db Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000..8c81f1d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000..4e548ec Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000..a30850f Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000..f5d1bde Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000..51508d6 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000..f99d54d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000..166c057 --- /dev/null +++ b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +1 +0 \ No newline at end of file diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000..1a94959 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000..c4a5886 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000..5875372 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000..a94ec1f Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000..8aad32b Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000..08e7df1 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000..b7da01d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000..56a9f4e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000..14dbe7d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000..6878aa3 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000..0e8c010 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000..1d543c1 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000..bc45695 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000..c00b174 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/app/build/kotlin/compileDebugKotlin/cacheable/last-build.bin new file mode 100644 index 0000000..150cbde Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ diff --git a/app/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/app/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin new file mode 100644 index 0000000..b27cb91 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/app/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/app/build/kotlin/compileDebugKotlin/local-state/build-history.bin new file mode 100644 index 0000000..52ad107 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000..1a94959 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000..c4a5886 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000..97604fd Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000..a94ec1f Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream new file mode 100644 index 0000000..f5d1bde Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at new file mode 100644 index 0000000..53b2d29 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i new file mode 100644 index 0000000..f99d54d Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000..f5d1bde Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000..56a9f4e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000..f99d54d Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000..e6326a5 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000..56a9f4e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000..6bd28fe Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000..df0ecc6 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000..ae67705 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000..79ad34c Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000..01bdaa1 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000..66a1f37 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000..142f6ca Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000..1a94959 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000..c4a5886 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000..1e605ae Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000..a94ec1f Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000..4ef55db Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000..8c81f1d Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000..4e548ec Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000..a30850f Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000..f5d1bde Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000..a930d6b Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000..51508d6 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000..f99d54d Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000..166c057 --- /dev/null +++ b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +1 +0 \ No newline at end of file diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000..bdf584a Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000..1a94959 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000..c4a5886 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000..5875372 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000..a94ec1f Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000..8aad32b Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000..08e7df1 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000..b7da01d Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000..2a17e6e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000..56a9f4e Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000..1b1cb4d Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000..14dbe7d Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000..6878aa3 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000..0e8c010 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000..1d543c1 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000..bc45695 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000..c00b174 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/app/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin b/app/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin new file mode 100644 index 0000000..13f1908 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin differ diff --git a/app/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/app/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin new file mode 100644 index 0000000..b27cb91 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/app/build/kotlin/compileReleaseKotlin/local-state/build-history.bin b/app/build/kotlin/compileReleaseKotlin/local-state/build-history.bin new file mode 100644 index 0000000..8b787c6 Binary files /dev/null and b/app/build/kotlin/compileReleaseKotlin/local-state/build-history.bin differ diff --git a/app/build/kotlinToolingMetadata/kotlin-tooling-metadata.json b/app/build/kotlinToolingMetadata/kotlin-tooling-metadata.json new file mode 100644 index 0000000..c2c8112 --- /dev/null +++ b/app/build/kotlinToolingMetadata/kotlin-tooling-metadata.json @@ -0,0 +1,24 @@ +{ + "schemaVersion": "1.1.0", + "buildSystem": "Gradle", + "buildSystemVersion": "8.13", + "buildPlugin": "org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper", + "buildPluginVersion": "1.9.24", + "projectSettings": { + "isHmppEnabled": true, + "isCompatibilityMetadataVariantEnabled": false, + "isKPMEnabled": false + }, + "projectTargets": [ + { + "target": "org.jetbrains.kotlin.gradle.plugin.mpp.KotlinAndroidTarget", + "platformType": "androidJvm", + "extras": { + "android": { + "sourceCompatibility": "17", + "targetCompatibility": "17" + } + } + } + ] +} \ No newline at end of file diff --git a/app/build/outputs/apk/androidTest/debug/output-metadata.json b/app/build/outputs/apk/androidTest/debug/output-metadata.json new file mode 100644 index 0000000..2800dd4 --- /dev/null +++ b/app/build/outputs/apk/androidTest/debug/output-metadata.json @@ -0,0 +1,21 @@ +{ + "version": 3, + "artifactType": { + "type": "APK", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops.test", + "variantName": "debugAndroidTest", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 0, + "versionName": "", + "outputFile": "app-debug-androidTest.apk" + } + ], + "elementType": "File", + "minSdkVersionForDexing": 24 +} \ No newline at end of file diff --git a/app/build/outputs/apk/debug/output-metadata.json b/app/build/outputs/apk/debug/output-metadata.json new file mode 100644 index 0000000..c3f7314 --- /dev/null +++ b/app/build/outputs/apk/debug/output-metadata.json @@ -0,0 +1,21 @@ +{ + "version": 3, + "artifactType": { + "type": "APK", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "app-debug.apk" + } + ], + "elementType": "File", + "minSdkVersionForDexing": 24 +} \ No newline at end of file diff --git a/app/build/outputs/logs/manifest-merger-debug-report.txt b/app/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000..a8324c0 --- /dev/null +++ b/app/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,203 @@ +-- Merging decision tree log --- +manifest +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +MERGED from [androidx.activity:activity:1.9.0] /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:17:1-30:12 +MERGED from [androidx.savedstate:savedstate:1.2.1] /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.lifecycle:lifecycle-runtime:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/AndroidManifest.xml:2:1-7:12 +MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.core:core-ktx:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/AndroidManifest.xml:2:1-7:12 +MERGED from [androidx.core:core-splashscreen:1.0.1] /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/AndroidManifest.xml:17:1-24:12 +MERGED from [androidx.annotation:annotation-experimental:1.4.0] /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/AndroidManifest.xml:2:1-7:12 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:17:1-27:12 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:17:1-55:12 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:17:1-33:12 +MERGED from [androidx.tracing:tracing:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/d39c81cc499ae647830cf8d228a32fa6/transformed/tracing-1.0.0/AndroidManifest.xml:17:1-24:12 +MERGED from [androidx.interpolator:interpolator:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/a02e2ec5015777e45d5c90693ef2f844/transformed/interpolator-1.0.0/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.arch.core:core-runtime:2.2.0] /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/AndroidManifest.xml:17:1-22:12 + package + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + android:versionName + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + xmlns:tools + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:3:5-51 + android:versionCode + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + xmlns:android + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:11-69 +application +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:7:5-30:19 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:7:5-30:19 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:5-89 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:5-89 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:24:5-25:19 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:24:5-25:19 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:23:5-53:19 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:23:5-53:19 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:25:5-31:19 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:25:5-31:19 + android:extractNativeLibs + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + android:appComponentFactory + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:18-86 + android:supportsRtl + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:14:9-35 + android:label + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:12:9-41 + android:fullBackupContent + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:10:9-54 + android:roundIcon + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:13:9-54 + tools:targetApi + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:18:9-29 + android:icon + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:11:9-43 + android:allowBackup + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:8:9-35 + android:theme + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:17:9-50 + android:dataExtractionRules + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:9:9-65 + android:usesCleartextTraffic + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:16:9-45 + android:hasFragileUserData + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:15:9-43 +activity#blog.wiwi.hoops.MainActivity +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:20:9-29:20 + android:screenOrientation + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:24:13-52 + android:exported + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:22:13-36 + android:configChanges + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:23:13-102 + android:name + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:21:13-41 +intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:25:13-28:29 +action#android.intent.action.MAIN +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:17-69 + android:name + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:25-66 +category#android.intent.category.LAUNCHER +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:17-77 + android:name + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:27-74 +uses-sdk +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml +MERGED from [androidx.activity:activity:1.9.0] /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.activity:activity:1.9.0] /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.savedstate:savedstate:1.2.1] /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.savedstate:savedstate:1.2.1] /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-runtime:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/AndroidManifest.xml:5:5-44 +MERGED from [androidx.lifecycle:lifecycle-runtime:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/AndroidManifest.xml:5:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.core:core-ktx:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/AndroidManifest.xml:5:5-44 +MERGED from [androidx.core:core-ktx:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/AndroidManifest.xml:5:5-44 +MERGED from [androidx.core:core-splashscreen:1.0.1] /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.core:core-splashscreen:1.0.1] /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.annotation:annotation-experimental:1.4.0] /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/AndroidManifest.xml:5:5-44 +MERGED from [androidx.annotation:annotation-experimental:1.4.0] /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/AndroidManifest.xml:5:5-44 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:21:5-44 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:21:5-44 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:21:5-23:41 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:21:5-23:41 +MERGED from [androidx.tracing:tracing:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/d39c81cc499ae647830cf8d228a32fa6/transformed/tracing-1.0.0/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.tracing:tracing:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/d39c81cc499ae647830cf8d228a32fa6/transformed/tracing-1.0.0/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.interpolator:interpolator:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/a02e2ec5015777e45d5c90693ef2f844/transformed/interpolator-1.0.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.interpolator:interpolator:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/a02e2ec5015777e45d5c90693ef2f844/transformed/interpolator-1.0.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.arch.core:core-runtime:2.2.0] /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.arch.core:core-runtime:2.2.0] /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/AndroidManifest.xml:20:5-44 + android:targetSdkVersion + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml +permission#${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:22:5-24:47 + android:protectionLevel + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:24:9-44 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:23:9-81 +permission#blog.wiwi.hoops.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:22:5-24:47 + android:protectionLevel + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:24:9-44 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:23:9-81 +uses-permission#${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:5-97 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:22-94 +uses-permission#blog.wiwi.hoops.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:5-97 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:22-94 +provider#androidx.startup.InitializationProvider +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:24:9-32:20 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:26:9-30:34 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:26:9-30:34 + tools:node + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:28:13-31 + android:authorities + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:26:13-68 + android:exported + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:27:13-37 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:25:13-67 +meta-data#androidx.profileinstaller.ProfileInstallerInitializer +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:29:13-31:52 + android:value + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:31:17-49 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:30:17-85 +receiver#androidx.profileinstaller.ProfileInstallReceiver +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:34:9-52:20 + android:enabled + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:37:13-35 + android:exported + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:38:13-36 + android:permission + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:39:13-57 + android:directBootAware + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:36:13-44 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:35:13-76 +intent-filter#action:name:androidx.profileinstaller.action.INSTALL_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:40:13-42:29 +action#androidx.profileinstaller.action.INSTALL_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:17-91 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:25-88 +intent-filter#action:name:androidx.profileinstaller.action.SKIP_FILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:43:13-45:29 +action#androidx.profileinstaller.action.SKIP_FILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:17-85 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:25-82 +intent-filter#action:name:androidx.profileinstaller.action.SAVE_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:46:13-48:29 +action#androidx.profileinstaller.action.SAVE_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:17-88 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:25-85 +intent-filter#action:name:androidx.profileinstaller.action.BENCHMARK_OPERATION +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:49:13-51:29 +action#androidx.profileinstaller.action.BENCHMARK_OPERATION +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:17-95 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:25-92 diff --git a/app/build/outputs/logs/manifest-merger-release-report.txt b/app/build/outputs/logs/manifest-merger-release-report.txt new file mode 100644 index 0000000..a8324c0 --- /dev/null +++ b/app/build/outputs/logs/manifest-merger-release-report.txt @@ -0,0 +1,203 @@ +-- Merging decision tree log --- +manifest +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:1-32:12 +MERGED from [androidx.activity:activity:1.9.0] /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:17:1-30:12 +MERGED from [androidx.savedstate:savedstate:1.2.1] /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.lifecycle:lifecycle-runtime:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/AndroidManifest.xml:2:1-7:12 +MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.core:core-ktx:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/AndroidManifest.xml:2:1-7:12 +MERGED from [androidx.core:core-splashscreen:1.0.1] /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/AndroidManifest.xml:17:1-24:12 +MERGED from [androidx.annotation:annotation-experimental:1.4.0] /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/AndroidManifest.xml:2:1-7:12 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:17:1-27:12 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:17:1-55:12 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:17:1-33:12 +MERGED from [androidx.tracing:tracing:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/d39c81cc499ae647830cf8d228a32fa6/transformed/tracing-1.0.0/AndroidManifest.xml:17:1-24:12 +MERGED from [androidx.interpolator:interpolator:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/a02e2ec5015777e45d5c90693ef2f844/transformed/interpolator-1.0.0/AndroidManifest.xml:17:1-22:12 +MERGED from [androidx.arch.core:core-runtime:2.2.0] /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/AndroidManifest.xml:17:1-22:12 + package + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + android:versionName + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + xmlns:tools + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:3:5-51 + android:versionCode + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + xmlns:android + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:2:11-69 +application +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:7:5-30:19 +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:7:5-30:19 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:5-89 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:5-89 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:24:5-25:19 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:24:5-25:19 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:23:5-53:19 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:23:5-53:19 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:25:5-31:19 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:25:5-31:19 + android:extractNativeLibs + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + android:appComponentFactory + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:28:18-86 + android:supportsRtl + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:14:9-35 + android:label + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:12:9-41 + android:fullBackupContent + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:10:9-54 + android:roundIcon + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:13:9-54 + tools:targetApi + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:18:9-29 + android:icon + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:11:9-43 + android:allowBackup + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:8:9-35 + android:theme + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:17:9-50 + android:dataExtractionRules + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:9:9-65 + android:usesCleartextTraffic + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:16:9-45 + android:hasFragileUserData + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:15:9-43 +activity#blog.wiwi.hoops.MainActivity +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:20:9-29:20 + android:screenOrientation + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:24:13-52 + android:exported + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:22:13-36 + android:configChanges + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:23:13-102 + android:name + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:21:13-41 +intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:25:13-28:29 +action#android.intent.action.MAIN +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:17-69 + android:name + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:26:25-66 +category#android.intent.category.LAUNCHER +ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:17-77 + android:name + ADDED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml:27:27-74 +uses-sdk +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml +INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml +MERGED from [androidx.activity:activity:1.9.0] /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.activity:activity:1.9.0] /home/wiwi/.gradle/caches/8.13/transforms/44d3b85040a789de5c9b42755513c0b3/transformed/activity-1.9.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.savedstate:savedstate:1.2.1] /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.savedstate:savedstate:1.2.1] /home/wiwi/.gradle/caches/8.13/transforms/fa4650907f53d89501580959f34e3859/transformed/savedstate-1.2.1/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/506ecca13a070c4bff12465d444afcac/transformed/lifecycle-livedata-core-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/3abd4f54ba003575c3a36128d338fc0a/transformed/lifecycle-viewmodel-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-runtime:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/AndroidManifest.xml:5:5-44 +MERGED from [androidx.lifecycle:lifecycle-runtime:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/afee6d632ed8d40c4582b4478f0ed474/transformed/lifecycle-runtime-2.6.2/AndroidManifest.xml:5:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2] /home/wiwi/.gradle/caches/8.13/transforms/25ac73849120beaca3a09b48d5add737/transformed/lifecycle-viewmodel-savedstate-2.6.2/AndroidManifest.xml:20:5-44 +MERGED from [androidx.core:core-ktx:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/AndroidManifest.xml:5:5-44 +MERGED from [androidx.core:core-ktx:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/00e67f677fdf642d7a6aa205de06b3c7/transformed/core-ktx-1.13.1/AndroidManifest.xml:5:5-44 +MERGED from [androidx.core:core-splashscreen:1.0.1] /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.core:core-splashscreen:1.0.1] /home/wiwi/.gradle/caches/8.13/transforms/96f0fd21feb4d5bb2ea97a3a16564f71/transformed/core-splashscreen-1.0.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.annotation:annotation-experimental:1.4.0] /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/AndroidManifest.xml:5:5-44 +MERGED from [androidx.annotation:annotation-experimental:1.4.0] /home/wiwi/.gradle/caches/8.13/transforms/bb97fc642c8e6f666362083727efbbc8/transformed/annotation-experimental-1.4.0/AndroidManifest.xml:5:5-44 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/d745a96c1a751d307cb03cf843893e30/transformed/versionedparcelable-1.1.1/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:21:5-44 +MERGED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:21:5-44 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:21:5-23:41 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:21:5-23:41 +MERGED from [androidx.tracing:tracing:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/d39c81cc499ae647830cf8d228a32fa6/transformed/tracing-1.0.0/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.tracing:tracing:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/d39c81cc499ae647830cf8d228a32fa6/transformed/tracing-1.0.0/AndroidManifest.xml:20:5-22:41 +MERGED from [androidx.interpolator:interpolator:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/a02e2ec5015777e45d5c90693ef2f844/transformed/interpolator-1.0.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.interpolator:interpolator:1.0.0] /home/wiwi/.gradle/caches/8.13/transforms/a02e2ec5015777e45d5c90693ef2f844/transformed/interpolator-1.0.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.arch.core:core-runtime:2.2.0] /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/AndroidManifest.xml:20:5-44 +MERGED from [androidx.arch.core:core-runtime:2.2.0] /home/wiwi/.gradle/caches/8.13/transforms/9e869d3e54ae919cb88f702589e6f055/transformed/core-runtime-2.2.0/AndroidManifest.xml:20:5-44 + android:targetSdkVersion + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /home/wiwi/Documents/Hoops-android/hoops-android/app/src/main/AndroidManifest.xml +permission#${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:22:5-24:47 + android:protectionLevel + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:24:9-44 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:23:9-81 +permission#blog.wiwi.hoops.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:22:5-24:47 + android:protectionLevel + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:24:9-44 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:23:9-81 +uses-permission#${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:5-97 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:22-94 +uses-permission#blog.wiwi.hoops.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION +ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:5-97 + android:name + ADDED from [androidx.core:core:1.13.1] /home/wiwi/.gradle/caches/8.13/transforms/5a77dee4cf2cf87eae9dd49fc41985d9/transformed/core-1.13.1/AndroidManifest.xml:26:22-94 +provider#androidx.startup.InitializationProvider +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:24:9-32:20 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:26:9-30:34 +MERGED from [androidx.startup:startup-runtime:1.1.1] /home/wiwi/.gradle/caches/8.13/transforms/18d95d64bc7bcb96f595f8ed02c5a8f5/transformed/startup-runtime-1.1.1/AndroidManifest.xml:26:9-30:34 + tools:node + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:28:13-31 + android:authorities + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:26:13-68 + android:exported + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:27:13-37 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:25:13-67 +meta-data#androidx.profileinstaller.ProfileInstallerInitializer +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:29:13-31:52 + android:value + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:31:17-49 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:30:17-85 +receiver#androidx.profileinstaller.ProfileInstallReceiver +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:34:9-52:20 + android:enabled + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:37:13-35 + android:exported + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:38:13-36 + android:permission + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:39:13-57 + android:directBootAware + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:36:13-44 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:35:13-76 +intent-filter#action:name:androidx.profileinstaller.action.INSTALL_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:40:13-42:29 +action#androidx.profileinstaller.action.INSTALL_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:17-91 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:41:25-88 +intent-filter#action:name:androidx.profileinstaller.action.SKIP_FILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:43:13-45:29 +action#androidx.profileinstaller.action.SKIP_FILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:17-85 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:44:25-82 +intent-filter#action:name:androidx.profileinstaller.action.SAVE_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:46:13-48:29 +action#androidx.profileinstaller.action.SAVE_PROFILE +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:17-88 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:47:25-85 +intent-filter#action:name:androidx.profileinstaller.action.BENCHMARK_OPERATION +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:49:13-51:29 +action#androidx.profileinstaller.action.BENCHMARK_OPERATION +ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:17-95 + android:name + ADDED from [androidx.profileinstaller:profileinstaller:1.3.1] /home/wiwi/.gradle/caches/8.13/transforms/6934391db2a25169033d1d60745e885f/transformed/profileinstaller-1.3.1/AndroidManifest.xml:50:25-92 diff --git a/app/build/outputs/sdk-dependencies/release/sdkDependencies.txt b/app/build/outputs/sdk-dependencies/release/sdkDependencies.txt new file mode 100644 index 0000000..fedd56e --- /dev/null +++ b/app/build/outputs/sdk-dependencies/release/sdkDependencies.txt @@ -0,0 +1,599 @@ +# List of SDK dependencies of this app, this information is also included in an encrypted form in the APK. +# For more information visit: https://d.android.com/r/tools/dependency-metadata + +library { + maven_library { + groupId: "org.jetbrains.kotlin" + artifactId: "kotlin-stdlib" + version: "1.9.24" + } + digests { + sha256: "\205\213\220&\226\332\234\365\205\253\235\230\377\301\302q\"i\202\203T\337\351\020~7\021\260\204\243dh" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "org.jetbrains" + artifactId: "annotations" + version: "13.0" + } + digests { + sha256: "\254\342\241\r\310\342\325\3754\222^\312\300>I\210\262\300\370Qe\f\224\270\316\364\233\241\275\021\024x" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "org.jetbrains.kotlin" + artifactId: "kotlin-stdlib-jdk8" + version: "1.8.0" + } + digests { + sha256: "\005\266(\004D\033\f\232\031 \266\267\325\317s)\244\342KbXG\2162\261\360F\312\001\220\tF" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "org.jetbrains.kotlin" + artifactId: "kotlin-stdlib-jdk7" + version: "1.8.0" + } + digests { + sha256: "L\210\235\035\230\003\365\362\353l\025\222\246\267\346#i\254v`\311\356\341Z\272\026\376\300Y\0266f" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "org.jetbrains.kotlin" + artifactId: "kotlin-stdlib-common" + version: "1.9.24" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "androidx.core" + artifactId: "core-ktx" + version: "1.13.1" + } + digests { + sha256: "\031\272P\320\224\3076\216\336\033L\317\021\225\316\270>5\227\a6Y?\202>Z\367\026\370\320]p" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.annotation" + artifactId: "annotation" + version: "1.6.0" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.annotation" + artifactId: "annotation-jvm" + version: "1.6.0" + } + digests { + sha256: "`\261\v^\365v\233yW\001r\340\025\270\025\224\005\311/\003K\250\213\223\221\251wX\234\235\353N" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.core" + artifactId: "core" + version: "1.13.1" + } + digests { + sha256: ",\'\336\031\2255gP\005U0fYzK \372\036\352|\"\212\264\357k2\265\3769\312\037Y" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.annotation" + artifactId: "annotation-experimental" + version: "1.4.0" + } + digests { + sha256: "\306\353~g`\021\354e\263$(7=E\r\353\337\304Qy\304\370\263\247R\027O\270|\027\260\212" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.collection" + artifactId: "collection" + version: "1.0.0" + } + digests { + sha256: "\234\215\021{\\+\301 \241\315\376\270W\340[I[\026\303`\023W\003r\247\b\367\202~:\311\371" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.concurrent" + artifactId: "concurrent-futures" + version: "1.1.0" + } + digests { + sha256: "\f\340g\305\024\240\321\004\235\033\353\337p\2364N\323&o\351tBuh)7\315\313\0233N\236" + } + repo_index { + } +} +library { + maven_library { + groupId: "com.google.guava" + artifactId: "listenablefuture" + version: "1.0" + } + digests { + sha256: "\344\255v\a\345\300G|o\211\016\362jI\313\215\033\264\337\373e\v\253E\002\257\356ddN0i" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "androidx.interpolator" + artifactId: "interpolator" + version: "1.0.0" + } + digests { + sha256: "3\03115\246O\342\037\242\303^\354f\210\361\247nQ&\006\300\374\203\334\033h\2367\255\327s*" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.lifecycle" + artifactId: "lifecycle-runtime" + version: "2.6.2" + } + digests { + sha256: "Hg\375Ryt/\272\203\210\202\0310\313*\377\340m\201\245(\024\347\344\036p9.\240\357\210|" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.arch.core" + artifactId: "core-common" + version: "2.2.0" + } + digests { + sha256: "e0\212\006\261\300\016\341\206\313\236\0312\023\203\360C\271\223\201?\025\"\304\177J>3\003\275\272A" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.arch.core" + artifactId: "core-runtime" + version: "2.2.0" + } + digests { + sha256: "\241\276^\f\252+\ab8b\257j\342\033:\260q\201#$Q\204\320\343\r\352\201\265?\231\nG" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.lifecycle" + artifactId: "lifecycle-common" + version: "2.6.2" + } + digests { + sha256: "\363H1\266\307\034\330D\341\323]\033\344\235^yD|Z\270V4e1\261\350go\332st\261" + } + repo_index { + } +} +library { + maven_library { + groupId: "org.jetbrains.kotlinx" + artifactId: "kotlinx-coroutines-android" + version: "1.6.4" + } + digests { + sha256: "?\334\016\355[\304\270>\351b\'tR\n-\262Tp7\016\254\321X\034\254\0367pO\t[\000" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "org.jetbrains.kotlinx" + artifactId: "kotlinx-coroutines-core" + version: "1.6.4" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "org.jetbrains.kotlinx" + artifactId: "kotlinx-coroutines-core-jvm" + version: "1.6.4" + } + digests { + sha256: "\302L\213\262{\263 \304\2518qP\032~^\fa`v8\220{\031z\357gU\023\324\310 \276" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "org.jetbrains.kotlinx" + artifactId: "kotlinx-coroutines-bom" + version: "1.6.4" + } + repo_index { + value: 1 + } +} +library { + maven_library { + groupId: "androidx.lifecycle" + artifactId: "lifecycle-viewmodel" + version: "2.6.2" + } + digests { + sha256: "\344\377C8\231\236\034l\234rG\031\365\324\252}\326\033\366\365E\325%j\'\251\323u\337\237#0" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.lifecycle" + artifactId: "lifecycle-viewmodel-savedstate" + version: "2.6.2" + } + digests { + sha256: "{\307\334\272\261v6\354\ao\022\257\344\320&q&\\8\224W\261\263f\263z\016\214\271\036-\240" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.lifecycle" + artifactId: "lifecycle-livedata-core" + version: "2.6.2" + } + digests { + sha256: "\"Vx\n<\377J\036W\373\263\324BU|\027\3346:\270\257\020[\312\365&\035\216-]\271I" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.savedstate" + artifactId: "savedstate" + version: "1.2.1" + } + digests { + sha256: "!\247\324\274\366\275\271J\327\271(8\001R\223\000\264\373\270\200\214\244\361\221\340\315\316o\330\344pZ" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.profileinstaller" + artifactId: "profileinstaller" + version: "1.3.1" + } + digests { + sha256: "\320\344\002\3541\362@(\241\334~\266\240\243\371\331c\\\024Y9,\32749cC\267=g9H" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.startup" + artifactId: "startup-runtime" + version: "1.1.1" + } + digests { + sha256: "\340\2462\2327\022b\376LE\003r\267\017\332\363;v\236\366\221p\224r7\207\317\316\211k\035\323" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.tracing" + artifactId: "tracing" + version: "1.0.0" + } + digests { + sha256: "\a\270\266\023\226e\270\204\241b\354\317\227\211\034\245\017\177V\203\0223\277%\026\212\340O{V\206\022" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.versionedparcelable" + artifactId: "versionedparcelable" + version: "1.1.1" + } + digests { + sha256: "W\350\3312`\321\215[\220\a\311\356\323\306J\321Y\336\220\310`\236\277\307J4|\275QE5\244" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.activity" + artifactId: "activity" + version: "1.9.0" + } + digests { + sha256: "F\374\216\204-\232N\003\r\375\236\020\214;\300\203\020\371\"\275t!\362\237g\334\252\244\255\2547d" + } + repo_index { + } +} +library { + maven_library { + groupId: "androidx.core" + artifactId: "core-splashscreen" + version: "1.0.1" + } + digests { + sha256: "%\310\023\256w\225\311\235\322\006(RpC\370\320B^\262\350&\346\304,\267z\313\266\300\035\336h" + } + repo_index { + } +} +library_dependencies { + library_dep_index: 1 + library_dep_index: 2 + library_dep_index: 3 + library_dep_index: 4 +} +library_dependencies { + library_index: 2 + library_dep_index: 0 + library_dep_index: 3 +} +library_dependencies { + library_index: 3 + library_dep_index: 0 +} +library_dependencies { + library_index: 4 + library_dep_index: 0 +} +library_dependencies { + library_index: 5 + library_dep_index: 6 + library_dep_index: 8 + library_dep_index: 0 + library_dep_index: 8 +} +library_dependencies { + library_index: 6 + library_dep_index: 7 +} +library_dependencies { + library_index: 7 + library_dep_index: 0 +} +library_dependencies { + library_index: 8 + library_dep_index: 6 + library_dep_index: 9 + library_dep_index: 10 + library_dep_index: 11 + library_dep_index: 13 + library_dep_index: 14 + library_dep_index: 29 + library_dep_index: 0 + library_dep_index: 5 +} +library_dependencies { + library_index: 9 + library_dep_index: 0 +} +library_dependencies { + library_index: 10 + library_dep_index: 6 +} +library_dependencies { + library_index: 11 + library_dep_index: 6 + library_dep_index: 12 +} +library_dependencies { + library_index: 13 + library_dep_index: 6 +} +library_dependencies { + library_index: 14 + library_dep_index: 6 + library_dep_index: 15 + library_dep_index: 16 + library_dep_index: 17 + library_dep_index: 26 + library_dep_index: 0 + library_dep_index: 17 + library_dep_index: 22 + library_dep_index: 23 + library_dep_index: 24 +} +library_dependencies { + library_index: 15 + library_dep_index: 6 +} +library_dependencies { + library_index: 16 + library_dep_index: 6 + library_dep_index: 15 +} +library_dependencies { + library_index: 17 + library_dep_index: 6 + library_dep_index: 0 + library_dep_index: 18 + library_dep_index: 14 + library_dep_index: 22 + library_dep_index: 23 + library_dep_index: 24 +} +library_dependencies { + library_index: 18 + library_dep_index: 19 + library_dep_index: 21 + library_dep_index: 2 +} +library_dependencies { + library_index: 19 + library_dep_index: 20 +} +library_dependencies { + library_index: 20 + library_dep_index: 21 + library_dep_index: 2 + library_dep_index: 4 +} +library_dependencies { + library_index: 21 + library_dep_index: 18 + library_dep_index: 19 + library_dep_index: 20 +} +library_dependencies { + library_index: 22 + library_dep_index: 6 + library_dep_index: 0 + library_dep_index: 17 + library_dep_index: 14 + library_dep_index: 23 + library_dep_index: 24 +} +library_dependencies { + library_index: 23 + library_dep_index: 6 + library_dep_index: 5 + library_dep_index: 24 + library_dep_index: 22 + library_dep_index: 25 + library_dep_index: 0 + library_dep_index: 18 + library_dep_index: 17 + library_dep_index: 24 + library_dep_index: 14 + library_dep_index: 22 +} +library_dependencies { + library_index: 24 + library_dep_index: 15 + library_dep_index: 16 + library_dep_index: 17 + library_dep_index: 0 + library_dep_index: 17 + library_dep_index: 14 + library_dep_index: 22 + library_dep_index: 23 +} +library_dependencies { + library_index: 25 + library_dep_index: 6 + library_dep_index: 15 + library_dep_index: 17 + library_dep_index: 0 +} +library_dependencies { + library_index: 26 + library_dep_index: 6 + library_dep_index: 11 + library_dep_index: 27 + library_dep_index: 12 +} +library_dependencies { + library_index: 27 + library_dep_index: 6 + library_dep_index: 28 +} +library_dependencies { + library_index: 28 + library_dep_index: 6 +} +library_dependencies { + library_index: 29 + library_dep_index: 6 + library_dep_index: 10 +} +library_dependencies { + library_index: 30 + library_dep_index: 6 + library_dep_index: 10 + library_dep_index: 8 + library_dep_index: 14 + library_dep_index: 22 + library_dep_index: 23 + library_dep_index: 26 + library_dep_index: 25 + library_dep_index: 28 + library_dep_index: 0 +} +library_dependencies { + library_index: 31 + library_dep_index: 6 + library_dep_index: 0 +} +module_dependencies { + module_name: "base" + dependency_index: 0 + dependency_index: 5 + dependency_index: 30 + dependency_index: 31 +} +repositories { + maven_repo { + url: "https://dl.google.com/dl/android/maven2/" + } +} +repositories { + maven_repo { + url: "https://repo.maven.apache.org/maven2/" + } +} diff --git a/app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module b/app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module new file mode 100644 index 0000000..1e9f2ca Binary files /dev/null and b/app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module differ diff --git a/app/build/tmp/kotlin-classes/debug/blog/wiwi/hoops/MainActivity.class b/app/build/tmp/kotlin-classes/debug/blog/wiwi/hoops/MainActivity.class new file mode 100644 index 0000000..9428ef2 Binary files /dev/null and b/app/build/tmp/kotlin-classes/debug/blog/wiwi/hoops/MainActivity.class differ diff --git a/app/build/tmp/kotlin-classes/release/META-INF/app_release.kotlin_module b/app/build/tmp/kotlin-classes/release/META-INF/app_release.kotlin_module new file mode 100644 index 0000000..1e9f2ca Binary files /dev/null and b/app/build/tmp/kotlin-classes/release/META-INF/app_release.kotlin_module differ diff --git a/app/build/tmp/kotlin-classes/release/blog/wiwi/hoops/MainActivity.class b/app/build/tmp/kotlin-classes/release/blog/wiwi/hoops/MainActivity.class new file mode 100644 index 0000000..6374ebf Binary files /dev/null and b/app/build/tmp/kotlin-classes/release/blog/wiwi/hoops/MainActivity.class differ diff --git a/app/release/baselineProfiles/0/app-release.dm b/app/release/baselineProfiles/0/app-release.dm new file mode 100644 index 0000000..d35bdfa Binary files /dev/null and b/app/release/baselineProfiles/0/app-release.dm differ diff --git a/app/release/baselineProfiles/1/app-release.dm b/app/release/baselineProfiles/1/app-release.dm new file mode 100644 index 0000000..dcc1a9f Binary files /dev/null and b/app/release/baselineProfiles/1/app-release.dm differ diff --git a/app/release/output-metadata.json b/app/release/output-metadata.json new file mode 100644 index 0000000..166c1de --- /dev/null +++ b/app/release/output-metadata.json @@ -0,0 +1,37 @@ +{ + "version": 3, + "artifactType": { + "type": "APK", + "kind": "Directory" + }, + "applicationId": "blog.wiwi.hoops", + "variantName": "release", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0.0", + "outputFile": "app-release.apk" + } + ], + "elementType": "File", + "baselineProfiles": [ + { + "minApi": 28, + "maxApi": 30, + "baselineProfiles": [ + "baselineProfiles/1/app-release.dm" + ] + }, + { + "minApi": 31, + "maxApi": 2147483647, + "baselineProfiles": [ + "baselineProfiles/0/app-release.dm" + ] + } + ], + "minSdkVersionForDexing": 24 +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..0963d31 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + diff --git a/app/src/main/assets/index.html b/app/src/main/assets/index.html new file mode 100644 index 0000000..0d6783a --- /dev/null +++ b/app/src/main/assets/index.html @@ -0,0 +1,881 @@ + + + + + +Hoops + + + +
+
+ +
by Wiwi Kuan, https://wiwi.blog
+
+
+ + + + diff --git a/app/src/main/java/blog/wiwi/hoops/MainActivity.kt b/app/src/main/java/blog/wiwi/hoops/MainActivity.kt new file mode 100644 index 0000000..f6e6461 --- /dev/null +++ b/app/src/main/java/blog/wiwi/hoops/MainActivity.kt @@ -0,0 +1,99 @@ +package blog.wiwi.hoops + +import android.annotation.SuppressLint +import android.os.Build +import android.os.Bundle +import android.view.View +import android.view.WindowManager +import android.webkit.WebSettings +import android.webkit.WebView +import android.webkit.WebViewClient +import androidx.activity.ComponentActivity +import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen +import androidx.core.view.WindowCompat +import androidx.core.view.WindowInsetsCompat +import androidx.core.view.WindowInsetsControllerCompat + +class MainActivity : ComponentActivity() { + + private lateinit var webView: WebView + + @SuppressLint("SetJavaScriptEnabled") + override fun onCreate(savedInstanceState: Bundle?) { + // 必須在 super.onCreate 之前呼叫 + // 在 Android 12+ 接管系統 splash;舊版會用 backport 模擬同樣行為 + installSplashScreen() + + super.onCreate(savedInstanceState) + + // 沉浸式全螢幕:把狀態列和導航列隱藏,內容填滿整個螢幕 + WindowCompat.setDecorFitsSystemWindows(window, false) + WindowInsetsControllerCompat(window, window.decorView).apply { + hide(WindowInsetsCompat.Type.systemBars()) + systemBarsBehavior = WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE + } + + // 玩遊戲時不要讓螢幕睡著 + window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON) + + // 處理瀏海(劉海螢幕):讓內容延伸到瀏海下方 + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) { + window.attributes = window.attributes.apply { + layoutInDisplayCutoutMode = + WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES + } + } + + webView = WebView(this).apply { + // 禁用長按選單、禁用文字選取 + isLongClickable = false + setOnLongClickListener { true } + isHapticFeedbackEnabled = false + + // 不要捲動條、不要過捲動效果 + isVerticalScrollBarEnabled = false + isHorizontalScrollBarEnabled = false + overScrollMode = View.OVER_SCROLL_NEVER + + settings.apply { + javaScriptEnabled = true + domStorageEnabled = true + // 媒體(音訊)不需要使用者手勢就能播放 + mediaPlaybackRequiresUserGesture = false + // 只用 app 內的本地檔案,不允許讀取外部檔案系統 + allowFileAccess = false + allowContentAccess = false + cacheMode = WebSettings.LOAD_NO_CACHE + // 縮放:完全關閉 + setSupportZoom(false) + builtInZoomControls = false + displayZoomControls = false + // 雜七雜八的關閉 + javaScriptCanOpenWindowsAutomatically = false + setSupportMultipleWindows(false) + // 字型大小不要被系統字級設定影響(避免 UI 跑掉) + textZoom = 100 + } + + webViewClient = WebViewClient() + } + + setContentView(webView) + webView.loadUrl("file:///android_asset/index.html") + } + + override fun onPause() { + super.onPause() + webView.onPause() + } + + override fun onResume() { + super.onResume() + webView.onResume() + } + + override fun onDestroy() { + webView.destroy() + super.onDestroy() + } +} diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..6c2a347 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,16 @@ + + + + + diff --git a/app/src/main/res/drawable/splash_icon.xml b/app/src/main/res/drawable/splash_icon.xml new file mode 100644 index 0000000..ac217ad --- /dev/null +++ b/app/src/main/res/drawable/splash_icon.xml @@ -0,0 +1,16 @@ + + + + + diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..5c84730 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..5c84730 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..ae7d2c1 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..c1b3fca Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..b80eb04 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..1ae6217 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..a45e98e Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..ff5ff64 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..ae420f0 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..c95501b Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..af188ae Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..28810a6 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..c3abe0b --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,6 @@ + + + #FAFAF7 + #1A1A1A + #C2410C + diff --git a/app/src/main/res/values/ic_launcher_background.xml b/app/src/main/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c10479f --- /dev/null +++ b/app/src/main/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FAFAF7 + diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..91e491b --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,4 @@ + + + Hoops + diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..f9e48ca --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,24 @@ + + + + + + + + diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml new file mode 100644 index 0000000..adba704 --- /dev/null +++ b/app/src/main/res/xml/backup_rules.xml @@ -0,0 +1,4 @@ + + + + diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml new file mode 100644 index 0000000..7f39a10 --- /dev/null +++ b/app/src/main/res/xml/data_extraction_rules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..8d35e26 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,5 @@ +// 頂層 build 檔 +plugins { + id("com.android.application") version "8.13.2" apply false + id("org.jetbrains.kotlin.android") version "1.9.24" apply false +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..f0a2e55 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,4 @@ +org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 +android.useAndroidX=true +kotlin.code.style=official +android.nonTransitiveRClass=true diff --git a/gradle/gradle-daemon-jvm.properties b/gradle/gradle-daemon-jvm.properties new file mode 100644 index 0000000..5c34300 --- /dev/null +++ b/gradle/gradle-daemon-jvm.properties @@ -0,0 +1,13 @@ +#This file is generated by updateDaemonJvm +toolchainUrl.FREE_BSD.AARCH64=https\://api.foojay.io/disco/v3.0/ids/56a19bc915b9ba2eb62ba7554c61b919/redirect +toolchainUrl.FREE_BSD.X86_64=https\://api.foojay.io/disco/v3.0/ids/398ffe3949748bfb1d5636f023d228fd/redirect +toolchainUrl.LINUX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/56a19bc915b9ba2eb62ba7554c61b919/redirect +toolchainUrl.LINUX.X86_64=https\://api.foojay.io/disco/v3.0/ids/398ffe3949748bfb1d5636f023d228fd/redirect +toolchainUrl.MAC_OS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/e99bae143b75f9a10ead10248f02055e/redirect +toolchainUrl.MAC_OS.X86_64=https\://api.foojay.io/disco/v3.0/ids/04e088f8677de3b384108493cc9481d0/redirect +toolchainUrl.UNIX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/56a19bc915b9ba2eb62ba7554c61b919/redirect +toolchainUrl.UNIX.X86_64=https\://api.foojay.io/disco/v3.0/ids/398ffe3949748bfb1d5636f023d228fd/redirect +toolchainUrl.WINDOWS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/e55dccbfe27cb97945148c61a39c89c5/redirect +toolchainUrl.WINDOWS.X86_64=https\://api.foojay.io/disco/v3.0/ids/dbd05c4936d573642f94cd149e1356c8/redirect +toolchainVendor=JETBRAINS +toolchainVersion=21 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..37f853b --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..907eb65 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,26 @@ +pluginManagement { + repositories { + google { + content { + includeGroupByRegex("com\\.android.*") + includeGroupByRegex("com\\.google.*") + includeGroupByRegex("androidx.*") + } + } + mavenCentral() + gradlePluginPortal() + } +} +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0" +} +dependencyResolutionManagement { + repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) + repositories { + google() + mavenCentral() + } +} + +rootProject.name = "Hoops" +include(":app")