diff --git a/JetFit/LICENSES.md b/JetFit/LICENSES.md
new file mode 100644
index 000000000..c44276fee
--- /dev/null
+++ b/JetFit/LICENSES.md
@@ -0,0 +1,24 @@
+# Open source licenses and copyright notices
+
+## [Coil](https://coil-kt.github.io/coil/#license)
+
+Copyright 2022 Coil Contributors
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+https://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+## [Big Buck Bunny Video](https://peach.blender.org/about/)
+
+This work is licensed under
+a [Creative Commons Attribution 2.5](https://creativecommons.org/licenses/by/2.5/legalcode) license.
+
+(c) copyright 2008, Blender Foundation / www.bigbuckbunny.org
diff --git a/JetFit/README.md b/JetFit/README.md
new file mode 100644
index 000000000..8db3a5815
--- /dev/null
+++ b/JetFit/README.md
@@ -0,0 +1,9 @@
+Jetpack Compose for TVSamples
+
+This repository contains a set of individual Android Studio projects to help you learn about Compose in Android TV. Each sample demonstrates different use cases, complexity levels and APIs.
+
+For more information, please read the documentation
+
+💻 Requirements
+
+To try out these sample apps, you need to use Android Studio. You can clone this repository or import the project from Android Studio following the steps here.
diff --git a/JetFit/app/.gitignore b/JetFit/app/.gitignore
new file mode 100644
index 000000000..42afabfd2
--- /dev/null
+++ b/JetFit/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/JetFit/app/build.gradle.kts b/JetFit/app/build.gradle.kts
new file mode 100644
index 000000000..a0484ce4b
--- /dev/null
+++ b/JetFit/app/build.gradle.kts
@@ -0,0 +1,117 @@
+import org.jetbrains.kotlin.gradle.model.Kapt
+
+@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
+plugins {
+ alias(libs.plugins.androidApplication)
+ alias(libs.plugins.kotlinAndroid)
+ alias(libs.plugins.kotlin.serialization)
+ alias(libs.plugins.hilt)
+ alias(libs.plugins.ksp)
+}
+
+android {
+ namespace = "com.google.jetfit"
+ compileSdk = 34
+
+ defaultConfig {
+ applicationId = "com.google.jetfit"
+ minSdk = 24
+ targetSdk = 34
+ versionCode = 1
+ versionName = "1.0"
+ vectorDrawables {
+ useSupportLibrary = true
+ }
+
+ }
+
+ buildTypes {
+ release {
+ isMinifyEnabled = false
+ proguardFiles(
+ getDefaultProguardFile("proguard-android-optimize.txt"),
+ "proguard-rules.pro"
+ )
+ }
+ create("benchmark") {
+ initWith(buildTypes.getByName("release"))
+ signingConfig = signingConfigs.getByName("debug")
+ matchingFallbacks += listOf("release")
+ proguardFiles(
+ getDefaultProguardFile("proguard-android-optimize.txt"),
+ "proguard-benchmark-rules.pro"
+ )
+ isDebuggable = false
+ }
+
+ }
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+ }
+ kotlinOptions {
+ jvmTarget = "1.8"
+ }
+ buildFeatures {
+ compose = true
+ buildConfig = true
+ }
+ composeOptions {
+ kotlinCompilerExtensionVersion = "1.5.1"
+ }
+ packaging {
+ pickFirst ("META-INF/gradle/incremental.annotation.processors")
+ resources {
+ excludes += "/META-INF/{AL2.0,LGPL2.1}"
+ }
+ }
+}
+
+dependencies {
+ implementation(libs.core.ktx)
+ implementation(libs.appcompat)
+ implementation(platform(libs.compose.bom))
+ implementation(libs.ui.tooling.preview)
+ implementation(libs.tv.foundation)
+ implementation(libs.tv.material)
+ implementation(libs.lifecycle.runtime.ktx)
+ implementation(libs.activity.compose)
+ implementation(libs.coil.compose)
+ androidTestImplementation(platform(libs.compose.bom))
+ androidTestImplementation(libs.ui.test.junit4)
+ debugImplementation(libs.ui.tooling)
+ debugImplementation(libs.ui.test.manifest)
+
+ // SplashScreen
+ implementation(libs.androidx.core.splashscreen)
+
+ // Hilt
+ implementation(libs.hilt.android)
+ implementation(libs.androidx.hilt.navigation.compose)
+ ksp(libs.hilt.compiler)
+
+ // ViewModel in Compose
+ implementation(libs.androidx.lifecycle.viewmodel.compose)
+
+ //lifecycle
+ implementation(libs.androidx.lifecycle.runtime.compose)
+
+ // Compose Navigation
+ implementation(libs.androidx.navigation.compose)
+
+ // Coil
+ implementation(libs.coil.compose)
+
+ // JSON parser
+ implementation(libs.kotlinx.serialization)
+
+ // Media3
+ implementation(libs.androidx.media3.exoplayer)
+ implementation(libs.androidx.media3.ui)
+
+ implementation(libs.constraint.layout)
+
+ // Baseline profile installer
+ implementation(libs.androidx.profileinstaller)
+
+}
\ No newline at end of file
diff --git a/JetFit/app/proguard-benchmark-rules.pro b/JetFit/app/proguard-benchmark-rules.pro
new file mode 100644
index 000000000..4decf8997
--- /dev/null
+++ b/JetFit/app/proguard-benchmark-rules.pro
@@ -0,0 +1,25 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.kts.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
+
+# When generating the baseline profile we want the proper names of
+# the methods and classes
+-dontobfuscate
\ No newline at end of file
diff --git a/JetFit/app/proguard-rules.pro b/JetFit/app/proguard-rules.pro
new file mode 100644
index 000000000..481bb4348
--- /dev/null
+++ b/JetFit/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/JetFit/app/src/main/AndroidManifest.xml b/JetFit/app/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..09d5108f4
--- /dev/null
+++ b/JetFit/app/src/main/AndroidManifest.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/JetFit/app/src/main/assets/FavoritesWorkouts.json b/JetFit/app/src/main/assets/FavoritesWorkouts.json
new file mode 100644
index 000000000..aec2f35b8
--- /dev/null
+++ b/JetFit/app/src/main/assets/FavoritesWorkouts.json
@@ -0,0 +1,162 @@
+[
+ {
+ "id": "01",
+ "name": "Morning Energizer",
+ "image": "",
+ "duration": "30 Min",
+ "intensity": 3,
+ "description": "Start your day with an invigorating morning workout to boost your energy levels."
+ },
+ {
+ "id": "02",
+ "name": "Afternoon Power Session",
+ "image": "",
+ "duration": "45 Min",
+ "intensity": 4,
+ "description": "Power through your afternoon with this intense workout session to enhance your strength."
+ },
+ {
+ "id": "03",
+ "name": "Evening Relaxation Flow",
+ "image": "",
+ "duration": "60 Min",
+ "intensity": 2,
+ "description": "Unwind and relax in the evening with a calming workout flow to destress your body and mind."
+ },
+ {
+ "id": "04",
+ "name": "Full Body Challenge",
+ "image": "",
+ "duration": "40 Min",
+ "intensity": 5,
+ "description": "Take on the challenge of a full-body workout to push your limits and build overall strength."
+ },
+ {
+ "id": "05",
+ "name": "Core Strengthening Circuit",
+ "image": "",
+ "duration": "35 Min",
+ "intensity": 4,
+ "description": "Focus on strengthening your core with this circuit-style workout to improve stability and balance."
+ },
+ {
+ "id": "06",
+ "name": "Cardio Blast",
+ "image": "",
+ "duration": "25 Min",
+ "intensity": 4,
+ "description": "Get your heart pumping with a high-intensity cardio workout for improved cardiovascular health."
+ },
+ {
+ "id": "07",
+ "name": "Leg Day Challenge",
+ "image": "",
+ "duration": "50 Min",
+ "intensity": 4,
+ "description": "Tackle this intense leg day workout to strengthen and tone your lower body muscles."
+ },
+ {
+ "id": "08",
+ "name": "Yoga Bliss",
+ "image": "",
+ "duration": "55 Min",
+ "intensity": 2,
+ "description": "Experience tranquility and flexibility with a relaxing yoga session to calm both body and mind."
+ },
+ {
+ "id": "09",
+ "name": "HIIT Fusion",
+ "image": "",
+ "duration": "40 Min",
+ "intensity": 5,
+ "description": "Combine high-intensity interval training with various exercises for a powerful and efficient workout."
+ },
+ {
+ "id": "10",
+ "name": "Strength Sculpt",
+ "image": "",
+ "duration": "45 Min",
+ "intensity": 3,
+ "description": "Sculpt and tone your muscles with this strength-focused workout for a well-defined physique."
+ },
+ {
+ "id": "11",
+ "name": "Pilates Harmony",
+ "image": "",
+ "duration": "35 Min",
+ "intensity": 2,
+ "description": "Improve flexibility, core strength, and balance with a harmonious Pilates session."
+ },
+ {
+ "id": "12",
+ "name": "Circuit Fusion",
+ "image": "",
+ "duration": "50 Min",
+ "intensity": 4,
+ "description": "Engage in a dynamic circuit workout that targets various muscle groups for overall fitness."
+ },
+ {
+ "id": "13",
+ "name": "Meditative Stretch",
+ "image": "",
+ "duration": "30 Min",
+ "intensity": 1,
+ "description": "Combine gentle stretching with mindful meditation for a soothing and rejuvenating experience."
+ },
+ {
+ "id": "14",
+ "name": "Tabata Burn",
+ "image": "",
+ "duration": "20 Min",
+ "intensity": 5,
+ "description": "Maximize calorie burn with this quick and intense Tabata workout to elevate your fitness levels."
+ },
+ {
+ "id": "15",
+ "name": "Agility Challenge",
+ "image": "",
+ "duration": "40 Min",
+ "intensity": 4,
+ "description": "Enhance your agility and coordination with a challenging workout that incorporates dynamic movements."
+ },
+ {
+ "id": "16",
+ "name": "Mindful Movement",
+ "image": "",
+ "duration": "45 Min",
+ "intensity": 2,
+ "description": "Engage in mindful movements that promote awareness, flexibility, and relaxation."
+ },
+ {
+ "id": "17",
+ "name": "Swim Fit",
+ "image": "",
+ "duration": "60 Min",
+ "intensity": 3,
+ "description": "Dive into a full-body workout with swimming exercises to improve endurance and strength."
+ },
+ {
+ "id": "18",
+ "name": "Dynamic Stretching",
+ "image": "",
+ "duration": "25 Min",
+ "intensity": 2,
+ "description": "Increase flexibility and prevent injuries with a dynamic stretching routine before or after your workout."
+ },
+ {
+ "id": "19",
+ "name": "Functional Fitness",
+ "image": "",
+ "duration": "55 Min",
+ "intensity": 4,
+ "description": "Improve everyday movements and enhance overall fitness with a focus on functional exercises."
+ },
+ {
+ "id": "20",
+ "name": "Zumba Party",
+ "image": "",
+ "duration": "40 Min",
+ "intensity": 3,
+ "description": "Join the Zumba party for a fun and energetic dance workout that boosts your mood and burns calories."
+ }
+]
diff --git a/JetFit/app/src/main/baseline-prof.txt b/JetFit/app/src/main/baseline-prof.txt
new file mode 100644
index 000000000..7962cb14d
--- /dev/null
+++ b/JetFit/app/src/main/baseline-prof.txt
@@ -0,0 +1,26155 @@
+Landroidx/activity/Cancellable;
+Landroidx/activity/ComponentActivity;
+HSPLandroidx/activity/ComponentActivity;->()V
+HPLandroidx/activity/ComponentActivity;->()V
+HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+PLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+HSPLandroidx/activity/ComponentActivity;->createFullyDrawnExecutor()Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
+PLandroidx/activity/ComponentActivity;->createFullyDrawnExecutor()Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
+HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
+PLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
+HSPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras;
+HPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras;
+HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+HPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
+PLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
+HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
+PLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
+HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
+PLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
+HSPLandroidx/activity/ComponentActivity;->initializeViewTreeOwners()V
+PLandroidx/activity/ComponentActivity;->initializeViewTreeOwners()V
+HSPLandroidx/activity/ComponentActivity;->lambda$new$2$androidx-activity-ComponentActivity(Landroid/content/Context;)V
+PLandroidx/activity/ComponentActivity;->lambda$new$2$androidx-activity-ComponentActivity(Landroid/content/Context;)V
+HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
+PLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
+HSPLandroidx/activity/ComponentActivity;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
+PLandroidx/activity/ComponentActivity;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;
+HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;
+HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;
+HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;
+HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->onContextAvailable(Landroid/content/Context;)V
+PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->onContextAvailable(Landroid/content/Context;)V
+Landroidx/activity/ComponentActivity$1;
+HSPLandroidx/activity/ComponentActivity$1;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$1;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$2;
+HSPLandroidx/activity/ComponentActivity$2;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$2;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$2;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+PLandroidx/activity/ComponentActivity$2;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/ComponentActivity$3;
+HSPLandroidx/activity/ComponentActivity$3;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$3;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+PLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/ComponentActivity$4;
+HSPLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+PLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/ComponentActivity$5;
+HSPLandroidx/activity/ComponentActivity$5;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$5;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$6;
+HSPLandroidx/activity/ComponentActivity$6;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$6;->(Landroidx/activity/ComponentActivity;)V
+HSPLandroidx/activity/ComponentActivity$6;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+PLandroidx/activity/ComponentActivity$6;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+PLandroidx/activity/ComponentActivity$Api19Impl;->cancelPendingInputEvents(Landroid/view/View;)V
+Landroidx/activity/ComponentActivity$NonConfigurationInstances;
+Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
+Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;
+HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->activityDestroyed()V
+HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->onDraw()V
+PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->onDraw()V
+HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->viewCreated(Landroid/view/View;)V
+PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->viewCreated(Landroid/view/View;)V
+Landroidx/activity/FullyDrawnReporter;
+HSPLandroidx/activity/FullyDrawnReporter;->(Ljava/util/concurrent/Executor;Lkotlin/jvm/functions/Function0;)V
+PLandroidx/activity/FullyDrawnReporter;->(Ljava/util/concurrent/Executor;Lkotlin/jvm/functions/Function0;)V
+Landroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;
+HSPLandroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;->(Landroidx/activity/FullyDrawnReporter;)V
+PLandroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;->(Landroidx/activity/FullyDrawnReporter;)V
+Landroidx/activity/FullyDrawnReporterOwner;
+Landroidx/activity/OnBackPressedCallback;
+HSPLandroidx/activity/OnBackPressedCallback;->(Z)V
+PLandroidx/activity/OnBackPressedCallback;->(Z)V
+HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
+PLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
+PLandroidx/activity/OnBackPressedCallback;->getEnabledChangedCallback$activity_release()Lkotlin/jvm/functions/Function0;
+HSPLandroidx/activity/OnBackPressedCallback;->isEnabled()Z
+PLandroidx/activity/OnBackPressedCallback;->isEnabled()Z
+PLandroidx/activity/OnBackPressedCallback;->remove()V
+PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V
+HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
+PLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
+HSPLandroidx/activity/OnBackPressedCallback;->setEnabledChangedCallback$activity_release(Lkotlin/jvm/functions/Function0;)V
+PLandroidx/activity/OnBackPressedCallback;->setEnabledChangedCallback$activity_release(Lkotlin/jvm/functions/Function0;)V
+Landroidx/activity/OnBackPressedDispatcher;
+HSPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V
+PLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V
+HSPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;Landroidx/core/util/Consumer;)V
+PLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;Landroidx/core/util/Consumer;)V
+PLandroidx/activity/OnBackPressedDispatcher;->access$getInProgressCallback$p(Landroidx/activity/OnBackPressedDispatcher;)Landroidx/activity/OnBackPressedCallback;
+PLandroidx/activity/OnBackPressedDispatcher;->access$getOnBackPressedCallbacks$p(Landroidx/activity/OnBackPressedDispatcher;)Lkotlin/collections/ArrayDeque;
+HSPLandroidx/activity/OnBackPressedDispatcher;->access$updateEnabledCallbacks(Landroidx/activity/OnBackPressedDispatcher;)V
+PLandroidx/activity/OnBackPressedDispatcher;->access$updateEnabledCallbacks(Landroidx/activity/OnBackPressedDispatcher;)V
+HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
+HPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
+HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
+HPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
+HSPLandroidx/activity/OnBackPressedDispatcher;->updateEnabledCallbacks()V
+HPLandroidx/activity/OnBackPressedDispatcher;->updateEnabledCallbacks()V
+Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;
+HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
+PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
+PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V
+HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+HPLandroidx/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
+PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V
+HPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V
+Landroidx/activity/OnBackPressedDispatcher$addCallback$1;
+HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->(Ljava/lang/Object;)V
+PLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->(Ljava/lang/Object;)V
+HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()Ljava/lang/Object;
+PLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()Ljava/lang/Object;
+HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()V
+PLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()V
+Landroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;
+HSPLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->(Ljava/lang/Object;)V
+PLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->(Ljava/lang/Object;)V
+PLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->invoke()Ljava/lang/Object;
+PLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->invoke()V
+Landroidx/activity/OnBackPressedDispatcherOwner;
+Landroidx/activity/R$id;
+Landroidx/activity/ViewTreeFullyDrawnReporterOwner;
+HSPLandroidx/activity/ViewTreeFullyDrawnReporterOwner;->set(Landroid/view/View;Landroidx/activity/FullyDrawnReporterOwner;)V
+PLandroidx/activity/ViewTreeFullyDrawnReporterOwner;->set(Landroid/view/View;Landroidx/activity/FullyDrawnReporterOwner;)V
+Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner;
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->get(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->get(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->set(Landroid/view/View;Landroidx/activity/OnBackPressedDispatcherOwner;)V
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->set(Landroid/view/View;Landroidx/activity/OnBackPressedDispatcherOwner;)V
+Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->()V
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->()V
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->()V
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->()V
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Landroid/view/View;)Landroid/view/View;
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Landroid/view/View;)Landroid/view/View;
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->()V
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->()V
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->()V
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->()V
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
+HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/compose/BackHandlerKt;
+HSPLandroidx/activity/compose/BackHandlerKt;->BackHandler(ZLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V
+HPLandroidx/activity/compose/BackHandlerKt;->BackHandler(ZLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V
+Landroidx/activity/compose/BackHandlerKt$BackHandler$1$1;
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;Z)V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;Z)V
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()Ljava/lang/Object;
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()Ljava/lang/Object;
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()V
+Landroidx/activity/compose/BackHandlerKt$BackHandler$2;
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;->(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;->(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;->dispose()V
+Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;
+HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;->(ZLandroidx/compose/runtime/State;)V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;->(ZLandroidx/compose/runtime/State;)V
+Landroidx/activity/compose/ComponentActivityKt;
+HSPLandroidx/activity/compose/ComponentActivityKt;->()V
+PLandroidx/activity/compose/ComponentActivityKt;->()V
+HSPLandroidx/activity/compose/ComponentActivityKt;->setContent$default(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;ILjava/lang/Object;)V
+PLandroidx/activity/compose/ComponentActivityKt;->setContent$default(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;ILjava/lang/Object;)V
+HSPLandroidx/activity/compose/ComponentActivityKt;->setContent(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;)V
+PLandroidx/activity/compose/ComponentActivityKt;->setContent(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;)V
+HSPLandroidx/activity/compose/ComponentActivityKt;->setOwners(Landroidx/activity/ComponentActivity;)V
+PLandroidx/activity/compose/ComponentActivityKt;->setOwners(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/compose/LocalOnBackPressedDispatcherOwner;
+HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->()V
+PLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->()V
+HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->()V
+PLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->()V
+HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->getCurrent(Landroidx/compose/runtime/Composer;I)Landroidx/activity/OnBackPressedDispatcherOwner;
+HPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->getCurrent(Landroidx/compose/runtime/Composer;I)Landroidx/activity/OnBackPressedDispatcherOwner;
+Landroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;
+HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->()V
+PLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->()V
+HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->()V
+PLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->()V
+HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Landroidx/activity/OnBackPressedDispatcherOwner;
+PLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Landroidx/activity/OnBackPressedDispatcherOwner;
+HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Ljava/lang/Object;
+PLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Ljava/lang/Object;
+Landroidx/activity/contextaware/ContextAware;
+Landroidx/activity/contextaware/ContextAwareHelper;
+HSPLandroidx/activity/contextaware/ContextAwareHelper;->()V
+PLandroidx/activity/contextaware/ContextAwareHelper;->()V
+HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+PLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V
+HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
+PLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
+Landroidx/activity/contextaware/OnContextAvailableListener;
+Landroidx/activity/result/ActivityResultCaller;
+Landroidx/activity/result/ActivityResultRegistry;
+HSPLandroidx/activity/result/ActivityResultRegistry;->()V
+PLandroidx/activity/result/ActivityResultRegistry;->()V
+Landroidx/activity/result/ActivityResultRegistryOwner;
+Landroidx/arch/core/executor/ArchTaskExecutor;
+HSPLandroidx/arch/core/executor/ArchTaskExecutor;->()V
+PLandroidx/arch/core/executor/ArchTaskExecutor;->()V
+HSPLandroidx/arch/core/executor/ArchTaskExecutor;->()V
+PLandroidx/arch/core/executor/ArchTaskExecutor;->()V
+HSPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
+HPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
+HSPLandroidx/arch/core/executor/ArchTaskExecutor;->isMainThread()Z
+HPLandroidx/arch/core/executor/ArchTaskExecutor;->isMainThread()Z
+Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;
+HSPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;->()V
+PLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;->()V
+Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;
+HSPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;->()V
+PLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;->()V
+Landroidx/arch/core/executor/DefaultTaskExecutor;
+HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->()V
+PLandroidx/arch/core/executor/DefaultTaskExecutor;->()V
+HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->isMainThread()Z
+HPLandroidx/arch/core/executor/DefaultTaskExecutor;->isMainThread()Z
+Landroidx/arch/core/executor/DefaultTaskExecutor$1;
+HSPLandroidx/arch/core/executor/DefaultTaskExecutor$1;->(Landroidx/arch/core/executor/DefaultTaskExecutor;)V
+PLandroidx/arch/core/executor/DefaultTaskExecutor$1;->(Landroidx/arch/core/executor/DefaultTaskExecutor;)V
+Landroidx/arch/core/executor/TaskExecutor;
+HSPLandroidx/arch/core/executor/TaskExecutor;->()V
+PLandroidx/arch/core/executor/TaskExecutor;->()V
+Landroidx/arch/core/internal/FastSafeIterableMap;
+HSPLandroidx/arch/core/internal/FastSafeIterableMap;->()V
+HPLandroidx/arch/core/internal/FastSafeIterableMap;->()V
+HSPLandroidx/arch/core/internal/FastSafeIterableMap;->ceil(Ljava/lang/Object;)Ljava/util/Map$Entry;
+HPLandroidx/arch/core/internal/FastSafeIterableMap;->ceil(Ljava/lang/Object;)Ljava/util/Map$Entry;
+HSPLandroidx/arch/core/internal/FastSafeIterableMap;->contains(Ljava/lang/Object;)Z
+HPLandroidx/arch/core/internal/FastSafeIterableMap;->contains(Ljava/lang/Object;)Z
+HSPLandroidx/arch/core/internal/FastSafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+HPLandroidx/arch/core/internal/FastSafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+HSPLandroidx/arch/core/internal/FastSafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HPLandroidx/arch/core/internal/FastSafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/arch/core/internal/FastSafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
+HPLandroidx/arch/core/internal/FastSafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/arch/core/internal/SafeIterableMap;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->()V
+HPLandroidx/arch/core/internal/SafeIterableMap;->()V
+HPLandroidx/arch/core/internal/SafeIterableMap;->descendingIterator()Ljava/util/Iterator;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->eldest()Ljava/util/Map$Entry;
+HPLandroidx/arch/core/internal/SafeIterableMap;->eldest()Ljava/util/Map$Entry;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+PLandroidx/arch/core/internal/SafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->iterator()Ljava/util/Iterator;
+HPLandroidx/arch/core/internal/SafeIterableMap;->iterator()Ljava/util/Iterator;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->iteratorWithAdditions()Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
+HPLandroidx/arch/core/internal/SafeIterableMap;->iteratorWithAdditions()Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->newest()Ljava/util/Map$Entry;
+HPLandroidx/arch/core/internal/SafeIterableMap;->newest()Ljava/util/Map$Entry;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+HPLandroidx/arch/core/internal/SafeIterableMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/arch/core/internal/SafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
+HPLandroidx/arch/core/internal/SafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/arch/core/internal/SafeIterableMap;->size()I
+PLandroidx/arch/core/internal/SafeIterableMap;->size()I
+Landroidx/arch/core/internal/SafeIterableMap$AscendingIterator;
+HSPLandroidx/arch/core/internal/SafeIterableMap$AscendingIterator;->(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+PLandroidx/arch/core/internal/SafeIterableMap$AscendingIterator;->(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+PLandroidx/arch/core/internal/SafeIterableMap$DescendingIterator;->(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+PLandroidx/arch/core/internal/SafeIterableMap$DescendingIterator;->forward(Landroidx/arch/core/internal/SafeIterableMap$Entry;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+Landroidx/arch/core/internal/SafeIterableMap$Entry;
+HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;->(Ljava/lang/Object;Ljava/lang/Object;)V
+HPLandroidx/arch/core/internal/SafeIterableMap$Entry;->(Ljava/lang/Object;Ljava/lang/Object;)V
+HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getKey()Ljava/lang/Object;
+HPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getKey()Ljava/lang/Object;
+HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getValue()Ljava/lang/Object;
+HPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getValue()Ljava/lang/Object;
+Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
+HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->(Landroidx/arch/core/internal/SafeIterableMap;)V
+HPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->(Landroidx/arch/core/internal/SafeIterableMap;)V
+HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->hasNext()Z
+HPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->hasNext()Z
+HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/lang/Object;
+PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/lang/Object;
+HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/util/Map$Entry;
+HPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/util/Map$Entry;
+HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+Landroidx/arch/core/internal/SafeIterableMap$ListIterator;
+HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+HPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->hasNext()Z
+PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->hasNext()Z
+HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/lang/Object;
+PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/lang/Object;
+HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/util/Map$Entry;
+HPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/util/Map$Entry;
+HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->nextNode()Landroidx/arch/core/internal/SafeIterableMap$Entry;
+HPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->nextNode()Landroidx/arch/core/internal/SafeIterableMap$Entry;
+PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
+Landroidx/arch/core/internal/SafeIterableMap$SupportRemove;
+HSPLandroidx/arch/core/internal/SafeIterableMap$SupportRemove;->()V
+PLandroidx/arch/core/internal/SafeIterableMap$SupportRemove;->()V
+Landroidx/collection/ArrayMap;
+HSPLandroidx/collection/ArrayMap;->()V
+PLandroidx/collection/ArrayMap;->()V
+Landroidx/collection/ArraySet;
+HSPLandroidx/collection/ArraySet;->()V
+PLandroidx/collection/ArraySet;->()V
+HSPLandroidx/collection/ArraySet;->(I)V
+PLandroidx/collection/ArraySet;->(I)V
+HSPLandroidx/collection/ArraySet;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/collection/ArraySet;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/collection/ArraySet;->add(Ljava/lang/Object;)Z
+PLandroidx/collection/ArraySet;->add(Ljava/lang/Object;)Z
+HSPLandroidx/collection/ArraySet;->clear()V
+PLandroidx/collection/ArraySet;->clear()V
+HSPLandroidx/collection/ArraySet;->getArray$collection()[Ljava/lang/Object;
+PLandroidx/collection/ArraySet;->getArray$collection()[Ljava/lang/Object;
+HSPLandroidx/collection/ArraySet;->getHashes$collection()[I
+PLandroidx/collection/ArraySet;->getHashes$collection()[I
+HSPLandroidx/collection/ArraySet;->get_size$collection()I
+PLandroidx/collection/ArraySet;->get_size$collection()I
+HSPLandroidx/collection/ArraySet;->setArray$collection([Ljava/lang/Object;)V
+PLandroidx/collection/ArraySet;->setArray$collection([Ljava/lang/Object;)V
+HSPLandroidx/collection/ArraySet;->setHashes$collection([I)V
+PLandroidx/collection/ArraySet;->setHashes$collection([I)V
+HSPLandroidx/collection/ArraySet;->set_size$collection(I)V
+PLandroidx/collection/ArraySet;->set_size$collection(I)V
+HSPLandroidx/collection/ArraySet;->toArray()[Ljava/lang/Object;
+PLandroidx/collection/ArraySet;->toArray()[Ljava/lang/Object;
+Landroidx/collection/ArraySetKt;
+HSPLandroidx/collection/ArraySetKt;->allocArrays(Landroidx/collection/ArraySet;I)V
+PLandroidx/collection/ArraySetKt;->allocArrays(Landroidx/collection/ArraySet;I)V
+HSPLandroidx/collection/ArraySetKt;->indexOf(Landroidx/collection/ArraySet;Ljava/lang/Object;I)I
+PLandroidx/collection/ArraySetKt;->indexOf(Landroidx/collection/ArraySet;Ljava/lang/Object;I)I
+Landroidx/collection/LongSparseArray;
+HSPLandroidx/collection/LongSparseArray;->()V
+PLandroidx/collection/LongSparseArray;->()V
+HSPLandroidx/collection/LongSparseArray;->(I)V
+PLandroidx/collection/LongSparseArray;->(I)V
+HSPLandroidx/collection/LongSparseArray;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/collection/LongSparseArray;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/collection/LruCache;
+HSPLandroidx/collection/LruCache;->(I)V
+PLandroidx/collection/LruCache;->(I)V
+HSPLandroidx/collection/LruCache;->create(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/collection/LruCache;->create(Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/collection/LruCache;->get(Ljava/lang/Object;)Ljava/lang/Object;
+HPLandroidx/collection/LruCache;->get(Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/collection/LruCache;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/collection/LruCache;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/collection/LruCache;->safeSizeOf(Ljava/lang/Object;Ljava/lang/Object;)I
+PLandroidx/collection/LruCache;->safeSizeOf(Ljava/lang/Object;Ljava/lang/Object;)I
+HSPLandroidx/collection/LruCache;->sizeOf(Ljava/lang/Object;Ljava/lang/Object;)I
+PLandroidx/collection/LruCache;->sizeOf(Ljava/lang/Object;Ljava/lang/Object;)I
+HSPLandroidx/collection/LruCache;->trimToSize(I)V
+PLandroidx/collection/LruCache;->trimToSize(I)V
+Landroidx/collection/MutableScatterMap;
+HSPLandroidx/collection/MutableScatterMap;->(I)V
+HPLandroidx/collection/MutableScatterMap;->(I)V
+HSPLandroidx/collection/MutableScatterMap;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+HPLandroidx/collection/MutableScatterMap;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/collection/MutableScatterMap;->adjustStorage()V
+HPLandroidx/collection/MutableScatterMap;->adjustStorage()V
+PLandroidx/collection/MutableScatterMap;->clear()V
+HSPLandroidx/collection/MutableScatterMap;->findFirstAvailableSlot(I)I
+HPLandroidx/collection/MutableScatterMap;->findFirstAvailableSlot(I)I
+HSPLandroidx/collection/MutableScatterMap;->findInsertIndex(Ljava/lang/Object;)I
+HPLandroidx/collection/MutableScatterMap;->findInsertIndex(Ljava/lang/Object;)I
+HSPLandroidx/collection/MutableScatterMap;->initializeGrowth()V
+HPLandroidx/collection/MutableScatterMap;->initializeGrowth()V
+HSPLandroidx/collection/MutableScatterMap;->initializeMetadata(I)V
+HPLandroidx/collection/MutableScatterMap;->initializeMetadata(I)V
+HSPLandroidx/collection/MutableScatterMap;->initializeStorage(I)V
+HPLandroidx/collection/MutableScatterMap;->initializeStorage(I)V
+HPLandroidx/collection/MutableScatterMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/collection/MutableScatterMap;->removeValueAt(I)Ljava/lang/Object;
+HPLandroidx/collection/MutableScatterMap;->removeValueAt(I)Ljava/lang/Object;
+HSPLandroidx/collection/MutableScatterMap;->resizeStorage(I)V
+HPLandroidx/collection/MutableScatterMap;->resizeStorage(I)V
+Landroidx/collection/MutableScatterSet;
+HSPLandroidx/collection/MutableScatterSet;->(I)V
+HPLandroidx/collection/MutableScatterSet;->(I)V
+HSPLandroidx/collection/MutableScatterSet;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/collection/MutableScatterSet;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/collection/MutableScatterSet;->add(Ljava/lang/Object;)Z
+HPLandroidx/collection/MutableScatterSet;->add(Ljava/lang/Object;)Z
+HSPLandroidx/collection/MutableScatterSet;->adjustStorage()V
+HPLandroidx/collection/MutableScatterSet;->adjustStorage()V
+HSPLandroidx/collection/MutableScatterSet;->findAbsoluteInsertIndex(Ljava/lang/Object;)I
+HPLandroidx/collection/MutableScatterSet;->findAbsoluteInsertIndex(Ljava/lang/Object;)I
+HSPLandroidx/collection/MutableScatterSet;->findFirstAvailableSlot(I)I
+HPLandroidx/collection/MutableScatterSet;->findFirstAvailableSlot(I)I
+HSPLandroidx/collection/MutableScatterSet;->initializeGrowth()V
+HPLandroidx/collection/MutableScatterSet;->initializeGrowth()V
+HSPLandroidx/collection/MutableScatterSet;->initializeMetadata(I)V
+HPLandroidx/collection/MutableScatterSet;->initializeMetadata(I)V
+HSPLandroidx/collection/MutableScatterSet;->initializeStorage(I)V
+HPLandroidx/collection/MutableScatterSet;->initializeStorage(I)V
+PLandroidx/collection/MutableScatterSet;->remove(Ljava/lang/Object;)Z
+HSPLandroidx/collection/MutableScatterSet;->removeElementAt(I)V
+PLandroidx/collection/MutableScatterSet;->removeElementAt(I)V
+HSPLandroidx/collection/MutableScatterSet;->resizeStorage(I)V
+HPLandroidx/collection/MutableScatterSet;->resizeStorage(I)V
+Landroidx/collection/ScatterMap;
+HSPLandroidx/collection/ScatterMap;->()V
+HPLandroidx/collection/ScatterMap;->()V
+HSPLandroidx/collection/ScatterMap;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/collection/ScatterMap;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/collection/ScatterMap;->containsKey(Ljava/lang/Object;)Z
+HPLandroidx/collection/ScatterMap;->containsKey(Ljava/lang/Object;)Z
+HSPLandroidx/collection/ScatterMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
+HPLandroidx/collection/ScatterMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/collection/ScatterMap;->getCapacity()I
+HPLandroidx/collection/ScatterMap;->getCapacity()I
+Landroidx/collection/ScatterMapKt;
+HSPLandroidx/collection/ScatterMapKt;->()V
+PLandroidx/collection/ScatterMapKt;->()V
+HSPLandroidx/collection/ScatterMapKt;->loadedCapacity(I)I
+PLandroidx/collection/ScatterMapKt;->loadedCapacity(I)I
+HSPLandroidx/collection/ScatterMapKt;->mutableScatterMapOf()Landroidx/collection/MutableScatterMap;
+HPLandroidx/collection/ScatterMapKt;->mutableScatterMapOf()Landroidx/collection/MutableScatterMap;
+HSPLandroidx/collection/ScatterMapKt;->nextCapacity(I)I
+PLandroidx/collection/ScatterMapKt;->nextCapacity(I)I
+HSPLandroidx/collection/ScatterMapKt;->normalizeCapacity(I)I
+HPLandroidx/collection/ScatterMapKt;->normalizeCapacity(I)I
+HSPLandroidx/collection/ScatterMapKt;->unloadedCapacity(I)I
+PLandroidx/collection/ScatterMapKt;->unloadedCapacity(I)I
+Landroidx/collection/ScatterSet;
+HSPLandroidx/collection/ScatterSet;->()V
+HPLandroidx/collection/ScatterSet;->()V
+HSPLandroidx/collection/ScatterSet;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+HPLandroidx/collection/ScatterSet;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/collection/ScatterSet;->getCapacity()I
+HPLandroidx/collection/ScatterSet;->getCapacity()I
+HSPLandroidx/collection/ScatterSet;->getSize()I
+HPLandroidx/collection/ScatterSet;->getSize()I
+HSPLandroidx/collection/ScatterSet;->isEmpty()Z
+PLandroidx/collection/ScatterSet;->isEmpty()Z
+Landroidx/collection/SimpleArrayMap;
+HSPLandroidx/collection/SimpleArrayMap;->()V
+PLandroidx/collection/SimpleArrayMap;->()V
+HSPLandroidx/collection/SimpleArrayMap;->(I)V
+PLandroidx/collection/SimpleArrayMap;->(I)V
+HSPLandroidx/collection/SimpleArrayMap;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/collection/SimpleArrayMap;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/collection/SparseArrayCompat;
+HSPLandroidx/collection/SparseArrayCompat;->()V
+PLandroidx/collection/SparseArrayCompat;->()V
+HSPLandroidx/collection/SparseArrayCompat;->(I)V
+HPLandroidx/collection/SparseArrayCompat;->(I)V
+HSPLandroidx/collection/SparseArrayCompat;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/collection/SparseArrayCompat;->(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/collection/SparseArrayCompat;->get(I)Ljava/lang/Object;
+PLandroidx/collection/SparseArrayCompat;->get(I)Ljava/lang/Object;
+HSPLandroidx/collection/SparseArrayCompat;->keyAt(I)I
+PLandroidx/collection/SparseArrayCompat;->keyAt(I)I
+HSPLandroidx/collection/SparseArrayCompat;->put(ILjava/lang/Object;)V
+HPLandroidx/collection/SparseArrayCompat;->put(ILjava/lang/Object;)V
+HSPLandroidx/collection/SparseArrayCompat;->size()I
+HPLandroidx/collection/SparseArrayCompat;->size()I
+HSPLandroidx/collection/SparseArrayCompat;->valueAt(I)Ljava/lang/Object;
+PLandroidx/collection/SparseArrayCompat;->valueAt(I)Ljava/lang/Object;
+Landroidx/collection/SparseArrayCompatKt;
+HSPLandroidx/collection/SparseArrayCompatKt;->()V
+PLandroidx/collection/SparseArrayCompatKt;->()V
+HSPLandroidx/collection/SparseArrayCompatKt;->access$getDELETED$p()Ljava/lang/Object;
+PLandroidx/collection/SparseArrayCompatKt;->access$getDELETED$p()Ljava/lang/Object;
+HSPLandroidx/collection/SparseArrayCompatKt;->commonGet(Landroidx/collection/SparseArrayCompat;I)Ljava/lang/Object;
+HPLandroidx/collection/SparseArrayCompatKt;->commonGet(Landroidx/collection/SparseArrayCompat;I)Ljava/lang/Object;
+Landroidx/collection/SparseArrayKt;
+HSPLandroidx/collection/SparseArrayKt;->valueIterator(Landroidx/collection/SparseArrayCompat;)Ljava/util/Iterator;
+HPLandroidx/collection/SparseArrayKt;->valueIterator(Landroidx/collection/SparseArrayCompat;)Ljava/util/Iterator;
+Landroidx/collection/SparseArrayKt$valueIterator$1;
+HSPLandroidx/collection/SparseArrayKt$valueIterator$1;->(Landroidx/collection/SparseArrayCompat;)V
+HPLandroidx/collection/SparseArrayKt$valueIterator$1;->(Landroidx/collection/SparseArrayCompat;)V
+HSPLandroidx/collection/SparseArrayKt$valueIterator$1;->hasNext()Z
+HPLandroidx/collection/SparseArrayKt$valueIterator$1;->hasNext()Z
+Landroidx/collection/internal/ContainerHelpersKt;
+HSPLandroidx/collection/internal/ContainerHelpersKt;->()V
+PLandroidx/collection/internal/ContainerHelpersKt;->()V
+HSPLandroidx/collection/internal/ContainerHelpersKt;->binarySearch([III)I
+PLandroidx/collection/internal/ContainerHelpersKt;->binarySearch([III)I
+HSPLandroidx/collection/internal/ContainerHelpersKt;->idealByteArraySize(I)I
+PLandroidx/collection/internal/ContainerHelpersKt;->idealByteArraySize(I)I
+HSPLandroidx/collection/internal/ContainerHelpersKt;->idealIntArraySize(I)I
+PLandroidx/collection/internal/ContainerHelpersKt;->idealIntArraySize(I)I
+HSPLandroidx/collection/internal/ContainerHelpersKt;->idealLongArraySize(I)I
+PLandroidx/collection/internal/ContainerHelpersKt;->idealLongArraySize(I)I
+Landroidx/collection/internal/Lock;
+HSPLandroidx/collection/internal/Lock;->()V
+PLandroidx/collection/internal/Lock;->()V
+Landroidx/collection/internal/LruHashMap;
+HSPLandroidx/collection/internal/LruHashMap;->(IF)V
+PLandroidx/collection/internal/LruHashMap;->(IF)V
+HSPLandroidx/collection/internal/LruHashMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/collection/internal/LruHashMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/collection/internal/LruHashMap;->isEmpty()Z
+PLandroidx/collection/internal/LruHashMap;->isEmpty()Z
+HSPLandroidx/collection/internal/LruHashMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/collection/internal/LruHashMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt;
+HSPLandroidx/compose/animation/AnimatedContentKt;->()V
+PLandroidx/compose/animation/AnimatedContentKt;->()V
+HSPLandroidx/compose/animation/AnimatedContentKt;->AnimatedContent(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Alignment;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Landroidx/compose/runtime/Composer;II)V
+HPLandroidx/compose/animation/AnimatedContentKt;->AnimatedContent(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Alignment;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Landroidx/compose/runtime/Composer;II)V
+HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-1(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
+PLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-1(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
+HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-2(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
+PLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-2(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
+HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
+PLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
+HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
+PLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
+HSPLandroidx/compose/animation/AnimatedContentKt;->SizeTransform$default(ZLkotlin/jvm/functions/Function2;ILjava/lang/Object;)Landroidx/compose/animation/SizeTransform;
+PLandroidx/compose/animation/AnimatedContentKt;->SizeTransform$default(ZLkotlin/jvm/functions/Function2;ILjava/lang/Object;)Landroidx/compose/animation/SizeTransform;
+HSPLandroidx/compose/animation/AnimatedContentKt;->SizeTransform(ZLkotlin/jvm/functions/Function2;)Landroidx/compose/animation/SizeTransform;
+PLandroidx/compose/animation/AnimatedContentKt;->SizeTransform(ZLkotlin/jvm/functions/Function2;)Landroidx/compose/animation/SizeTransform;
+HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-1(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
+PLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-1(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
+HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-2(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
+PLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-2(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
+HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
+PLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
+HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
+PLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
+HSPLandroidx/compose/animation/AnimatedContentKt;->access$getScaleToFitTransitionKey$p()Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt;->access$getScaleToFitTransitionKey$p()Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->(Landroidx/compose/animation/core/Transition;ILandroidx/compose/ui/Alignment;Landroidx/compose/ui/unit/LayoutDirection;Landroidx/compose/ui/Modifier;Lkotlinx/coroutines/CoroutineScope;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Lkotlin/jvm/functions/Function1;)V
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->(Landroidx/compose/animation/core/Transition;ILandroidx/compose/ui/Alignment;Landroidx/compose/ui/unit/LayoutDirection;Landroidx/compose/ui/Modifier;Lkotlinx/coroutines/CoroutineScope;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Lkotlin/jvm/functions/Function1;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->invoke(Landroidx/compose/ui/layout/LookaheadScope;Landroidx/compose/runtime/Composer;I)V
+HPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->invoke(Landroidx/compose/ui/layout/LookaheadScope;Landroidx/compose/runtime/Composer;I)V
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->(Ljava/lang/Object;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/AnimatedContentRootScope;Landroidx/compose/runtime/snapshots/SnapshotStateList;Lkotlin/jvm/functions/Function4;ILkotlin/jvm/functions/Function1;)V
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->(Ljava/lang/Object;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/AnimatedContentRootScope;Landroidx/compose/runtime/snapshots/SnapshotStateList;Lkotlin/jvm/functions/Function4;ILkotlin/jvm/functions/Function1;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->invoke(Landroidx/compose/runtime/Composer;I)V
+HPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->invoke(Landroidx/compose/runtime/Composer;I)V
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->(Landroidx/compose/animation/AnimatedContentRootScope;)V
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->(Landroidx/compose/animation/AnimatedContentRootScope;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
+Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->(Landroidx/compose/ui/layout/Placeable;Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/animation/AnimatedContentRootScope;)V
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->(Landroidx/compose/ui/layout/Placeable;Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/animation/AnimatedContentRootScope;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->(F)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->(F)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->(Landroidx/compose/ui/layout/Placeable;F)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->(Landroidx/compose/ui/layout/Placeable;F)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;->(ZLandroidx/compose/animation/AnimatedContentRootScope;Landroidx/compose/animation/core/Transition;)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;->(ZLandroidx/compose/animation/AnimatedContentRootScope;Landroidx/compose/animation/core/Transition;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;->invoke-ozmzZPI(J)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;->invoke-ozmzZPI(J)V
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->(Ljava/lang/Object;)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->(Ljava/lang/Object;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->invoke(Ljava/lang/Object;)Ljava/lang/Boolean;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->invoke(Ljava/lang/Object;)Ljava/lang/Boolean;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->(Landroidx/compose/runtime/MutableState;)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->(Landroidx/compose/runtime/MutableState;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->invoke(Landroidx/compose/animation/EnterExitState;Landroidx/compose/animation/EnterExitState;)Ljava/lang/Boolean;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->invoke(Landroidx/compose/animation/EnterExitState;Landroidx/compose/animation/EnterExitState;)Ljava/lang/Boolean;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;Lkotlin/jvm/functions/Function4;I)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;Lkotlin/jvm/functions/Function4;I)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->invoke(Landroidx/compose/animation/AnimatedVisibilityScope;Landroidx/compose/runtime/Composer;I)V
+HPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->invoke(Landroidx/compose/animation/AnimatedVisibilityScope;Landroidx/compose/runtime/Composer;I)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;)V
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1$invoke$$inlined$onDispose$1;
+HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1$invoke$$inlined$onDispose$1;->(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1$invoke$$inlined$onDispose$1;->(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;)V
+PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1$invoke$$inlined$onDispose$1;->dispose()V
+Landroidx/compose/animation/AnimatedContentKt$SizeTransform$1;
+HSPLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;->()V
+PLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;->()V
+HSPLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;->()V
+PLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;->()V
+Landroidx/compose/animation/AnimatedContentMeasurePolicy;
+HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->(Landroidx/compose/animation/AnimatedContentRootScope;Ljava/util/Map;)V
+PLandroidx/compose/animation/AnimatedContentMeasurePolicy;->(Landroidx/compose/animation/AnimatedContentRootScope;Ljava/util/Map;)V
+HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->getRootScope()Landroidx/compose/animation/AnimatedContentRootScope;
+PLandroidx/compose/animation/AnimatedContentMeasurePolicy;->getRootScope()Landroidx/compose/animation/AnimatedContentRootScope;
+HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
+HPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
+Landroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;
+HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->([Landroidx/compose/ui/layout/Placeable;Landroidx/compose/animation/AnimatedContentMeasurePolicy;II)V
+PLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->([Landroidx/compose/ui/layout/Placeable;Landroidx/compose/animation/AnimatedContentMeasurePolicy;II)V
+HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+HPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentRootScope;
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/layout/LookaheadScope;Lkotlinx/coroutines/CoroutineScope;Landroidx/compose/ui/Alignment;Landroidx/compose/ui/unit/LayoutDirection;)V
+PLandroidx/compose/animation/AnimatedContentRootScope;->(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/layout/LookaheadScope;Lkotlinx/coroutines/CoroutineScope;Landroidx/compose/ui/Alignment;Landroidx/compose/ui/unit/LayoutDirection;)V
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$animation_release(Landroidx/compose/animation/ContentTransform;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
+HPLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$animation_release(Landroidx/compose/animation/ContentTransform;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$lambda$3(Landroidx/compose/runtime/MutableState;)Z
+PLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$lambda$3(Landroidx/compose/runtime/MutableState;)Z
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$lambda$4(Landroidx/compose/runtime/MutableState;Z)V
+PLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$lambda$4(Landroidx/compose/runtime/MutableState;Z)V
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->getContentAlignment()Landroidx/compose/ui/Alignment;
+PLandroidx/compose/animation/AnimatedContentRootScope;->getContentAlignment()Landroidx/compose/ui/Alignment;
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->getInitialState()Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentRootScope;->getInitialState()Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->getTargetSizeMap$animation_release()Ljava/util/Map;
+PLandroidx/compose/animation/AnimatedContentRootScope;->getTargetSizeMap$animation_release()Ljava/util/Map;
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->getTargetState()Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentRootScope;->getTargetState()Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->setContentAlignment(Landroidx/compose/ui/Alignment;)V
+PLandroidx/compose/animation/AnimatedContentRootScope;->setContentAlignment(Landroidx/compose/ui/Alignment;)V
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->setLayoutDirection$animation_release(Landroidx/compose/ui/unit/LayoutDirection;)V
+PLandroidx/compose/animation/AnimatedContentRootScope;->setLayoutDirection$animation_release(Landroidx/compose/ui/unit/LayoutDirection;)V
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->setMeasuredSize-ozmzZPI$animation_release(J)V
+PLandroidx/compose/animation/AnimatedContentRootScope;->setMeasuredSize-ozmzZPI$animation_release(J)V
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->setRootCoords(Landroidx/compose/ui/layout/LayoutCoordinates;)V
+PLandroidx/compose/animation/AnimatedContentRootScope;->setRootCoords(Landroidx/compose/ui/layout/LayoutCoordinates;)V
+HSPLandroidx/compose/animation/AnimatedContentRootScope;->setRootLookaheadCoords(Landroidx/compose/ui/layout/LayoutCoordinates;)V
+PLandroidx/compose/animation/AnimatedContentRootScope;->setRootLookaheadCoords(Landroidx/compose/ui/layout/LayoutCoordinates;)V
+Landroidx/compose/animation/AnimatedContentRootScope$ChildData;
+HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->(Ljava/lang/Object;)V
+PLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->(Ljava/lang/Object;)V
+HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->getTargetState()Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->getTargetState()Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->modifyParentData(Landroidx/compose/ui/unit/Density;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->modifyParentData(Landroidx/compose/ui/unit/Density;Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedContentScope;
+Landroidx/compose/animation/AnimatedContentScopeImpl;
+HSPLandroidx/compose/animation/AnimatedContentScopeImpl;->(Landroidx/compose/animation/AnimatedVisibilityScope;)V
+PLandroidx/compose/animation/AnimatedContentScopeImpl;->(Landroidx/compose/animation/AnimatedVisibilityScope;)V
+Landroidx/compose/animation/AnimatedContentTransitionScope;
+Landroidx/compose/animation/AnimatedEnterExitMeasurePolicy;
+HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;->(Landroidx/compose/animation/AnimatedVisibilityScopeImpl;)V
+PLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;->(Landroidx/compose/animation/AnimatedVisibilityScopeImpl;)V
+HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
+HPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
+Landroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;
+HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->(Ljava/util/List;)V
+PLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->(Ljava/util/List;)V
+HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+PLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedVisibilityKt;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedEnterExitImpl(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V
+HPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedEnterExitImpl(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V
+HSPLandroidx/compose/animation/AnimatedVisibilityKt;->access$getExitFinished(Landroidx/compose/animation/core/Transition;)Z
+PLandroidx/compose/animation/AnimatedVisibilityKt;->access$getExitFinished(Landroidx/compose/animation/core/Transition;)Z
+HSPLandroidx/compose/animation/AnimatedVisibilityKt;->getExitFinished(Landroidx/compose/animation/core/Transition;)Z
+PLandroidx/compose/animation/AnimatedVisibilityKt;->getExitFinished(Landroidx/compose/animation/core/Transition;)Z
+HSPLandroidx/compose/animation/AnimatedVisibilityKt;->targetEnterExit(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Ljava/lang/Object;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterExitState;
+HPLandroidx/compose/animation/AnimatedVisibilityKt;->targetEnterExit(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Ljava/lang/Object;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterExitState;
+Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->(Landroidx/compose/animation/OnLookaheadMeasured;)V
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->(Landroidx/compose/animation/OnLookaheadMeasured;)V
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
+Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->(Landroidx/compose/ui/layout/Placeable;)V
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->(Landroidx/compose/ui/layout/Placeable;)V
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;->(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;II)V
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;->(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;II)V
+Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->(Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->(Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Landroidx/compose/runtime/ProduceStateScope;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Landroidx/compose/runtime/ProduceStateScope;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->(Landroidx/compose/animation/core/Transition;)V
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->(Landroidx/compose/animation/core/Transition;)V
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Boolean;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Boolean;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->(Landroidx/compose/runtime/ProduceStateScope;Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;)V
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->(Landroidx/compose/runtime/ProduceStateScope;Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;)V
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
+HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
+PLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
+Landroidx/compose/animation/AnimatedVisibilityScope;
+Landroidx/compose/animation/AnimatedVisibilityScopeImpl;
+HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;->(Landroidx/compose/animation/core/Transition;)V
+PLandroidx/compose/animation/AnimatedVisibilityScopeImpl;->(Landroidx/compose/animation/core/Transition;)V
+HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;->getTargetSize$animation_release()Landroidx/compose/runtime/MutableState;
+PLandroidx/compose/animation/AnimatedVisibilityScopeImpl;->getTargetSize$animation_release()Landroidx/compose/runtime/MutableState;
+Landroidx/compose/animation/AnimationModifierKt;
+HSPLandroidx/compose/animation/AnimationModifierKt;->()V
+PLandroidx/compose/animation/AnimationModifierKt;->()V
+HSPLandroidx/compose/animation/AnimationModifierKt;->getInvalidSize()J
+PLandroidx/compose/animation/AnimationModifierKt;->getInvalidSize()J
+HSPLandroidx/compose/animation/AnimationModifierKt;->isValid-ozmzZPI(J)Z
+PLandroidx/compose/animation/AnimationModifierKt;->isValid-ozmzZPI(J)Z
+Landroidx/compose/animation/ColorVectorConverterKt;
+HSPLandroidx/compose/animation/ColorVectorConverterKt;->()V
+PLandroidx/compose/animation/ColorVectorConverterKt;->()V
+HSPLandroidx/compose/animation/ColorVectorConverterKt;->getVectorConverter(Landroidx/compose/ui/graphics/Color$Companion;)Lkotlin/jvm/functions/Function1;
+PLandroidx/compose/animation/ColorVectorConverterKt;->getVectorConverter(Landroidx/compose/ui/graphics/Color$Companion;)Lkotlin/jvm/functions/Function1;
+Landroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->()V
+PLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->()V
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->()V
+PLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->()V
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->invoke(Landroidx/compose/ui/graphics/colorspace/ColorSpace;)Landroidx/compose/animation/core/TwoWayConverter;
+HPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->invoke(Landroidx/compose/ui/graphics/colorspace/ColorSpace;)Landroidx/compose/animation/core/TwoWayConverter;
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->()V
+PLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->()V
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->()V
+PLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->()V
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->invoke-8_81llA(J)Landroidx/compose/animation/core/AnimationVector4D;
+HPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->invoke-8_81llA(J)Landroidx/compose/animation/core/AnimationVector4D;
+Landroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$2;
+HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$2;->(Landroidx/compose/ui/graphics/colorspace/ColorSpace;)V
+PLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$2;->(Landroidx/compose/ui/graphics/colorspace/ColorSpace;)V
+Landroidx/compose/animation/ContentTransform;
+HSPLandroidx/compose/animation/ContentTransform;->()V
+PLandroidx/compose/animation/ContentTransform;->()V
+HSPLandroidx/compose/animation/ContentTransform;->(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;)V
+PLandroidx/compose/animation/ContentTransform;->(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;)V
+HSPLandroidx/compose/animation/ContentTransform;->(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/compose/animation/ContentTransform;->(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+HSPLandroidx/compose/animation/ContentTransform;->getSizeTransform()Landroidx/compose/animation/SizeTransform;
+PLandroidx/compose/animation/ContentTransform;->getSizeTransform()Landroidx/compose/animation/SizeTransform;
+HSPLandroidx/compose/animation/ContentTransform;->getTargetContentEnter()Landroidx/compose/animation/EnterTransition;
+PLandroidx/compose/animation/ContentTransform;->getTargetContentEnter()Landroidx/compose/animation/EnterTransition;
+HSPLandroidx/compose/animation/ContentTransform;->getTargetContentZIndex()F
+PLandroidx/compose/animation/ContentTransform;->getTargetContentZIndex()F
+Landroidx/compose/animation/EnterExitState;
+HSPLandroidx/compose/animation/EnterExitState;->$values()[Landroidx/compose/animation/EnterExitState;
+PLandroidx/compose/animation/EnterExitState;->$values()[Landroidx/compose/animation/EnterExitState;
+HSPLandroidx/compose/animation/EnterExitState;->()V
+PLandroidx/compose/animation/EnterExitState;->()V
+HSPLandroidx/compose/animation/EnterExitState;->(Ljava/lang/String;I)V
+PLandroidx/compose/animation/EnterExitState;->(Ljava/lang/String;I)V
+Landroidx/compose/animation/EnterExitTransitionElement;
+HSPLandroidx/compose/animation/EnterExitTransitionElement;->(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;)V
+PLandroidx/compose/animation/EnterExitTransitionElement;->(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;)V
+HSPLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/animation/EnterExitTransitionModifierNode;
+PLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/animation/EnterExitTransitionModifierNode;
+HSPLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/ui/Modifier$Node;
+PLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/ui/Modifier$Node;
+Landroidx/compose/animation/EnterExitTransitionKt;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->$r8$lambda$pdcBkeht65McNmOdPY-G1SsWYlU(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
+PLandroidx/compose/animation/EnterExitTransitionKt;->$r8$lambda$pdcBkeht65McNmOdPY-G1SsWYlU(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->()V
+PLandroidx/compose/animation/EnterExitTransitionKt;->()V
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock$lambda$11(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
+PLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock$lambda$11(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;
+HPLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->createModifier(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
+HPLandroidx/compose/animation/EnterExitTransitionKt;->createModifier(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/EnterTransition;
+PLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/EnterTransition;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/EnterTransition;
+PLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/EnterTransition;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/ExitTransition;
+PLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/ExitTransition;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/ExitTransition;
+PLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/ExitTransition;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->get(Landroidx/compose/animation/EnterTransition;Ljava/lang/Object;)Landroidx/compose/ui/node/ModifierNodeElement;
+PLandroidx/compose/animation/EnterExitTransitionKt;->get(Landroidx/compose/animation/EnterTransition;Ljava/lang/Object;)Landroidx/compose/ui/node/ModifierNodeElement;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->get(Landroidx/compose/animation/ExitTransition;Ljava/lang/Object;)Landroidx/compose/ui/node/ModifierNodeElement;
+PLandroidx/compose/animation/EnterExitTransitionKt;->get(Landroidx/compose/animation/ExitTransition;Ljava/lang/Object;)Landroidx/compose/ui/node/ModifierNodeElement;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
+PLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
+PLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterTransition;
+HPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterTransition;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$7(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
+PLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$7(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$8(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
+PLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$8(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
+HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/ExitTransition;
+HPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/ExitTransition;
+Landroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;
+HSPLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;->(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)V
+PLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;->(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)V
+HSPLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;->init()Lkotlin/jvm/functions/Function1;
+PLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;->init()Lkotlin/jvm/functions/Function1;
+Landroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;
+HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;->()V
+PLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;->()V
+HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;->()V
+PLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;->()V
+Landroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;
+HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;->()V
+PLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;->()V
+HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;->()V
+PLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;->()V
+Landroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;
+HSPLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;->(Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;)V
+PLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;->